mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
* Switch to python-support to ease initial import into Debian:
- debian/control: build-depend on python-support instead of pycentral, also remove unneeded XB-Python-Version field from binary stanza. - debian/rules: set DEB_PYTHON_SYSTEM to pysupport. - ubuntu-dev-tools.preinst: remove stale pycentral files on upgrades.
This commit is contained in:
parent
d9dd366665
commit
ee3ad27b78
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -32,8 +32,14 @@ ubuntu-dev-tools (0.76) UNRELEASED; urgency=low
|
||||
directory, pass it to pbuilder as --aptconfdir. Thanks to Paul Novotny
|
||||
and Ryan Pavlik (LP: #363043).
|
||||
|
||||
[ Luca Falavigna ]
|
||||
* Switch to python-support to ease initial import into Debian:
|
||||
- debian/control: build-depend on python-support instead of pycentral,
|
||||
also remove unneeded XB-Python-Version field from binary stanza.
|
||||
- debian/rules: set DEB_PYTHON_SYSTEM to pysupport.
|
||||
- ubuntu-dev-tools.preinst: remove stale pycentral files on upgrades.
|
||||
|
||||
-- Iain Lane <laney@ubuntu.com> Mon, 17 Aug 2009 12:00:33 +0100
|
||||
-- Luca Falavigna <dktrkranz@ubuntu.com> Fri, 21 Aug 2009 17:30:05 +0200
|
||||
|
||||
ubuntu-dev-tools (0.75) karmic; urgency=low
|
||||
|
||||
|
3
debian/control
vendored
3
debian/control
vendored
@ -5,7 +5,7 @@ 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), python-all-dev (>= 2.5)
|
||||
Build-Depends-Indep: python-central (>= 0.5)
|
||||
Build-Depends-Indep: python-support (>= 0.5.3)
|
||||
XS-Python-Version: >= 2.5
|
||||
Homepage: https://launchpad.net/ubuntu-dev-tools/
|
||||
Standards-Version: 3.8.0
|
||||
@ -19,7 +19,6 @@ Recommends: bzr, pbuilder | cowdancer | sbuild, reportbug (>= 3.39ubuntu1),
|
||||
ca-certificates, debootstrap, genisoimage, perl-modules, libwww-perl
|
||||
Conflicts: devscripts (<< 2.10.7ubuntu5)
|
||||
Replaces: devscripts (<< 2.10.7ubuntu5)
|
||||
XB-Python-Version: ${python:Versions}
|
||||
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.
|
||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
DEB_PYTHON_SYSTEM := pycentral
|
||||
DEB_PYTHON_SYSTEM := pysupport
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||
|
9
debian/ubuntu-dev-tools.preinst
vendored
9
debian/ubuntu-dev-tools.preinst
vendored
@ -16,5 +16,14 @@ if [ -e /etc/bash_completion.d/pbuilder-dist/pbuilder-dist ]; then
|
||||
mv -fv "$tmp_file" /etc/bash_completion.d/pbuilder-dist
|
||||
fi
|
||||
|
||||
# Remove stale pycentral files on upgrades.
|
||||
# This can be removed after the next LTS (likely 10.04) is released.
|
||||
if [ "$1" = upgrade ]
|
||||
then
|
||||
if dpkg --compare-versions "$2" lt "0.76" ; then
|
||||
pycentral pkgremove ubuntu-dev-tools
|
||||
fi
|
||||
fi
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user