summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-13 07:48:45 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-13 07:48:45 +0000
commit122ade8290a3d932defadebd015f4e71777b83fc (patch)
tree10d967fa3010808b78e1a4feffddab821b09bf31
parent01046ced37ae00d25f00323acbb12dbe91717a9d (diff)
downloadportage-122ade8290a3d932defadebd015f4e71777b83fc.tar.gz
portage-122ade8290a3d932defadebd015f4e71777b83fc.tar.bz2
portage-122ade8290a3d932defadebd015f4e71777b83fc.zip
Make depgraph._add_pkg() match the package with all possible
args and add them to the digraph. svn path=/main/trunk/; revision=8496
-rw-r--r--pym/_emerge/__init__.py48
1 files changed, 26 insertions, 22 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index 78e729ffc..63d38041c 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -1416,12 +1416,10 @@ class depgraph(object):
vardbapi = self.trees[pkg.root]["vartree"].dbapi
pkgsettings = self.pkgsettings[pkg.root]
- arg = None
+ args = None
if True:
- # TODO: Find all matching args here and add all the
- # corresponding relationships to the graph.
try:
- arg = self._get_arg_for_pkg(pkg)
+ args = list(self._iter_args_for_pkg(pkg))
except portage.exception.InvalidDependString, e:
if not pkg.installed:
show_invalid_depstring_notice(
@@ -1449,7 +1447,9 @@ class depgraph(object):
if pkg.cpv == existing_node.cpv:
# The existing node can be reused.
self._parent_child_digraph.add(existing_node, myparent)
- self._parent_child_digraph.add(existing_node, arg)
+ if args:
+ for arg in args:
+ self._parent_child_digraph.add(existing_node, arg)
# If a direct circular dependency is not an unsatisfied
# buildtime dependency then drop it here since otherwise
# it can skew the merge order calculation in an unwanted
@@ -1511,14 +1511,16 @@ class depgraph(object):
del e
return 0
- if arg:
+ if args:
self._set_nodes.add(pkg)
# Do this even when addme is False (--onlydeps) so that the
# parent/child relationship is always known in case
# self._show_slot_collision_notice() needs to be called later.
self._parent_child_digraph.add(pkg, myparent)
- self._parent_child_digraph.add(pkg, arg)
+ if args:
+ for arg in args:
+ self._parent_child_digraph.add(pkg, arg)
""" This section determines whether we go deeper into dependencies or not.
We want to go deeper on a few occasions:
@@ -1537,7 +1539,7 @@ class depgraph(object):
self.spinner.update()
- if arg:
+ if args:
depth = 0
pkg.depth = depth
dep_stack.append(pkg)
@@ -1673,6 +1675,18 @@ class depgraph(object):
# dependencies.
self._filtered_trees[root]["atoms"].clear()
+ def _iter_args_for_pkg(self, pkg):
+ # TODO: add multiple $ROOT support
+ if pkg.root != self.target_root:
+ return
+ atom_arg_map = self._atom_arg_map
+ for atom in self._set_atoms.iterAtomsForPackage(pkg):
+ for arg in atom_arg_map[(atom, pkg.root)]:
+ if isinstance(arg, PackageArg) and \
+ arg.package != pkg:
+ continue
+ yield arg
+
def _get_arg_for_pkg(self, pkg):
"""
Return a matching DependencyArg instance for the given Package if
@@ -1681,21 +1695,11 @@ class depgraph(object):
This will raise an InvalidDependString exception if PROVIDE is invalid.
"""
- # TODO: add multiple $ROOT support
- if pkg.root != self.target_root:
- return None
- atom_arg_map = self._atom_arg_map
any_arg = None
- for atom in self._set_atoms.iterAtomsForPackage(pkg):
- refs = atom_arg_map[(atom, pkg.root)]
- for arg in refs:
- if isinstance(arg, PackageArg):
- # TODO: Implement a better comparison to ensure that
- # these two packages really are identical.
- if arg.package.type_name != pkg.type_name:
- continue
- return arg
- any_arg = arg
+ for arg in self._iter_args_for_pkg(pkg):
+ if isinstance(arg, PackageArg):
+ return arg
+ any_arg = arg
return any_arg
def select_files(self, myfiles):