summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog50
-rw-r--r--debian/control2
-rw-r--r--debian/python-apt.docs1
-rwxr-xr-xdebian/rules3
4 files changed, 55 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 77bab380..743255a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,36 @@
+python-apt (0.7.8ubuntu1) jaunty; urgency=low
+
+ Merged python-apt consolidation branch by Sebastian
+ Heinlein (many thanks):
+ * apt/cache.py:
+ - new method "isVirtualPackage()"
+ - new method "getProvidingPackages()"
+ - new method "getRequiredDownload()"
+ - new method "additionalRequiredSpace()"
+ * apt/debfile.py:
+ - move a lot of the gdebi code into this file, this
+ provides interfaces for querrying and installing
+ .deb files and .dsc files
+ * apt/package.py:
+ - better description parsing
+ - new method "installedFiles()"
+ - new method "getChangelog()"
+ * apt/gtk/widgets.py:
+ - new gobject GOpProgress
+ - new gobject GFetchProgress
+ - new gobject GInstallProgress
+ - new gobject GDpkgInstallProgress
+ - new widget GtkAptProgress
+ * doc/examples/gui-inst.py:
+ - updated to use the new widgets
+ * debian/control:
+ - add suggests for python-gtk2 and python-vte
+ * setup.py:
+ - build html/ help of the apt and aptsources modules
+ into /usr/share/doc/python-apt/html
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 24 Nov 2008 14:30:32 +0100
+
python-apt (0.7.8) unstable; urgency=low
[ Michael Vogt ]
@@ -36,6 +69,23 @@ python-apt (0.7.8) unstable; urgency=low
-- Michael Vogt <mvo@debian.org> Mon, 24 Nov 2008 10:24:30 +0200
+python-apt (0.7.8~ubuntu2) jaunty; urgency=low
+
+ [ Michael Vogt ]
+ * data/templates/Ubuntu.info.in:
+ - updated to fix ports.ubuntu.com for powerpc and lpia
+ (LP: #220890)
+ * aptsources/distro.py:
+ - add parameter to get_distro() to make unit testing easier
+ * tests/test_aptsources_ports.py:
+ - add test for arch specific handling (when sub arch is on
+ a different mirror than "main" arches)
+
+ [ Julian Andres Klode ]
+ * python/acquire.cc (GetPkgAcqFile): Support DestDir and DestFilename.
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 10 Nov 2008 11:35:03 +0100
+
python-apt (0.7.8~ubuntu1) jaunty; urgency=low
* python/apt_pkgmodule.cc:
diff --git a/debian/control b/debian/control
index a8109c8d..a9156b7b 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Priority: optional
Replaces: python2.3-apt (<< 0.6.18), python2.4-apt (<< 0.6.18)
Conflicts: python2.3-apt (<< 0.6.18), python2.4-apt (<< 0.6.18)
Provides: ${python:Provides}
-Suggests: python-apt-dbg
+Suggests: python-apt-dbg, python-gtk2, python-vte
XB-Python-Version: ${python:Versions}
Description: Python interface to libapt-pkg
The apt_pkg Python interface will provide full access to the internal
diff --git a/debian/python-apt.docs b/debian/python-apt.docs
index 208050c5..f3c87fdc 100644
--- a/debian/python-apt.docs
+++ b/debian/python-apt.docs
@@ -1,3 +1,4 @@
README
apt/README.apt
data/templates/README.templates
+html/
diff --git a/debian/rules b/debian/rules
index c8aff2f9..adaad2a8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,6 +21,9 @@ build/python-apt-dbg::
python$$i-dbg ./setup.py build; \
done
+build/python-apt::
+ pydoc -w
+
install/python-apt-dbg::
for i in $(cdbs_python_build_versions); do \
python$$i-dbg ./setup.py install --root $(CURDIR)/debian/python-apt-dbg; \