diff options
| author | Michael Vogt <mvo@debian.org> | 2008-12-15 14:42:01 +0100 |
|---|---|---|
| committer | Michael Vogt <mvo@debian.org> | 2008-12-15 14:42:01 +0100 |
| commit | 12cf58d12b969010f3d98b2974d72bbb950b775f (patch) | |
| tree | dc7f0af010aefa0b76a256f594d6dc4ae3163aaa /debian | |
| parent | be8fa1ee4581faeadfb6d067301ee9e7761dc1c7 (diff) | |
| parent | 481a90a820564dc12567348c16773e15cc129560 (diff) | |
| download | python-apt-12cf58d12b969010f3d98b2974d72bbb950b775f.tar.gz | |
merge mvo branch, upload to experimental
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 33 | ||||
| -rw-r--r-- | debian/control | 2 | ||||
| -rw-r--r-- | debian/python-apt.docs | 1 | ||||
| -rwxr-xr-x | debian/rules | 3 |
4 files changed, 38 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index f51cb07a..a80a9b64 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,36 @@ +python-apt (0.7.9~exp1) experimental; 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 <mvo@debian.org> Mon, 15 Dec 2008 14:29:47 +0100 + python-apt (0.7.8) unstable; urgency=low [ Michael Vogt ] diff --git a/debian/control b/debian/control index 1303dc6c..b738231f 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,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; \ |
