From: Zac Medico Date: Mon, 31 Dec 2012 23:52:46 +0000 (-0800) Subject: emerge --depclean: clarify unsatisfied atoms X-Git-Tag: v2.2.0_alpha150~68 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=925eadd210dbc3802000d92f458ae7029832273e;p=portage.git emerge --depclean: clarify unsatisfied atoms If the atom is unsatisfied due to a USE dep that's only visible in the unevaluated form, then display the unevaluated form. --- diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index a498ae49d..6a3815a9c 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -829,7 +829,12 @@ def calc_depclean(settings, trees, ldpath_mtimes, msg.append("the following required packages not being installed:") msg.append("") for atom, parent in unresolvable: - msg.append(" %s pulled in by:" % (atom,)) + if atom != atom.unevaluated_atom and \ + vardb.match(_unicode(atom)): + msg.append(" %s (%s) pulled in by:" % + (atom.unevaluated_atom, atom)) + else: + msg.append(" %s pulled in by:" % (atom,)) msg.append(" %s" % (parent,)) msg.append("") msg.extend(textwrap.wrap(