chiark / gitweb /
Infrastructure for current directory handling
[stgit] / stgit / commands / sink.py
CommitLineData
de7a79c4
YD
1
2__copyright__ = """
3Copyright (C) 2007, Yann Dirson <ydirson@altern.org>
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
6f1c5e3c 27help = 'send patches deeper down the stack'
de7a79c4
YD
28usage = """%prog [-t <target patch>] [-n] [<patches>]
29
30Pop all patches (or all patches including <target patch>), then
31push the specified <patches> (the current patch by default), and
32then push back into place the formerly-applied patches (unless -n
33is also given)."""
34
6dd8fafa 35directory = DirectoryHasRepository()
de7a79c4
YD
36options = [make_option('-n', '--nopush',
37 help = 'do not push the patches back after sinking',
38 action = 'store_true'),
39 make_option('-t', '--to', metavar = 'TARGET',
6f1c5e3c 40 help = 'sink patches below TARGET patch')]
de7a79c4
YD
41
42def func(parser, options, args):
6f1c5e3c 43 """Sink patches down the stack.
de7a79c4
YD
44 """
45
46 check_local_changes()
47 check_conflicts()
48 check_head_top_equal()
49
50 oldapplied = crt_series.get_applied()
51 unapplied = crt_series.get_unapplied()
52 all = unapplied + oldapplied
53
74477393
KH
54 if options.to and not options.to in oldapplied:
55 raise CmdException('Cannot sink below %s, since it is not applied'
56 % options.to)
57
de7a79c4
YD
58 if len(args) > 0:
59 patches = parse_patches(args, all)
60 else:
61 patches = [ crt_series.get_current() ]
62
63 crt_series.pop_patch(options.to or oldapplied[0])
64 push_patches(patches)
65
66 if not options.nopush:
67 newapplied = crt_series.get_applied()
68 def not_reapplied_yet(p):
69 return not p in newapplied
70 push_patches(filter(not_reapplied_yet, oldapplied))