diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2017-03-22 05:30:18 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2017-03-22 05:49:59 -0700 |
commit | 5652d384516cf7ecaaa0400601619ab2dfe1b7b1 (patch) | |
tree | 2efa27247d7c73062186433f0a0ee45d543bfe48 /bin | |
parent | ekeyword: Initial updates for gentoolkit eco-system (diff) | |
download | gentoolkit-5652d384516cf7ecaaa0400601619ab2dfe1b7b1.tar.gz gentoolkit-5652d384516cf7ecaaa0400601619ab2dfe1b7b1.tar.bz2 gentoolkit-5652d384516cf7ecaaa0400601619ab2dfe1b7b1.zip |
imlate: Initial updates for the gentoolkit eco-system
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/imlate | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/bin/imlate b/bin/imlate new file mode 100755 index 0000000..ecbc680 --- /dev/null +++ b/bin/imlate @@ -0,0 +1,45 @@ +#!/usr/bin/python +# +# Copyright 2002-2017 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 or later +# +# $Header$ + +"""Manage KEYWORDS in ebuilds easily. + +This tool provides a simple way to add or update KEYWORDS in a set of ebuilds. +Each command-line argument is processed in order, so that keywords are added to +the current list as they appear, and ebuilds are processed as they appear. + +""" + +from __future__ import print_function + +import os +import sys +# This block ensures that ^C interrupts are handled quietly. +try: + import signal + + def exithandler(signum,frame): + signal.signal(signal.SIGINT, signal.SIG_IGN) + signal.signal(signal.SIGTERM, signal.SIG_IGN) + print() + sys.exit(1) + + signal.signal(signal.SIGINT, exithandler) + signal.signal(signal.SIGTERM, exithandler) + signal.signal(signal.SIGPIPE, signal.SIG_DFL) + +except KeyboardInterrupt: + print() + sys.exit(1) + +from gentoolkit.imlate import imlate + +try: + imlate.main() +except KeyboardInterrupt: + print("Aborted.") + sys.exit(130) +sys.exit(0) |