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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#################################################################################
# LAYMAN CVS OVERLAY HANDLER
#################################################################################
# File: cvs.py
#
# Handles cvs overlays
#
# Copyright:
# (c) 2005 - 2008 Gunnar Wrobel
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
# Gunnar Wrobel <wrobel@gentoo.org>
#
''' Cvs overlay support.'''
__version__ = "$Id$"
#===============================================================================
#
# Dependencies
#
#-------------------------------------------------------------------------------
import xml.etree.ElementTree as ET # Python 2.5
from layman.utils import path, ensure_unicode
from layman.overlays.source import OverlaySource, require_supported
#===============================================================================
#
# Class CvsOverlay
#
#-------------------------------------------------------------------------------
class CvsOverlay(OverlaySource):
''' Handles cvs overlays.'''
type = 'cvs'
type_key = 'cvs'
def __init__(self, parent, xml, config, _location, ignore = 0, quiet = False):
super(CvsOverlay, self).__init__(parent, xml, config, _location, ignore, quiet)
_subpath = xml.find('subpath')
if _subpath != None:
self.subpath = ensure_unicode(_subpath.text.strip())
elif 'subpath' in xml.attrib:
self.subpath = ensure_unicode(xml.attrib['subpath'])
else:
self.subpath = ''
def __eq__(self, other):
res = super(CvsOverlay, self).__eq__(other) \
and self.subpath == other.subpath
return res
def __ne__(self, other):
return not self.__eq__(other)
# overrider
def to_xml_hook(self, repo_elem):
if self.subpath:
_subpath = ET.Element('subpath')
_subpath.text = self.subpath
repo_elem.append(_subpath)
del _subpath
def add(self, base, quiet = False):
'''Add overlay.'''
self.supported()
# cvs [-q] co -d SOURCE SCOPE
args = []
if quiet:
args.append('-q')
args.append('co')
args.append('-d')
args.append(self.parent.name)
args.append(self.subpath)
return self.run_command(*args, cwd=base, env=dict(CVSROOT=self.src))
def sync(self, base, quiet = False):
'''Sync overlay.'''
self.supported()
# cvs [-q] update -d
args = []
if quiet:
args.append('-q')
args.append('update')
args.append('-d')
return self.run_command(*args, cwd=path([base, self.parent.name]))
def supported(self):
'''Overlay type supported?'''
return require_supported([(self.command(), 'cvs',
'dev-vcs/cvs'),])
|