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

Collapse All | Expand All

(-)a/repoman/cnf/linechecks/linechecks.yaml (-1 / +1 lines)
Lines 25-31 errors: Link Here
25
    DEPRECATED_BINDNOW_FLAGS: 'Deprecated bindnow-flags call'
25
    DEPRECATED_BINDNOW_FLAGS: 'Deprecated bindnow-flags call'
26
    EAPI_DEFINED_AFTER_INHERIT: 'EAPI defined after inherit'
26
    EAPI_DEFINED_AFTER_INHERIT: 'EAPI defined after inherit'
27
    NO_AS_NEEDED: 'Upstream asneeded linking bug (no-as-needed)'
27
    NO_AS_NEEDED: 'Upstream asneeded linking bug (no-as-needed)'
28
    PRESERVE_OLD_LIB: 'Ebuild calls deprecated preserve_old_lib'
28
    PRESERVE_OLD_LIB: 'Ebuild calls preserve_old_lib function reserved for libraries used by system packages'
29
    BUILT_WITH_USE: 'built_with_use'
29
    BUILT_WITH_USE: 'built_with_use'
30
    NO_OFFSET_WITH_HELPERS: 'Helper function is used with D, ROOT, ED, EROOT or EPREFIX'
30
    NO_OFFSET_WITH_HELPERS: 'Helper function is used with D, ROOT, ED, EROOT or EPREFIX'
31
    USEQ_ERROR: 'Ebuild calls deprecated useq function'
31
    USEQ_ERROR: 'Ebuild calls deprecated useq function'
(-)a/repoman/lib/repoman/modules/linechecks/deprecated/deprecated.py (-2 / +1 lines)
Lines 19-25 class DeprecatedHasq(LineCheck): Link Here
19
19
20
20
21
class PreserveOldLib(LineCheck):
21
class PreserveOldLib(LineCheck):
22
	"""Check for calls to the deprecated preserve_old_lib function."""
22
	"""Check for calls to the preserve_old_lib function reserved for libraries used by system packages."""
23
	repoman_check_name = 'ebuild.minorsyn'
23
	repoman_check_name = 'ebuild.minorsyn'
24
	re = re.compile(r'.*preserve_old_lib')
24
	re = re.compile(r'.*preserve_old_lib')
25
	error = 'PRESERVE_OLD_LIB'
25
	error = 'PRESERVE_OLD_LIB'
26
- 

Return to bug 692486