From: Zac Medico Date: Tue, 19 Feb 2008 08:47:11 +0000 (-0000) Subject: When showing an unsatisfied dep, never include installed packages. X-Git-Tag: v2.2_pre3~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e25e5158634241e0db8b166f22c5d224abfb0c1;p=portage.git When showing an unsatisfied dep, never include installed packages. svn path=/main/trunk/; revision=9360 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index e31ea27ee..d1e3889a3 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -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)