aboutsummaryrefslogtreecommitdiff
blob: dc5af701c2588aa065025b0238ff0bb1bbb9fbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

doc = """Do plug-in module for repoman LineChecks.
Performs do* checks on ebuilds."""
__doc__ = doc[:]


module_spec = {
	'name': 'do',
	'description': doc,
	'provides':{
		'nonrelative-check': {
			'name': "dosym",
			'sourcefile': "dosym",
			'class': "EbuildNonRelativeDosym",
			'description': doc,
		},
	},
	'version': 1,
}