From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SZtjZ-00045i-EB for garchives@archives.gentoo.org; Thu, 31 May 2012 00:59:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDCE1E07D8; Thu, 31 May 2012 00:59:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8CC51E07D8 for ; Thu, 31 May 2012 00:59:17 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E81FF1B4023 for ; Thu, 31 May 2012 00:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B2C05E5428 for ; Thu, 31 May 2012 00:59:15 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1338425943.6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/checks.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1 X-VCS-Branch: master Date: Thu, 31 May 2012 00:59:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 601555a1-aeb2-4cb8-8b9d-49142e9bc650 X-Archives-Hash: c9ea17f3a228d33727055333cd503bf2 commit: 6d3873a690ccdf47f1d5c3f83fc8dbef92f5a9f1 Author: Zac Medico gentoo org> AuthorDate: Thu May 31 00:59:03 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu May 31 00:59:03 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D6d3873a6 InheritEclass: fix autotools for polylib-9999 --- pym/repoman/checks.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index cd21fd9..6dd4977 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -498,7 +498,7 @@ class InheritEclass(LineCheck): self._func_call =3D self._func_re.search(line) =20 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 no= t self._func_call: self.repoman_check_name =3D 'inherit.unused' yield 'no function called from %s.eclass; please drop' % self._eclass =20 @@ -516,7 +516,7 @@ _eclass_info =3D { # 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') }, =20 'eutils': {