Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxxxx> --- stgit/commands/hide.py | 44 ++++++++++++++++++++++++-------------------- 1 files changed, 24 insertions(+), 20 deletions(-) diff --git a/stgit/commands/hide.py b/stgit/commands/hide.py index 014febb..0b93a59 100644 --- a/stgit/commands/hide.py +++ b/stgit/commands/hide.py @@ -1,5 +1,5 @@ __copyright__ = """ -Copyright (C) 2007, Catalin Marinas <catalin.marinas@xxxxxxxxx> +Copyright (C) 2009, Catalin Marinas <catalin.marinas@xxxxxxxxx> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as @@ -15,12 +15,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -import sys, os +from stgit.commands import common +from stgit.lib import transaction +from stgit import argparse from stgit.argparse import opt -from stgit.commands.common import * -from stgit.utils import * -from stgit.out import * -from stgit import argparse, stack, git help = 'Hide a patch in the series' kind = 'stack' @@ -29,25 +27,31 @@ description = """ Hide a range of unapplied patches so that they are no longer shown in the plain 'series' command output.""" -args = [argparse.patch_range(argparse.applied_patches, - argparse.unapplied_patches)] +args = [argparse.patch_range(argparse.unapplied_patches)] options = [ opt('-b', '--branch', args = [argparse.stg_branches], short = 'Use BRANCH instead of the default branch')] -directory = DirectoryHasRepository(log = True) +directory = common.DirectoryHasRepositoryLib() def func(parser, options, args): - """Hide a range of patch in the series - """ - if args: - # parsing all the patches for a more meaningful error reporting - all_patches = crt_series.get_applied() + crt_series.get_unapplied() \ - + crt_series.get_hidden() - patches = parse_patches(args, all_patches) - else: + """Hide a range of patch in the series.""" + stack = directory.repository.current_stack + trans = transaction.StackTransaction(stack, 'hide') + + if not args: parser.error('No patches specified') - for patch in patches: - crt_series.hide_patch(patch) - out.info('Patch "%s" hidden' % patch) + patches = common.parse_patches(args, trans.all_patches) + for p in patches: + if p in trans.applied: + raise common.CmdException('Cannot hide applied patch "%s"' % p) + elif p in trans.hidden: + raise common.CmdException('Patch "%s" already hidden' % p) + + applied = list(trans.applied) + unapplied = [p for p in trans.unapplied if not p in set(patches)] + hidden = patches + trans.hidden + + trans.reorder_patches(applied, unapplied, hidden) + return trans.run() -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html