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

Collapse All | Expand All

(-)a/packages-inheriting-eclasses.py (-3 / +5 lines)
Lines 16-23 def main(argv): Link Here
16
	output = collections.defaultdict(set)
16
	output = collections.defaultdict(set)
17
17
18
	for p in portdir:
18
	for p in portdir:
19
		for eclass in p.data['_eclasses_']:
19
		try:
20
			output[eclass].add('%s/%s\n' % (p.category, p.PN))
20
			for eclass in p.data['_eclasses_']:
21
				output[eclass].add('%s/%s\n' % (p.category, p.PN))
22
		except KeyError:
23
			pass
21
24
22
	try:
25
	try:
23
		os.mkdir(outputdir)
26
		os.mkdir(outputdir)
24
- 

Return to bug 438506