summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi
Commit message (Expand)AuthorAgeFilesLines
* Make flat_hash write keys in alphabetical order.Zac Medico2008-09-261-0/+1
* Import cPickle as pickle instead of vice versa. Eases 2to3's job becauseZac Medico2008-09-231-8/+8
* More SRC_URI validation.Zac Medico2008-09-201-0/+4
* Fix some broken logic inside portdbapi.getFetchMap().Zac Medico2008-09-201-13/+5
* Add test cases for SRC_URI validation.Zac Medico2008-09-201-9/+6
* Implement SRC_URI arrows for EAPI 2. The portdbapi.getfetchlist() methodZac Medico2008-09-201-27/+134
* Define __all__ and clean up unused imports found by pyflakes.Zac Medico2008-09-191-8/+8
* Add support for FEATURES="protect-owned" which is identical to theZac Medico2008-08-301-4/+10
* Revert recent changes to _ObjectKey.__eq__() since it's probably a bug ifZac Medico2008-08-251-5/+0
* Fix _ObjectKey.__eq__() to account for potential hash collisions that wouldZac Medico2008-08-241-5/+6
* * Fix broken _ObjectKey.__eq__() logic from previous commit.Zac Medico2008-08-241-3/+7
* Avoid possible AttributeError raised from _ObjectKey.__eq__().Zac Medico2008-08-241-0/+2
* More LinkageMap enhancments from Lucian Poston:Zac Medico2008-08-231-58/+93
* Fix isprotected() call in dblink._collision_protect() to properly accountZac Medico2008-08-221-1/+2
* Use shlex.split() to split CONFIG_PROTECT and CONFIG_PROTECT_MASK.Zac Medico2008-08-221-2/+2
* Update comment, from Lucian Poston's git repo.Zac Medico2008-08-221-1/+4
* Optimize LinkageMap to use tuples of device and inode numbers from statZac Medico2008-08-221-166/+264
* Make dblink call back to the scheduler for "clean" and "cleanrm" phases, toZac Medico2008-08-201-6/+17
* For py3k compatibility, replace map() call with a normal for loop. Thanks toZac Medico2008-08-151-1/+2
* Remove unnecessary dict.keys() call.Zac Medico2008-08-101-1/+1
* Remove INHERITED from the vardbapi aux_get cache since it's not really thatZac Medico2008-08-101-1/+1
* Add write_contents() and tar_contents() functions to __all__.Zac Medico2008-08-091-1/+2
* * Use shlex.split() for splitting COLLISION_IGNORE.Zac Medico2008-08-091-1/+5
* Don't use "dir" for a variable name since it's also a builtin.Zac Medico2008-08-091-4/+4
* Add new LinkageMap.listBrokenBinaries() and listProviders() methods. ThanksZac Medico2008-08-081-0/+152
* Fix broken reference to os.path.realpath() inside LinkageMap.getSoname().Zac Medico2008-08-081-1/+1
* In LinkageMap.rebuild(), filter empty strings that may be returned from splitZac Medico2008-08-081-2/+4
* Fix a bug in vardbapi.removeFromContents() which sometimes prevents theZac Medico2008-08-071-2/+3
* Make dblink.unmerge() succeed even when ebuild phases are unsuccessful becauseZac Medico2008-08-041-6/+6
* In the file collision elog message, only say 'NOT merged' whenZac Medico2008-08-021-4/+8
* * Add INHERITED to vardbapi._aux_cache_keys since Package.metadata_keys alsoZac Medico2008-08-011-2/+2
* Optimize `emaint` --fix binhost so that it the Packages file isn't re-readZac Medico2008-08-011-16/+34
* Fix breakage from r11213 in INHERITED values returned from portdbapi.aux_get().Zac Medico2008-07-271-8/+4
* Serialize src_unpack() $DISTDIR access for live ebuilds since otherwise theyZac Medico2008-07-271-1/+1
* Fix LinkageMap.findConsumers() to check whether the master link for a libZac Medico2008-07-261-1/+19
* Bug #228085 - In the event of a file collision, the explanation about theZac Medico2008-07-261-1/+14
* Detect an invalid cpv passed into portdbapi.findname2() and raise anZac Medico2008-07-251-1/+3
* Avoid "0 files checked ..." messages reported by Pesa.Zac Medico2008-07-231-1/+1
* In dblink.unmerge(), redirect preserve-libs "!needed" messages to the log fileZac Medico2008-07-221-1/+2
* Redirect dblink._preserve_libs() messages to the log when in background mode.Zac Medico2008-07-221-2/+5
* Add initial lib awareness for --depclean and --prune. Currently it will simplyZac Medico2008-07-211-1/+23
* In dblink.findProviders(), clone the "path" variable before extending itZac Medico2008-07-211-0/+1
* In dblink._preserve_libs(), strip leading $ROOT from contents paths so thatZac Medico2008-07-211-2/+4
* Suppress counter initialization warning messages inZac Medico2008-07-181-4/+7
* Use dblink._eerror() to eliminate duplicate code.Zac Medico2008-07-181-14/+2
* If an problem is detected in dblink._security_check(), log it via elog soZac Medico2008-07-181-10/+21
* Redirect dblink elog messages from stdout to the log file when in backgroundZac Medico2008-07-171-7/+14
* When dblink is looping over files for merge/unmerge, temporarily yield to theZac Medico2008-07-171-6/+33
* Handle the case in dblink.unmerge() when the log file is a temp file and soZac Medico2008-07-171-1/+6
* * Add a new portage.util.writemsg_level() function which uses a "level"Zac Medico2008-07-171-21/+30