mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-04-19 14:21:07 +00:00
* requestbackport:
- Avoid duplicate Reverse-Build-Deps when sources build binaries of the same name. - Explain that backports aren't to fix bugs.
This commit is contained in:
parent
d3971342d8
commit
b3f16cbee2
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -10,10 +10,12 @@ ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
|
||||
configured a custom builder that doesn't do source builds (LP: #1019817)
|
||||
* seeded-in-ubuntu Inform the user when we couldn't determine binary
|
||||
packages built by a source package, as it most recently FTBFS.
|
||||
* request-backport: Avoid duplicate Reverse-Build-Deps when sources build
|
||||
binaries of the same name.
|
||||
* requestbackport:
|
||||
- Avoid duplicate Reverse-Build-Deps when sources build binaries of the
|
||||
same name.
|
||||
- Explain that backports aren't to fix bugs.
|
||||
|
||||
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 18 Jul 2012 12:45:05 +0200
|
||||
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 18 Jul 2012 12:47:01 +0200
|
||||
|
||||
ubuntu-dev-tools (0.143) unstable; urgency=low
|
||||
|
||||
|
@ -47,7 +47,8 @@ Display a help message and exit.
|
||||
|
||||
.SH SEE ALSO
|
||||
.BR backportpackage (1),
|
||||
.BR reverse\-depends (1).
|
||||
.BR reverse\-depends (1),
|
||||
.BR https://wiki.ubuntu.com/UbuntuBackports .
|
||||
|
||||
.SH AUTHORS
|
||||
\fBreverse\-depends\fR and this manpage were written by Stefano Rivera
|
||||
|
@ -74,6 +74,16 @@ def determine_destinations(source, destination):
|
||||
return destinations
|
||||
|
||||
|
||||
def disclaimer():
|
||||
print ("Ubuntu's backports are not for fixing bugs in stable releases, "
|
||||
"but for bringing new features to older, stable releases.")
|
||||
print ("See https://wiki.ubuntu.com/UbuntuBackports for the Ubuntu "
|
||||
"Backports policy and processes.")
|
||||
print ("See https://wiki.ubuntu.com/StableReleaseUpdates for the process "
|
||||
"for fixing bugs in stable releases.")
|
||||
confirmation_prompt()
|
||||
|
||||
|
||||
def check_existing(package, destinations):
|
||||
"""Search for possible existing bug reports"""
|
||||
# The LP bug search is indexed, not substring:
|
||||
@ -289,6 +299,8 @@ def main():
|
||||
Logger.error(str(e))
|
||||
sys.exit(1)
|
||||
|
||||
disclaimer()
|
||||
|
||||
check_existing(package, destinations)
|
||||
|
||||
package_spph = locate_package(package, options.source)
|
||||
|
Loading…
x
Reference in New Issue
Block a user