Updated debian packaging.

This commit is contained in:
Andrew Hunter 2008-02-15 13:09:34 -05:00
parent 3926737aab
commit 83415fb564
3 changed files with 20 additions and 2 deletions

10
debian/changelog vendored
View File

@ -12,7 +12,15 @@ ubuntu-dev-tools (0.26) UNRELEASED; urgency=low
(LP: #190351)
* Exit, if versions in Ubuntu and Debian are the same already.
-- Daniel Hahler <ubuntu@thequod.de> Sat, 09 Feb 2008 02:23:44 +0100
[ Andrew Hunter ]
* Use install files as we have multiple binaries now.
* ppaput:
* Separated ppaput script from backend python modules (shipped in
python-ppaput). (LP: #192184)
* Switched from homegrown option parseing to Optparse, much more
robust and less code duplication.
-- Andrew Hunter <rexbron@snow.u-want.com> Fri, 15 Feb 2008 13:08:12 -0500
ubuntu-dev-tools (0.25) hardy; urgency=low

11
debian/control vendored
View File

@ -13,7 +13,7 @@ Standards-Version: 3.7.3
Package: ubuntu-dev-tools
Architecture: all
Section: devel
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.25), reportbug (>= 3.39ubuntu1), python-debian, dctrl-tools, lsb-release
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.25), reportbug (>= 3.39ubuntu1), python-debian, dctrl-tools, lsb-release, python-ppaput
Recommends: bzr, pbuilder
Conflicts: devscripts (<< 2.10.7ubuntu5)
Replaces: devscripts (<< 2.10.7ubuntu5)
@ -22,3 +22,12 @@ Description: useful tools for Ubuntu developers
This is a collection of useful tools that Ubuntu developers use to
make their packaging work a lot easier. Such tools can include bug
filing, packaging preparation, package analysis, etc.
Package: python-ppaput
Architecture: all
Section: python
Depends: ${python:Depends}
XB-Python-Version: ${python:Versions}
Description: python module for uploading to PPAs.
python-ppaput is a python module that abstracts the process of creating and
uploading Debian source packages to Personal Package Archives.

View File

@ -33,4 +33,5 @@ setup(name='ubuntu-dev-tools',
'get-build-deps',
'dgetlp'
],
py_modules=['ppaput'],
)