summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-11 23:05:00 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-11 23:05:00 +0000
commit6844c042c68b368d3ef608f31ebdf3dd8f70b7be (patch)
tree9d08c50fbe2916f8129e815392a5c1f89367fc08 /pym
parent99b38cfc8392dd1bf65418e51a449abe5a85373a (diff)
downloadportage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.tar.gz
portage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.tar.bz2
portage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.zip
Rename the undocumented --conistent option to --complete-graph and add
some docs. (trunk r9846) svn path=/main/branches/2.1.2/; revision=9847
Diffstat (limited to 'pym')
-rw-r--r--pym/emergehelp.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/pym/emergehelp.py b/pym/emergehelp.py
index 99b1cbb60..038db6784 100644
--- a/pym/emergehelp.py
+++ b/pym/emergehelp.py
@@ -17,7 +17,7 @@ def shorthelp():
print bold("Options:")+" "+green("-")+"["+green("abBcCdDefgGhkKlnNoOpqPsStuvV")+"] ["+green("--oneshot")+"] ["+green("--newuse")+"] ["+green("--noconfmem")+"]"
print " [ " + green("--color")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ] [ "+green("--columns")+" ]"
print " [ "+green("--reinstall ")+turquoise("changed-use")+" ] ["+green("--nospinner")+"]"
- print " [ "+green("--deep")+" ] [" + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ]"
+ print " [ "+green("--complete-graph")+" ] [ "+green("--deep")+" ] [" + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ]"
print bold("Actions:")+" [ "+green("--clean")+" | "+green("--depclean")+" | "+green("--prune")+" | "+green("--regen")+" | "+green("--search")+" | "+green("--unmerge")+" ]"
def help(myaction,myopts,havecolor=1):
@@ -220,6 +220,19 @@ def help(myaction,myopts,havecolor=1):
print " Display the pretend output in a tabular form. Versions are"
print " aligned vertically."
print
+ print " "+green("--complete-graph")
+ 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" + \
+ " break any dependencies of the packages that have been added to the" + \
+ " graph. Like the --deep option, the --complete-graph" + \
+ " option will significantly increase the time taken for dependency" + \
+ " calculations. Note that, unlike the --deep option, the" + \
+ " --complete-graph option does not cause any more packages to" + \
+ " be updated than would have otherwise been updated with the option disabled."
+ for line in wrap(desc, desc_width):
+ print desc_indent + line
+ print
print " "+green("--debug")+" ("+green("-d")+" short option)"
print " Tell emerge to run the ebuild command in --debug mode. In this"
print " mode, the bash build environment will run with the -x option,"