From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-881483-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 57EF013825A for <garchives@archives.gentoo.org>; Sat, 14 May 2016 18:34:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B4B521C043; Sat, 14 May 2016 18:34:07 +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 F244314234 for <gentoo-commits@lists.gentoo.org>; Sat, 14 May 2016 18:34:04 +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 E7F77340B29 for <gentoo-commits@lists.gentoo.org>; Sat, 14 May 2016 18:34:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F59B981 for <gentoo-commits@lists.gentoo.org>; Sat, 14 May 2016 18:33:57 +0000 (UTC) From: "Brian Dolbec" <dolsen@gentoo.org> 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" <dolsen@gentoo.org> Message-ID: <1463250580.4175b9b3b39aa0f502921435bdae34a74679e53b.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: 4175b9b3b39aa0f502921435bdae34a74679e53b X-VCS-Branch: repoman Date: Sat, 14 May 2016 18:33:57 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 55673433-d81b-469a-a9e6-02fb24465095 X-Archives-Hash: 639819620473a3e2662965e96d98b4a3 Message-ID: <20160514183357.UBjI4qEIFfM6NrHfW1EpdAcPZ-7GE8BeDNwSeBTJYZw@z> commit: 4175b9b3b39aa0f502921435bdae34a74679e53b Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sun May 8 20:07:02 2016 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Sat May 14 18:29:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4175b9b3 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):