aboutsummaryrefslogtreecommitdiff
blob: ef269b4c6ee5bab9f81f20ccab8aaeef0825a290 (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

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

module_spec = {
    'name': 'bzr',
    'description': __doc__,
    'provides':{
        'bzr-module': {
            'name': 'bzr',
            'class': 'BzrOverlay',
            'sourcefile': 'bzr',
            'description': __doc__,
            'functions': ['add', 'supported', 'sync', 'update'],
            'func_desc': {
                'add': 'Performs a bzr get on a repository',
                'supported': 'Confirms if overlay type is supported',
                'sync': 'Performs a bzr pull on the repository',
                'update': 'Updates a bzr overlay\'s source URL via bzr bind',
            },
        }
    }
}