summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/main.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-16 22:47:55 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-16 22:47:55 +0000
commit476f06d82b3a199f651b89b83779c723a6980c2b (patch)
tree42511eea224e65e7cb1e3f6fab58b2e36c412ffb /pym/_emerge/main.py
parentacbf44ae32b2e30a472accce4bd416db45355207 (diff)
downloadportage-476f06d82b3a199f651b89b83779c723a6980c2b.tar.gz
portage-476f06d82b3a199f651b89b83779c723a6980c2b.tar.bz2
portage-476f06d82b3a199f651b89b83779c723a6980c2b.zip
Bug #266454 - Make @world an all-inclusive set once again, like it was prior
to portage-2.2_rc* releases. In addition to @system, @world now includes a @selected set which represents user-selected "world" packages and sets that saved in /var/lib/portage/world{,sets}. svn path=/main/trunk/; revision=14614
Diffstat (limited to 'pym/_emerge/main.py')
-rw-r--r--pym/_emerge/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index 667a811df..3e445b2e8 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -904,8 +904,8 @@ def expand_set_arguments(myfiles, myaction, root_config):
for e in setconfig.errors:
print(colorize("BAD", "Error during set creation: %s" % e))
- # emerge relies on the existance of sets with names "world" and "system"
- required_sets = ("world", "system")
+ # emerge requires existence of "world", "selected", and "system"
+ required_sets = ("selected", "system", "world",)
missing_sets = []
for s in required_sets: