Mercurial > dotfiles
view unixSoft/bin/hgimp @ 526:852565046ed0 default tip
zsh: fidget with screen/tmux message
This should speed things up very slightly by avoiding some `grep` action
in the common case of no detached screens/tmuxes.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 14 Nov 2022 11:02:35 -0500 |
parents | 6cc5a0550281 |
children |
line wrap: on
line source
#!/usr/bin/env python import argparse import os import subprocess import sys _MAP = { 'hg': '~/Programming/hg/crew', 'hglib': '~/Programming/hg/python-hglib', 'hgsubversion': '~/Programming/hg/hgsubversion', 'hg-git': '~/Programming/hg/hg-git', 'topics': '~/Programming/hg/topic', } def main(argv): p = argparse.ArgumentParser('import patches') p.add_argument('repo', type=str, nargs=1, help='repo name to apply patches to') p.add_argument('--partial', action='store_true', help='Commit partially-applied patches.') args = p.parse_args(argv[1:]) name, = args.repo if name in _MAP: repo = _MAP[name] else: c = [] for n in _MAP: if n.startswith(name): c.append(n) if not c: print('abort: no repo named %s' % name) sys.exit(1) elif len(c) != 1: print('abort: ambiguous repo name %s matches %s' % ( name, ', '.join(c))) sys.exit(1) repo = _MAP[c[0]] importargs = ['hg', '-R', repo, 'import', '--obsolete'] if args.partial: importargs.append('--partial') importargs.append('-') hg = subprocess.Popen(importargs, stdin=subprocess.PIPE) hg.stdin.write(sys.stdin.buffer.read()) hg.stdin.close() hg.wait() sys.exit(hg.returncode) if __name__ == '__main__': main(argv=sys.argv)