From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2365B13824A for ; Sun, 8 May 2016 20:08:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2317A21C06B; Sun, 8 May 2016 20:08:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A134021C06B for ; Sun, 8 May 2016 20:08:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8412340BB4 for ; Sun, 8 May 2016 20:08:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BEC8856 for ; Sun, 8 May 2016 20:08:31 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1462738022.c7900bdfe83de7f1279f1dc9c1f11a73fd597fd9.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/scan/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/modules/scan/ebuild/checks.py X-VCS-Directories: pym/repoman/modules/scan/ebuild/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c7900bdfe83de7f1279f1dc9c1f11a73fd597fd9 X-VCS-Branch: repoman Date: Sun, 8 May 2016 20:08:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e3b30afe-4a2b-4064-8f94-b64139a6dda5 X-Archives-Hash: 5aacbfb2c1cc364d804049593758bbff commit: c7900bdfe83de7f1279f1dc9c1f11a73fd597fd9 Author: Brian Dolbec gentoo org> AuthorDate: Sun May 8 20:07:02 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 8 20:07:02 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c7900bdf repoman Comment out the $ID header check for now. bug 579460 Leave the code in place for now, it may be repo config enabled later. pym/repoman/modules/scan/ebuild/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/repoman/modules/scan/ebuild/checks.py b/pym/repoman/modules/scan/ebuild/checks.py index 8cdc230..fb3e019 100644 --- a/pym/repoman/modules/scan/ebuild/checks.py +++ b/pym/repoman/modules/scan/ebuild/checks.py @@ -108,8 +108,8 @@ class EbuildHeader(LineCheck): return errors.COPYRIGHT_ERROR elif num == 1 and line.rstrip('\n') != self.gentoo_license: return errors.LICENSE_ERROR - elif num == 2 and line.rstrip('\n') != self.id_header: - return errors.ID_HEADER_ERROR + #elif num == 2 and line.rstrip('\n') != self.id_header: + # return errors.ID_HEADER_ERROR class EbuildWhitespace(LineCheck):