From 65762755c0ea3d36248f815d237be4455ee99795 Mon Sep 17 00:00:00 2001 From: Michael Bienia Date: Thu, 31 Dec 2009 13:16:32 +0100 Subject: [PATCH] * requestsync: Fix a bug that prevented sync requests for new packages with a version smaller than 0. --- debian/changelog | 9 +++++++-- requestsync | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index ebbc41f..2a47b92 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 submittodebian. - -- Steve Langasek 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 Thu, 31 Dec 2009 13:15:01 +0100 ubuntu-dev-tools (0.86) lucid; urgency=low diff --git a/requestsync b/requestsync index ceb9fcc..d2d4d65 100755 --- a/requestsync +++ b/requestsync @@ -120,7 +120,7 @@ if __name__ == '__main__': newsource = False # override the -n flag except udtexceptions.PackageNotFoundException: ubuntu_srcpkg = None - ubuntu_version = Version(0) + ubuntu_version = Version('0~0') ubuntu_component = 'universe' # let's assume universe if not newsource: print "'%s' doesn't exist in 'Ubuntu %s'.\nDo you want to sync a new package?" % \