From 82a29e4a88f55bbd606f03772a18fa08958d58d5 Mon Sep 17 00:00:00 2001 From: Siegfried-Angel Gevatter Pujals Date: Sat, 9 Aug 2008 14:12:06 +0200 Subject: [PATCH] Get ready for version 0.35. --- debian/changelog | 8 +++++++- debian/control | 2 +- debian/rules | 3 --- setup.py | 31 ++++++++++++++++--------------- 4 files changed, 24 insertions(+), 20 deletions(-) diff --git a/debian/changelog b/debian/changelog index f1bce31..fe0b044 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,12 @@ ubuntu-dev-tools (0.35) intrepid; urgency=low else (LP: #254632). * massfile, examples/massfile.instructions: - Make it possible to give the created bugs a determined status. + * debian/control: + - Bump Standards Version to 3.8.0. + * debian/rules: + - It's not necessary anymore to remove usr/lib. + * setup.py: + - Order the scripts list alphabetically and add pull-lp-source. [ Iain Lane ] * Add pull-lp-source, which get source packages from LP to avoid mirror lag. @@ -18,7 +24,7 @@ ubuntu-dev-tools (0.35) intrepid; urgency=low - Modify it to work with Firefox 3 cookies, taking code from requestsync. - Set the status to Confirmed, by default. - -- Iain Lane Mon, 04 Aug 2008 18:29:46 +0100 + -- Siegfried-Angel Gevatter Pujals Sat, 09 Aug 2008 13:58:23 +0200 ubuntu-dev-tools (0.34) intrepid; urgency=low diff --git a/debian/control b/debian/control index e770beb..4e351fb 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5), python-all-dev (>= 2.4) Build-Depends-Indep: python-central (>= 0.5) XS-Python-Version: all Homepage: https://launchpad.net/ubuntu-dev-tools/ -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Package: ubuntu-dev-tools Architecture: all diff --git a/debian/rules b/debian/rules index 6a071b0..c10c010 100755 --- a/debian/rules +++ b/debian/rules @@ -6,6 +6,3 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk DEB_INSTALL_MANPAGES_ubuntu-dev-tools = doc/*.1 - -binary-install/ubuntu-dev-tools:: - rm -rf debian/ubuntu-dev-tools/usr/lib diff --git a/setup.py b/setup.py index 7b18fdb..2783b87 100755 --- a/setup.py +++ b/setup.py @@ -15,25 +15,26 @@ if os.path.exists(changelog): setup(name='ubuntu-dev-tools', version=version, - scripts=['404main', - 'check-symbols', - 'get-branches', - 'pbuilder-dist', - 'pbuilder-dist-simple', - 'update-maintainer', + scripts=['404main', + 'check-symbols', 'dch-repeat', - 'mk-sbuild-lv', - 'pull-debian-debdiff', - 'what-patch', - 'suspicious-source', - 'requestsync', + 'dgetlp', + 'get-branches', + 'get-build-deps', + 'grab-attachments', 'hugdaylist', 'massfile', - 'submittodebian', - 'get-build-deps', - 'dgetlp', + 'mk-sbuild-lv', + 'pbuilder-dist', + 'pbuilder-dist-simple', + 'pull-debian-debdiff', + 'pull-lp-source', + 'requestsync', 'reverse-build-depends', - 'grab-attachments', + 'submittodebian', + 'suspicious-source', + 'update-maintainer', + 'what-patch', ], packages=['ubuntutools'], )