mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-10 08:21:29 +00:00
requestsync: Do not check package's Launchpad bug list page if the package to be synced is a new package. As this page does not exist for it (LP: #312297).
This commit is contained in:
parent
83a650c07f
commit
75b115a5dd
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -17,8 +17,12 @@ ubuntu-dev-tools (0.50) UNRELEASED; urgency=low
|
|||||||
[ Jonathan Davies ]
|
[ Jonathan Davies ]
|
||||||
* buildd: Show which architectures are available in help and created a
|
* buildd: Show which architectures are available in help and created a
|
||||||
list of them for easy addition of new ones.
|
list of them for easy addition of new ones.
|
||||||
* requestsync: Readd sponsorship flag and related documentation in
|
* requestsync:
|
||||||
|
- Readd sponsorship flag and related documentation in
|
||||||
doc/requestsync.1 (LP: #270605).
|
doc/requestsync.1 (LP: #270605).
|
||||||
|
- Do not check package's Launchpad bug list page if the package to be
|
||||||
|
synced is a new package. As this page does not exist for
|
||||||
|
it (LP: #312297).
|
||||||
|
|
||||||
-- Jonathan Davies <jpds@ubuntu.com> Mon, 29 Dec 2008 18:45:02 +0000
|
-- Jonathan Davies <jpds@ubuntu.com> Mon, 29 Dec 2008 18:45:02 +0000
|
||||||
|
|
||||||
|
@ -483,13 +483,13 @@ if __name__ == '__main__':
|
|||||||
deb_version = cur_deb_version(srcpkg, distro)
|
deb_version = cur_deb_version(srcpkg, distro)
|
||||||
|
|
||||||
# -s flag not specified - check if we do need sponsorship.
|
# -s flag not specified - check if we do need sponsorship.
|
||||||
if sponsorship == False: sponsorship = checkNeedsSponsorship(component)
|
if not sponsorship: sponsorship = checkNeedsSponsorship(component)
|
||||||
|
|
||||||
if deb_version == cur_ver:
|
if deb_version == cur_ver:
|
||||||
print 'The versions in Debian and Ubuntu are the same already (%s). Aborting.' % (deb_version,)
|
print 'The versions in Debian and Ubuntu are the same already (%s). Aborting.' % (deb_version,)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
checkExistingReports(srcpkg)
|
if not newsource: checkExistingReports(srcpkg)
|
||||||
|
|
||||||
# generate bug report
|
# generate bug report
|
||||||
subscribe = 'ubuntu-archive'
|
subscribe = 'ubuntu-archive'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user