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

Collapse All | Expand All

(-)pym/gentoolkit/equery/list_.py (-2 / +6 lines)
Lines 226-236 Link Here
226
			if (QUERY_OPTS["in_porttree"] and
226
			if (QUERY_OPTS["in_porttree"] and
227
				not QUERY_OPTS["in_overlay"]):
227
				not QUERY_OPTS["in_overlay"]):
228
				if not 'P' in pkgstr.location:
228
				if not 'P' in pkgstr.location:
229
					continue
229
					if (QUERY_OPTS['in_installed'] and
230
						not 'I' in pkgstr.location):
231
						continue
230
			if (QUERY_OPTS["in_overlay"] and
232
			if (QUERY_OPTS["in_overlay"] and
231
				not QUERY_OPTS["in_porttree"]):
233
				not QUERY_OPTS["in_porttree"]):
232
				if not 'O' in pkgstr.location:
234
				if not 'O' in pkgstr.location:
233
					continue
235
					if (QUERY_OPTS['in_installed'] and
236
						not 'I' in pkgstr.location):
237
						continue
234
			pp.uprint(pkgstr)
238
			pp.uprint(pkgstr)
235
239
236
			if QUERY_OPTS["include_mask_reason"]:
240
			if QUERY_OPTS["include_mask_reason"]:

Return to bug 369581