summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-231-11/+4
| | | | | | 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 partial download size calculation for bug #116796.Zac Medico2006-04-211-6/+21
| | | | svn path=/main/trunk/; revision=3185
* 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
* 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
* Add singleton support to LazyItemsDict to make it easier to use with ↵Zac Medico2006-04-151-24/+5
| | | | | | 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-141-8/+2
| | | | | | facilitate integration with existing dict based code. svn path=/main/trunk/; revision=3143
* Fix digestcheck logic for bug #129839.Zac Medico2006-04-131-22/+20
| | | | svn path=/main/trunk/; revision=3142
* Fix manifest/digest generation logic for bug #129737.Zac Medico2006-04-131-24/+11
| | | | 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-121-46/+31
| | | | | | 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 db and mysettings from Manifest and replace them with a mapping ↵Zac Medico2006-04-101-3/+23
| | | | | | 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-101-25/+26
| | | | | | mysettings because mysettings will be eliminated soon. svn path=/main/trunk/; revision=3110
* Remove dead code from portage.digestParseFile().Zac Medico2006-04-091-30/+0
| | | | svn path=/main/trunk/; revision=3107
* Encapsulate type guessing logic in a new Manifest method.Zac Medico2006-04-091-9/+1
| | | | svn path=/main/trunk/; revision=3106
* Move mf.create out of a loop because it should only need to be called once.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3104
* Protect string indexes during input stripping in dep_getkey and dep_getcpv.Jason Stubbs2006-04-081-11/+7
| | | | | | Bug #129193 svn path=/main/trunk/; revision=3094
* remove reference to a script that doesnt existMike Frysinger2006-04-071-2/+0
| | | | svn path=/main/trunk/; revision=3092
* Speed up portage.config.keys()Alec Warner2006-04-071-6/+1
| | | | svn path=/main/trunk/; revision=3086
* Change == None to is NoneAlec Warner2006-04-071-52/+52
| | | | svn path=/main/trunk/; revision=3085
* Revert FEATURES=noclean behavior so that clean is only skipped after merge. ↵Zac Medico2006-04-051-3/+2
| | | | | | Thanks to azarah for reporting. svn path=/main/trunk/; revision=3077
* Remove the srcroot parameter from env_update because is doesn't work when ↵Zac Medico2006-04-051-13/+3
| | | | | | portage.movefile merges files via os.rename. To do this properly we need to pass in CONTENTS instead. svn path=/main/trunk/; revision=3074
* s/parenreduce/paren_reduce/ comment fix.Jason Stubbs2006-04-031-2/+2
| | | | svn path=/main/trunk/; revision=3065
* Fix a typo from r3058.Zac Medico2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3063
* tsk tsk, fix a missing parenthesis :)Alec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3060
* Add a deprecation notice for those who are still using tokenize ( hopefully ↵Alec Warner2006-04-031-1/+3
| | | | | | no one :/ ) svn path=/main/trunk/; revision=3059
* Move DISTDIR initialization from doebuild to fetch and handle read-only file ↵Zac Medico2006-04-031-25/+27
| | | | | | system errors for bug #128506. svn path=/main/trunk/; revision=3058
* fix makelinks logic againMike Frysinger2006-04-011-2/+2
| | | | svn path=/main/trunk/; revision=3048