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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2009 Sebastian Pipping <sebastian@pipping.org>
# Licensed under GPL 2 or later
import sys
from optparse import OptionParser
USAGE = 'Usage: %prog [--fixes-only] foo/gitosis.conf bar/repositories.xml [baz/extended.xml]'
parser = OptionParser(usage=USAGE)
parser.add_option('--fixes-only',
dest = 'fixes_only',
default = False,
action = 'store_true',
help = 'do not add entries that are missing completely')
(opts, args) = parser.parse_args()
if len(args) not in (3, 2):
parser.print_help()
sys.exit(1)
gitosis_conf_location = args[0]
repositories_xml_location = args[1]
extended_xml_location = (len(args) == 3) and args[2] or None
import xml.etree.ElementTree as ET
from ConfigParser import ConfigParser
import re
from layman.dbtools.sharedutils import * # local
# From gitosis.conf
# ..to repositories.xml
repo_name_mapping = {
'ruby-overlay':'ruby',
'sci':'science',
'perl-overlay':'perl-experimental',
'xfce':'xfce-dev',
'gnome-perf':'leio-gnome-perf',
'flameeyes':'flameeyes-overlay',
}
def sort_as_in(elements, tag_order):
order_map = dict((v, i) for i, v in enumerate(tag_order))
deco = (t for t in enumerate(elements))
deco_sorted = sorted(deco, key=lambda (i, v): (order_map[v.tag], i))
return list(v for _, v in deco_sorted)
class ChangeLog:
def __init__(self, gitosis_repo_name, is_new):
self.empty = True
self.gitosis_repo_name = gitosis_repo_name
self.is_new = is_new
def log(self, kind, details):
if self.empty:
if self.is_new:
print 'Repo "%s" missing completely' % self.gitosis_repo_name
else:
print 'Analyzing repo "%s":' % self.gitosis_repo_name
self.empty = False
if not self.is_new:
print '- Missing %s "%s"' % (kind, details)
OWNER_REGEX = re.compile('^([^<]+) (?:\([^)]+\) )?<([^ ]+@[^ ]+)>$')
NOT_AN_OVERLAY_MESSAGE = 'Skipping %s (not an overlay)'
gitosis_conf = ConfigParser()
gitosis_conf.read(gitosis_conf_location)
a = ET.parse(open(repositories_xml_location))
repositories = a.getroot()
overlays_gentoo_org_dict = dict([[e.find('name').text, e] for e in repositories])
def oct_string_to_int(os):
l = len(os)
res = 0
for i, v in enumerate(os):
res = res + (8**(l-1-i)) * int(v)
return res
assert oct_string_to_int('0713') == 0713
assert oct_string_to_int('103') == 0103
GLOBAL_DIRMODE = oct_string_to_int(gitosis_conf.get('gitosis', 'dirmode'))
GLOBAL_GITWEB = gitosis_conf.getboolean('gitosis', 'gitweb')
def is_public(section_name):
local_dirmode = GLOBAL_DIRMODE
if gitosis_conf.has_option(section_name, 'dirmode'):
local_dirmode = oct_string_to_int(gitosis_conf.get(section_name, 'dirmode'))
local_gitweb = GLOBAL_GITWEB
if gitosis_conf.has_option(section_name, 'gitweb'):
local_gitweb = gitosis_conf.getboolean(section_name, 'gitweb')
return ((local_dirmode & 0005) == 0005) and local_gitweb
for section_name in gitosis_conf.sections():
if section_name.startswith('repo '):
_repo_base = section_name[len('repo '):].strip()
try:
owner_part, gitosis_repo_name = _repo_base.split('/')
except (ValueError) as e:
# TODO print NOT_AN_OVERLAY_MESSAGE % gitosis_repo_name
continue
if owner_part == 'proj':
owner_type = "project"
elif owner_part in ('dev', 'user'):
owner_type = "person"
else:
# TODO print NOT_AN_OVERLAY_MESSAGE % gitosis_repo_name
continue
_description = gitosis_conf.get(section_name, 'description')
if gitosis_conf.has_option(section_name, 'gentoo-dont-add-to-layman'):
continue
overlay_status_clear = False
if gitosis_conf.has_option(section_name, 'gentoo-is-overlay'):
is_overlay = gitosis_conf.getboolean(section_name, 'gentoo-is-overlay')
if not is_overlay:
continue
overlay_status_clear = True
if not overlay_status_clear \
and not gitosis_repo_name.endswith('overlay') \
and not _description.lower().endswith('overlay'):
continue
if not is_public(section_name):
# TODO print 'Skipping %s (not public)' % gitosis_repo_name
continue
repositores_xml_repo_name = repo_name_mapping.get(gitosis_repo_name, gitosis_repo_name)
is_new = repositores_xml_repo_name not in overlays_gentoo_org_dict
if is_new:
if opts.fixes_only:
continue
repo = ET.Element('repo')
repositories.append(repo)
name = ET.Element('name')
name.text = gitosis_repo_name
repo.append(name)
else:
repo = overlays_gentoo_org_dict[repositores_xml_repo_name]
log = ChangeLog(gitosis_repo_name, is_new)
if 'status' not in repo.attrib:
if owner_part == 'user':
repo.attrib['status'] = 'unofficial'
else:
repo.attrib['status'] = 'official'
log.log('attribute', 'status')
if 'quality' not in repo.attrib:
repo.attrib['quality'] = 'experimental'
log.log('attribute', 'quality')
homepage = repo.find('homepage')
if homepage == None:
homepage = ET.Element('homepage')
homepage.text = 'http://git.overlays.gentoo.org/gitweb/?p=%s.git;a=summary' % _repo_base
repo.append(homepage)
log.log('homepage', homepage.text)
description = repo.find('description')
if description == None:
description = ET.Element('description', lang='en')
description.text = _description
repo.append(description)
log.log('description', _description)
_owner = gitosis_conf.get(section_name, 'owner')
_owner_match = OWNER_REGEX.match(_owner)
owner = repo.find('owner')
if owner == None:
owner = ET.Element('owner', type=owner_type)
repo.append(owner)
log.log('owner', 'TODO')
owner_name = owner.find('name')
if owner_name == None:
owner_name = ET.Element('name')
owner_name.text = _owner_match.group(1)
log.log('owner name', owner_name.text)
owner_email = owner.find('email')
if owner_email == None:
owner_email = ET.Element('email')
owner_email.text = _owner_match.group(2)
log.log('owner email', owner_email.text)
owner[:] = [owner_email, owner_name]
_sources = set((source.attrib['type'], source.text) for source in repo.findall('source'))
source_uris = (
'git://git.overlays.gentoo.org/%s.git' % _repo_base,
'http://git.overlays.gentoo.org/gitroot/%s.git' % _repo_base,
'git+ssh://git@git.overlays.gentoo.org/%s.git' % _repo_base,
)
for uri in source_uris:
if ('git', uri) not in _sources and \
('git', uri[:-len('.git')]) not in _sources:
source = ET.Element('source', type='git')
source.text = uri
repo.append(source)
log.log('git source', uri)
_feeds = set(feed.text for feed in repo.findall('feed'))
feed_uris = (
'http://git.overlays.gentoo.org/gitweb/?p=%s.git;a=atom' % _repo_base,
'http://git.overlays.gentoo.org/gitweb/?p=%s.git;a=rss' % _repo_base,
)
for uri in feed_uris:
if uri not in _feeds:
feed = ET.Element('feed')
feed.text = uri
repo.append(feed)
log.log('feed', uri)
repo[:] = sort_as_in(repo[:], (
'name', 'description', 'longdescription',
'homepage', 'owner', 'source', 'feed'))
if is_new or not log.empty:
if extended_xml_location == None:
TERM_WIDTH = 67
print '-'*TERM_WIDTH
sys.stdout.write(' ')
indent(repo, 1)
repo.tail = '\n'
ET.ElementTree(repo).write(sys.stdout)
print '-'*TERM_WIDTH
print
if extended_xml_location != None:
indent(repositories)
extended_xml = open(extended_xml_location, 'w')
extended_xml.write("""\
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Header$ -->
<?xml-stylesheet href="/xsl/repositories.xsl" type="text/xsl"?>
<!DOCTYPE repositories SYSTEM "/dtd/repositories.dtd">
""")
a.write(extended_xml, encoding='utf-8')
extended_xml.close()
|