From 83415fb564fe3291ad38b32354b691c1abc4a1ac Mon Sep 17 00:00:00 2001 From: Andrew Hunter Date: Fri, 15 Feb 2008 13:09:34 -0500 Subject: [PATCH] Updated debian packaging. --- debian/changelog | 10 +++++++++- debian/control | 11 ++++++++++- setup.py | 1 + 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index e358834..9020568 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 Fri, 15 Feb 2008 13:08:12 -0500 ubuntu-dev-tools (0.25) hardy; urgency=low diff --git a/debian/control b/debian/control index 5e18b06..64d904a 100644 --- a/debian/control +++ b/debian/control @@ -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. diff --git a/setup.py b/setup.py index ecd01a3..b42befe 100755 --- a/setup.py +++ b/setup.py @@ -33,4 +33,5 @@ setup(name='ubuntu-dev-tools', 'get-build-deps', 'dgetlp' ], + py_modules=['ppaput'], )