blob: b95a25a743a88730838ff2043b2ba28a3653b29c [file] [log] [blame]
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
doc = """Assignment plug-in module for repoman LineChecks.
Performs assignments checks on ebuilds."""
__doc__ = doc[:]
module_spec = {
'name': 'assignment',
'description': doc,
'provides':{
'assignment-check': {
'name': "assignment",
'sourcefile': "assignment",
'class': "EbuildAssignment",
'description': doc,
},
'eapi3-check': {
'name': "eapi3assignment",
'sourcefile': "assignment",
'class': "Eapi3EbuildAssignment",
'description': doc,
},
},
'version': 1,
}