When showing an unsatisfied dep, never include installed packages.
authorZac Medico <zmedico@gentoo.org>
Tue, 19 Feb 2008 08:47:11 +0000 (08:47 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 19 Feb 2008 08:47:11 +0000 (08:47 -0000)
svn path=/main/trunk/; revision=9360

pym/_emerge/__init__.py

index e31ea27ee214410a6587b418f7912ce522beaa1f..d1e3889a35357be0470b52809dd716a95cdc1d70 100644 (file)
@@ -2493,6 +2493,8 @@ class depgraph(object):
                portdb = self.roots[root].trees["porttree"].dbapi
                dbs = self._filtered_trees[root]["dbs"]
                for db, pkg_type, built, installed, db_keys in dbs:
+                       if installed:
+                               continue
                        match = db.match
                        if hasattr(db, "xmatch"):
                                cpv_list = db.xmatch("match-all", atom)