summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-24 07:06:07 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-24 07:06:07 +0000
commit99b36a79068dc83ec1bc08db787a6a3259d2aa9f (patch)
treed19e1a0ffe4d146d15bb554508d0e6da708ef592 /pym/_emerge
parentd7ddc38cd333b68cc8fb1ad4216feec22ac1423b (diff)
downloadportage-99b36a79068dc83ec1bc08db787a6a3259d2aa9f.tar.gz
portage-99b36a79068dc83ec1bc08db787a6a3259d2aa9f.tar.bz2
portage-99b36a79068dc83ec1bc08db787a6a3259d2aa9f.zip
Add --help output for --unordered-display, and move man page docs from the
actions to the options section. (trunk r14708) svn path=/main/branches/2.1.7/; revision=14717
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/help.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index bf8a7d526..ed5c14874 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -535,6 +535,15 @@ def help(myopts, havecolor=1):
print(" a package's dependencies follow the package. Only really useful")
print(" in combination with --emptytree, --update or --deep.")
print()
+ print(" " + green("--unordered-display"))
+ desc = "By default the displayed merge list is sorted using the " + \
+ "order in which the packages will be merged. When " + \
+ "--tree is used together with this option, this " + \
+ "constraint is removed, hopefully leading to a more " + \
+ "readable dependency tree."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" " + green("--use-ebuild-visibility") + "[=%s]" % turquoise("n"))
desc = "Use unbuilt ebuild metadata for visibility " + \
"checks on built packages."