Add support for --complete-graph=n so that it's possible to disable it on
authorZac Medico <zmedico@gentoo.org>
Sat, 1 Aug 2009 18:58:23 +0000 (18:58 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 1 Aug 2009 18:58:23 +0000 (18:58 -0000)
the command line after it's been enabled in EMERGE_DEFAULT_OPTS.

svn path=/main/trunk/; revision=13872

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

index 07f511fa432329cff2101ac9bd17e15a02c510aa..45cf951556a6d0ff0ba394009f0a1c9ec54ebc04 100644 (file)
@@ -281,7 +281,7 @@ is not a tty (by default, color is disabled unless stdout is a tty).
 Used alongside \fB\-\-pretend\fR to cause the package name, new version, 
 and old version to be displayed in an aligned format for easy cut\-n\-paste.
 .TP
-.BR "\-\-complete\-graph"
+.BR "\-\-complete\-graph[=n]"
 This causes \fBemerge\fR to consider the deep dependencies of all
 packages from the system and world sets. With this option enabled,
 \fBemerge\fR will bail out if it determines that the given operation will
index 3938866985c9ae77d2d9aa3f5fdfd1115f3917d7..4c4525a4dd13ea889d8c845358463bcfb135c4b3 100644 (file)
@@ -287,7 +287,7 @@ def help(myopts, havecolor=1):
                print "              Display the pretend output in a tabular form. Versions are"
                print "              aligned vertically."
                print
-               print "       "+green("--complete-graph")
+               print "       "+green("--complete-graph") + "[=%s]" % turquoise("n")
                desc = "This causes emerge to consider the deep dependencies of all" + \
                        " packages from the system and world sets. With this option enabled," + \
                        " emerge will bail out if it determines that the given operation will" + \
index dae28fa66ce98c9737903ec212beb3ac5954862e..fbdcc58f5d777bcff2ab60291beb51b6f074f2d8 100644 (file)
@@ -48,7 +48,6 @@ options=[
 "--ask",          "--alphabetical",
 "--buildpkg",     "--buildpkgonly",
 "--changelog",    "--columns",
-"--complete-graph",
 "--debug",
 "--digest",
 "--emptytree",
@@ -383,6 +382,7 @@ def insert_optional_args(args):
        new_args = []
 
        default_arg_opts = {
+               '--complete-graph' : ('n',),
                '--deep'       : valid_integers,
                '--deselect'   : ('n',),
                '--binpkg-respect-use'   : ('n', 'y',),
@@ -490,6 +490,12 @@ def parse_opts(tmpcmdline, silent=False):
                        "choices":("y", "n")
                },
 
+               "--complete-graph": {
+                       "help"    : "completely account for all known dependencies",
+                       "type"    : "choice",
+                       "choices" : ("True", "n")
+               },
+
                "--deep": {
 
                        "shortopt" : "-D",
@@ -595,6 +601,11 @@ def parse_opts(tmpcmdline, silent=False):
        else:
                myoptions.binpkg_respect_use = None
 
+       if myoptions.complete_graph in ("y", "True",):
+               myoptions.complete_graph = True
+       else:
+               myoptions.complete_graph = None
+
        if myoptions.root_deps == "True":
                myoptions.root_deps = True