summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-09-28do use PyString_FromFormat(), in python versions below 2.7 itMichael Vogt2-8/+16
does not support long long (%llu), use strprintf() from libapt instead
2010-09-28python/acquire-item.cc: strprintf() to have a working %lluMichael Vogt1-8/+13
2010-09-24* merge fix from Steven Chamberlain <steven@pyro.eu.org> forMichael Vogt2-3/+8
crash in unattended-upgrades, many many thanks (closes: #596408) * python/acquire-item.cc: - fix two more int -> long long change to follow the changes from libapt
2010-09-24* python/acquire-item.cc:Michael Vogt2-2/+5
- fix two more int -> long long change to follow the changes from libapt
2010-09-24merge fix from Steven Chamberlain <steven@pyro.eu.org> forMichael Vogt2-1/+3
crash in unattended-upgrades, many many thanks (closes: #596408)
2010-09-20merged from lp:~mvo/python-apt/mvoMichael Vogt8-7/+45
2010-09-20fix return type of DebSize() and UsrSize(), thanks toMichael Vogt2-2/+4
Sebastian Heinlein, LP: #642936
2010-09-13data/templates/Ubuntu.info.in: add MatchURIMichael Vogt1-0/+2
2010-09-13data/templates/Ubuntu.info.in: updated based on the feedback from mpt (thanks)Michael Vogt1-6/+6
2010-09-13* data/templates/Ubuntu.info.in:Michael Vogt4-1/+32
- add extras.ubuntu.com and archvie.canonical.com to the templates * aptsources/distinfo.py, aptsources/distro.py: - support non-official templates (like extras.ubuntu.com)
2010-09-13python/configuration.cc: fix typo in doc stringMichael Vogt1-1/+1
2010-09-08* apt/debfile.py:Michael Vogt2-2/+5
- remove bogus comment * python/tag.cc: - allow "bytes" type in TagSecNew (for python3)
2010-09-08fix a bunch of python3.1 releated test failuresMichael Vogt3-4/+9
2010-09-07merged from lp:~mvo/python-apt/mvoMichael Vogt1-1/+6
2010-09-07tests/test_apt_cache.py: reset apt_pkg.config when running the testsMichael Vogt1-0/+4
2010-09-07tests/test_apt_cache.py: fix testMichael Vogt1-1/+2
2010-09-07cherry pick from debian-sidMichael Vogt2-0/+5
2010-09-07cherry pick -r453 from lp:~mvo/python-apt/debian-sidMichael Vogt1-2/+3
2010-09-07* merged patch from Samuel Lidén Borell to fix crash if there utf8 Michael Vogt9-6/+107
in the control file (LP: #624290) and add test * apt/cache.py: - add "sources_list" parameter to cache.update() to force updating a single sources.list entry only * debian/control: - add missing build-depends on python-debian (needed to run the tests for apt.debfile.DebPackage() * apt/debfile: - don't fail if we conflict with the pkgs we are reinstalling
2010-09-07tests/test_apt_cache.py: improve the tests so that they do not require a ↵Michael Vogt2-19/+44
working network
2010-09-07merged from lp:~kiwinote/python-apt/reinstall-same-fileMichael Vogt2-1/+10
2010-09-03not not depend on network when running the tests, some style fixes (thanks ↵Michael Vogt2-6/+7
to Jak for the code-review)
2010-09-03* debian/control:Michael Vogt2-1/+5
- add missing build-depends on python-debian (needed to run the tests for apt.debfile.DebPackage()
2010-09-03apt/cache.py: use alternative SourceList if sources_list is usedMichael Vogt1-3/+5
2010-09-03* apt/cache.py:Michael Vogt3-2/+57
- add "sources_list" parameter to cache.update() to force updating a single sources.list entry only
2010-09-02merged patch from Samuel Lidén Borell to fix crash if there utf8 Michael Vogt4-1/+10
in the control file (LP: #624290) and add test
2010-08-31tests/test_apt_cache.py: add test for provides_listMichael Vogt1-1/+14
2010-08-31debian/changelog: add missing changelog entryMichael Vogt1-0/+4
2010-08-31python/cache.cc: revert docstring changeMichael Vogt1-2/+3
2010-08-31* add "provides" property to the apt.Version objectsMichael Vogt9-10/+34
* apt/debfile.py: - fix error when reading binary content and add regresion test
2010-08-31* apt/debfile.py:Michael Vogt3-4/+7
- fix error when reading binary content and add regresion test
2010-08-31tests/test_debfile.py: add test for binary readingMichael Vogt2-0/+6
2010-08-31add content reading testMichael Vogt2-0/+6
2010-08-27add "provides" property to the apt.Version objectsMichael Vogt3-0/+9
2010-08-27python/cache.cc: improve documentationMichael Vogt1-2/+3
2010-08-27python/cache.cc: doc update for provides_listMichael Vogt1-3/+2
2010-08-27* apt/debfile.py:Michael Vogt2-0/+9
- add missing init for _installed_conflicts (LP: #618597)
2010-08-26* tests/test_apt_cache.py:Julian Andres Klode2-1/+9
- Do not insert ".." into sys.path, fixes FTBFS
2010-08-26Upload to unstableJulian Andres Klode1-2/+2
2010-08-26Set Standards-Version to 3.9.1Julian Andres Klode2-1/+2
2010-08-26* Merge translation updates:Julian Andres Klode1-1/+1
- pt_BR.po by Sérgio Cipolla (Closes: #593754)
2010-08-26Build-depend on APT >= 0.8 to get gzip compression enabled (optional,Julian Andres Klode2-1/+3
can be reverted for backports)
2010-08-26* debian/control:Julian Andres Klode2-8/+9
- Adapt to new Python 3 handling (Closes: #593042)
2010-08-23* po/pt_BR.po:Michael Vogt2-103/+89
- updated, thanks to Sergio Cipolla
2010-08-10* python/acquire.cc:Michael Vogt2-3/+7
- return long long when calling TotalNeeded(), FetchNeeded() and PartialPresent() from pkgAcquire(). This follows the change in libapt.
2010-08-05merged from lp:~mvo/python-apt/mvoMichael Vogt5-8/+45
2010-08-05tests/test_debfile.py: make it work on amd64, improve failure messageMichael Vogt5-8/+45
2010-08-05tests/data/test_debs/hello_2.5-1.dsc: simplify debs (to avoid universe issues)Michael Vogt1-1/+1
2010-08-05fix another crash and add regression testMichael Vogt4-17/+55
2010-08-05merged from debian-sid, fix crash in Dsc file handlingMichael Vogt10-23/+105