From: Zac Medico Date: Fri, 27 Oct 2006 08:05:54 +0000 (-0000) Subject: Add --with-bdeps to emerge --help output. X-Git-Tag: v2.1.2~539 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d105a7744b07f5d2274cbacf198115950bfed986;p=portage.git Add --with-bdeps to emerge --help output. svn path=/main/trunk/; revision=4851 --- diff --git a/pym/emergehelp.py b/pym/emergehelp.py index 9b1c9032a..50521ca33 100644 --- a/pym/emergehelp.py +++ b/pym/emergehelp.py @@ -17,6 +17,7 @@ def shorthelp(): print " "+turquoise("emerge")+" "+turquoise("--help")+" [ "+green("system")+" | "+green("world")+" | "+green("config")+" | "+green("--sync")+" ] " print bold("Options:")+" "+green("-")+"["+green("abBcCdDefgGhikKlnNoOpqPsStuvV")+"] ["+green("--oneshot")+"] ["+green("--newuse")+"] ["+green("--noconfmem")+"]" print " ["+green("--columns")+"] ["+green("--nocolor")+"] ["+green("--nospinner")+"]" + print " [ "+green("--deep")+" ] [" + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ]" print bold("Actions:")+" [ "+green("--clean")+" | "+green("--depclean")+" | "+green("--prune")+" | "+green("--regen")+" | "+green("--search")+" | "+green("--unmerge")+" ]" print @@ -313,6 +314,13 @@ def help(myaction,myopts,havecolor=1): print " Effects vary, but the general outcome is an increased or expanded" print " display of content in portage's displays." print + print " "+green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" >" + print " In dependency calculations, pull in build time dependencies that" + print " are not strictly required. This defaults to 'n' for installation" + print " actions and 'y' for the --depclean action. This setting can be" + print " added to EMERGE_DEFAULT_OPTS (see make.conf(5)) and later" + print " overridden via the command line." + print elif myaction == "sync": print print bold("Usage: ")+turquoise("emerge")+" "+turquoise("--sync")