summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/main.py')
-rw-r--r--pym/_emerge/main.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index 4215d80b9..10e605e56 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -311,6 +311,7 @@ def insert_optional_args(args):
'--jobs' : valid_integers,
'--keep-going' : ('n',),
'--root-deps' : ('rdeps',),
+ '--select' : ('n',),
'--selective' : ('n',),
'--usepkg' : ('n',),
'--usepkgonly' : ('n',),
@@ -535,6 +536,13 @@ def parse_opts(tmpcmdline, silent=False):
"choices" :("True", "rdeps")
},
+ "--select": {
+ "help" : "add specified packages to the world set " + \
+ "(inverse of --oneshot)",
+ "type" : "choice",
+ "choices" : ("True", "n")
+ },
+
"--selective": {
"help" : "similar to the --noreplace but does not take " + \
"precedence over options such as --newuse",
@@ -626,6 +634,11 @@ def parse_opts(tmpcmdline, silent=False):
if myoptions.root_deps == "True":
myoptions.root_deps = True
+ if myoptions.select == "True":
+ myoptions.oneshot = False
+ elif myoptions.select == "n":
+ myoptions.oneshot = True
+
if myoptions.selective == "True":
myoptions.selective = True