summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Heinlein <sebi@sebi-laptop>2006-11-25 14:28:06 +0100
committerSebastian Heinlein <sebi@sebi-laptop>2006-11-25 14:28:06 +0100
commitba9158ba221f522239f9d4f63843fea3d55ff7ed (patch)
treec0ca7375b075d3219132655af8cf06429e894e19
parent327b4c420472def67d2b6f268bb461aca690f0b4 (diff)
downloadpython-apt-ba9158ba221f522239f9d4f63843fea3d55ff7ed.tar.gz
* make use of distutils-extra
-rw-r--r--debian/control2
-rw-r--r--setup.cfg4
-rwxr-xr-xsetup.py2
3 files changed, 7 insertions, 1 deletions
diff --git a/debian/control b/debian/control
index 6d1200d2..5eda3ff5 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: unknown
Priority: optional
XS-Python-Version: all
Maintainer: Sebastian Heinlein <glatzor@ubuntu.com>
-Build-Depends: cdbs, debhelper (>= 5.0.37.2), python-central (>= 0.5)
+Build-Depends: cdbs, debhelper (>= 5.0.37.2), python-central (>= 0.5), python-distutils-extra
Standards-Version: 3.7.2
Package: python-aptsources
diff --git a/setup.cfg b/setup.cfg
index a7b19c97..fc694b61 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1 +1,5 @@
[build]
+l10n=True
+merge-files=["build/templates", ["data/templates/Ubuntu.info.in",\
+ "data/templates/Debian.info.in"]
+
diff --git a/setup.py b/setup.py
index 44b30e9c..ec480ee0 100755
--- a/setup.py
+++ b/setup.py
@@ -12,4 +12,6 @@ setup(
glob.glob('build/templates/*.info'))],
license = 'GNU GPL',
platforms = 'posix',
+ cmdclass = { "build" : build_plus,
+ "build_l10n" : build_l10n }
)