mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-29 11:51:08 +00:00
* requestsync: Fix a bug that prevented sync requests for new packages with
a version smaller than 0.
This commit is contained in:
parent
fe3937b755
commit
65762755c0
9
debian/changelog
vendored
9
debian/changelog
vendored
@ -1,11 +1,16 @@
|
|||||||
ubuntu-dev-tools (0.86ubuntu1) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.87) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Steve Langasek ]
|
||||||
* Revert the submittodebian change to inline patches. This is a style
|
* Revert the submittodebian change to inline patches. This is a style
|
||||||
choice, the patch length has nothing to do with it; if there's demand for
|
choice, the patch length has nothing to do with it; if there's demand for
|
||||||
patch inlining, this should be made a (non-default) option to
|
patch inlining, this should be made a (non-default) option to
|
||||||
submittodebian.
|
submittodebian.
|
||||||
|
|
||||||
-- Steve Langasek <steve.langasek@ubuntu.com> Sun, 27 Dec 2009 16:24:49 -0800
|
[ Michael Bienia ]
|
||||||
|
* requestsync: Fix a bug that prevented sync requests for new packages with
|
||||||
|
a version smaller than 0.
|
||||||
|
|
||||||
|
-- Michael Bienia <geser@ubuntu.com> Thu, 31 Dec 2009 13:15:01 +0100
|
||||||
|
|
||||||
ubuntu-dev-tools (0.86) lucid; urgency=low
|
ubuntu-dev-tools (0.86) lucid; urgency=low
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ if __name__ == '__main__':
|
|||||||
newsource = False # override the -n flag
|
newsource = False # override the -n flag
|
||||||
except udtexceptions.PackageNotFoundException:
|
except udtexceptions.PackageNotFoundException:
|
||||||
ubuntu_srcpkg = None
|
ubuntu_srcpkg = None
|
||||||
ubuntu_version = Version(0)
|
ubuntu_version = Version('0~0')
|
||||||
ubuntu_component = 'universe' # let's assume universe
|
ubuntu_component = 'universe' # let's assume universe
|
||||||
if not newsource:
|
if not newsource:
|
||||||
print "'%s' doesn't exist in 'Ubuntu %s'.\nDo you want to sync a new package?" % \
|
print "'%s' doesn't exist in 'Ubuntu %s'.\nDo you want to sync a new package?" % \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user