Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 297541
Collapse All | Expand All

(-)repoman.orig/checks.py (-1 / +7 lines)
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
(-)repoman.orig/errors.py (+1 lines)
Lines 17-19 Link Here
17
EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS = 'Upstream parallel compilation bug (MAKEOPTS=-j1 on line: %d)'
17
EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS = 'Upstream parallel compilation bug (MAKEOPTS=-j1 on line: %d)'
18
DEPRECATED_BINDNOW_FLAGS = 'Deprecated bindnow-flags call on line: %d'
18
DEPRECATED_BINDNOW_FLAGS = 'Deprecated bindnow-flags call on line: %d'
19
EAPI_DEFINED_AFTER_INHERIT = 'EAPI defined after inherit on line: %d'
19
EAPI_DEFINED_AFTER_INHERIT = 'EAPI defined after inherit on line: %d'
20
NO_AS_NEEDED = 'Upstream asneeded linking bug (no-as-needed on line: %d)'

Return to bug 297541