Bug #287869 - Add a --selective[=n] option (inverse of --oneshot). This is
authorZac Medico <zmedico@gentoo.org>
Sun, 18 Oct 2009 03:55:06 +0000 (03:55 -0000)
committerZac Medico <zmedico@gentoo.org>
Sun, 18 Oct 2009 03:55:06 +0000 (03:55 -0000)
useful if you want to use EMERGE_DEFAULT_OPTS to make --oneshot behavior
default. (trunk r14615)

svn path=/main/branches/2.1.7/; revision=14643

man/emerge.1
pym/_emerge/help.py
pym/_emerge/main.py

index 6ea103ce5c10be56e36875a554ada14320f504ef..e6aaf7bef49275726d44e1a45a0e767efb90a2df 100644 (file)
@@ -469,6 +469,12 @@ be enabled under normal circumstances. For currently supported
 \fBDEPEND\fR variable. However, behavior may change for new
 \fBEAPI\fRs when related extensions are added in the future.
 .TP
+.BR "\-\-select"[=n]
+Add specified packages to the world set (inverse of
+\fB\-\-oneshot\fR). This is useful if you want to
+use \fBEMERGE_DEFAULT_OPTS\fR to make
+\fB\-\-oneshot\fR behavior default.
+.TP
 .BR "\-\-selective"[=n]
 This is similar to the \fB\-\-noreplace\fR option, except that it
 does not take precedence over options such as \fB\-\-newuse\fR.
index ce5d4107da98c9b7e9884bf5fb3425953f764e50..3f18b542924549e74795a902ee0cb1cc3d1f012c 100644 (file)
@@ -499,6 +499,14 @@ def help(myopts, havecolor=1):
                for line in wrap(desc, desc_width):
                        print(desc_indent + line)
                print()
+               print("       " + green("--select") + "[=%s]" % turquoise("n"))
+               desc = "Add specified packages to the world set (inverse of " + \
+                       "--oneshot). This is useful if you want to " + \
+                       "use EMERGE_DEFAULT_OPTS to make " + \
+                       "--oneshot behavior default."
+               for line in wrap(desc, desc_width):
+                       print(desc_indent + line)
+               print()
                print("       " + green("--selective") + "[=%s]" % turquoise("n"))
                desc = "This is similar to the --noreplace option, except that it " + \
                        "does not take precedence over options such as --newuse. " + \
index 4215d80b9841ca73d3e52586b82963e18fe0e69b..10e605e568b9d609fb6b1928fb96a7687c4133b5 100644 (file)
@@ -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