5 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 from optparse import OptionParser, make_option
24 from stgit.commands.common import *
25 from stgit.utils import *
26 from stgit.out import *
27 from stgit import stack, git, templates
30 help = 'exports patches to a directory'
31 usage = """%prog [options] [<patch1>] [<patch2>] [<patch3>..<patch4>]
33 Export a range of applied patches to a given directory (defaults to
34 'patches-<branch>') in a standard unified GNU diff format. A template
35 file (defaulting to '.git/patchexport.tmpl' or
36 '~/.stgit/templates/patchexport.tmpl' or
37 '/usr/share/stgit/templates/patchexport.tmpl') can be used for the
38 patch format. The following variables are supported in the template
41 %(description)s - patch description
42 %(shortdescr)s - the first line of the patch description
43 %(longdescr)s - the rest of the patch description, after the first line
44 %(diffstat)s - the diff statistics
45 %(authname)s - author's name
46 %(authemail)s - author's e-mail
47 %(authdate)s - patch creation date
48 %(commname)s - committer's name
49 %(commemail)s - committer's e-mail
52 directory = DirectoryHasRepository()
53 options = [make_option('-d', '--dir',
54 help = 'export patches to DIR instead of the default'),
55 make_option('-p', '--patch',
56 help = 'append .patch to the patch names',
57 action = 'store_true'),
58 make_option('-e', '--extension',
59 help = 'append .EXTENSION to the patch names'),
60 make_option('-n', '--numbered',
61 help = 'prefix the patch names with order numbers',
62 action = 'store_true'),
63 make_option('-t', '--template', metavar = 'FILE',
64 help = 'Use FILE as a template'),
65 make_option('-b', '--branch',
66 help = 'use BRANCH instead of the default one'),
67 make_option('-s', '--stdout',
68 help = 'dump the patches to the standard output',
69 action = 'store_true')
70 ] + make_diff_opts_option()
73 def func(parser, options, args):
74 """Export a range of patches.
79 dirname = 'patches-%s' % crt_series.get_name()
80 directory.cd_to_topdir()
82 if not options.branch and git.local_changes():
83 out.warn('Local changes in the tree;'
84 ' you might want to commit them first')
86 if not options.stdout:
87 if not os.path.isdir(dirname):
89 series = file(os.path.join(dirname, 'series'), 'w+')
91 applied = crt_series.get_applied()
92 unapplied = crt_series.get_unapplied()
94 patches = parse_patches(args, applied + unapplied, len(applied))
100 raise CmdException, 'No patches applied'
102 zpadding = len(str(num))
108 tmpl = file(options.template).read()
110 tmpl = templates.get_template('patchexport.tmpl')
114 # note the base commit for this series
115 if not options.stdout:
116 base_commit = crt_series.get_patch(patches[0]).get_bottom()
117 print >> series, '# This series applies on GIT commit %s' % base_commit
123 pname = '%s.patch' % pname
124 elif options.extension:
125 pname = '%s.%s' % (pname, options.extension)
127 pname = '%s-%s' % (str(patch_no).zfill(zpadding), pname)
128 pfile = os.path.join(dirname, pname)
129 if not options.stdout:
130 print >> series, pname
132 # get the patch description
133 patch = crt_series.get_patch(p)
135 descr = patch.get_description().strip()
136 descr_lines = descr.split('\n')
138 short_descr = descr_lines[0].rstrip()
139 long_descr = reduce(lambda x, y: x + '\n' + y,
140 descr_lines[1:], '').strip()
142 diff = git.diff(rev1 = patch.get_bottom(),
143 rev2 = patch.get_top(),
144 diff_flags = options.diff_flags)
145 tmpl_dict = {'description': patch.get_description().rstrip(),
146 'shortdescr': short_descr,
147 'longdescr': long_descr,
148 'diffstat': git.diffstat(diff),
149 'authname': patch.get_authname(),
150 'authemail': patch.get_authemail(),
151 'authdate': patch.get_authdate(),
152 'commname': patch.get_commname(),
153 'commemail': patch.get_commemail()}
154 for key in tmpl_dict:
155 if not tmpl_dict[key]:
159 descr = tmpl % tmpl_dict
160 except KeyError, err:
161 raise CmdException, 'Unknown patch template variable: %s' \
164 raise CmdException, 'Only "%(name)s" variables are ' \
165 'supported in the patch template'
170 f = open(pfile, 'w+')
172 if options.stdout and num > 1:
174 print patch.get_name()
179 if not options.stdout:
183 if not options.stdout: