Lines 374-379
Link Here
|
374 |
re = re.compile(r'^\s*MAKEOPTS=(\'|")?.*-j\s*1\b') |
374 |
re = re.compile(r'^\s*MAKEOPTS=(\'|")?.*-j\s*1\b') |
375 |
error = errors.EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS |
375 |
error = errors.EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS |
376 |
|
376 |
|
|
|
377 |
class NoAsNeeded(LineCheck): |
378 |
"""Check for calls to the no-as-needed function.""" |
379 |
repoman_check_name = 'upstream.workaround' |
380 |
re = re.compile(r'.*\$\(no-as-needed\)') |
381 |
error = errors.NO_AS_NEEDED |
382 |
|
377 |
class DeprecatedBindnowFlags(LineCheck): |
383 |
class DeprecatedBindnowFlags(LineCheck): |
378 |
"""Check for calls to the deprecated bindnow-flags function.""" |
384 |
"""Check for calls to the deprecated bindnow-flags function.""" |
379 |
repoman_check_name = 'ebuild.minorsyn' |
385 |
repoman_check_name = 'ebuild.minorsyn' |
Lines 468-474
Link Here
|
468 |
EbuildUselessCdS, EbuildNestedDie, |
474 |
EbuildUselessCdS, EbuildNestedDie, |
469 |
EbuildPatches, EbuildQuotedA, EapiDefinition, |
475 |
EbuildPatches, EbuildQuotedA, EapiDefinition, |
470 |
IUseUndefined, InheritAutotools, |
476 |
IUseUndefined, InheritAutotools, |
471 |
EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS, |
477 |
EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS, NoAsNeeded, |
472 |
DeprecatedBindnowFlags, SrcUnpackPatches, WantAutoDefaultValue, |
478 |
DeprecatedBindnowFlags, SrcUnpackPatches, WantAutoDefaultValue, |
473 |
SrcCompileEconf, Eapi4IncompatibleFuncs, Eapi4GoneVars))) |
479 |
SrcCompileEconf, Eapi4IncompatibleFuncs, Eapi4GoneVars))) |
474 |
|
480 |
|