summaryrefslogtreecommitdiff
path: root/python/pkgrecords.cc
AgeCommit message (Collapse)AuthorFilesLines
2013-09-11Remove old API compatibility C++ support codeJulian Andres Klode1-9/+0
2010-04-01python: Document every class, function, property.Julian Andres Klode1-16/+42
Finally, a complete reference to apt_pkg available via pydoc and __doc__ attributes.
2010-04-01python: Return bool instead of int to Python where possible, looks better.Julian Andres Klode1-1/+1
2010-02-27* python:Julian Andres Klode1-18/+1
- Handle deprecated attributes and methods in the tp_gettattro slot, this allows us to easily warn if a deprecated function is used.
2010-01-27Merge the CppOwnedPyObject C++ class into CppPyObject.Julian Andres Klode1-5/+5
2009-07-13python: Rename all PyTypeObject's to conform to PEP 7.Julian Andres Klode1-4/+4
This is the first step towards implementing coding guidelines for the C++ code and providing an usable C++ API.
2009-06-25python: Use PyVarObject_HEAD_INIT() instead of PyObject_HEAD_INIT().Julian Andres Klode1-4/+1
This is related to PEP 3123 and fixes some compiler warnings.
2009-06-21python: Make all CppOwnedPyObjects and similar support garbage collection.Julian Andres Klode1-3/+4
If you want to subclass apt_pkg.Cache() and create an apt_pkg.DepCache() object in it (e.g. as self.depcache) this is needed because otherwise, Python would not know about the cyclic dependency and refuse to free any of them. This also changes apt_pkg.Cache to the standard deallocation schema, because the underlying CacheFile deletes its pointers automatically on deletion. Thus a second call is not needed.
2009-06-21python: Add DeprecationWarning to functions which were replaced by classes.Julian Andres Klode1-0/+3
2009-06-09Allow types providing __new__() to be subclassed.Julian Andres Klode1-1/+2
2009-06-05python/: Put all deprecated Get*() functions into #ifdef COMPAT_0_7.Julian Andres Klode1-2/+2
2009-06-05Introduce the rename rules formally, and add some exceptions.Julian Andres Klode1-1/+1
2009-06-04python/: Unify naming conventions for all new names.Julian Andres Klode1-8/+8
Unify all names to follow these rules: 1. Replace the first [A-Z] with the lowercase version [a-z] 2. Replace multiple [A-Z] with [A-Z][a-z] (one upper, remaining ones lowercase) 3. Replace all remaining [A-Z] with _[a-z] This brings us from 'FileName' to 'file_name' and from 'DescURI' to 'desc_uri'. We will at a later stage add some exceptions to this rule, like 'filename' instead of 'file_name', to improve readability.
2009-06-03python/: Convert most names to PEP8 naming conventions (except ↵Julian Andres Klode1-0/+17
Version,PackageFile,MetaIndex). On our way to close Bug#481061, this converts almost all names to PEP 8 naming conventions. Missing are now apt_pkg.Version, apt_pkg.PackageFile, apt_pkg.MetaIndex and apt.progress.*. In case of the missing apt_pkg classes, they are not converted yet because they do not use getset descriptors yet. apt.progress.* has not been converted yet because the extension interacts with it, and we first need to modify the extension to recognize the new names, as well as the old names (old applications shouldn't break).
2009-04-19* python/*.cc: Export all types and add a __new__() method to them.Julian Andres Klode1-7/+24
Some names may be changed before the release, but this is a good draft.
2009-04-15* Introduce support for Python 3 (Closes: #523645)Julian Andres Klode1-0/+2
This is the first initial port to Python 3. The API is almost completely identical to the one found in Python 2, except that functions working with binary data require bytes (md5sum,sha1sum,sha256sum,Base64Encode). Using setup3.py to install the modules will not work, because the apt package still has to be converted to Python 3. For the package, we call 2to3-3.1 in debian/rules to do this automatically.
2009-04-15* python/pkgrecords.cc: Use GetSet for PkgRecordsTypeJulian Andres Klode1-36/+93
2009-01-11* Add support for PkgRecords.SHA256Hash (Closes: #456113)Julian Andres Klode1-0/+2
2008-05-16Remove trailing whitespace.Ben Finney1-9/+9
2008-02-11* python/pkgrecords.cc:Michael Vogt1-0/+2
- export the Homepage field
2007-05-23* python/pkgrecords.cc:Michael Vogt1-0/+2
- added SourceVer
2006-12-19* python/pkgrecords.cc:Michael Vogt1-0/+2
- export SHA1Sum() as well * debian/changelog: - updated
2006-03-22* fixes for the pkgSrcRecords codeMichael Vogt1-1/+1
2006-01-24* added pkgRecords.RecordMichael Vogt1-0/+6
2005-11-18* basic pkgAcquire + pkgPackageManager support addedMichael Vogt1-9/+1
2005-05-04* more tests addedMichael Vogt1-2/+3
* tests/cache.py: - test that iterates over all the cache and dependencies * tests/pkgrecords.py - test that iterates over all the pkgrecords * python/cache.cc - added a comment * python/pkgrecords.cc - return "True" from pkgRecord.Lookup() (to make it consistent with the PkgSrcRecords object)
2004-11-24Fix g++-3.0 compilation issuesArch Librarian1-26/+25
Author: mdz Date: 2002-02-26 01:36:15 GMT Fix g++-3.0 compilation issues
2004-11-24Changed include pathsArch Librarian1-2/+2
Author: jgg Date: 2002-01-08 06:53:04 GMT Changed include paths
2004-11-24Initial revisionArch Librarian1-0/+119
Author: jgg Date: 2001-02-20 06:32:01 GMT Initial revision