From: Zac Medico Date: Thu, 21 Sep 2006 03:13:58 +0000 (-0000) Subject: Add a comment about old-style virtuals inside depgraph.validate_blockers(). X-Git-Tag: v2.1.1-r1~45 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8934225b67a8365836136403dc041a4092617d6f;p=portage.git Add a comment about old-style virtuals inside depgraph.validate_blockers(). svn path=/main/trunk/; revision=4490 --- diff --git a/bin/emerge b/bin/emerge index 38cdf3a4f..b68665d42 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1243,6 +1243,9 @@ class depgraph: if node.split()[0] == "blocks"] for blocker in all_blockers: mytype, myroot, mydep = blocker.split() + """Prior to being added to the digraph, any blockers against + old-style virtuals have been expanded to real packages via + dep_virtual calls inside dep_check.""" mykey = portage.dep_getkey(mydep) valid = False pkgs = self.pkg_slots[myroot].get(mykey, None)