aboutsummaryrefslogtreecommitdiff
blob: a5746ce67674c6a45e8f67f9fc86866a4e0e8935 (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 = """Options plug-in module for repoman.
Performs option related actions on ebuilds."""
__doc__ = doc[:]


module_spec = {
	'name': 'options',
	'description': doc,
	'provides':{
		'options-module': {
			'name': "options",
			'sourcefile': "options",
			'class': "Options",
			'description': doc,
			'functions': ['is_forced'],
			'func_desc': {
			},
			'mod_kwargs': ['options',
			],
			'func_kwargs': {
			},
		},
	}
}