diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-10-17 16:05:09 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-10-17 16:05:09 +0200 |
| commit | 9f4b8cb3fbf1be70aa22811aad3880306b77058b (patch) | |
| tree | e3191792008d76729858aa485c325e870d83e555 /debian | |
| parent | 718409afe561f7dfc7407214685ccbfacdf31631 (diff) | |
| parent | 870bf6095484206655f58753a12430da4569645c (diff) | |
| download | python-apt-9f4b8cb3fbf1be70aa22811aad3880306b77058b.tar.gz | |
merged from lp:~mvo/python-apt/mvo
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 10 | ||||
| -rw-r--r-- | debian/control | 1 | ||||
| -rw-r--r-- | debian/tests/control | 2 | ||||
| -rw-r--r-- | debian/tests/run-tests | 8 |
4 files changed, 19 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 7a748e6f..8a7e3392 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,16 @@ -python-apt (0.8.8.1) UNRELEASED; urgency=low +python-apt (0.8.8.1~exp1) UNRELEASED; urgency=low + [ Michael Vogt ] * python/tag.cc: - make TagSecString_FromStringAndSize, TagSecString_FromString static, thanks to jcristau * python/cache.cc: - add "Codename" to PackageFile object + * add dep8 style autopkgtest support + + [ Jason Conti ] + * lp:~jconti/python-apt/closeable-cache: + - add apt.Cache.close() method -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Oct 2012 10:03:21 +0200 @@ -45,7 +51,7 @@ python-apt (0.8.8) unstable; urgency=low value rather than a random one. * lp:~jamesodhunt/python-apt/test-for-size_to_str: - add test for size_to_str() to help with finding LP: #1030278 - + -- Michael Vogt <mvo@debian.org> Fri, 12 Oct 2012 10:47:11 +0200 python-apt (0.8.7) unstable; urgency=low diff --git a/debian/control b/debian/control index 1619aacb..dd951ed2 100644 --- a/debian/control +++ b/debian/control @@ -21,6 +21,7 @@ Build-Depends: apt (>= 0.9.6), python-unittest2 Vcs-Bzr: http://bzr.debian.org/apt/python-apt/debian-sid Vcs-Browser: http://bzr.debian.org/loggerhead/apt/python-apt/debian-sid/changes +XS-Testsuite: autopkgtest Package: python-apt Architecture: any diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 00000000..2ca0a401 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,2 @@ +Tests: run-tests +Depends: @, apt-utils, python-debian, fakeroot, intltool diff --git a/debian/tests/run-tests b/debian/tests/run-tests new file mode 100644 index 00000000..bb980c6b --- /dev/null +++ b/debian/tests/run-tests @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +# from debian/rules +for python in $(utils/pyversions -r); do + $python tests/test_all.py -q +done |
