summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* make PROFILE_ONLY_VARIABLES incrementalMarius Mauch2007-10-231-1/+1
| | | | svn path=/main/trunk/; revision=8253
* protect variables specified in PROFILE_ONLY_VARIABLES from being set by the userMarius Mauch2007-10-231-1/+13
| | | | svn path=/main/trunk/; revision=8252
* add quickie logger functionAlec Warner2007-10-231-0/+10
| | | | svn path=/main/trunk/; revision=8251
* Begin to use python logging framework. Remove if quiet < bla logic and ↵Alec Warner2007-10-231-58/+41
| | | | | | instead use loglevels (critical, error, warn, info, debug). Default to WARN for repoman, which will print CRITICAL, ERROR, and WARN messages. one -v will print INFO messages and two -v's will print DEBUG messages, each -q will reduce the loglevel by one. -q and -v can be given in any order. svn path=/main/trunk/; revision=8250
* Don't show the "checking files for package collisions" messageZac Medico2007-10-231-2/+3
| | | | | | when --quiet is enabled. svn path=/main/trunk/; revision=8248
* aha, i knew that diff was screwy, the mail to portage-commits and grep made ↵Alec Warner2007-10-231-71/+0
| | | | | | it obvious as to why; lets try removing those dupe checks. svn path=/main/trunk/; revision=8247
* fix tabbingAlec Warner2007-10-231-1/+1
| | | | svn path=/main/trunk/; revision=8246
* Sigh, this integration did not go well, please check the diff (it seemed to ↵Alec Warner2007-10-231-216/+283
| | | | | | add some weird ass code, but it looked fine on sources.gentoo.org). Next time I'll try and either work in a branch or commit faster ;) svn path=/main/trunk/; revision=8245
* Print the Id tag an it's own line to avoid goingZac Medico2007-10-231-2/+2
| | | | | | over 80 columns. svn path=/main/trunk/; revision=8243
* Fix the version Id tag.Zac Medico2007-10-231-2/+1
| | | | svn path=/main/trunk/; revision=8242
* Fix config.setinst() to return early when the givenZac Medico2007-10-231-0/+3
| | | | | | package already provides the virtual. svn path=/main/trunk/; revision=8240
* Remove a redundant self.treeVirtuals deepcopy from theZac Medico2007-10-231-2/+1
| | | | | | config constructor. svn path=/main/trunk/; revision=8238
* Bug #196652 - Check for useless ABOUT-NLS|COPYING|LICENSEZac Medico2007-10-232-3/+23
| | | | | | files in dodoc arguments. svn path=/main/trunk/; revision=8236
* Fix broken imports.Zac Medico2007-10-221-2/+2
| | | | svn path=/main/trunk/; revision=8235
* In depgraph.create(), if a direct circular dependency isZac Medico2007-10-221-6/+9
| | | | | | | | not an unsatisfied buildtime dependency then drop it here since otherwise it can skew the merge order calculation in an unwanted way. svn path=/main/trunk/; revision=8233
* In depgraph.create(), don't ignore direct circular dependenciesZac Medico2007-10-221-8/+7
| | | | | | | | anymore since altlist() is able to handle it properly in cases where the dependency is satisfied. If the dep is unsatisfied then it can not be ignored. svn path=/main/trunk/; revision=8225
* Bug #184118 - Add an emaint "cleanresume" action that deletesZac Medico2007-10-221-1/+50
| | | | | | | any existing resume lists from the mtimedb. Thanks to Arfrever Frehtes Taifersar Arahesis for the initial patch. svn path=/main/trunk/; revision=8224
* Bug #196680 - Handle a CacheError inside mirror_cache() whenZac Medico2007-10-221-0/+4
| | | | | | reading from the source cache. svn path=/main/trunk/; revision=8222
* Combine depgraph._select_dep() into create() so thatZac Medico2007-10-211-107/+75
| | | | | | | | create() simply calls itself recursively. In order to implement backtracking, create() will eventually operate on a stack instead of calling itself. svn path=/main/trunk/; revision=8221
* Always pass package metadata into depgraph.create() soZac Medico2007-10-211-13/+8
| | | | | | it doesn't have to get it itself. svn path=/main/trunk/; revision=8220
* Do a loop over each dependency type to simplifyZac Medico2007-10-211-19/+11
| | | | | | select_dep() calls. svn path=/main/trunk/; revision=8219
* Don't catch a ValueError if it isn't the type that's expectedZac Medico2007-10-211-0/+3
| | | | | | from portage.cpv_expand(). svn path=/main/trunk/; revision=8218
* Fix NewsManager.getUnreadItems() so that it works properlyZac Medico2007-10-211-13/+16
| | | | | | for an unprivileged user in readonly mode. svn path=/main/trunk/; revision=8215
* Bug #196427 - Prevent various news related tracebacksZac Medico2007-10-212-3/+11
| | | | | | | from occuring when running emerge as an unprivileged user in --pretend mode. svn path=/main/trunk/; revision=8214
* note that sets can't contain other setsMarius Mauch2007-10-211-1/+1
| | | | svn path=/main/trunk/; revision=8207
* add some notes about restrictions wrt package setsMarius Mauch2007-10-212-0/+11
| | | | svn path=/main/trunk/; revision=8206
* fix commentMarius Mauch2007-10-211-1/+1
| | | | svn path=/main/trunk/; revision=8204
* ignore "permission denied" errors when changing perms of news skipfile that ↵Marius Mauch2007-10-211-1/+10
| | | | | | happen when running with user priviledges in pretend mode svn path=/main/trunk/; revision=8202
* restore proper call logicMarius Mauch2007-10-211-1/+3
| | | | svn path=/main/trunk/; revision=8201
* Remove slashes that cause problems when unpacking files with relative paths ↵Marius Mauch2007-10-211-4/+4
| | | | | | (bug #196565) svn path=/main/trunk/; revision=8200
* Remove uneeded "arg" and "addme" parameters where possible.Zac Medico2007-10-211-7/+4
| | | | svn path=/main/trunk/; revision=8199
* Use a "depth" parameter to track depth of recursion relativeZac Medico2007-10-211-25/+23
| | | | | | to the nearest argument atom. svn path=/main/trunk/; revision=8198
* Split the "arg" parameter out of depgraph.select_dep() soZac Medico2007-10-211-25/+26
| | | | | | | that it's used purely for processing atoms that are pulled in by parent packages. svn path=/main/trunk/; revision=8197
* Bug #196537 - Make portageq check that the <root> parameterZac Medico2007-10-211-7/+13
| | | | | | is an existing directory and exit gracefully if not. svn path=/main/trunk/; revision=8195
* Make depgraph.xcreate() use the filtered repo to determineZac Medico2007-10-211-13/+13
| | | | | | | availablility of system/world atoms so that the raise_on_missing parameter can be removed from depgraph.select_dep(). svn path=/main/trunk/; revision=8194
* Raise an InvalidDependString exception if necessary whenZac Medico2007-10-211-41/+24
| | | | | | | the depgraph is populating the filtered repo so that we don't have to check the return value. svn path=/main/trunk/; revision=8193
* Rename variable for consistency.Zac Medico2007-10-211-2/+2
| | | | svn path=/main/trunk/; revision=8192
* Split the atom selection logic out of depgraph.select_dep().Zac Medico2007-10-211-39/+41
| | | | svn path=/main/trunk/; revision=8191
* Split the package selection logic out of depgraph.select_dep().Zac Medico2007-10-201-173/+181
| | | | svn path=/main/trunk/; revision=8190
* Split the masked packages display out of depgraph.select_dep().Zac Medico2007-10-201-91/+95
| | | | svn path=/main/trunk/; revision=8189
* Use a simple Package class to bundle package dataZac Medico2007-10-201-22/+37
| | | | | | for depgraph.create() calls. svn path=/main/trunk/; revision=8188
* Allow the depgraph to add old-style virtual providers butZac Medico2007-10-202-4/+28
| | | | | | | prefer any pre-existing providers over new ones that are added. svn path=/main/trunk/; revision=8187
* Remove the config.setinst() call from depgraph.select_dep()Zac Medico2007-10-201-28/+0
| | | | | | | | | | | since it's never really guaranteed to work as intended. It's supposed to help ensure that the correct old-style virtual is preferred but it will often fail to do so, making it necessary for the user to manually force the preference. Proper backtracking (bug #1343) will solve the problem more reliably. svn path=/main/trunk/; revision=8186
* Bug #196435 - Add some more references to quickpkg(1) sinceZac Medico2007-10-193-8/+22
| | | | | | sometimes people don't realize that it exists. svn path=/main/trunk/; revision=8185
* Refactor _merge_logentries() to make it a little more efficient.Zac Medico2007-10-191-7/+6
| | | | svn path=/main/trunk/; revision=8184
* Use a list to buffer strings in _combine_logentries() and doZac Medico2007-10-191-5/+5
| | | | | | a single concatenation at the end for better efficiency. svn path=/main/trunk/; revision=8183
* Prevent _combine_logentries() from generating redundantZac Medico2007-10-191-1/+4
| | | | | | | consecutive 'TYPE: phase' lines that show in summary.log when the python-based elog functions are used. svn path=/main/trunk/; revision=8182
* Fix broken call to renamed _combine_logentries().Zac Medico2007-10-191-1/+1
| | | | svn path=/main/trunk/; revision=8181
* Don't show each character of the log message on a newZac Medico2007-10-191-0/+2
| | | | | | | | line when displaying messages that came from one of the python-based elog functions. This might not be the correct solution but it seems to work for now. svn path=/main/trunk/; revision=8180
* Bug #196427 - Don't display news notifications when in --pretend mode.Zac Medico2007-10-191-1/+1
| | | | svn path=/main/trunk/; revision=8179