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

'''
CVS plug-in module for layman.
'''

module_spec = {
    'name': 'cvs',
    'description': __doc__,
    'provides':{
        'cvs-module': {
            'name': 'cvs',
            'class': 'CvsOverlay',
            'description': __doc__,
            'functions': ['add', 'supported', 'sync', 'update'],
            'func_desc': {
                'add': 'Performs a cvs checkout on a repository',
                'supported': 'Confirms if overlay type is supported',
                'sync': 'Performs a cvs update on the repository',
                'update': 'Updates a cvs overlay\'s source URL',
            },
        }
    }
}