Get ready for version 0.35.

This commit is contained in:
Siegfried-Angel Gevatter Pujals 2008-08-09 14:12:06 +02:00
parent fcb0d7166a
commit 82a29e4a88
4 changed files with 24 additions and 20 deletions

8
debian/changelog vendored
View File

@ -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 <iain@orangesquash.org.uk> Mon, 04 Aug 2008 18:29:46 +0100
-- Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> Sat, 09 Aug 2008 13:58:23 +0200
ubuntu-dev-tools (0.34) intrepid; urgency=low

2
debian/control vendored
View File

@ -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

3
debian/rules vendored
View File

@ -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

View File

@ -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'],
)