summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-01-08 23:56:57 +0000
committerZac Medico <zmedico@gentoo.org>2009-01-08 23:56:57 +0000
commitb3c99b23d8f83cc391dea23abe03af33042db622 (patch)
tree24ade87e377570e76d59cc27afd2473773f2b03a /bin/repoman
parent445a525e04f1f2069d705ebb948aba92075dd6d0 (diff)
downloadportage-b3c99b23d8f83cc391dea23abe03af33042db622.tar.gz
portage-b3c99b23d8f83cc391dea23abe03af33042db622.tar.bz2
portage-b3c99b23d8f83cc391dea23abe03af33042db622.zip
Add some blank lines around the messages that suggest --without-mask and
--include-dev. Thanks to Ryan Hill <dirtyepic@g.o> for the suggestion. svn path=/main/trunk/; revision=12400
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman21
1 files changed, 16 insertions, 5 deletions
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: