From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E4DBF138262 for ; Wed, 18 May 2016 15:14:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41E17E088D; Wed, 18 May 2016 15:14:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98FB3E088D for ; Wed, 18 May 2016 15:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B441340CAB for ; Wed, 18 May 2016 15:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9497496E for ; Wed, 18 May 2016 15:14:12 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1463583800.10c245fe9b72e5102d6ff553d2f87312c6be91ca.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/revdep_rebuild/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/revdep_rebuild/settings.py X-VCS-Directories: pym/gentoolkit/revdep_rebuild/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 10c245fe9b72e5102d6ff553d2f87312c6be91ca X-VCS-Branch: master Date: Wed, 18 May 2016 15:14:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4a4156e1-f661-41ed-8d87-ba3487b268f4 X-Archives-Hash: ba90fc189ff03042ecfb7481bc83b905 commit: 10c245fe9b72e5102d6ff553d2f87312c6be91ca Author: Brian Dolbec gentoo org> AuthorDate: Wed May 18 15:03:20 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed May 18 15:03:20 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=10c245fe revdep-rebuild, settings.py: whitespace cleanup pym/gentoolkit/revdep_rebuild/settings.py | 56 +++++++++++++++---------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/pym/gentoolkit/revdep_rebuild/settings.py b/pym/gentoolkit/revdep_rebuild/settings.py index e9a021a..14f5bc8 100644 --- a/pym/gentoolkit/revdep_rebuild/settings.py +++ b/pym/gentoolkit/revdep_rebuild/settings.py @@ -51,59 +51,59 @@ def parse_options(): #are not appliable from .rebuild import VERSION, APP_NAME settings = DEFAULTS.copy() - + parser = argparse.ArgumentParser( description='Broken reverse dependency rebuilder, python implementation.', epilog='Calls emerge, options after -- are ignored by %s ' 'and passed directly to emerge.' % APP_NAME, add_help=False ) - - parser.add_argument('-h', '--help', - action='help', + + parser.add_argument('-h', '--help', + action='help', help='Print this usage and exit') - parser.add_argument('-V', '--version', - action='version', + parser.add_argument('-V', '--version', + action='version', help='Show version informations', version='%(prog)s ' + VERSION) - - parser.add_argument('-i', '--ignore', - action='store_true', - help='Ignore temporary files from previous runs ' + + parser.add_argument('-i', '--ignore', + action='store_true', + help='Ignore temporary files from previous runs ' '(also won\'t create any)') - parser.add_argument('-L', '--library', - action='append', + parser.add_argument('-L', '--library', + action='append', help='Unconditionally emerge existing packages that use ' 'the library with NAME. NAME can be a full path, full ' 'or partial name') - parser.add_argument('-l', '--no-ld-path', - action='store_true', + parser.add_argument('-l', '--no-ld-path', + action='store_true', help='Do not set LD_LIBRARY_PATH') - parser.add_argument('-o', '--no-order', - action='store_true', + parser.add_argument('-o', '--no-order', + action='store_true', help='Do not check the build order ' '(Saves time, but may cause breakage.)') - parser.add_argument('-p', '--pretend', + parser.add_argument('-p', '--pretend', action='store_true', help='Do a trial run without actually emerging anything ' - '(also passed to emerge command)') + '(also passed to emerge command)') - parser.add_argument('-C', '--nocolor', - action='store_true', + parser.add_argument('-C', '--nocolor', + action='store_true', help='Turn off colored output') - parser.add_argument('-q', '--quiet', - action='store_true', + parser.add_argument('-q', '--quiet', + action='store_true', help='Be less verbose (also passed to emerge command)') - parser.add_argument('-v', '--verbose', - action='store_true', + parser.add_argument('-v', '--verbose', + action='store_true', help='Be more verbose (also passed to emerge command)') - parser.add_argument('-d', '--debug', - action='store_true', + parser.add_argument('-d', '--debug', + action='store_true', help='Print debug informations') - + parser.add_argument('portage_options', nargs='*') - + args = parser.parse_args() settings['VERBOSITY'] = 3 if args.debug else 2 if args.verbose else 0 if args.quiet else 1 settings['quiet'] = args.quiet