blob: d0c8a5ad02112626103d142c837529db157d5366 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#################################################################################
# LAYMAN GIT OVERLAY HANDLER
#################################################################################
# File: git.py
#
# Handles git overlays
#
# Copyright:
# (c) 2005 - 2008 Gunnar Wrobel, Stefan Schweizer
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
# Gunnar Wrobel <wrobel@gentoo.org>
# Stefan Schweizer <genstef@gentoo.org>
''' Git overlay support.'''
__version__ = "$Id: git.py 146 2006-05-27 09:52:36Z wrobel $"
#===============================================================================
#
# Dependencies
#
#-------------------------------------------------------------------------------
from layman.utils import path
from layman.overlays.overlay import Overlay
#===============================================================================
#
# Class GitOverlay
#
#-------------------------------------------------------------------------------
class GitOverlay(Overlay):
''' Handles git overlays.'''
type = 'Git'
binary_command = '/usr/bin/git'
def add(self, base, quiet = False):
'''Add overlay.'''
self.supported()
if quiet:
quiet_option = '-q '
else:
quiet_option = ''
# http:// should get trailing slash, other protocols shouldn't
slash = ''
if self.src.split(':')[0] == 'http':
slash = '/'
return self.cmd(self.binary_command + ' clone ' + quiet_option + '"' + self.src + slash
+ '" "' + path([base, self.name]) + '"')
def sync(self, base, quiet = False):
'''Sync overlay.'''
self.supported()
if quiet:
quiet_option = '-q '
else:
quiet_option = ''
return self.cmd('cd "' + path([base, self.name]) + '" && '
+ self.binary_command + ' pull' + quiet_option)
def supported(self):
'''Overlay type supported?'''
return Overlay.supported(self, [(self.binary_command, 'git',
'dev-util/git'),])
|