summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-11 22:56:07 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-11 22:56:07 +0000
commit68a1fdbd2d6fc27c23b7241ca41682daec59d058 (patch)
treeabf4c68a68f0639fcadbb04d0e31be5303ea5f02 /pym/_emerge/help.py
parentb232f7bb85a9ef1db3fcd37dbac330d1134a05b0 (diff)
downloadportage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.tar.gz
portage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.tar.bz2
portage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.zip
Rename the undocumented --conistent option to --complete-graph and add
some docs. svn path=/main/trunk/; revision=9846
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 4c7505da1..b6bc541cd 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.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,"