summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-04 18:29:33 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-04 18:29:33 +0000
commit813af3115fb35f4b84ebe5fec46ed2a43da8e813 (patch)
treefdbf6070247b7f9ab14a706ca23c0fbf77e3b04d /pym
parent47adb9c842ac91879f46cd886bc08b83efe9f637 (diff)
downloadportage-813af3115fb35f4b84ebe5fec46ed2a43da8e813.tar.gz
portage-813af3115fb35f4b84ebe5fec46ed2a43da8e813.tar.bz2
portage-813af3115fb35f4b84ebe5fec46ed2a43da8e813.zip
Display the note referencing "masked packages" docs when there are
installed masked packages to display. svn path=/main/trunk/; revision=9705
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py35
1 files changed, 20 insertions, 15 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index aca70204e..12a403e94 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -1158,7 +1158,7 @@ def show_masked_packages(masked_packages):
print "- "+cpv+" (masked by: "+", ".join(mreasons)+")"
if comment and comment not in shown_comments:
print filename+":"
- print comment
+ print comment,
shown_comments.add(comment)
portdb = root_config.trees["porttree"].dbapi
for l in missing_licenses:
@@ -2568,9 +2568,7 @@ class depgraph(object):
from textwrap import wrap
for line in wrap(msg, 75):
print line
- print
- print "For more information, see MASKED PACKAGES section in the emerge man page or "
- print "refer to the Gentoo Handbook."
+ show_mask_docs()
else:
print "\nemerge: there are no ebuilds to satisfy "+green(xinfo)+"."
if myparent:
@@ -4104,17 +4102,6 @@ class depgraph(object):
# TODO: Add generic support for "set problem" handlers so that
# the below warnings aren't special cases for world only.
- masked_packages = []
- for pkg, pkgsettings in self._masked_installed:
- root_config = self.roots[pkg.root]
- mreasons = get_masking_status(pkg, pkgsettings, root_config)
- masked_packages.append((root_config, pkgsettings,
- pkg.cpv, pkg.metadata, mreasons))
- if masked_packages:
- sys.stderr.write("\n" + colorize("BAD", "!!!") + \
- " The following installed packages are masked:\n")
- show_masked_packages(masked_packages)
-
if self._missing_args:
world_problems = False
if "world" in self._sets:
@@ -4177,6 +4164,19 @@ class depgraph(object):
msg.append("package.provided entry exists.\n\n")
sys.stderr.write("".join(msg))
+ masked_packages = []
+ for pkg, pkgsettings in self._masked_installed:
+ root_config = self.roots[pkg.root]
+ mreasons = get_masking_status(pkg, pkgsettings, root_config)
+ masked_packages.append((root_config, pkgsettings,
+ pkg.cpv, pkg.metadata, mreasons))
+ if masked_packages:
+ sys.stderr.write("\n" + colorize("BAD", "!!!") + \
+ " The following installed packages are masked:\n")
+ show_masked_packages(masked_packages)
+ show_mask_docs()
+ print
+
for pargs, kwargs in self._unsatisfied_deps_for_display:
self._show_unsatisfied_dep(*pargs, **kwargs)
@@ -5596,6 +5596,11 @@ def show_blocker_docs_link():
print "http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#blocked"
print
+def show_mask_docs():
+ print
+ print "For more information, see MASKED PACKAGES section in the emerge man page or "
+ print "refer to the Gentoo Handbook."
+
def action_sync(settings, trees, mtimedb, myopts, myaction):
xterm_titles = "notitles" not in settings.features
emergelog(xterm_titles, " === sync")