Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 350285 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/_emerge/depgraph.py (-2 / +6 lines)
Lines 5426-5432 class _dep_check_composite_db(dbapi): Link Here
5426
				arg = None
5426
				arg = None
5427
			if arg:
5427
			if arg:
5428
				return False
5428
				return False
5429
		if pkg.installed and not self._depgraph._pkg_visibility_check(pkg):
5429
		if pkg.installed and \
5430
			(pkg.masks or not self._depgraph._pkg_visibility_check(pkg)):
5431
			# Account for packages with masks (like KEYWORDS masks)
5432
			# that are usually ignored in visibility checks for
5433
			# installed packages, in order to handle cases like
5434
			# bug #350285.
5430
			return False
5435
			return False
5431
		in_graph = self._depgraph._dynamic_config._slot_pkg_map[
5436
		in_graph = self._depgraph._dynamic_config._slot_pkg_map[
5432
			self._root].get(pkg.slot_atom)
5437
			self._root].get(pkg.slot_atom)
5433
- 

Return to bug 350285