summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
...
* Do lazy initialization of portage.db[root][porttree] and db[root][vartree] ↵Zac Medico2006-04-241-4/+4
| | | | | | for quicker portage import. svn path=/main/trunk/; revision=3206
* Move thirdpartymirrors stacking out of global scope.Zac Medico2006-04-241-5/+7
| | | | svn path=/main/trunk/; revision=3205
* Move deprecated profile check out of global scope.Zac Medico2006-04-231-13/+17
| | | | svn path=/main/trunk/; revision=3204
* Move endversion and endversion_keys to portage_versions and import them for ↵Zac Medico2006-04-232-11/+6
| | | | | | backward compatibility. svn path=/main/trunk/; revision=3202
* Move portage.global_updates() invocation out of portage.py and into ↵Zac Medico2006-04-231-7/+8
| | | | | | emerge/fixpackages where it belongs. svn path=/main/trunk/; revision=3201
* Fix FileNotFound error when ignoreMissing=True for bug #130928.Zac Medico2006-04-231-4/+9
| | | | svn path=/main/trunk/; revision=3194
* Replace hard coded "size" with MANIFEST1_HASH_FUNCTIONS.Zac Medico2006-04-231-1/+1
| | | | svn path=/main/trunk/; revision=3193
* Remove bogus "size" manifest entries reported by vapier.Zac Medico2006-04-231-2/+3
| | | | svn path=/main/trunk/; revision=3192
* Fix partial download size calculation for bug #116796.Zac Medico2006-04-211-6/+21
| | | | svn path=/main/trunk/; revision=3185
* Fix `emerge -s` download size calculation for bug #130750.Zac Medico2006-04-211-1/+7
| | | | svn path=/main/trunk/; revision=3184
* Implement portage.config.get() in order to provide more of the standard ↵Zac Medico2006-04-211-2/+7
| | | | | | mapping interface. svn path=/main/trunk/; revision=3182
* Add and "other" EBUILD_PHASE for bug #127585. Thanks to Patrick Avery ↵Zac Medico2006-04-201-1/+2
| | | | | | <pyromancer@gmail.com> for this patch. svn path=/main/trunk/; revision=3178
* Implement portage.config.setdefault() in order to provide more of the ↵Zac Medico2006-04-181-0/+8
| | | | | | standard mapping interface. svn path=/main/trunk/; revision=3172
* Ignore ENOENT errors when $FILESDIR doesn't exist. Thanks to Christian Heim ↵Zac Medico2006-04-171-4/+10
| | | | | | for reporting. svn path=/main/trunk/; revision=3171
* Avoid rewritting the Manifest whenever possible by comparing the existing ↵v2.1_pre9Zac Medico2006-04-171-70/+154
| | | | | | manifest entries to the ones that will be written. svn path=/main/trunk/; revision=3168
* touchup emerge --help: reorder and wrap lines. credit goes to Benno ↵Simon Stelling2006-04-161-41/+44
| | | | | | Schulenberg; bug 121528 svn path=/main/trunk/; revision=3167
* sync short options with the rest of emerge --help; bug 124489Simon Stelling2006-04-161-1/+1
| | | | svn path=/main/trunk/; revision=3166
* Override LazyItemsDict.update() so that it works correctly with other ↵Zac Medico2006-04-151-2/+10
| | | | | | instances of LazyItemsDict. svn path=/main/trunk/; revision=3159
* Split out a reusable Manifest._readManifest() method.Zac Medico2006-04-151-15/+26
| | | | svn path=/main/trunk/; revision=3150
* Add singleton support to LazyItemsDict to make it easier to use with ↵Zac Medico2006-04-152-28/+25
| | | | | | arbitrary function calls. svn path=/main/trunk/; revision=3149
* Catch fetch_check FileNotFound exceptions for bug #129962.Zac Medico2006-04-141-1/+6
| | | | svn path=/main/trunk/; revision=3148
* Run chflags only when needed for bug #129852. Thanks to Diego Pettenò for ↵Zac Medico2006-04-141-5/+8
| | | | | | the patch. svn path=/main/trunk/; revision=3147
* Preserve the mysettings["SLOT"] for bug #129720.Zac Medico2006-04-141-2/+2
| | | | svn path=/main/trunk/; revision=3146
* Fix a typo from the last revision.Zac Medico2006-04-141-1/+1
| | | | svn path=/main/trunk/; revision=3145
* Fix collision-protect logic so the correct cpv is used for slot comparison.Zac Medico2006-04-141-1/+1
| | | | svn path=/main/trunk/; revision=3144
* Add an initial_items parameter to the LazyItemsDict constructor in order to ↵Zac Medico2006-04-142-9/+7
| | | | | | facilitate integration with existing dict based code. svn path=/main/trunk/; revision=3143
* Fix digestcheck logic for bug #129839.Zac Medico2006-04-132-27/+30
| | | | svn path=/main/trunk/; revision=3142
* Fix manifest/digest generation logic for bug #129737.Zac Medico2006-04-132-32/+35
| | | | svn path=/main/trunk/; revision=3136
* Use LazyItemsDict to avoid a vdb scan during portage import when autouse is ↵Zac Medico2006-04-121-1/+19
| | | | | | enabled. svn path=/main/trunk/; revision=3135
* Use cannonical paths for portdb.portrees to ensure that, given pkgdir, ↵Zac Medico2006-04-121-3/+4
| | | | | | FetchlistDict can determine the correct path for the portage tree. svn path=/main/trunk/; revision=3134
* Create a generic portage_util.LazyItemsDict and use it for lazy ↵Zac Medico2006-04-122-46/+58
| | | | | | initialization portage.db[root] items. svn path=/main/trunk/; revision=3133
* Fix LazyDatabasesDict so that databases only need to be created once.Zac Medico2006-04-111-0/+1
| | | | svn path=/main/trunk/; revision=3131
* Make qmerge imply noclean for bug #129559.Zac Medico2006-04-111-0/+3
| | | | svn path=/main/trunk/; revision=3128
* Implement lazy construction of global databases db[root]["porttree"] and ↵Zac Medico2006-04-111-4/+27
| | | | | | | | db[root]["bintree"] and automatically populate db[root]["bintree"] on access. svn path=/main/trunk/; revision=3127
* Support EBUILD_PHASE during more phases for bug #129244.Zac Medico2006-04-111-0/+2
| | | | svn path=/main/trunk/; revision=3126
* Support EBUILD_PHASE during package and rpm phases for bug #129244.Zac Medico2006-04-111-0/+2
| | | | svn path=/main/trunk/; revision=3125
* Remove dead code from portage.digestcheck().Zac Medico2006-04-111-86/+0
| | | | svn path=/main/trunk/; revision=3124
* Remove the "db" parameter from digestcheck() because it's not needed.Zac Medico2006-04-111-3/+1
| | | | svn path=/main/trunk/; revision=3123
* Remove the "db" parameter from digestParseFile() because it's not needed.Zac Medico2006-04-111-3/+2
| | | | svn path=/main/trunk/; revision=3122
* Remove the "db" parameter from digestgen() because it's not needed.Zac Medico2006-04-111-4/+1
| | | | svn path=/main/trunk/; revision=3121
* Fix FetchlistDict.keys() so it does the same porttrees trick as __getitem__.Zac Medico2006-04-111-1/+8
| | | | svn path=/main/trunk/; revision=3120
* Fix FetchlistDict so usage of global portdb leaves portdb.porttrees intact.Zac Medico2006-04-111-7/+11
| | | | svn path=/main/trunk/; revision=3119
* Ensure that binarytree.populate is called even when the first access isJason Stubbs2006-04-101-0/+7
| | | | | | via binarytree.dbapi.{aux_get,match}. svn path=/main/trunk/; revision=3117
* Add docstrings for FetchlistDict.Zac Medico2006-04-101-1/+9
| | | | svn path=/main/trunk/; revision=3114
* Simplify the porttrees logic for FetchlistDict.Zac Medico2006-04-101-5/+2
| | | | svn path=/main/trunk/; revision=3113
* Remove unnecessary calls to dict.keys() from portage_manifest.Zac Medico2006-04-101-7/+7
| | | | svn path=/main/trunk/; revision=3112
* Remove db and mysettings from Manifest and replace them with a mapping ↵Zac Medico2006-04-102-9/+28
| | | | | | object that provides access to fetch lists for each cpv. svn path=/main/trunk/; revision=3111
* Pass DISTDIR into the Manifest constructor instead of getting it from ↵Zac Medico2006-04-102-31/+29
| | | | | | mysettings because mysettings will be eliminated soon. svn path=/main/trunk/; revision=3110
* Remove dependency on the core portage module from portage_manifest.Zac Medico2006-04-092-13/+35
| | | | svn path=/main/trunk/; revision=3109
* Remove dead code from portage.digestParseFile().Zac Medico2006-04-091-30/+0
| | | | svn path=/main/trunk/; revision=3107