| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2008-12-15 | Merged python-apt consolidation branch by Sebastian | Michael Vogt | 14 | -191/+1373 | |
| 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 * 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) * python/acquire.cc (GetPkgAcqFile): Support DestDir and DestFilename. | |||||
| 2008-12-15 | * setup.py: | Michael Vogt | 5 | -3/+40 | |
| - build html/ help of the apt and aptsources modules into /usr/share/doc/python-apt/html | |||||
| 2008-12-11 | - new method "getRequiredDownload()" | Michael Vogt | 2 | -0/+13 | |
| - new method "additionalRequiredSpace()" | |||||
| 2008-11-24 | gtk.events_pending() -> glib.main_context_default().pending() | Michael Vogt | 1 | -11/+10 | |
| 2008-11-24 | change naming for the gobjects to match glatzors branch | Michael Vogt | 2 | -18/+37 | |
| 2008-11-24 | merged from the consolidation-bracn (with some modificatins) | Michael Vogt | 12 | -189/+1286 | |
| 2008-11-24 | merge from the debian-sid branch | Michael Vogt | 2 | -4/+56 | |
| 2008-11-24 | merge from debian | Michael Vogt | 2 | -2/+16 | |
| 2008-11-24 | merge from the mvo branch | Michael Vogt | 23 | -69/+355 | |
| 2008-11-10 | fix changelog | Michael Vogt | 1 | -2/+0 | |
| 2008-11-10 | * python/metaindex.cc | Michael Vogt | 9 | -28/+158 | |
| - fix crash when incorrect attribute is given * 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) * python/acquire.cc (GetPkgAcqFile): Support DestDir and DestFilename. | |||||
| 2008-11-10 | add missing lpia | Michael Vogt | 1 | -0/+10 | |
| 2008-11-10 | fix missing base uris for *-security and powerpc | Michael Vogt | 1 | -4/+8 | |
| 2008-11-10 | * aptsources/distro.py: | Michael Vogt | 5 | -7/+115 | |
| - 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) | |||||
| 2008-11-07 | * Non-maintainer upload. | Michael Vogt | 3 | -16/+75 | |
| * data/templates/Debian.info.in: Set the BaseURI to security.debian.org for lenny/updates, etch/updates and sarge/updates. (Closes: #503237) * data/templates/Debian.info.in: - add 'lenny' template info (closes: #476364) * aptsources/distinfo.py: - fix template matching for arch specific code (LP: #244093) | |||||
| 2008-11-07 | python/acquire.cc (GetPkgAcqFile): Support DestDir and DestFilename. | Michael Vogt | 5 | -17/+15 | |
| 2008-11-03 | debian/changelog: make clear that the update is specifically for jaunty | Michael Vogt | 1 | -1/+1 | |
| 2008-11-03 | * python/apt_pkgmodule.cc: | Michael Vogt | 4 | -0/+75 | |
| - add "SelState{Unknown,Install,Hold,DeInstall,Purge}" constants * python/metaindex.cc - fix crash when incorrect attribute is given * data/templates/Ubuntu.info.in: - updated | |||||
| 2008-11-03 | * data/templates/Ubuntu.info.in: | Michael Vogt | 2 | -0/+57 | |
| - updated | |||||
| 2008-10-22 | * python/metaindex.cc | Michael Vogt | 2 | -0/+5 | |
| - fix crash when incorrect attribute is given | |||||
| 2008-09-18 | fix typo | Michael Vogt | 1 | -1/+1 | |
| 2008-09-18 | * apt/package.py: | Michael Vogt | 2 | -1/+4 | |
| - do not return None in sourcePackageName (LP: #123062) | |||||
| 2008-09-18 | * apt/package.py: | Michael Vogt | 2 | -2/+5 | |
| - do not return None in sourcePackageName (LP: #123062) - add "SelState{Unknown,Install,Hold,DeInstall,Purge}" constants | |||||
| 2008-09-18 | add "SelState{Unknown,Install,Hold,DeInstall,Purge}" constant | Michael Vogt | 2 | -1/+7 | |
| 2008-09-18 | * python/progress.cc: | Michael Vogt | 8 | -27/+71 | |
| - when pulse() does not return a boolean assume "true" (thanks to Martin Pitt for telling me about the problem) * aptsources/__init__.py, aptsources/distinfo.py: - run apt_pkg.init() when aptsources gets imported and not the distinfo function - fix detection of cdrom sources and add test for it | |||||
| 2008-09-18 | * python/apt_pkgmodule.cc: | Michael Vogt | 4 | -0/+22 | |
| add "SelState{Unknown,Install,Hold,DeInstall,Purge}" constants - fix detection of cdrom sources and add test for it | |||||
| 2008-09-18 | * tests/test_aptsources.py: | Michael Vogt | 2 | -23/+31 | |
| - make the test work again | |||||
| 2008-09-01 | releasing version 0.7.7.1ubuntu3 | Colin Watson | 1 | -2/+2 | |
| 2008-09-01 | Rebuild against current apt on hppa. | Colin Watson | 1 | -0/+6 | |
| 2008-08-30 | Remove logging statement. (Was c&p error from PackageKit) | Sebastian Heinlein | 1 | -2/+1 | |
| 2008-08-30 | Reformat the package description according to the Debian Policy | Sebastian Heinlein | 1 | -12/+28 | |
| 2008-08-29 | Push train work | Sebastian Heinlein | 3 | -10/+10 | |
| 2008-08-29 | debfile: fix a silly error that made me some headache and returned the ↵ | Sebastian Heinlein | 1 | -1/+1 | |
| depends in getConflicts() | |||||
| 2008-08-29 | Remove not used imports in debfile | Sebastian Heinlein | 1 | -3/+2 | |
| 2008-08-28 | Fix: not installed files can have installed files | Sebastian Heinlein | 1 | -2/+0 | |
| 2008-08-27 | For empt | Sebastian Heinlein | 1 | -4/+7 | |
| 2008-08-26 | Merge with the gtk branch: This brings gobject based progresses and a GTK ↵ | Sebastian Heinlein | 1 | -0/+372 | |
| widget that provides progressbar, status and terminal. | |||||
| 2008-08-26 | Merge with consolidate branch | Sebastian Heinlein | 8 | -512/+512 | |
| 2008-08-26 | Rename gtk to widgets. Replace the GDebi progresses by gobject based ones ↵ | Sebastian Heinlein | 2 | -125/+372 | |
| and add GtkAptProgress as a general progress providing widget. | |||||
| 2008-08-25 | Merge with mvo | Sebastian Heinlein | 5 | -4/+15 | |
| 2008-08-24 | Merge local changes from today's train ride. | Sebastian Heinlein | 2 | -21/+19 | |
| 2008-08-24 | Import gtk progresses from gdebi | Sebastian Heinlein | 1 | -0/+125 | |
| 2008-08-24 | Fix use of previously changed constants in checkDeb | Sebastian Heinlein | 1 | -1/+1 | |
| 2008-08-24 | Make version compare constants available globally and rename them for more ↵ | Sebastian Heinlein | 1 | -10/+11 | |
| consistency. | |||||
| 2008-08-24 | Revert the os._exit call in the child of the progress | Sebastian Heinlein | 1 | -2/+2 | |
| 2008-08-24 | Minor fixes: Call InstallProgress.startUpdate() and ↵ | Sebastian Heinlein | 1 | -8/+5 | |
| InstallProgress.finishUpdate() for dpkg installations. Remove broken warnings about obsolete methods. Fix parameters of DebPackage.requiredChanges | |||||
| 2008-08-23 | DebPackage: turn get(Provides|Replaces|Depends|Conflicts)() into attributes | Sebastian Heinlein | 1 | -1/+57 | |
| 2008-08-23 | Merge the Debfile class from dpkg into the one from the debfile package. | Sebastian Heinlein | 2 | -506/+441 | |
| 2008-08-23 | * aptsources/__init__.py, aptsources/distinfo.py: | Michael Vogt | 2 | -0/+7 | |
| - run apt_pkg.init() when aptsources gets imported and not the distinfo function | |||||
| 2008-08-23 | do not run apt_pkg.init() in the middle of a function, that *destroys* all ↵ | Michael Vogt | 1 | -1/+0 | |
| custom config data | |||||
