From: Zac Medico Date: Thu, 8 Jan 2009 23:56:57 +0000 (-0000) Subject: Add some blank lines around the messages that suggest --without-mask and X-Git-Tag: v2.2_rc21~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b3c99b23d8f83cc391dea23abe03af33042db622;p=portage.git Add some blank lines around the messages that suggest --without-mask and --include-dev. Thanks to Ryan Hill for the suggestion. svn path=/main/trunk/; revision=12400 --- diff --git a/bin/repoman b/bin/repoman index 84a023561..0fdef5181 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1634,13 +1634,24 @@ def grouplist(mylist,seperator="/"): mygroups[xs[0]]+=[seperator.join(xs[1:])] return mygroups -if have_pmasked and not (options.without_mask or options.ignore_masked): - print bold("Note: use --without-mask to check " + \ - "KEYWORDS on dependencies of masked packages") +suggest_ignore_masked = False +suggest_include_dev = False +if have_pmasked and not (options.without_mask or options.ignore_masked): + suggest_ignore_masked = True if have_dev_keywords and not options.include_dev: - print bold("Note: use --include-dev (-d) to check " + \ - "dependencies for 'dev' profiles") + suggest_include_dev = True + +if suggest_ignore_masked or suggest_include_dev: + print + if suggest_ignore_masked: + print bold("Note: use --without-mask to check " + \ + "KEYWORDS on dependencies of masked packages") + + if suggest_include_dev: + print bold("Note: use --include-dev (-d) to check " + \ + "dependencies for 'dev' profiles") + print if options.mode != 'commit': if dofull: