summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-06-29 16:10:40 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2012-06-29 16:10:40 +0200
commit794e9321c92aab78c3b7123d765967ba67b79851 (patch)
tree9886905374b0ae9bc0043f12be0797c6f8f0af35 /debian
parent43aee9eda68e374067d6d6a9c4dd3c3e9b986041 (diff)
parent6ec2e17ae6712655c1bacffa8c6ecde5f8810960 (diff)
downloadpython-apt-794e9321c92aab78c3b7123d765967ba67b79851.tar.gz
merged from debian-sid
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog75
-rw-r--r--debian/control8
2 files changed, 77 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index 73423dd6..4cb74abc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,28 @@
-python-apt (0.8.5) UNRELEASED; urgency=low
+python-apt (0.8.6) unstable; urgency=low
+
+ [ Michael Vogt ]
+ * debian/control:
+ - add build-dep for apt (>= 0.9.6) to make test_auth.py test
+ work reliable
+
+ [ Julian Andres Klode ]
+ * apt/auth.py:
+ - Use tempfile.NamedTemporaryFile to create temporary file
+ - Use Popen.communicate() instead of stdin, stdout
+ * tests/fakeroot-apt-key:
+ - exec apt-key, otherwise we ignore the return value
+ * debian/control:
+ - Build-depend on fakeroot, needed for the apt.auth tests
+ * data/templates/Debian.info.in:
+ - Add wheezy
+ - Add wheezy-updates as Recommended Updates
+ - Order wheezy-proposed-updates after wheezy/updates and wheezy-updates
+ * po:
+ - Fixup the translations for wheezy again
+
+ -- Michael Vogt <mvo@debian.org> Fri, 29 Jun 2012 15:57:20 +0200
+
+python-apt (0.8.5) unstable; urgency=low
[ Michael Vogt ]
* python/cache.cc:
@@ -8,7 +32,7 @@ python-apt (0.8.5) UNRELEASED; urgency=low
[ Stéphane Graber ]
* data/templates/Ubuntu.info.in:
- add quantal
-
+
[ Steve Langasek ]
* utils/get_ubuntu_mirrors_from_lp.py: move this script to python3
* pre-build.sh: call dpkg-checkbuilddeps with the list of our
@@ -20,7 +44,52 @@ python-apt (0.8.5) UNRELEASED; urgency=low
- this is a port of the software-properties AptAuth module to python-apt
with some cleanups. It provides a wrapper API for the apt-key command
- -- Michael Vogt <mvo@debian.org> Tue, 17 Apr 2012 14:09:24 +0200
+ [ David Prévot ]
+ * po/*.po: update PO files against current POT file
+ * po/be.po: Belarusian translation by Viktar Siarheichyk (closes: #678286)
+ * po/de.po: German translation updated by Holger Wansing (closes: #677916)
+ * po/el.po: Greek translation updated by Thomas Vasileiou (closes: #677331)
+ * po/en_GB.po: Remove useless file <20120610190618.GA1387@burratino>
+ * po/eo.po: Esperanto translation by Kristjan Schmidt and Michael Moroni
+ * po/fi.po: Finnish translation updated by Timo Jyrinki
+ * po/fr.po: French translation updated (closes: #567765)
+ * po/hu.po: Hungarian translation updated by Gabor Kelemen
+ * po/id.po: Indonesian translation by Andika Triwidada (closes: #676960)
+ * po/nl.po: Dutch translation updated by Jeroen Schot (closes: #652335)
+ * po/pt_BR.po: Brazilian translation updated by Sérgio Cipolla
+ * po/ru.po: incomplete Russian translation updated by Andrey
+ * po/sk.po: Slovak translation updated by Ivan Masár (closes: #676973)
+ * po/sl.po: Slovenian translation updated by Matej Urbančič
+ * po/sr.po: incomplete Serbian translation updated by Nikola Nenadic
+ * po/tl.po: Tagalog translation updated by Ariel S. Betan
+ * po/am.po po/br.po po/et.po po/eu.po po/fa.po po/fur.po po/hi.po
+ po/mr.po po/ms.po po/nn.po po/pa.po po/ps.po po/qu.po po/rw.po po/ta.po
+ po/ur.po po/xh.po: remove useless (empty) translations
+
+ [ Julian Andres Klode ]
+ * Merge patch from Colin Watson to handle non-UTF8 tag files in
+ Python 3, by using bytes instead of str when requested; and
+ document this in the RST documentation (Closes: #656288)
+ * debian/control:
+ - Drop Recommends on python2.6 (Closes: #645970)
+ - Replace xz-lzma Recommends by xz-utils (Closes: #677934)
+ * python/configuration.cc:
+ - Handle the use of "del" on configuration values. Those are represented
+ by calling the setter with NULL, which we did not handle before, causing
+ a segmentation fault (Closes: #661062)
+ * python/tag.cc:
+ - Correctly handle file descriptor 0 aka stdin (Closes: #669458)
+ * python/acquire.cc:
+ - Use pkgAcquire::Setup() to setup the acquire class and handle errors
+ from this (Closes: #629624)
+ * debian/control:
+ - Set Standards-Version to 3.9.3
+ * utils/get_ubuntu_mirrors_from_lp.py:
+ - Revert move to Python 3, python3-feedparser is not in the archive yet
+ * tests:
+ - Fix new tests from Sebastian to work with Python 2.6
+
+ -- Julian Andres Klode <jak@debian.org> Fri, 22 Jun 2012 10:37:23 +0200
python-apt (0.8.4) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 29392858..ca32cb3b 100644
--- a/debian/control
+++ b/debian/control
@@ -3,11 +3,13 @@ Section: python
Priority: standard
Maintainer: APT Development Team <deity@lists.debian.org>
Uploaders: Michael Vogt <mvo@debian.org>, Julian Andres Klode <jak@debian.org>
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
XS-Python-Version: >= 2.6
X-Python3-Version: >= 3.1
-Build-Depends: apt-utils,
+Build-Depends: apt (>= 0.9.6),
+ apt-utils,
debhelper (>= 7.3.5),
+ fakeroot,
libapt-pkg-dev (>= 0.8.11),
python-all-dev (>= 2.6.6-3~),
python-all-dbg,
@@ -22,7 +24,7 @@ Vcs-Browser: http://bzr.debian.org/loggerhead/apt/python-apt/debian-sid/changes
Package: python-apt
Architecture: any
Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-apt-common
-Recommends: lsb-release, iso-codes, python2.6, xz-lzma
+Recommends: lsb-release, iso-codes, xz-utils
Breaks: packagekit-backend-apt (<= 0.4.8-0ubuntu4),
computer-janitor (<< 1.14.1-1+),
debdelta (<< 0.41+),