Merge commit 'kha/safe'
[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
b7eeeade 19from optparse import make_option
fcee87cf 20
b7eeeade
CM
21from stgit.commands import common
22from stgit.out import out
fcee87cf
CM
23
24help = 'print the name of the top patch'
26aab5b0
CM
25usage = """%prog [options]
26
27Print the name of the current (topmost) patch."""
fcee87cf 28
b7eeeade 29directory = common.DirectoryHasRepositoryLib()
2f7c8b0b
CM
30options = [make_option('-b', '--branch',
31 help = 'use BRANCH instead of the default one')]
fcee87cf 32
fcee87cf
CM
33def func(parser, options, args):
34 """Show the name of the topmost patch
35 """
36 if len(args) != 0:
37 parser.error('incorrect number of arguments')
38
b7eeeade
CM
39 stack = directory.repository.get_stack(options.branch)
40 applied = stack.patchorder.applied
41
42 if applied:
43 out.stdout(applied[-1])
fcee87cf 44 else:
b7eeeade 45 raise common.CmdException, 'No patches applied'