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

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

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