chiark
/
gitweb
/
~mdw
/
stgit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Allow a patch range to be specified for 'series'
[stgit]
/
stgit
/
commands
/
series.py
diff --git
a/stgit/commands/series.py
b/stgit/commands/series.py
index 571055840f61bf07c104814565383bd4b04256bd..3b2d3bf2245e0f77bd180ca7168f4cfe901d1de8 100644
(file)
--- a/
stgit/commands/series.py
+++ b/
stgit/commands/series.py
@@
-19,20
+19,27
@@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import sys, os
from optparse import OptionParser, make_option
import sys, os
from optparse import OptionParser, make_option
+import stgit.commands.common
from stgit.commands.common import *
from stgit.utils import *
from stgit import stack, git
help = 'print the patch series'
from stgit.commands.common import *
from stgit.utils import *
from stgit import stack, git
help = 'print the patch series'
-usage = """%prog [options]
+usage = """%prog [options]
[<patch-range>]
-Show all the patches in the series. The applied patches are prefixed
-with a '+' and the unapplied ones with a '-'. The current patch is
-prefixed with a '>'. Empty patches are prefixed with a '0'."""
+Show all the patches in the series or just those in the given
+range. The applied patches are prefixed with a '+' and the unapplied
+ones with a '-'. The current patch is prefixed with a '>'. Empty
+patches are prefixed with a '0'."""
options = [make_option('-b', '--branch',
help = 'use BRANCH instead of the default one'),
options = [make_option('-b', '--branch',
help = 'use BRANCH instead of the default one'),
+ make_option('-m', '--missing', metavar = 'BRANCH',
+ help = 'show patches in BRANCH missing in current'),
+ make_option('-c', '--count',
+ help = 'print the number of patches in the series',
+ action = 'store_true'),
make_option('-d', '--description',
help = 'show a short description for each patch',
action = 'store_true'),
make_option('-d', '--description',
help = 'show a short description for each patch',
action = 'store_true'),
@@
-42,14
+49,17
@@
options = [make_option('-b', '--branch',
action = 'store_true'),
make_option('-s', '--short',
help = 'list just the patches around the topmost patch',
action = 'store_true'),
make_option('-s', '--short',
help = 'list just the patches around the topmost patch',
- action = 'store_true') ]
+ action = 'store_true'),
+ make_option('-g', '--graphical',
+ help = 'run gitk instead of printing',
+ action = 'store_true')]
def __get_description(patch):
"""Extract and return a patch's short description
"""
p = crt_series.get_patch(patch)
def __get_description(patch):
"""Extract and return a patch's short description
"""
p = crt_series.get_patch(patch)
- descr =
p.get_description(
).strip()
+ descr =
(p.get_description() or ''
).strip()
descr_lines = descr.split('\n')
return descr_lines[0].rstrip()
descr_lines = descr.split('\n')
return descr_lines[0].rstrip()
@@
-64,12
+74,34
@@
def __print_patch(patch, prefix, empty_prefix, length, options):
def func(parser, options, args):
"""Show the patch series
"""
def func(parser, options, args):
"""Show the patch series
"""
- if len(args) != 0:
- parser.error('incorrect number of arguments')
+ global crt_series
+
+ if options.missing:
+ # switch the series, the one specified with --missing should
+ # become the current
+ cmp_series = crt_series
+ crt_series = stack.Series(options.missing)
+ stgit.commands.common.crt_series = crt_series
+
+ cmp_patches = cmp_series.get_applied() + cmp_series.get_unapplied()
+ else:
+ cmp_patches = []
applied = crt_series.get_applied()
unapplied = crt_series.get_unapplied()
applied = crt_series.get_applied()
unapplied = crt_series.get_unapplied()
+ # the filtering range covers the whole series
+ if args:
+ show_patches = parse_patches(args, applied + unapplied, len(applied))
+ else:
+ show_patches = applied + unapplied
+
+ # filter the patches
+ applied = [p for p in applied
+ if p in show_patches and p not in cmp_patches]
+ unapplied = [p for p in unapplied
+ if p in show_patches and p not in cmp_patches]
+
if options.short:
if len(applied) > 5:
applied = applied[-6:]
if options.short:
if len(applied) > 5:
applied = applied[-6:]
@@
-78,15
+110,38
@@
def func(parser, options, args):
patches = applied + unapplied
patches = applied + unapplied
- max_len = 0
- if len(patches) > 0:
- max_len = max([len(i) for i in patches])
+ if options.count:
+ print len(patches)
+ return
+
+ if not patches:
+ return
+
+ if options.graphical:
+ if options.missing:
+ raise CmdException, '--graphical not supported with --missing'
+
+ if applied:
+ gitk_args = ' %s^..%s' % (git_id(applied[0]), git_id(applied[-1]))
+ else:
+ gitk_args = ''
+
+ for p in unapplied:
+ patch_id = git_id(p)
+ gitk_args += ' %s^..%s' % (patch_id, patch_id)
+
+ if os.system('gitk%s' % gitk_args) != 0:
+ raise CmdException, 'gitk execution failed'
+ else:
+ max_len = 0
+ if len(patches) > 0:
+ max_len = max([len(i) for i in patches])
- if len(applied) > 0:
- for p in applied [0:-1]:
- __print_patch(p, '+ ', '0 ', max_len, options)
+
if len(applied) > 0:
+
for p in applied [0:-1]:
+
__print_patch(p, '+ ', '0 ', max_len, options)
- __print_patch(applied[-1], '> ', '0>', max_len, options)
+
__print_patch(applied[-1], '> ', '0>', max_len, options)
- for p in unapplied:
- __print_patch(p, '- ', '0 ', max_len, options)
+
for p in unapplied:
+
__print_patch(p, '- ', '0 ', max_len, options)