From 67c0d95b81cd733e397a138ae9ca532e87cef125 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 23 Oct 2010 03:33:50 -0700 Subject: depgraph minimize_children: yield highest version --- pym/_emerge/depgraph.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pym/_emerge') diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 35512fc16..eea7964de 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1431,7 +1431,10 @@ class depgraph(object): for atom in chain(conflict_atoms, normal_atoms): child_pkgs = atom_pkg_graph.child_nodes(atom) - yield (atom, child_pkgs[0]) + # if more than one child, yield highest version + if len(child_pkgs) > 1: + child_pkgs.sort() + yield (atom, child_pkgs[-1]) def _queue_disjunctive_deps(self, pkg, dep_root, dep_priority, dep_struct): """ -- cgit v1.2.3-1-g7c22