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

Collapse All | Expand All

(-)pym/portage.py (+11 lines)
Lines 5381-5386 class portdbapi(dbapi): Link Here
5381
				elif gp in pgroups:
5381
				elif gp in pgroups:
5382
					match=1
5382
					match=1
5383
					break
5383
					break
5384
			else:
5385
				if "*" in pgroups:
5386
					for gp in mygroups:
5387
						if not gp[0] in "~-":
5388
							match=1
5389
							break
5390
				if "~*" in pgroups:
5391
					for gp in mygroups:
5392
						if gp[0]=="~":
5393
							match=1
5394
							break
5384
			if match:
5395
			if match:
5385
				newlist.append(mycpv)
5396
				newlist.append(mycpv)
5386
		return newlist
5397
		return newlist

Return to bug 52206