mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-07-27 14:51:29 +00:00
Switch to simple dh7 rule.
This commit is contained in:
parent
c1bdfe3f6d
commit
9de91675bc
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -13,6 +13,7 @@ ubuntu-dev-tools (0.101) UNRELEASED; urgency=low
|
|||||||
[ Benjamin Drung ]
|
[ Benjamin Drung ]
|
||||||
* Bump Standards-Version to 3.9.1 (no changes required).
|
* Bump Standards-Version to 3.9.1 (no changes required).
|
||||||
* Switch to dpkg-source 3.0 (native) format.
|
* Switch to dpkg-source 3.0 (native) format.
|
||||||
|
* Switch to simple dh7 rule.
|
||||||
* syncpackage:
|
* syncpackage:
|
||||||
- Use Version class from python-debian to fix extraction of upstream
|
- Use Version class from python-debian to fix extraction of upstream
|
||||||
version for debian versions that contain more than one dash.
|
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
|
* requestsync: Fix bug where the variable 'hasLP' is not always set
|
||||||
(lp: #607874).
|
(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
|
ubuntu-dev-tools (0.100) maverick; urgency=low
|
||||||
|
|
||||||
|
2
debian/compat
vendored
2
debian/compat
vendored
@ -1 +1 @@
|
|||||||
6
|
7
|
||||||
|
3
debian/control
vendored
3
debian/control
vendored
@ -4,8 +4,7 @@ Priority: optional
|
|||||||
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
||||||
Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk
|
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
|
Vcs-Browser: http://codebrowse.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk/changes
|
||||||
Build-Depends: cdbs (>= 0.4.49),
|
Build-Depends: debhelper (>= 7),
|
||||||
debhelper (>= 6),
|
|
||||||
python (>= 2.5)
|
python (>= 2.5)
|
||||||
Build-Depends-Indep: python-support (>= 0.5.3)
|
Build-Depends-Indep: python-support (>= 0.5.3)
|
||||||
XS-Python-Version: >= 2.5
|
XS-Python-Version: >= 2.5
|
||||||
|
8
debian/rules
vendored
8
debian/rules
vendored
@ -1,8 +1,4 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
DEB_PYTHON_SYSTEM := pysupport
|
%:
|
||||||
|
dh $@
|
||||||
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
|
|
||||||
|
2
setup.py
2
setup.py
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
import glob
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
@ -53,4 +54,5 @@ setup(name='ubuntu-dev-tools',
|
|||||||
'ubuntutools/lp',
|
'ubuntutools/lp',
|
||||||
'ubuntutools/requestsync',
|
'ubuntutools/requestsync',
|
||||||
],
|
],
|
||||||
|
data_files=[('share/man/man1', glob.glob("doc/*.1"))]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user