aboutsummaryrefslogtreecommitdiff
blob: b3228c0f77f10d13eb1fa5f3aa2da3d0c8ca3315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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,
}