summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Print the actual DISTDIR location in the help ouput of clean_locks for bug ↵Zac Medico2006-04-221-2/+3
| | | | | | #116676. svn path=/main/trunk/; revision=3188
* s/Do you want me/Would you like/g for bug #112439.Zac Medico2006-04-221-5/+5
| | | | svn path=/main/trunk/; revision=3187
* Exit with error status when the user has attempted to unmerge a package that ↵Zac Medico2006-04-221-4/+7
| | | | | | is not installed (bug #118515). svn path=/main/trunk/; revision=3186
* 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-212-21/+21
| | | | 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
* Use os.path.join for PORTAGE_GPG_DIR and remove a duplicate access check.Zac Medico2006-04-211-2/+2
| | | | svn path=/main/trunk/; revision=3181
* if PORTAGE_GPG_DIR is not set then default to ~/.gnupg instead of just ↵Mike Frysinger2006-04-201-1/+6
| | | | | | dumping an error svn path=/main/trunk/; revision=3180
* Fix repoman --commitmsgfile logic. Thanks to Christian Heim ↵Zac Medico2006-04-201-2/+15
| | | | | | <phreak@gentoo.org> for reporting. svn path=/main/trunk/; revision=3179
* Add and "other" EBUILD_PHASE for bug #127585. Thanks to Patrick Avery ↵Zac Medico2006-04-202-2/+3
| | | | | | <pyromancer@gmail.com> for this patch. svn path=/main/trunk/; revision=3178
* Update Manifest automatically in repoman commit mode for bug #130541.Zac Medico2006-04-201-0/+4
| | | | svn path=/main/trunk/; revision=3177
* support *.bz #130406Mike Frysinger2006-04-191-1/+1
| | | | svn path=/main/trunk/; revision=3176
* use just [[...]] instead of ((...)); especially when dealing with user inputMike Frysinger2006-04-181-15/+18
| | | | svn path=/main/trunk/; revision=3175
* s/GENTOO_MIRRORs/GENTOO_MIRRORS/Zac Medico2006-04-181-1/+1
| | | | svn path=/main/trunk/; revision=3174
* Fix gpgsign logic for bug #57445.Zac Medico2006-04-181-52/+66
| | | | svn path=/main/trunk/; revision=3173
* 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