From cdef6f181b66a4fd426cc620bb06bb9c8d0bf411 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 8 Jun 2008 02:19:46 +0000 Subject: Make repoman pass Package instances into run_checks(), so that the checks can use the Package.mtime and inherited attributes. svn path=/main/trunk/; revision=10600 --- pym/repoman/checks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pym/repoman') diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 7bc9d990b..3c202cad8 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -221,11 +221,11 @@ _iuse_def_re = re.compile(r'^IUSE=.*') _comment_re = re.compile(r'(^|\s*)#') _autotools_func_re = re.compile(r'(^|\s)(eautomake|eautoconf|eautoreconf)(\s|$)') -def run_checks(contents, st_mtime, inherited=None): +def run_checks(contents, pkg): checks = list(_constant_checks) - checks.append(EbuildHeader(st_mtime)) + checks.append(EbuildHeader(pkg.mtime)) iuse_def = None - inherit_autotools = inherited and "autotools" in inherited + inherit_autotools = "autotools" in pkg.inherited autotools_func_call = None for num, line in enumerate(contents): comment = _comment_re.match(line) -- cgit v1.2.3-1-g7c22