summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-10-22 04:15:01 -0700
committerZac Medico <zmedico@gentoo.org>2010-10-22 04:15:01 -0700
commit073a9c885ceb7be164b9287b2e0cb3f4b5584367 (patch)
tree03bb4d4a96dda21b35a66b20538f27767863f2bc
parent292a277974fe1223bfa956243ac1a2bde1e20c42 (diff)
downloadportage-073a9c885ceb7be164b9287b2e0cb3f4b5584367.tar.gz
portage-073a9c885ceb7be164b9287b2e0cb3f4b5584367.tar.bz2
portage-073a9c885ceb7be164b9287b2e0cb3f4b5584367.zip
Separate conflict atoms for 'missed update'.
This will fix bug #342157.
-rw-r--r--pym/_emerge/depgraph.py48
1 files changed, 30 insertions, 18 deletions
diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index 074b55869..473c9762c 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -757,6 +757,21 @@ class depgraph(object):
return 0
return 1
+ def _check_slot_conflict(self, pkg, atom):
+ existing_node = self._dynamic_config._slot_pkg_map[pkg.root].get(pkg.slot_atom)
+ matches = None
+ if existing_node:
+ matches = pkg.cpv == existing_node.cpv
+ if pkg != existing_node and \
+ atom is not None:
+ # Use package set for matching since it will match via
+ # PROVIDE when necessary, while match_from_list does not.
+ matches = bool(InternalPackageSet(initial_atoms=(atom,),
+ allow_repo=True).findAtomForPackage(existing_node,
+ modified_use=self._pkg_use_enabled(existing_node)))
+
+ return (existing_node, matches)
+
def _add_pkg(self, pkg, dep):
myparent = None
priority = None
@@ -812,20 +827,10 @@ class depgraph(object):
# are being merged in that case.
priority.rebuild = True
- existing_node = self._dynamic_config._slot_pkg_map[pkg.root].get(pkg.slot_atom)
+ existing_node, existing_node_matches = \
+ self._check_slot_conflict(pkg, dep.atom)
slot_collision = False
if existing_node:
- existing_node_matches = pkg.cpv == existing_node.cpv
- if existing_node_matches and \
- pkg != existing_node and \
- dep.atom is not None:
- # Use package set for matching since it will match via
- # PROVIDE when necessary, while match_from_list does not.
- atom_set = InternalPackageSet(initial_atoms=[dep.atom],
- allow_repo=True)
- if not atom_set.findAtomForPackage(existing_node, \
- modified_use=self._pkg_use_enabled(existing_node)):
- existing_node_matches = False
if existing_node_matches:
# The existing node can be reused.
if arg_atoms:
@@ -1392,15 +1397,22 @@ class depgraph(object):
# Yield ~, =*, < and <= atoms first, since those are more likely to
# cause slot conflicts, and we want those atoms to be displayed
# in the resulting slot conflict message (see bug #291142).
- less_than = []
- not_less_than = []
+ conflict_atoms = []
+ normal_atoms = []
for atom in cp_atoms:
- if atom.operator in ('~', '=*', '<', '<='):
- less_than.append(atom)
+ conflict = False
+ for child_pkg in atom_pkg_graph.child_nodes(atom):
+ existing_node, matches = \
+ self._check_slot_conflict(child_pkg, atom)
+ if existing_node and not matches:
+ conflict = True
+ break
+ if conflict:
+ conflict_atoms.append(atom)
else:
- not_less_than.append(atom)
+ normal_atoms.append(atom)
- for atom in chain(less_than, not_less_than):
+ for atom in chain(conflict_atoms, normal_atoms):
child_pkgs = atom_pkg_graph.child_nodes(atom)
yield (atom, child_pkgs[0])