summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove portage.config.groups (formerly portage.groups) and instead use ↵Zac Medico2006-04-262-8/+4
| | | | | | ACCEPT_KEYWORDS directly (simplifies the code). svn path=/main/trunk/; revision=3238
* Fix portdbapi.aux_get(), findname2(), and getfetchlist() so that the tree ↵Zac Medico2006-04-261-26/+22
| | | | | | can be overridden by the caller if necessary (ensures that metadata is pulled from the correct tree when generating a manifest). svn path=/main/trunk/; revision=3237
* Fix false variable.readonly match on continued lines. Thanks to Flameeyes ↵Zac Medico2006-04-251-1/+6
| | | | | | for reporting. svn path=/main/trunk/; revision=3236
* Validate the resume merge list in --ask and --pretend mode for bug #128455.Zac Medico2006-04-251-8/+14
| | | | svn path=/main/trunk/; revision=3235
* Make copies of the groups attribute before modifying (regression from r3231).Zac Medico2006-04-251-2/+2
| | | | svn path=/main/trunk/; revision=3234
* Remove all dependence on the portage.features global variable.Zac Medico2006-04-253-23/+24
| | | | svn path=/main/trunk/; revision=3233
* Remove all usage of the portage.archlist global variable.Zac Medico2006-04-252-4/+4
| | | | svn path=/main/trunk/; revision=3232
* Remove all usage of the portage.groups global variable.Zac Medico2006-04-252-6/+11
| | | | svn path=/main/trunk/; revision=3231
* Remove all usage of portage.usedefaults and portage.profiledir globals.Zac Medico2006-04-252-11/+15
| | | | svn path=/main/trunk/; revision=3230
* 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
* enable +x bits on sedMike Frysinger2006-04-251-0/+0
| | | | svn path=/main/trunk/; revision=3226
* 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
* Catch ValueError from cpv_expand for bug #131160.Zac Medico2006-04-251-1/+5
| | | | svn path=/main/trunk/; revision=3219
* 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-232-13/+19
| | | | svn path=/main/trunk/; revision=3204
* Minor emerge -V/--info fixes thanks to iggy, use portage_const PROFILE_PATHAlec Warner2006-04-231-6/+4
| | | | svn path=/main/trunk/; revision=3203
* 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-233-7/+10
| | | | | | emerge/fixpackages where it belongs. svn path=/main/trunk/; revision=3201
* Make sed wrapper not executable. Currently the wrapper is installed via ↵Alec Warner2006-04-231-0/+0
| | | | | | doexe in the ebuild from and gets the +x bit set properly. I don't think we have any SVN users on BSD or Darwin. In the future this wrapper will get installed automagically by the ebuild ( it being in bin ) but will only be set executable on non GNU platforms. svn path=/main/trunk/; revision=3200
* Fix sed breakage for people with weird PATH, fix tabs. Thanks to Flameeyes ↵Alec Warner2006-04-231-13/+15
| | | | | | once again. svn path=/main/trunk/; revision=3199
* set executable bit for sed-wrapperSimon Stelling2006-04-231-0/+0
| | | | svn path=/main/trunk/; revision=3198
* tighten up output in pretend modeMike Frysinger2006-04-231-4/+6
| | | | svn path=/main/trunk/; revision=3197
* fixup clean outputMike Frysinger2006-04-231-3/+4
| | | | svn path=/main/trunk/; revision=3196
* space argumentsMike Frysinger2006-04-231-2/+2
| | | | svn path=/main/trunk/; revision=3195
* 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
* Add copyright header, thanks to Zac Medico for pointing that out for meAlec Warner2006-04-221-0/+2
| | | | svn path=/main/trunk/; revision=3191
* A sed wrapper for OSX/BSD courtesy of Flameeyes and SpankyAlec Warner2006-04-221-0/+22
| | | | svn path=/main/trunk/; revision=3190
* Disable sandbox during package phase interaction with $PKGDIR for ↵Zac Medico2006-04-221-1/+3
| | | | | | compatibility with symlinks (See bug #130824). svn path=/main/trunk/; revision=3189