aboutsummaryrefslogtreecommitdiff
blob: b9a84b50744e4cf0192321531eb602d55abf0d7f (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
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

doc = """Portage plug-in module for repoman LineChecks.
Performs checks for internal portage variable usage in ebuilds."""
__doc__ = doc[:]


module_spec = {
	'name': 'do',
	'description': doc,
	'provides':{
		'internal-check': {
			'name': "portageinternal",
			'sourcefile': "internal",
			'class': "PortageInternal",
			'description': doc,
		},
		'portageinternalvariableassignment-check': {
			'name': "portageinternalvariableassignment",
			'sourcefile': "internal",
			'class': "PortageInternalVariableAssignment",
			'description': doc,
		},
	},
	'version': 1,
}