From e3791336f419ea14f3841814f37f4c8f00479588 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 2 Jul 2007 18:37:30 +0200 Subject: * debian/control: - updated for python-distutils-extra (>= 1.9.0) * debian/python-apt.install: - fix i18n files --- debian/changelog | 6 +++++- debian/control | 2 +- debian/python-apt.install | 1 + setup.cfg | 3 --- setup.py | 6 +++--- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index de2039c1..5052d867 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,8 +13,12 @@ python-apt (0.7.3) unstable; urgency=low - generalized some code, bringing it into the Distribution class, and wrote some missing methods for the DebianDistribution one (thanks to Gustavo Noronha Silva) + * debian/control: + - updated for python-distutils-extra (>= 1.9.0) + * debian/python-apt.install: + - fix i18n files - -- + -- Michael Vogt Mon, 02 Jul 2007 18:33:36 +0200 python-apt (0.7.2) unstable; urgency=low diff --git a/debian/control b/debian/control index d8c080d7..1f583e2f 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: APT Development Team Uploaders: Matt Zimmerman , Michael Vogt Standards-Version: 3.7.2.2 XS-Python-Version: all -Build-Depends: debhelper (>= 5.0.37.1), libapt-pkg-dev (>= 0.7.0), apt-utils, python-all-dev, python-distutils-extra, cdbs, python-central (>= 0.5), python-all-dbg +Build-Depends: debhelper (>= 5.0.37.1), libapt-pkg-dev (>= 0.7.0), apt-utils, python-all-dev, python-distutils-extra (>= 1.9.0), cdbs, python-central (>= 0.5), python-all-dbg XS-Vcs-Bzr: http://people.debian.org/~mvo/bzr/python-apt/debian-sid Package: python-apt diff --git a/debian/python-apt.install b/debian/python-apt.install index 3e08ba50..4910e8ed 100644 --- a/debian/python-apt.install +++ b/debian/python-apt.install @@ -1,2 +1,3 @@ debian/tmp/usr/lib/python* +debian/tmp/usr/share/locale debian/tmp/usr/share/python-apt diff --git a/setup.cfg b/setup.cfg index 718b6e23..c0c0440e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,3 @@ -[build] -l10n=True - [build_l10n] domain=python-apt diff --git a/setup.py b/setup.py index 99bc62c6..b8819b31 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup, Extension from distutils.sysconfig import parse_makefile -from DistUtilsExtra.distutils_extra import build_extra, build_l10n +from DistUtilsExtra.command import * import glob, os, string # The apt_pkg module @@ -40,8 +40,8 @@ setup(name="python-apt", glob.glob('build/data/templates/*.info')), ('share/python-apt/templates', glob.glob('data/templates/*.mirrors'))], - cmdclass = { "build" : build_extra, - "build_l10n" : build_l10n }, + cmdclass = { "build" : build_extra.build_extra, + "build_i18n" : build_i18n.build_i18n }, license = 'GNU GPL', platforms = 'posix' ) -- cgit v1.2.3