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

"""Perform package move updates for installed and binary packages.
"""


module_spec = {
	'name': 'move',
	'description': __doc__,
	'provides':{
		'module1': {
			'name': "moveinst",
			'class': "MoveInstalled",
			'description': __doc__,
			'options': ['check', 'fix'],
			'functions': ['check', 'fix'],
			'func_desc': {
				}
			},
		'module2':{
			'name': "movebin",
			'class': "MoveBinary",
			'description': "Perform package move updates for binary packages",
			'functions': ['check', 'fix'],
			'func_desc': {
				}
			}
		}
	}