summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-07-02 18:37:30 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2007-07-02 18:37:30 +0200
commite3791336f419ea14f3841814f37f4c8f00479588 (patch)
treed7a43b7447d8fe6e8dc31de977197ec873a13666
parentbe23d152022cb79b74f9d7c6a07567b4e53c57d2 (diff)
downloadpython-apt-e3791336f419ea14f3841814f37f4c8f00479588.tar.gz
* debian/control:
- updated for python-distutils-extra (>= 1.9.0) * debian/python-apt.install: - fix i18n files
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rw-r--r--debian/python-apt.install1
-rw-r--r--setup.cfg3
-rwxr-xr-xsetup.py6
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 <michael.vogt@ubuntu.com> 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 <deity@lists.debian.org>
Uploaders: Matt Zimmerman <mdz@debian.org>, Michael Vogt <mvo@debian.org>
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'
)