summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache
Commit message (Expand)AuthorAgeFilesLines
...
* Update imports to import portage.os (with unicode wrappers), and useZac Medico2009-08-117-36/+46
* Do not pass unicode strings into os.walk calls, since it can causeZac Medico2009-08-061-1/+8
* Use readlines() to optimize performance. Thanks to Marat RadchenkoZac Medico2009-07-192-2/+1
* Hardcode utf_8 encoding inside _setitem().Zac Medico2009-07-051-3/+2
* Assume utf_8 encoding in alls reads/writes (unicode handling required for py3k).Zac Medico2009-07-051-3/+6
* Remove the workaround from bug #263081 since most strings should be unicodeZac Medico2009-07-041-12/+0
* Fix constructor to avoid TypeError when the "perms" keyword parameter is given.Zac Medico2009-06-281-0/+1
* Use portage.util.apply_permissions() inside _ensure_access().Zac Medico2009-06-221-6/+10
* Tweak depcache permission handling so egencache can be run by a user who'sZac Medico2009-06-212-8/+17
* Prepare 117 messages to localization.Arfrever Frehtes Taifersar Arahesis2009-06-142-2/+4
* Bug #265768 - When initializing the eclass cache, use the correct location.Zac Medico2009-04-121-1/+1
* Add portdbapi support for a metadata/layout.conf file whichZac Medico2009-04-062-4/+5
* Add a new egencache --rsync option which enables a stat collision workaroundZac Medico2009-03-312-8/+63
* Add support for FEATURES=parse-eapi-ebuild-head, which is similar to GLEP 55Zac Medico2009-03-231-6/+15
* Fix misc typos in comments.Zac Medico2009-03-231-1/+1
* Add a temporary workaround for bug #263081 (partially reverts r12757).Zac Medico2009-03-221-0/+12
* Normalize try/except indentation for compatibility with 2to3.Zac Medico2009-03-202-17/+34
* Fix try/except indentation so that 2to3 will recognize it.Zac Medico2009-03-191-1/+2
* Fix try/except indentation so that 2to3 will recognize it.Zac Medico2009-03-191-1/+2
* Initialize UserDict.data in the constructor.Zac Medico2009-03-101-0/+2
* Fix _setitem() to account for the change to serialize_eclasses = False.Zac Medico2009-03-091-2/+1
* Implement _getitem instead of __getitem__ so that the base class __getitem__Zac Medico2009-03-082-23/+6
* Fix __getitem__ to convert mtime to long, and remove unreachable codeZac Medico2009-03-071-8/+10
* Always use basestring instead of str with isinstance().Zac Medico2009-03-071-1/+1
* Use basestring instead of str for isinstance check inside use_reduce() soZac Medico2009-03-051-6/+1
* Remove unnecessary setting of default values to empty strings insideZac Medico2009-03-052-5/+0
* Make the first argument of update() methods be an optional positional argumentZac Medico2009-03-051-2/+16
* Thanks to Petteri Räty <betelgeuse@gentoo.org> for this new cache module whichZac Medico2009-03-011-0/+163
* Remove redundant long(_mtime_) conversion since template handles it now.Zac Medico2009-03-011-1/+1
* * Fix portage.cache.template.database.__getitem__() to validate the _mtime_Zac Medico2009-03-013-12/+15
* In mirror_cache(), normalize EAPI by mapping EAPI=0 to empty.Zac Medico2009-02-251-3/+4
* Fix headers that contain $Header instead of $Id.Zac Medico2009-02-233-6/+6
* Make the UserDict and LazyItemsDict constructors use an optional positionalZac Medico2009-02-211-4/+10
* Fix update() methods to work with python-3.0.Zac Medico2009-02-191-8/+24
* Tweak exception handling indentation to avoid a bug in 2to3.Zac Medico2009-02-191-2/+4
* Fix classes that implement __iter__() to copy it to their keys() methodZac Medico2009-02-192-0/+10
* Implement UserDict.__contains__() and __iter__().Zac Medico2009-02-191-0/+6
* Implement a substitute for UserDict.UserDict so that code converted viaZac Medico2009-02-191-2/+38
* In python-3.0, the UserDict.DictMixin class has been replaced byZac Medico2009-02-191-23/+123
* For python-3.0 compatibility, make dict-like classes modify their keys(),Zac Medico2009-02-044-0/+25
* Fix _setitem() to write the same format that's currently distributed in theZac Medico2009-01-061-5/+40
* Handle potential KeyErrors that may be raised from get_eclass_data(), andZac Medico2008-12-252-4/+15
* Don't add any more that one "-" symbol to the front of an unsupported EAPI.Zac Medico2008-12-251-1/+1
* Inside mirror_cache(), handle unsupported EAPI like portdbapi does.Zac Medico2008-12-251-0/+9
* Add support for the new DEFINED_PHASES metadata key which is automatically ge...Zac Medico2008-12-212-2/+2
* Make sure the dict returned from _parse_data() contains all of _known_keys.Zac Medico2008-11-221-0/+3
* Remove inappropriate backslash escaping inside _db_escape_string().Zac Medico2008-11-201-1/+2
* Inside _parse_data(), don't rely on the magic 22 line count for the flat_listZac Medico2008-11-201-27/+18
* Make serialize_eclasses() sort eclass names.Zac Medico2008-11-181-2/+2
* For emerge --metadata runs, update _eclasses_ metadata to insert local eclassZac Medico2008-11-181-14/+25