summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-05-30 17:59:03 -0700
committerZac Medico <zmedico@gentoo.org>2012-05-30 17:59:03 -0700
commit6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1 (patch)
tree922219d135b893760dec04dd6f43c9af160341bc /pym/repoman
parent7acbff42e2ff9a4521efb7fbf2cb69f17944b53c (diff)
downloadportage-6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1.tar.gz
portage-6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1.tar.bz2
portage-6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1.zip
InheritEclass: fix autotools for polylib-9999
Diffstat (limited to 'pym/repoman')
-rw-r--r--pym/repoman/checks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
index cd21fd9af..6dd497755 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -498,7 +498,7 @@ class InheritEclass(LineCheck):
self._func_call = self._func_re.search(line)
def end(self):
- if self._comprehensive and self._inherit and not self._func_call:
+ if not self._disabled and self._comprehensive and self._inherit and not self._func_call:
self.repoman_check_name = 'inherit.unused'
yield 'no function called from %s.eclass; please drop' % self._eclass
@@ -516,7 +516,7 @@ _eclass_info = {
# the autotools functions.
# subversion - An ESVN_BOOTSTRAP variable may be used to call one of
# the autotools functions.
- 'exempt_eclasses': ('git', 'subversion', 'autotools-utils')
+ 'exempt_eclasses': ('git', 'git-2', 'subversion', 'autotools-utils')
},
'eutils': {