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):