summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update notes about package setsMarius Mauch2007-10-261-7/+7
| | | | svn path=/main/trunk/; revision=8304
* break potential cycles in set expansionMarius Mauch2007-10-261-2/+4
| | | | svn path=/main/trunk/; revision=8303
* use SetConfig.getSetAtoms instead of PackageSet.getAtoms for expanding sets ↵Marius Mauch2007-10-262-3/+4
| | | | | | to allow recursion, and drop the default 'sets/' prefix for setnames svn path=/main/trunk/; revision=8302
* use a @ prefix for sets, and replace world/system with their real prefixed ↵Marius Mauch2007-10-262-4/+13
| | | | | | names if found on the commandline svn path=/main/trunk/; revision=8301
* Allow sets to contain non-atomsMarius Mauch2007-10-252-1/+16
| | | | svn path=/main/trunk/; revision=8300
* FIX: indentation problem, also end the Portage identificationZac Medico2007-10-251-1/+1
| | | | | | | line with a ) if repoman wasn't forced to do its job. (branches/prefix r8281) svn path=/main/trunk/; revision=8296
* Fix: Make repoman actually USE -m commit message again (and -MZac Medico2007-10-251-4/+4
| | | | | | commit message file). (branches/prefix r8280) svn path=/main/trunk/; revision=8295
* Correct expected split counts for CONTENTS lines.Zac Medico2007-10-251-3/+3
| | | | svn path=/main/trunk/; revision=8294
* Handle a potential IndexError.Zac Medico2007-10-251-1/+3
| | | | svn path=/main/trunk/; revision=8293
* Remove obsolete whitespace handling code for "obj" filenamesZac Medico2007-10-251-1/+1
| | | | | | in CONTENTS. svn path=/main/trunk/; revision=8292
* Handle multiple consecutive spaces in filenames as perZac Medico2007-10-251-0/+22
| | | | | | bug #196836#c6. svn path=/main/trunk/; revision=8291
* For the emergelog message, send in the original list ofZac Medico2007-10-251-3/+3
| | | | | | arguments that exists before expansion of sets. svn path=/main/trunk/; revision=8290
* If the title string is too big then xtermTitle() canZac Medico2007-10-251-0/+5
| | | | | | | | | misbehave by causing the terminal to echo some of the characters and generate a "beep" sound. This is easily triggered by doing things like `emerge world` now since all the the atoms are expanded. svn path=/main/trunk/; revision=8289
* Filter atoms that come from sets when generatingZac Medico2007-10-251-4/+9
| | | | | | the list of atoms to record in the world file. svn path=/main/trunk/; revision=8288
* For the global AUTOCLEAN, pass an empty list into unmerge()Zac Medico2007-10-251-1/+1
| | | | | | so it behaves like it used to. svn path=/main/trunk/; revision=8287
* Spit out a depgraph._get_existing_pkg() method for getting anZac Medico2007-10-251-19/+26
| | | | | | existing Package instance added to the graph for a given SLOT. svn path=/main/trunk/; revision=8286
* Make the Package class generate the digraph nodes.Zac Medico2007-10-251-21/+29
| | | | svn path=/main/trunk/; revision=8285
* Fix inverted logic error.Zac Medico2007-10-251-1/+1
| | | | svn path=/main/trunk/; revision=8284
* Convert depgraph creation from using recursive calls toZac Medico2007-10-241-52/+86
| | | | | | | using a stack of dependencies which will be more suitable for implementation of backtracking. svn path=/main/trunk/; revision=8283
* Add back support for greedy SLOTs when --update is enabled asZac Medico2007-10-241-0/+43
| | | | | | | per bug #150361. This is currently disabled for sets since greedy SLOT atoms could be a property of the set itself. svn path=/main/trunk/; revision=8282
* Fix broken import.Zac Medico2007-10-241-1/+2
| | | | svn path=/main/trunk/; revision=8270
* Add back support for helpful `emaint --check world` suggestionsZac Medico2007-10-241-8/+32
| | | | | | and also show package masking reasons when appropriate. svn path=/main/trunk/; revision=8269
* Add back support for detecting if the world file containsZac Medico2007-10-241-6/+13
| | | | | | atoms that match packages in package.provided. svn path=/main/trunk/; revision=8268
* Add back support for handling missing system/world atomsZac Medico2007-10-241-16/+24
| | | | | | | | | that was removed with depgraph.xcreate(). This doesn't have support for mapping atoms back to the original sets yet, but at least a masked or unavailable system/world atom won't compeletely break the depgraph now. svn path=/main/trunk/; revision=8267
* Replace sys.exit() calls with return statements in emerge_main().Zac Medico2007-10-241-7/+7
| | | | svn path=/main/trunk/; revision=8266
* Remove --update greedy SLOTs code from depgraph.select_files()Zac Medico2007-10-241-34/+0
| | | | | | | | so that any desired SLOTs have to be pulled in explicitly. Any SLOTs that are not explicitly pulled in will be removed by --depclean. svn path=/main/trunk/; revision=8265
* Make world atoms non-greedy for SLOTs in action_depclean()Zac Medico2007-10-241-19/+1
| | | | | | | since users can simply add SLOT atoms to world for any specific SLOTs that they want to keep. svn path=/main/trunk/; revision=8264
* remove 'system' and 'world' as actions, and remove most of the special case ↵Marius Mauch2007-10-241-133/+21
| | | | | | code as well svn path=/main/trunk/; revision=8263
* Fix selective logic to work properly with masked packages.Zac Medico2007-10-231-2/+2
| | | | svn path=/main/trunk/; revision=8262
* Match packages against arguments earlier inZac Medico2007-10-231-9/+9
| | | | | | | depgraph._select_package() so that corrupt PROVIDE is detected sooner. svn path=/main/trunk/; revision=8261
* Fix logic for the "selective" depgraph parameter soZac Medico2007-10-231-11/+28
| | | | | | | | that it behaves correctly in cases where installed packages provide old-style virtuals but none of the available packages do. svn path=/main/trunk/; revision=8260
* document PROFILE_ONLY_VARIABLESMarius Mauch2007-10-231-1/+5
| | | | svn path=/main/trunk/; revision=8259
* revert r8256 (plans changed)Marius Mauch2007-10-236-32/+29
| | | | svn path=/main/trunk/; revision=8258
* move base classes for package sets into a separate moduleMarius Mauch2007-10-238-164/+170
| | | | svn path=/main/trunk/; revision=8257
* just pass the SetConfig instance instead of only the settings and trees ↵Marius Mauch2007-10-236-29/+32
| | | | | | attributes svn path=/main/trunk/; revision=8256
* Optimize PROFILE_ONLY_VARIABLES handling.Zac Medico2007-10-231-6/+6
| | | | svn path=/main/trunk/; revision=8255
* make 'world' and 'system' behave like their sets/ counterpartsMarius Mauch2007-10-231-2/+1
| | | | svn path=/main/trunk/; revision=8254
* 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