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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
|
# vim: set fileencoding=utf-8 :
#
# (C) 2006,2007 Guido Guenther <agx@sigxcpu.org>
"""provides some debian source package related helpers"""
import commands
import email
import os
import re
import shutil
import subprocess
import sys
import glob
import command_wrappers as gbpc
from errors import GbpError
# When trying to parse a version-number from a dsc or changes file, these are
# the valid characters.
debian_version_chars = 'a-zA-Z\d.~+-'
class NoChangelogError(Exception):
"""no changelog found"""
pass
class ParseChangeLogError(Exception):
"""problem parsing changelog"""
pass
class DscFile(object):
"""Keeps all needed data read from a dscfile"""
pkg_re = re.compile('Source:\s+(?P<pkg>.+)\s*')
version_re = re.compile("Version:\s((?P<epoch>\d+)\:)?(?P<version>[%s]+)\s*$" % debian_version_chars)
tar_re = re.compile('^\s\w+\s\d+\s+(?P<tar>[^_]+_[^_]+(\.orig)?\.tar\.(gz|bz2))')
diff_re = re.compile('^\s\w+\s\d+\s+(?P<diff>[^_]+_[^_]+\.diff.(gz|bz2))')
def __init__(self, dscfile):
self.pkg = ""
self.tgz = ""
self.diff = ""
self.debian_version = ""
self.upstream_version = ""
self.native = False
self.dscfile = os.path.abspath(dscfile)
f = file(self.dscfile)
fromdir = os.path.dirname(os.path.abspath(dscfile))
for line in f:
m = self.version_re.match(line)
if m and not self.upstream_version:
if '-' in m.group('version'):
self.debian_version = m.group('version').split("-")[-1]
self.upstream_version = "-".join(m.group('version').split("-")[0:-1])
self.native = False
else:
self.native = True # Debian native package
self.upstream_version = m.group('version')
if m.group('epoch'):
self.epoch = m.group('epoch')
else:
self.epoch = ""
continue
m = self.pkg_re.match(line)
if m:
self.pkg = m.group('pkg')
continue
m = self.tar_re.match(line)
if m:
self.tgz = os.path.join(fromdir, m.group('tar'))
continue
m = self.diff_re.match(line)
if m:
self.diff = os.path.join(fromdir, m.group('diff'))
continue
f.close()
if not self.pkg:
raise GbpError, "Cannot parse package name from '%s'" % self.dscfile
elif not self.tgz:
raise GbpError, "Cannot parse archive name from '%s'" % self.dscfile
if not self.upstream_version:
raise GbpError, "Cannot parse version number from '%s'" % self.dscfile
if not self.native and not self.debian_version:
raise GbpError, "Cannot parse Debian version number from '%s'" % self.dscfile
def _get_version(self):
version = [ "", self.epoch + ":" ][len(self.epoch) > 0]
if self.native:
version += self.upstream_version
else:
version += "%s-%s" % (self.upstream_version, self.debian_version)
return version
version = property(_get_version)
def __str__(self):
return "<%s object %s>" % (self.__class__.__name__, self.dscfile)
def parse_dsc(dscfile):
"""parse dsc by creating a DscFile object"""
try:
dsc = DscFile(dscfile)
except IOError, err:
raise GbpError, "Error reading dsc file: %s" % err
return dsc
def parse_changelog(changelog):
"""
parse changelog file changelog
cp['Version']: full version string including epoch
cp['Upstream-Version']: upstream version, if not debian native
cp['Debian-Version']: debian release
cp['Epoch']: epoch, if any
cp['NoEpoch-Version']: full version string excluding epoch
"""
if not os.access(changelog, os.F_OK):
raise NoChangelogError, "Changelog %s not found" % (changelog, )
status, output = commands.getstatusoutput('dpkg-parsechangelog -l%s' % (changelog, ))
if status:
raise ParseChangeLogError, output
cp = email.message_from_string(output)
try:
if ':' in cp['Version']:
cp['Epoch'], cp['NoEpoch-Version'] = cp['Version'].split(':', 1)
else:
cp['NoEpoch-Version'] = cp['Version']
if '-' in cp['NoEpoch-Version']:
cp['Upstream-Version'], cp['Debian-Version'] = cp['NoEpoch-Version'].rsplit('-', 1)
else:
cp['Debian-Version'] = cp['NoEpoch-Version']
except TypeError:
raise ParseChangeLogError, output.split('\n')[0]
return cp
def orig_file(cp):
"The name of the orig.tar.gz belonging to changelog cp"
return "%s_%s.orig.tar.gz" % (cp['Source'], cp['Upstream-Version'])
def is_native(cp):
"Is this a debian native package"
return [ True, False ]['-' in cp['Version']]
def has_epoch(cp):
"""does the topmost version number contain an epoch"""
try:
if cp['Epoch']:
return True
except KeyError:
return False
def has_orig(cp, dir):
"Check if orig.tar.gz exists in dir"
try:
os.stat( os.path.join(dir, orig_file(cp)) )
except OSError:
return False
return True
def symlink_orig(cp, orig_dir, output_dir, force=False):
"""
symlink orig.tar.gz from orig_dir to output_dir
@return: True if link was created or src == dst
False in case of error or src doesn't exist
"""
orig_dir = os.path.abspath(orig_dir)
output_dir = os.path.abspath(output_dir)
if orig_dir == output_dir:
return True
src = os.path.join(orig_dir, orig_file(cp))
dst = os.path.join(output_dir, orig_file(cp))
if not os.access(src, os.F_OK):
return False
try:
if os.access(dst, os.F_OK) and force:
os.unlink(dst)
os.symlink(src, dst)
except OSError:
return False
return True
def unpack_orig(archive, tmpdir, filters):
"""
unpack a .orig.tar.gz to tmpdir, leave the cleanup to the caller in case of
an error
"""
try:
unpackArchive = gbpc.UnpackTarArchive(archive, tmpdir, filters)
unpackArchive()
except gbpc.CommandExecFailed:
print >>sys.stderr, "Unpacking of %s failed" % archive
raise GbpError
return unpackArchive.dir
def repack_orig(archive, tmpdir, dest):
"""
recreate a new .orig.tar.gz from tmpdir (useful when using filter option)
"""
try:
repackArchive = gbpc.RepackTarArchive(archive, tmpdir, dest)
repackArchive()
except gbpc.CommandExecFailed:
print >>sys.stderr, "Failed to create %s" % archive
raise GbpError
return repackArchive.dir
def tar_toplevel(dir):
"""tar archives can contain a leading directory not"""
unpacked = glob.glob('%s/*' % dir)
if len(unpacked) == 1:
return unpacked[0]
else:
return dir
def get_arch():
pipe = subprocess.Popen(["dpkg", "--print-architecture"], shell=False, stdout=subprocess.PIPE)
arch = pipe.stdout.readline().strip()
return arch
def guess_upstream_version(archive, version_regex=r''):
"""
guess the version from the filename of an upstgream archive
@archive: filename to guess to version for
@version_regex: additional version regex to apply, needs a 'version' group
>>> guess_upstream_version('foo-bar_0.2.orig.tar.gz')
'0.2'
>>> guess_upstream_version('foo-Bar_0.2.orig.tar.gz')
>>> guess_upstream_version('git-bar-0.2.tar.gz')
'0.2'
>>> guess_upstream_version('git-bar-0.2-rc1.tar.gz')
'0.2-rc1'
>>> guess_upstream_version('git-bar-0.2:~-rc1.tar.gz')
'0.2:~-rc1'
>>> guess_upstream_version('git-Bar-0A2d:rc1.tar.bz2')
'0A2d:rc1'
>>> guess_upstream_version('git-1.tar.bz2')
'1'
>>> guess_upstream_version('foo-Bar_0.2.orig.tar.gz')
>>> guess_upstream_version('foo-Bar-a.b.tar.gz')
"""
version_chars = r'[a-zA-Z\d\.\~\-\:]'
extensions = r'\.tar\.(gz|bz2)'
version_filters = map ( lambda x: x % (version_chars, extensions),
( # Debian package_<version>.orig.tar.gz:
r'^[a-z\d\.\+\-]+_(?P<version>%s+)\.orig%s',
# Upstream package-<version>.tar.gz:
r'^[a-zA-Z\d\.\+\-]+-(?P<version>[0-9]%s*)%s'))
if version_regex:
version_filters = version_regex + version_filters
for filter in version_filters:
m = re.match(filter, os.path.basename(archive))
if m:
return m.group('version')
def _test():
import doctest
doctest.testmod()
if __name__ == '__main__':
_test()
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·:
|