summaryrefslogtreecommitdiffstats
path: root/pym/repoman/checks.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/repoman/checks.py')
-rw-r--r--pym/repoman/checks.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
index a9e29d2be..458812057 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -345,15 +345,6 @@ class WantAutoDefaultValue(LineCheck):
return 'WANT_AUTO' + m.group(1) + \
' redundantly set to default value "latest" on line: %d'
-class PortageInternal(LineCheck):
- """
- In February 2009 the Gentoo council ruled that
- prepalldocs is a Portage internal.
- """
- repoman_check_name = 'portage.internal'
- re = re.compile(r'[^#]*\bprepalldocs\b')
- error = errors.PREPALLDOCS_ERROR
-
_constant_checks = tuple((c() for c in (
EbuildHeader, EbuildWhitespace, EbuildQuote,
EbuildAssignment, EbuildUselessDodoc,
@@ -361,7 +352,7 @@ _constant_checks = tuple((c() for c in (
EbuildPatches, EbuildQuotedA,
IUseUndefined, ImplicitRuntimeDeps, InheritAutotools,
EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS,
- DeprecatedBindnowFlags, WantAutoDefaultValue, PortageInternal)))
+ DeprecatedBindnowFlags, WantAutoDefaultValue)))
def run_checks(contents, pkg):
checks = _constant_checks