blob: b3228c0f77f10d13eb1fa5f3aa2da3d0c8ca3315 [file] [log] [blame]
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
doc = """Phases plug-in module for repoman LineChecks.
Performs phase dependant checks on ebuilds using a PhaseCheck base class.
"""
__doc__ = doc[:]
module_spec = {
'name': 'do',
'description': doc,
'provides':{
'emakeparallel-check': {
'name': "emakeparallel",
'sourcefile': "phase",
'class': "EMakeParallelDisabled",
'description': doc,
},
'srccompileeconf-check': {
'name': "srccompileeconf",
'sourcefile': "phase",
'class': "SrcCompileEconf",
'description': doc,
},
'srcunpackpatches-check': {
'name': "srcunpackpatches",
'sourcefile': "phase",
'class': "SrcUnpackPatches",
'description': doc,
},
},
'version': 1,
}