summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2011-09-19 13:45:35 +0200
committerZac Medico <zmedico@gentoo.org>2011-09-19 07:10:04 -0700
commit7e956a6ec65b9b48a9fca3e928e7c7b56fd066b6 (patch)
treeff64f9b2ec6e2feb1883d309d59f4dc818ce0011 /pym/_emerge/help.py
parent343418c4cbd1c0dbf65583adeab618db09efea6c (diff)
downloadportage-7e956a6ec65b9b48a9fca3e928e7c7b56fd066b6.tar.gz
portage-7e956a6ec65b9b48a9fca3e928e7c7b56fd066b6.tar.bz2
portage-7e956a6ec65b9b48a9fca3e928e7c7b56fd066b6.zip
autounmask: Add --autounmask-unrestricted-atoms option
The default behavior of --autounmask is now changed back to the original one, namely to use '=' operators. The --autounmask-unrestricted-atoms option allows the use of '>=' operators whenever possible. This addresses the issues raised in bugs 372405, 374331 and 379333.
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 1e62ccf1d..f5ff7a367 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -323,6 +323,14 @@ def help(myopts, havecolor=1):
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()
+ print(" " + green("--autounmask-unrestricted-atoms") + " [ %s | %s ]" % \
+ (turquoise("y"), turquoise("n")))
+ desc = "If --autounmask is enabled, changes using the '=' operator " + \
+ "will be written. With this option, '>=' operators will be used " + \
+ "whenever possible."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" " + green("--autounmask-write") + " [ %s | %s ]" % \
(turquoise("y"), turquoise("n")))
desc = "If --autounmask is enabled, changes are written " + \