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

(-)a/pym/_emerge/depgraph.py (-2 / +3 lines)
Lines 6879-6888 def _resume_depgraph(settings, trees, mtimedb, myopts, myparams, spinner): Link Here
6879
						unsatisfied_parents[parent_node] = parent_node
6879
						unsatisfied_parents[parent_node] = parent_node
6880
						unsatisfied_stack.append(parent_node)
6880
						unsatisfied_stack.append(parent_node)
6881
6881
6882
			unsatisfied_tuples = set(tuple(pkg)
6883
				for pkg in unsatisfied_parents)
6882
			pruned_mergelist = []
6884
			pruned_mergelist = []
6883
			for x in mergelist:
6885
			for x in mergelist:
6884
				if isinstance(x, list) and \
6886
				if isinstance(x, list) and \
6885
					tuple(x) not in unsatisfied_parents:
6887
					tuple(x) not in unsatisfied_tuples:
6886
					pruned_mergelist.append(x)
6888
					pruned_mergelist.append(x)
6887
6889
6888
			# If the mergelist doesn't shrink then this loop is infinite.
6890
			# If the mergelist doesn't shrink then this loop is infinite.
6889
- 

Return to bug 374583