diff options
| author | Julian Andres Klode <jak@debian.org> | 2011-04-05 11:23:09 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2011-04-05 11:23:09 +0200 |
| commit | 21c9ebb9717ed7b157c697a57d1b6ce3225eb9d6 (patch) | |
| tree | 7367caddb455b63273644ba2bd93b9b8b09b5044 | |
| parent | 9dd02cdd42eccb8c4e52f08c334df22a31c8d256 (diff) | |
| download | python-apt-21c9ebb9717ed7b157c697a57d1b6ce3225eb9d6.tar.gz | |
Disable the old-style API, and break all packages using it
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | debian/control | 30 | ||||
| -rwxr-xr-x | debian/rules | 3 |
3 files changed, 37 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 9f2cefaa..5dd9d69e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-apt (0.8.0~exp1) UNRELEASED; urgency=low + + * Disable the old-style API, and break all packages using it + + -- Julian Andres Klode <jak@debian.org> Tue, 05 Apr 2011 10:33:54 +0200 + python-apt (0.7.100.3) unstable; urgency=low [ Barry Warsaw ] diff --git a/debian/control b/debian/control index 9985a685..0997ab3a 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,35 @@ Package: python-apt Architecture: any Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-apt-common Recommends: lsb-release, iso-codes, python2.6 -Breaks: debdelta (<< 0.28~), packagekit-backend-apt (<= 0.4.8-0ubuntu4) +Breaks: packagekit-backend-apt (<= 0.4.8-0ubuntu4), + computer-janitor (<< 1.14.1-1+), + debdelta (<< 0.41+), + python-dogtail (<< 0.6.1-3.1+), + python-debian (<< 0.1.18+), + python-software-properties (<< 0.70.debian-1+), + aptdaemon (<< 0.11+bzr343-1~), + apt-forktracer (<< 0.3), + apt-listchanges (<< 2.85), + aptoncd (<< 0.1.98+bzr117), + apt-p2p (<< 0.1.6), + apt-xapian-index (<< 0.25), + bcfg2 (<< 1.0.1), + bzr-builddeb (<< 2.4), + debpartial-mirror (<< 0.2.98), + debsecan (<< 0.4.14), + gdebi (<< 0.6.1), + germinate (<< 1.21), + gnome-codec-install (<< 0.4.5), + mini-dinstall (<< 0.6.28), + python-cdd (<< 0.0.10), + rebuildd (<< 0.3.9), + software-center (<< 1.1.21debian2), + tla-buildpackage (<< 0.9.14), + ubuntu-dev-tools (<< 0.93debian1), + unattended-upgrades (<< 0.42debian2), + update-manager (<< 0.200.2-1), + update-notifier (<< 0.99.3debian1), + wajig (<< 2.0.46) Provides: ${python:Provides} Suggests: python-apt-dbg, python-gtk2, python-vte, python-apt-doc XB-Python-Version: ${python:Versions} diff --git a/debian/rules b/debian/rules index 5428375d..0b60bf9f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,8 @@ #!/usr/bin/make -f # Should be include-links, but that somehow fails. export DEBVER=$(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') -export CFLAGS=-Wno-write-strings -DCOMPAT_0_7 +# For compatibility, add -DCOMPAT_0_7 +export CFLAGS=-Wno-write-strings export PATH :=$(CURDIR)/utils:$(PATH) export SHELL = env PATH=$(PATH) sh |
