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
|
#!/usr/bin/python -u
# vim: set fileencoding=utf-8 :
#
# (C) 2006,2007 Guido Guenther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Import a Debian source package into a git repository"""
import ConfigParser
import sys
import re
import os
import tempfile
import glob
import pipes
from email.Utils import parseaddr
import gbp.command_wrappers as gbpc
from gbp.deb import (debian_version_chars, parse_changelog, unpack_orig,
parse_dsc, DscFile, tar_toplevel)
from gbp.git import (build_tag, create_repo, GitRepository,
GitRepositoryError, rfc822_date_to_git)
from gbp.config import GbpOptionParser, GbpOptionGroup
from gbp.errors import GbpError
def git_apply_patch(diff):
"Import patch via git apply"
pipe = pipes.Template()
pipe.prepend('gunzip -c %s' % diff, '.-')
pipe.append('git apply --index --apply --whitespace=nowarn -', '-.')
try:
ret = pipe.copy('', '')
if ret:
print >>sys.stderr, "Error import %s: %d" % (diff, ret)
return False
except OSError, err:
print >>sys.stderr, "Error importing %s: %s" % (diff, err[0])
return False
return True
def apply_deb_tgz(deb_tgz):
"""Apply .debian.tar.gz (V3 source format)"""
unpackArchive = gbpc.UnpackTarArchive(deb_tgz, ".")()
gbpc.GitAdd()(["debian/"])
return True
def apply_debian_patch(repo, src, options):
"""apply the debian patch and tag appropriately"""
version = "%s-%s" % (src.upstream_version, src.debian_version)
gitTag = gbpc.GitTag(options.sign_tags, options.keyid)
try:
if not src.diff and not src.deb_tgz:
raise GbpError, "No diff to apply."
if src.diff and not git_apply_patch(src.diff):
raise GbpError
if src.deb_tgz and not apply_deb_tgz(src.deb_tgz):
raise GbpError
os.chmod('debian/rules', 0755)
if not repo.is_clean()[0]:
dch = parse_changelog('debian/changelog')
env = { 'GIT_AUTHOR_DATE': rfc822_date_to_git(dch['Date']) }
name, addr = parseaddr(dch['Maintainer'])
if name and addr:
env['GIT_AUTHOR_NAME'] = name
env['GIT_AUTHOR_EMAIL'] = addr
else:
print >>sys.stderr, "Warning: failed to parse maintainer"
gbpc.GitCommitAll(extra_env=env)(msg="Imported Debian patch %s" % version)
else:
print "Nothing to commit, nothing imported."
gitTag(build_tag(options.debian_tag, version),
msg="Debian release %s" % version)
except gbpc.CommandExecFailed:
print >>sys.stderr, "Failed to import Debian package"
raise GbpError
def print_dsc(dsc):
if dsc.native:
print "Debian Native Package"
print "Version:", dsc.upstream_version
print "Debian tarball:", dsc.tgz
else:
print "Upstream version:", dsc.upstream_version
print "Debian version:", dsc.debian_version
print "Upstream tarball:", dsc.tgz
print "Debian diff:", dsc.diff
if dsc.epoch:
print "Epoch: %s" % dsc.epoch
class SkipImport(Exception):
pass
def main(argv):
dirs = {'top': os.path.abspath(os.curdir)}
needs_repo = False
ret = 0
try:
parser = GbpOptionParser(command=os.path.basename(argv[0]), prefix='',
usage='%prog [options] /path/to/package.dsc')
except ConfigParser.ParsingError, err:
print >>sys.stderr, err
return 1
import_group = GbpOptionGroup(parser, "import options",
"pristine-tar and filtering")
tag_group = GbpOptionGroup(parser, "tag options",
"options related to git tag creation")
branch_group = GbpOptionGroup(parser, "version and branch naming options",
"version number and branch layout options")
for group in [import_group, branch_group, tag_group ]:
parser.add_option_group(group)
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False,
help="verbose command execution")
branch_group.add_config_file_option(option_name="debian-branch",
dest="debian_branch")
branch_group.add_config_file_option(option_name="upstream-branch",
dest="upstream_branch")
branch_group.add_option("--no-merge", dest='merge', action="store_false",
default=True,
help="after import dont do any merging to another branch")
tag_group.add_boolean_config_file_option(option_name="sign-tags",
dest="sign_tags")
tag_group.add_config_file_option(option_name="keyid",
dest="keyid")
tag_group.add_config_file_option(option_name="debian-tag",
dest="debian_tag")
tag_group.add_config_file_option(option_name="upstream-tag",
dest="upstream_tag")
import_group.add_config_file_option(option_name="filter",
dest="filters", action="append")
import_group.add_boolean_config_file_option(option_name="pristine-tar",
dest="pristine_tar")
import_group.add_option("--ignore-same-version", action="store_true",
dest="ignore_same_version", default=False,
help="don't import already imported version")
(options, args) = parser.parse_args(argv[1:])
if options.verbose:
gbpc.Command.verbose = True
gitTag = gbpc.GitTag(options.sign_tags, options.keyid)
try:
if len(args) != 1:
parser.print_help()
raise GbpError
else:
src = parse_dsc(args[0])
if src.pkgformat not in [ '1.0', '3.0' ]:
raise GbpError, "Importing %s source format not yet supported." % src.pkgformat
if options.verbose:
print_dsc(src)
try:
repo = GitRepository('.')
is_empty = repo.is_empty()
(clean, out) = repo.is_clean()
if not clean and not is_empty:
print >>sys.stderr, "Repository has uncommitted changes, commit these first: "
raise GbpError, out
except GitRepositoryError:
# no repo found, create one
needs_repo = True
is_empty = True
if needs_repo:
print "No git repository found, creating one."
repo = create_repo(src.pkg)
os.chdir(repo.path)
dirs['tmp'] = os.path.abspath(tempfile.mkdtemp(dir='..'))
unpack_dir = unpack_orig(src.tgz, dirs['tmp'], options.filters)
unpack_dir = tar_toplevel(unpack_dir)
format = [(options.upstream_tag, "Upstream"), (options.debian_tag, "Debian")][src.native]
tag = build_tag(format[0], src.upstream_version)
msg = "%s version %s" % (format[1], src.upstream_version)
if repo.has_tag(tag) and options.ignore_same_version:
print "Tag %s already there" % tag
raise SkipImport
if not repo.has_tag(tag):
print "tag %s not found, importing %s tarball" % (tag, format[1])
# FIXME: this is what import-orig does - merge
if not is_empty:
if src.native:
repo.set_branch(options.debian_branch)
else:
repo.set_branch(options.upstream_branch)
repo.replace_tree(unpack_dir, options.filters, verbose=True)
gbpc.GitCommitAll()(msg="Imported %s" % msg)
gitTag(tag, msg=msg)
if not src.native and is_empty:
gbpc.GitBranch()(options.upstream_branch)
if options.pristine_tar and not src.native:
gbpc.PristineTar().commit(src.tgz, 'refs/heads/%s' % options.upstream_branch)
if not src.native:
if is_empty and not repo.has_branch(options.debian_branch):
gbpc.GitBranch()(options.debian_branch)
repo.set_branch(options.debian_branch)
if options.merge:
print "Merging to %s" % options.debian_branch
try:
gbpc.GitMerge(options.upstream_branch)()
except gbpc.CommandExecFailed:
raise GbpError, """Merge of %s failed, please resolve manually""" % options.upstream_branch
repo.replace_tree(unpack_dir, options.filters)
if src.diff or src.deb_tgz:
apply_debian_patch(repo, src, options)
else:
print >>sys.stderr, "Warning: Didn't find a diff to apply."
except gbpc.CommandExecFailed:
ret = 1
except GbpError, err:
if len(err.__str__()):
print >>sys.stderr, err
ret = 1
except SkipImport:
pass
finally:
os.chdir(dirs['top'])
if dirs.has_key('tmp'):
gbpc.RemoveTree(dirs['tmp'])()
if not ret:
print "Everything imported under '%s'" % src.pkg
return ret
if __name__ == '__main__':
sys.exit(main(sys.argv))
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·:
|