"inherit.autotools":"Ebuild inherits autotools but does not call eautomake, eautoconf or eautoreconf",
"inherit.deprecated":"Ebuild inherits a deprecated eclass",
"java.eclassesnotused":"With virtual/jdk in DEPEND you must inherit a java eclass",
- "prefix.usedwithhelpers":"Ebuild uses ED or EPREFIX with helpers (doins)",
+ "prefix.usedwithhelpers":"Ebuild uses ED, EROOT or EPREFIX with helpers",
"wxwidgets.eclassnotused":"Ebuild DEPENDs on x11-libs/wxGTK without inheriting wxwidgets.eclass",
"KEYWORDS.dropped":"Ebuilds that appear to have dropped KEYWORDS for some arch",
"KEYWORDS.missing":"Ebuilds that have a missing or empty KEYWORDS variable",
self._prefix_inherited = True
class EprefixWithHelpers(LineCheck):
- """ Check that ED, EROOT and EPREFIX aren't used with helpers (doins) """
+ """ Check that ED, EROOT and EPREFIX aren't used with helpers """
repoman_check_name = 'prefix.usedwithhelpers'
re = re.compile(r'.*\b(dodir|dohard|exeinto|insinto|into)\s+"?\$\{?(ED|EROOT|EPREFIX)\}?.*')