Switch to simple dh7 rule.

This commit is contained in:
Benjamin Drung 2010-08-02 20:41:09 +02:00
parent c1bdfe3f6d
commit 9de91675bc
5 changed files with 8 additions and 10 deletions

3
debian/changelog vendored
View File

@ -13,6 +13,7 @@ ubuntu-dev-tools (0.101) UNRELEASED; urgency=low
[ Benjamin Drung ]
* Bump Standards-Version to 3.9.1 (no changes required).
* Switch to dpkg-source 3.0 (native) format.
* Switch to simple dh7 rule.
* syncpackage:
- Use Version class from python-debian to fix extraction of upstream
version for debian versions that contain more than one dash.
@ -30,7 +31,7 @@ ubuntu-dev-tools (0.101) UNRELEASED; urgency=low
* requestsync: Fix bug where the variable 'hasLP' is not always set
(lp: #607874).
-- Benjamin Drung <bdrung@ubuntu.com> Mon, 02 Aug 2010 20:26:17 +0200
-- Benjamin Drung <bdrung@ubuntu.com> Mon, 02 Aug 2010 20:40:21 +0200
ubuntu-dev-tools (0.100) maverick; urgency=low

2
debian/compat vendored
View File

@ -1 +1 @@
6
7

3
debian/control vendored
View File

@ -4,8 +4,7 @@ Priority: optional
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk
Vcs-Browser: http://codebrowse.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk/changes
Build-Depends: cdbs (>= 0.4.49),
debhelper (>= 6),
Build-Depends: debhelper (>= 7),
python (>= 2.5)
Build-Depends-Indep: python-support (>= 0.5.3)
XS-Python-Version: >= 2.5

8
debian/rules vendored
View File

@ -1,8 +1,4 @@
#!/usr/bin/make -f
DEB_PYTHON_SYSTEM := pysupport
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
%:
dh $@

View File

@ -1,6 +1,7 @@
#!/usr/bin/python
from distutils.core import setup
import glob
import os
import re
@ -53,4 +54,5 @@ setup(name='ubuntu-dev-tools',
'ubuntutools/lp',
'ubuntutools/requestsync',
],
data_files=[('share/man/man1', glob.glob("doc/*.1"))]
)