summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-07-07 08:52:08 +0000
committerZac Medico <zmedico@gentoo.org>2009-07-07 08:52:08 +0000
commitf2b84992e811bfa6c87ccb334ed6399f2ed6c074 (patch)
treeedc51197c6a88d5cdadaa0640552d0e944214cf5 /pym/_emerge/help.py
parent317ec856890cfca41c4655dd638e5804ce50b95c (diff)
downloadportage-f2b84992e811bfa6c87ccb334ed6399f2ed6c074.tar.gz
portage-f2b84992e811bfa6c87ccb334ed6399f2ed6c074.tar.bz2
portage-f2b84992e811bfa6c87ccb334ed6399f2ed6c074.zip
Bug #276866 - --binpkg-respect-use < y | n >
Tells emerge to ignore binary packages if their use flags don't match the current configuration. (default: ´n´) Thanks to Sebastian Mingramm (few) <s.mingramm@gmx.de> for this patch (small tweaks by me). svn path=/main/trunk/; revision=13802
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 34a4bda29..f78c2e0e0 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -249,6 +249,13 @@ def help(myopts, havecolor=1):
print " to the prompt, so an accidental press of the \"Enter\" key at any"
print " time prior to the prompt will be interpreted as a choice!"
print
+ print " " + green("--binpkg-respect-use") + \
+ " < " + turquoise("y") + " | " + turquoise("n") + " >"
+ desc = "Tells emerge to ignore binary packages if their use flags" + \
+ " don't match the current configuration. (default: 'n')"
+ for line in wrap(desc, desc_width):
+ print desc_indent + line
+ print
print " "+green("--buildpkg")+" ("+green("-b")+" short option)"
desc = "Tells emerge to build binary packages for all ebuilds processed in" + \
" addition to actually merging the packages. Useful for maintainers" + \