blob: 258683345b2374d21f3190e5382565e47ffd45e7 [file] [log] [blame]
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
doc = """Deprecated plug-in module for repoman LineChecks.
Performs miscelaneous deprecation checks on ebuilds not covered by
specialty modules."""
__doc__ = doc[:]
module_spec = {
'name': 'deprecated',
'description': doc,
'provides':{
'useq-check': {
'name': "useq",
'sourcefile': "deprecated",
'class': "DeprecatedUseq",
'description': doc,
},
'hasq-check': {
'name': "hasq",
'sourcefile': "deprecated",
'class': "DeprecatedHasq",
'description': doc,
},
'preserve-check': {
'name': "preservelib",
'sourcefile': "deprecated",
'class': "PreserveOldLib",
'description': doc,
},
'bindnow-check': {
'name': "bindnow",
'sourcefile': "deprecated",
'class': "DeprecatedBindnowFlags",
'description': doc,
},
'inherit-check': {
'name': "inherit",
'sourcefile': "inherit",
'class': "InheritDeprecated",
'description': doc,
},
},
'version': 1,
}