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

(-)/pym/_emerge/__init__.py (-1 / +8 lines)
Lines 11000-11007 Link Here
11000
10981
11001
		for cpv in plibdata:
10982
		for cpv in plibdata:
11002
			print colorize("WARN", ">>>") + " package: %s" % cpv
10983
			print colorize("WARN", ">>>") + " package: %s" % cpv
10984
			files={}
11003
			for f in plibdata[cpv]:
10985
			for f in plibdata[cpv]:
11004
				print colorize("WARN", " * ") + " - %s" % f
10986
				p = os.path.realpath(f);
10987
				files.setdefault(p, {"entries": set()})
10988
				files[p]["entries"].add(f);
10989
10990
			for f in files:
10991
				for e in files[f]["entries"]:
10992
					print colorize("WARN", " * ") + " - %s" % e
11005
				consumers = consumer_map[f]
10993
				consumers = consumer_map[f]
11006
				for c in consumers[:MAX_DISPLAY]:
10994
				for c in consumers[:MAX_DISPLAY]:
11007
					print colorize("WARN", " * ") + "     used by %s (%s)" % (c, ", ".join([x.mycpv for x in owners[c]]))
10995
					print colorize("WARN", " * ") + "     used by %s (%s)" % (c, ", ".join([x.mycpv for x in owners[c]]))

Return to bug 240022