commit: 8f738e14e6710481d1dc81ec3fa707b2d4ba9919
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: 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):