From: Zac Medico Date: Fri, 2 May 2008 19:03:28 +0000 (-0000) Subject: In depgraph._complete_graph(), use cached Package instances instead X-Git-Tag: v2.1.5~97 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=048b48cf4a583d507d46d1d5e833f54fb966580e;p=portage.git In depgraph._complete_graph(), use cached Package instances instead of constructing new ones. (trunk r10096) svn path=/main/branches/2.1.2/; revision=10097 --- diff --git a/bin/emerge b/bin/emerge index 28bdbee1d..af42ebfa5 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3241,7 +3241,7 @@ class depgraph(object): # that are initially satisfied. while self._unsatisfied_deps: dep = self._unsatisfied_deps.pop() - matches = vardb.match(dep.atom) + matches = vardb.match_pkgs(dep.atom) if not matches: # Initially unsatisfied. continue @@ -3249,12 +3249,7 @@ class depgraph(object): # Add the installed package to the graph so that it # will be appropriately reported as a slot collision # (possibly solvable via backtracking). - cpv = matches[-1] # highest match - metadata = dict(izip(self._mydbapi_keys, - vardb.aux_get(cpv, self._mydbapi_keys))) - pkg = Package(type_name="installed", root=root, - cpv=cpv, metadata=metadata, built=True, - installed=True) + pkg = matches[-1] # highest match if not self._add_pkg(pkg, dep.parent, priority=dep.priority, depth=dep.depth): return 0