chiark / gitweb /
Allow deletion of several patches at once
[stgit] / stgit / commands / delete.py
... / ...
CommitLineData
1
2__copyright__ = """
3Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License version 2 as
7published by the Free Software Foundation.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17"""
18
19import sys, os
20from optparse import OptionParser, make_option
21
22from stgit.commands.common import *
23from stgit.utils import *
24from stgit import stack, git
25
26
27help = 'delete patches'
28usage = """%prog [options] <patch1> [<patch2>] [<patch3>..<patch4>]
29
30Delete the patches passed as arguments. If an applied patch is to be
31deleted, all other patches applied on top of it must be deleted too,
32and they must be explicitly specified, since this command will not try
33to delete a patch unless you explicitly ask it to. If any applied
34patches are deleted, they are popped from the stack.
35
36Note that the 'delete' operation is irreversible."""
37
38options = [make_option('-b', '--branch',
39 help = 'use BRANCH instead of the default one')]
40
41def func(parser, options, args):
42 """Deletes one or more patches."""
43 applied_patches = crt_series.get_applied()
44 unapplied_patches = crt_series.get_unapplied()
45 all_patches = applied_patches + unapplied_patches
46
47 if args:
48 patches = parse_patches(args, all_patches)
49 else:
50 parser.error('No patches specified')
51
52 applied = {}
53 unapplied = {}
54 for patch in patches:
55 if patch in unapplied_patches:
56 unapplied[patch] = None
57 else:
58 applied[patch] = None
59
60 while crt_series.get_current() in applied:
61 patch = crt_series.get_current()
62 check_local_changes()
63 check_conflicts()
64 check_head_top_equal()
65 crt_series.delete_patch(patch)
66 del applied[patch]
67 print 'Patch "%s" successfully deleted' % patch
68
69 for patch in unapplied.iterkeys():
70 crt_series.delete_patch(patch)
71 print 'Patch "%s" successfully deleted' % patch
72
73 if applied:
74 print 'Error: failed to delete %s' % ', '.join(applied.iterkeys())
75
76 failed = len(applied)
77 if failed:
78 raise CmdException, 'Failed to delete %d patches' % failed
79
80 if not options.branch:
81 print_crt_patch()