chiark / gitweb /
2c1e94b92d3afbe299348f3894907ec6f7ced1bf
[stgit] / stgit / commands / new.py
1
2 __copyright__ = """
3 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 """
18
19 import sys, os
20 from optparse import OptionParser, make_option
21
22 from stgit.commands.common import *
23 from stgit.utils import *
24 from stgit import stack, git
25
26
27 help = 'create a new patch and make it the topmost one'
28 usage = """%prog [options] <name>
29
30 Create a new, empty patch and make it the topmost one. If the
31 '--message' option is not passed, an editor is invoked with the
32 .git/patchdescr.tmpl, ~/.stgit/templates/patchdescr.tmpl or
33 /usr/share/stgit/templates/patchdescr.tmpl file used a as template,
34 together with generated lines. By default, the local changes in the
35 working tree are not included in the patch. A 'refresh' command is
36 needed for this."""
37
38 options = [make_option('-m', '--message',
39                        help = 'use MESSAGE as the patch description'),
40            make_option('-s', '--showpatch',
41                        help = 'show the patch content in the editor buffer',
42                        action = 'store_true'),
43            make_option('-a', '--author', metavar = '"NAME <EMAIL>"',
44                        help = 'use "NAME <EMAIL>" as the author details'),
45            make_option('--authname',
46                        help = 'use AUTHNAME as the author name'),
47            make_option('--authemail',
48                        help = 'use AUTHEMAIL as the author e-mail'),
49            make_option('--authdate',
50                        help = 'use AUTHDATE as the author date'),
51            make_option('--commname',
52                        help = 'use COMMNAME as the committer name'),
53            make_option('--commemail',
54                        help = 'use COMMEMAIL as the committer e-mail')]
55
56
57 def func(parser, options, args):
58     """Creates a new patch
59     """
60     if len(args) != 1:
61         parser.error('incorrect number of arguments')
62
63     check_conflicts()
64     check_head_top_equal()
65
66     if options.author:
67         options.authname, options.authemail = name_email(options.author)
68
69     crt_series.new_patch(args[0], message = options.message,
70                          show_patch = options.showpatch,
71                          author_name = options.authname,
72                          author_email = options.authemail,
73                          author_date = options.authdate,
74                          committer_name = options.commname,
75                          committer_email = options.commemail)