summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Move portage.root logic from global scope into the portage.config class.Zac Medico2006-04-251-20/+18
| | | | svn path=/main/trunk/; revision=3229
* Move initialization of tmp, var/tmp, var/lib/portage, and var/cache/edb from ↵Zac Medico2006-04-251-38/+21
| | | | | | global scope to portage.cofig._init_dirs(). svn path=/main/trunk/; revision=3228
* Move cache dir initialization from global scope to the portdbapi class.Zac Medico2006-04-251-28/+25
| | | | svn path=/main/trunk/; revision=3227
* Move USER_VIRTUALS_FILE deprecation warning to config.validate().Zac Medico2006-04-251-5/+5
| | | | svn path=/main/trunk/; revision=3225
* Split a config.validate() method and move PORTAGE_TMPDIR sanity check to ↵Zac Medico2006-04-251-12/+17
| | | | | | doebuild. svn path=/main/trunk/; revision=3224
* Move the make.profile symlink warning from global scope to the config class.Zac Medico2006-04-251-6/+6
| | | | svn path=/main/trunk/; revision=3223
* Catch IOError when loading the mtimedb.Zac Medico2006-04-251-1/+1
| | | | svn path=/main/trunk/; revision=3222
* Move ACCEPT_KEYWORDS and PORTAGE_ARCHLIST validation from global scope to ↵Zac Medico2006-04-251-8/+14
| | | | | | the config class. svn path=/main/trunk/; revision=3221
* Move the mtimedb initialization code from global scope to a function.Zac Medico2006-04-251-34/+31
| | | | svn path=/main/trunk/; revision=3220
* Add a note concerning the separation of legacy global initializations.Zac Medico2006-04-241-0/+8
| | | | svn path=/main/trunk/; revision=3218
* For better organization, migrate the initialization of all major globals in ↵Zac Medico2006-04-241-196/+171
| | | | | | portage.py to the bottom of the file. svn path=/main/trunk/; revision=3217
* Make sure usage of portage.db and portage.mtimedb is appropriately marked as ↵Zac Medico2006-04-241-5/+9
| | | | | | global. svn path=/main/trunk/; revision=3216
* Make sure a usage of portage.settings is marked as global.Zac Medico2006-04-241-5/+13
| | | | svn path=/main/trunk/; revision=3215
* Use tree="vartree" for prerm, postrm, and cleanrm phases (see bug #131116).Zac Medico2006-04-241-3/+5
| | | | svn path=/main/trunk/; revision=3214
* Use one aux_get call instead of 2.Zac Medico2006-04-241-5/+5
| | | | svn path=/main/trunk/; revision=3213
* Use local myroot instead of portage.root global.Zac Medico2006-04-241-1/+1
| | | | svn path=/main/trunk/; revision=3212
* Replace finddigest usage with Manifest2 compatible code.Zac Medico2006-04-241-4/+8
| | | | svn path=/main/trunk/; revision=3211
* Pass a dbapi instance into doebuild_environment so that it doesn't need to ↵Zac Medico2006-04-241-4/+4
| | | | | | access the global db directly. svn path=/main/trunk/; revision=3210
* Remove a possibly unecessary try statement that may swallow important ↵Zac Medico2006-04-241-9/+4
| | | | | | exceptions. svn path=/main/trunk/; revision=3209
* Replace usage of global portage.settings with self.mysettings instead.Zac Medico2006-04-241-1/+2
| | | | svn path=/main/trunk/; revision=3208
* Fix accidental usage of global settings instead of self.Zac Medico2006-04-241-1/+1
| | | | svn path=/main/trunk/; revision=3207
* 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