summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules3
3 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index b2f2b965..e344c145 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-apt (0.7.91) UNRELEASED; urgency=low
+
+ * Rename all methods,functions,attributes to conform to PEP 8 (Closes: #481061)
+
+ -- Julian Andres Klode <jak@debian.org> Thu, 16 Apr 2009 18:54:29 +0200
+
python-apt (0.7.90) experimental; urgency=low
* Introduce support for Python 3 (Closes: #523645)
diff --git a/debian/control b/debian/control
index 08ee329f..374a177c 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: APT Development Team <deity@lists.debian.org>
Uploaders: Michael Vogt <mvo@debian.org>, Julian Andres Klode <jak@debian.org>
Standards-Version: 3.8.1
-XS-Python-Version: all
+XS-Python-Version: >= 2.5
Build-Depends: apt-utils,
cdbs,
debhelper (>= 5.0.37.1),
diff --git a/debian/rules b/debian/rules
index 9d0219e2..5fc6e13b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,6 +16,9 @@ PKG=python-apt
DEBVER=$(shell dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p')
DEB_COMPRESS_EXCLUDE:=.html .js _static/* _sources/* _sources/*/* .inv
DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS)
+
+# Define COMPAT_0_7 to get all the deprecated interfaces.
+export CFLAGS+=-DCOMPAT_0_7
export DEBVER