Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 293730
Collapse All | Expand All

(-)pym/_emerge/depgraph.py (-1 / +4 lines)
Lines 5278-5284 Link Here
5278
			# conflicts).
5278
			# conflicts).
5279
			highest_visible, in_graph = self._depgraph._select_package(
5279
			highest_visible, in_graph = self._depgraph._select_package(
5280
				self._root, pkg.slot_atom)
5280
				self._root, pkg.slot_atom)
5281
			if pkg != highest_visible:
5281
			# Note: highest_visible is not necessarily the real highest
5282
			# visible, especially when --update is not enabled, so use
5283
			# < operator instead of !=.
5284
			if pkg < highest_visible:
5282
				return False
5285
				return False
5283
		elif in_graph != pkg:
5286
		elif in_graph != pkg:
5284
			# Mask choices for packages that would trigger a slot
5287
			# Mask choices for packages that would trigger a slot

Return to bug 293730