Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-06-10 | apt_pkg.Package: Drop the unset 'auto' attribute | Julian Andres Klode | 1 | -4/+0 | |
If somebody uses that, it could assume that no package is auto removable, because the attribute is always 0. So let's just remove that instead of having crazy code working the way it's not intended. Closes: #565364 | |||||
2015-06-10 | python/cache.cc: Handle deprecation of pkgCache::PkgIterator::Section() | Julian Andres Klode | 1 | -6/+12 | |
Ignore the deprecation from the C++ compiler and generate a warning for the Python interpreter. Also, remove the section from the representation of the package. | |||||
2014-01-06 | Unify list of comparison type values everywhere | Julian Andres Klode | 1 | -1/+2 | |
They are now ordered and include the != and < operators in all cases. | |||||
2013-10-23 | python/cache.cc: Remove a check for an unsigned long value < 0 | Julian Andres Klode | 1 | -1/+1 | |
This is impossible. | |||||
2013-10-23 | python/*.cc: Get rid of the easy-to-replace deprecated APT functions | Julian Andres Klode | 1 | -3/+3 | |
We cannot get rid of the InstallProtect and StrToTime calls for backwards compatibility, but let's drop the others. | |||||
2013-10-21 | python/cache.cc: Set NoDelete=true when creating Policy, fixes segfault in ↵ | Julian Andres Klode | 1 | -2/+6 | |
destructor | |||||
2013-09-11 | Remove old API compatibility C++ support code | Julian Andres Klode | 1 | -61/+0 | |
2013-08-05 | coverity fixes | Michael Vogt | 1 | -1/+1 | |
2012-10-17 | merged debian-sid branch | Michael Vogt | 1 | -1/+1 | |
2012-10-01 | python/cache.cc: PkgCacheGetIsMultiArch(): Return calculated | James Hunt | 1 | -1/+1 | |
value rather than a random one. | |||||
2012-08-14 | * python/cache.cc: | Michael Vogt | 1 | -0/+8 | |
- add "Codename" to PackageFile object | |||||
2012-04-17 | merged lp:~aptdaemon-developers/python-apt/fix-cannot-locate-file with a ↵ | Michael Vogt | 1 | -2/+5 | |
slighly different fix | |||||
2012-04-17 | * python/cache.cc: | Michael Vogt | 1 | -1/+3 | |
- ensure that pkgApplyStatus is called when the cache is opened (thanks to Sebastian Heinlein for finding this bug), LP: #659438 | |||||
2012-01-30 | RED: policy should support verfile | Michael Vogt | 1 | -0/+7 | |
2011-04-21 | apt_pkg: Add apt_pkg.Version.multi_arch and friends | Julian Andres Klode | 1 | -0/+8 | |
2011-04-12 | apt_pkg: Fix unsigned/long-vs-int issues (LP: #610820) | Julian Andres Klode | 1 | -22/+22 | |
This fix is large, but simple in concept. Instead of relying on Py_BuildValue and type signatures, or type-specific conversion functions, create a new set of overloaded MkPyNumber() functions that automatically do the right thing for each numerical type. | |||||
2011-04-05 | Introduce apt_pkg.Cache.groups and apt_pkg.Cache.group_count | Julian Andres Klode | 1 | -27/+126 | |
2011-04-05 | Support (name, arch) tuples in apt_pkg.Cache mappings, wrapping | Julian Andres Klode | 1 | -17/+29 | |
FindPkg() with two string parameters. | |||||
2011-04-05 | Change apt_pkg.Cache() so that passing None for 'progress' results in | Julian Andres Klode | 1 | -2/+7 | |
no progress output | |||||
2011-04-05 | Add an 'is_multi_arch' attribute to apt_pkg.Cache | Julian Andres Klode | 1 | -0/+7 | |
2011-04-04 | * python/cache.cc: | Julian Andres Klode | 1 | -1/+30 | |
- Add Package.get_fullname() and Package.architecture | |||||
2010-08-31 | python/cache.cc: revert docstring change | Michael Vogt | 1 | -2/+3 | |
2010-08-27 | python/cache.cc: improve documentation | Michael Vogt | 1 | -2/+3 | |
2010-08-27 | python/cache.cc: doc update for provides_list | Michael Vogt | 1 | -3/+2 | |
2010-04-21 | python: Commit documentation changes suggested by debian-l10n-english. | Julian Andres Klode | 1 | -32/+39 | |
2010-04-21 | python/cache.cc: Add Package.has_provides to see which packages are provided ↵ | Julian Andres Klode | 1 | -0/+8 | |
at least once. | |||||
2010-04-21 | Add rich compare methods to the Version object. | Julian Andres Klode | 1 | -1/+20 | |
2010-04-21 | Add Package.has_versions to see which packages have at least one version. | Julian Andres Klode | 1 | -0/+9 | |
2010-04-01 | python: Document every class, function, property. | Julian Andres Klode | 1 | -72/+208 | |
Finally, a complete reference to apt_pkg available via pydoc and __doc__ attributes. | |||||
2010-04-01 | python: Return bool instead of int to Python where possible, looks better. | Julian Andres Klode | 1 | -8/+8 | |
2010-04-01 | Fix PackageFile.not_automatic to use NotAutomatic instead of NotSource. | Julian Andres Klode | 1 | -1/+1 | |
2010-03-31 | * python/cache.cc: | Julian Andres Klode | 1 | -1/+2 | |
- Check that 2nd argument to Cache.update() really is a SourceList object. | |||||
2010-02-27 | * python: | Julian Andres Klode | 1 | -82/+6 | |
- Handle deprecated attributes and methods in the tp_gettattro slot, this allows us to easily warn if a deprecated function is used. | |||||
2010-02-27 | * python/cache.cc: | Julian Andres Klode | 1 | -5/+22 | |
- Implement Cache.__len__() and Cache.__contains__() (Closes: #571443). | |||||
2010-01-27 | Merge the CppOwnedPyObject C++ class into CppPyObject. | Julian Andres Klode | 1 | -57/+57 | |
2010-01-15 | Merge 0.7.13.5 pre. | Julian Andres Klode | 1 | -11/+26 | |
2010-01-13 | * python/cache.cc: | Michael Vogt | 1 | -11/+16 | |
- add UntranslatedDepType attribute to DependencyType - add DepTypeEnum that returns a value from {DepDepends, DepPreDepends, ...} * python/apt_pkgmodule.cc: - add DepDpkgBreaks, DepEnhances constants * doc/source/apt_pkg/{cache.rst, index.rst}: - update documentation as well | |||||
2009-08-21 | Merge 0.7.13.0 from unstable. | Julian Andres Klode | 1 | -2/+3 | |
2009-08-21 | python/cache.cc: Set default pulseInterval to 0 (matches apt-pkg's default). | Julian Andres Klode | 1 | -1/+1 | |
2009-08-19 | * apt/cache.py, python/cache.cc: | Michael Vogt | 1 | -2/+3 | |
- add optional pulseIntevall option to "update()" * po/python-apt.pot: - refreshed | |||||
2009-07-31 | python: Remove the progress classes in apt_pkg. | Julian Andres Klode | 1 | -6/+0 | |
They have been replaced with apt.progress.base, so stuff like GTK+ or Qt progress classes can be written using subclassing. | |||||
2009-07-30 | * python/cache.cc: | Julian Andres Klode | 1 | -1/+1 | |
- Support Breaks, Enhances dependency types (Closes: #416247) | |||||
2009-07-24 | python: Fix some more possible NULL issues. | Julian Andres Klode | 1 | -2/+4 | |
2009-07-24 | python/cache.cc: Fix segfault if Pkg->Section == NULL. | Julian Andres Klode | 1 | -14/+15 | |
2009-07-17 | python/cache.cc: Only support new OpProgress() objects in apt_pkg.Cache(). | Julian Andres Klode | 1 | -1/+9 | |
2009-07-17 | python: Use PyString_FromFormat instead of snprintf. | Julian Andres Klode | 1 | -37/+30 | |
2009-07-13 | python: No zero-size arrays for char *kwlist[]. | Julian Andres Klode | 1 | -1/+1 | |
2009-07-13 | python: Rename all PyTypeObject's to conform to PEP 7. | Julian Andres Klode | 1 | -30/+30 | |
This is the first step towards implementing coding guidelines for the C++ code and providing an usable C++ API. | |||||
2009-07-12 | python/cache.cc: Set NoDelete for Caches, instead of using the wrong dealloc ↵ | Julian Andres Klode | 1 | -1/+3 | |
function. | |||||
2009-07-12 | python/cache.cc: Py_DECREF the CacheFile, so it can be deleted. | Julian Andres Klode | 1 | -1/+1 | |