From 289d6c3d11f9cab096c6d4deaf063b3879fe690c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 18 Jun 2008 06:55:41 +0000 Subject: Add an exemption for x-modular in the "inherit.autotools" check. Thanks to remi` for reporting. svn path=/main/trunk/; revision=10714 --- pym/repoman/checks.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pym/repoman') diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 0f339adbc..dbd3b5ccc 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -225,15 +225,16 @@ _autotools_funcs = ( _autotools_func_re = re.compile(r'(^|\s)(' + \ "|".join(_autotools_funcs) + ')(\s|$)') +# eclasses that inherit autotools and call it's functions +_autotools_eclasses = frozenset(["apache-2", "x-modular"]) + def run_checks(contents, pkg): checks = list(_constant_checks) checks.append(EbuildHeader(pkg.mtime)) iuse_def = None inherit_autotools = "autotools" in pkg.inherited if inherit_autotools: - if "apache-2" in pkg.inherited: - # eautoreconf is called by apache-2_src_unpack(), - # so the ebuild doesn't need to call it. + if _autotools_eclasses.intersection(pkg.inherited): inherit_autotools = False autotools_func_call = None for num, line in enumerate(contents): -- cgit v1.2.3-1-g7c22