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

Collapse All | Expand All

(-)a/pym/repoman/checks.py (-2 / +1 lines)
Lines 619-625 class Eapi4IncompatibleFuncs(LineCheck): Link Here
619
class Eapi4GoneVars(LineCheck):
619
class Eapi4GoneVars(LineCheck):
620
	repoman_check_name = 'EAPI.incompatible'
620
	repoman_check_name = 'EAPI.incompatible'
621
	ignore_line = re.compile(r'(^\s*#)')
621
	ignore_line = re.compile(r'(^\s*#)')
622
	undefined_vars_re = re.compile(r'.*\$(\{(AA|KV)\}|(AA|KV))')
622
	undefined_vars_re = re.compile(r'.*\$(\{(AA|KV|EMERGE_FROM)\}|(AA|KV|EMERGE_FROM))')
623
623
624
	def check_eapi(self, eapi):
624
	def check_eapi(self, eapi):
625
		return not eapi_exports_AA(eapi) or not eapi_exports_KV(eapi)
625
		return not eapi_exports_AA(eapi) or not eapi_exports_KV(eapi)
626
- 

Return to bug 368865