summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* escape $ in PORTAGE_ELOG_MAILSUBJECT; bug 131373Simon Stelling2006-04-271-1/+1
| | | | svn path=/main/trunk/; revision=3248
* Add an option vartree parameter to doebuild(), merge(), and the dblink ↵Zac Medico2006-04-271-25/+35
| | | | | | constructor so that they don't have to use globals. svn path=/main/trunk/; revision=3247
* Add optional mydbapi parameter to doebuild() so that it doesn't have to use ↵Zac Medico2006-04-271-11/+18
| | | | | | any globals. svn path=/main/trunk/; revision=3246
* Make fetchlist_dict an optional parameter in the Manifest constructor since ↵Zac Medico2006-04-264-18/+19
| | | | | | it's required only for generation of a Manifest (not needed for parsing and checking sums). svn path=/main/trunk/; revision=3245
* Pass a portdbapi instance into portage.digestgen() so that it doesn't have ↵Zac Medico2006-04-262-12/+16
| | | | | | to use any globals. svn path=/main/trunk/; revision=3244
* Pass a portdbapi instance into the FetchlistDict constructor so that it ↵Zac Medico2006-04-263-11/+12
| | | | | | doesn't have to use any globals. svn path=/main/trunk/; revision=3243
* Group together and clearly mark some deprecated globals.Zac Medico2006-04-261-13/+17
| | | | svn path=/main/trunk/; revision=3242
* Move PORTAGE_MASTER_PID and BASH_ENV from global scope to the ↵Zac Medico2006-04-261-6/+5
| | | | | | doebuild_environment() function. svn path=/main/trunk/; revision=3241
* Use the correct ACCEPT_KEYWORDS for each profile (regression from r3231).Zac Medico2006-04-261-2/+3
| | | | svn path=/main/trunk/; revision=3240
* Remove portage.config.root (from r3229) and just use config["ROOT"] to ↵Zac Medico2006-04-261-10/+11
| | | | | | eliminate redundancy. svn path=/main/trunk/; revision=3239
* 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