Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 326553 | Differences between
and this patch

Collapse All | Expand All

(-)portage-2.2_rc64.orig/pym/repoman/checks.py (+6 lines)
Lines 376-381 Link Here
376
	re = re.compile(r'.*\$\(no-as-needed\)')
376
	re = re.compile(r'.*\$\(no-as-needed\)')
377
	error = errors.NO_AS_NEEDED
377
	error = errors.NO_AS_NEEDED
378
378
379
class NoAsNeeded(LineCheck):
380
        """Check for calls to the preserve_old_lib function."""
381
        repoman_check_name = 'upstream.workaround'
382
        re = re.compile(r'.*preserve_old_lib')
383
        error = errors.PRESERVE_OLD_LIB
384
379
class DeprecatedBindnowFlags(LineCheck):
385
class DeprecatedBindnowFlags(LineCheck):
380
	"""Check for calls to the deprecated bindnow-flags function."""
386
	"""Check for calls to the deprecated bindnow-flags function."""
381
	repoman_check_name = 'ebuild.minorsyn'
387
	repoman_check_name = 'ebuild.minorsyn'
(-)portage-2.2_rc64.orig/pym/repoman/errors.py (+1 lines)
Lines 18-21 Link Here
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)'
20
NO_AS_NEEDED = 'Upstream asneeded linking bug (no-as-needed on line: %d)'
21
PRESERVE_OLD_LIB = 'Upstream ABI change workaround on line: %d)'
21
BUILT_WITH_USE = 'built_with_use on line: %d'
22
BUILT_WITH_USE = 'built_with_use on line: %d'

Return to bug 326553