Generate command lists automatically
[stgit] / stgit / commands / top.py
CommitLineData
fcee87cf
CM
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
575bbdae 19from stgit.argparse import opt
b7eeeade
CM
20from stgit.commands import common
21from stgit.out import out
fcee87cf 22
575bbdae 23help = 'Print the name of the top patch'
33ff9cdd 24kind = 'stack'
575bbdae
KH
25usage = ['']
26description = """
26aab5b0 27Print the name of the current (topmost) patch."""
fcee87cf 28
575bbdae
KH
29options = [
30 opt('-b', '--branch',
31 short = 'Use BRANCH instead of the default branch')]
32
b7eeeade 33directory = common.DirectoryHasRepositoryLib()
fcee87cf 34
fcee87cf
CM
35def func(parser, options, args):
36 """Show the name of the topmost patch
37 """
38 if len(args) != 0:
39 parser.error('incorrect number of arguments')
40
b7eeeade
CM
41 stack = directory.repository.get_stack(options.branch)
42 applied = stack.patchorder.applied
43
44 if applied:
45 out.stdout(applied[-1])
fcee87cf 46 else:
b7eeeade 47 raise common.CmdException, 'No patches applied'