From 5652d384516cf7ecaaa0400601619ab2dfe1b7b1 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Wed, 22 Mar 2017 05:30:18 -0700 Subject: imlate: Initial updates for the gentoolkit eco-system --- bin/imlate | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 bin/imlate (limited to 'bin') 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) -- cgit v1.2.3