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 54A3C13824A for ; Sun, 8 May 2016 21:21:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9285121C0AA; Sun, 8 May 2016 21:21:20 +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 8A79F21C0C9 for ; Sun, 8 May 2016 21:21:19 +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 B682D340B9B for ; Sun, 8 May 2016 21:21:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63EE096A for ; Sun, 8 May 2016 21:21:15 +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: <1462742323.8f738e14e6710481d1dc81ec3fa707b2d4ba9919.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: 8f738e14e6710481d1dc81ec3fa707b2d4ba9919 X-VCS-Branch: repoman Date: Sun, 8 May 2016 21:21: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 X-Archives-Salt: c4c4c970-829b-42d5-b994-7025c6e0c985 X-Archives-Hash: 7a3c5f46709abf401db7baaf685354c0 commit: 8f738e14e6710481d1dc81ec3fa707b2d4ba9919 Author: Brian Dolbec gentoo org> AuthorDate: Sun May 8 20:07:02 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 8 21:18:43 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8f738e14 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):