summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-04-01 01:49:22 +0000
committerZac Medico <zmedico@gentoo.org>2009-04-01 01:49:22 +0000
commit1cc9b5f31812a4963c16d6b7b4304dbf5958e9bd (patch)
tree20f0a8f57bc976094b10efb677eb958004c83964 /pym/_emerge/help.py
parent358a34b09b6f8213442564fbe087fa2a0f5d5a46 (diff)
downloadportage-1cc9b5f31812a4963c16d6b7b4304dbf5958e9bd.tar.gz
portage-1cc9b5f31812a4963c16d6b7b4304dbf5958e9bd.tar.bz2
portage-1cc9b5f31812a4963c16d6b7b4304dbf5958e9bd.zip
Combine the --rdeps-only and --root-deps options into a single --root-deps
option which takes an optional 'rdeps' argument. svn path=/main/trunk/; revision=13267
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py22
1 files changed, 8 insertions, 14 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 15aa88a02..033c93a55 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -410,15 +410,6 @@ def help(myaction,myopts,havecolor=1):
print " Effects vary, but the general outcome is a reduced or condensed"
print " output from portage's displays."
print
- print " "+green("--rdeps-only")
- desc = "Discard all build-time dependencies. This option is commonly used together " + \
- "with ROOT and it should not be enabled under normal circumstances. For " + \
- "currently supported EAPI values, the dependencies specified in the " + \
- "DEPEND variable are discarded. However, behavior may change for new " + \
- "EAPIs when related extensions are added in the future."
- for line in wrap(desc, desc_width):
- print desc_indent + line
- print
print " "+green("--reinstall ") + turquoise("changed-use")
print " Tells emerge to include installed packages where USE flags have"
print " changed since installation. Unlike --newuse, this option does"
@@ -431,11 +422,14 @@ def help(myaction,myopts,havecolor=1):
for line in wrap(desc, desc_width):
print desc_indent + line
print
- print " "+green("--root-deps")
- desc = "Install build-time dependencies to ROOT instead of /. This option " + \
- "should not be enabled under normal circumstances. For currently supported " + \
- "EAPI values, the dependencies specified in the DEPEND variable " + \
- "are used. However, behavior may change for new " + \
+ print " "+green("--root-deps[=rdeps]")
+ desc = "If no argument is given then build-time dependencies are installed to " + \
+ "ROOT instead of /. If the rdeps argument is given then discard " + \
+ "all build-time dependencies of packages for ROOT. This option is " + \
+ "only meaningful when used together with ROOT and it should not " + \
+ "be enabled under normal circumstances. For currently supported " + \
+ "EAPI values, the build-time dependencies are specified in the " + \
+ "DEPEND variable. However, behavior may change for new " + \
"EAPIs when related extensions are added in the future."
for line in wrap(desc, desc_width):
print desc_indent + line