blob: eecd4a1d0063185a7504f5e7786b0ab390344203 [file] [log] [blame]
# Copyright 2014-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
doc = """Git (git) plug-in module for portage.
Performs variaous git actions and checks on repositories."""
__doc__ = doc[:]
module_spec = {
'name': 'git',
'description': doc,
'provides':{
'git-module': {
'name': "git_status",
'sourcefile': "status",
'class': "Status",
'description': doc,
'functions': ['check', 'supports_gpg_sign', 'detect_conflicts'],
'func_desc': {
},
'vcs_preserves_mtime': False,
'needs_keyword_expansion': False,
},
'git-changes': {
'name': "git_changes",
'sourcefile': "changes",
'class': "Changes",
'description': doc,
'functions': ['scan'],
'func_desc': {
},
},
}
}