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 4CF4F138010 for ; Thu, 28 Mar 2013 17:14:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D068BE09B2; Thu, 28 Mar 2013 17:14:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F638E09B2 for ; Thu, 28 Mar 2013 17:14:13 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C90033DA23 for ; Thu, 28 Mar 2013 17:14:12 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 157442171D; Thu, 28 Mar 2013 17:14:11 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in pax-utils: lddtree.py X-VCS-Repository: gentoo-projects X-VCS-Files: lddtree.py X-VCS-Directories: pax-utils X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130328171411.157442171D@flycatcher.gentoo.org> Date: Thu, 28 Mar 2013 17:14:11 +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: 2c1dee3b-6307-4435-a8f0-877005c6efa5 X-Archives-Hash: b6f75f59b6dc6ce7941d10cb9f46652a vapier 13/03/28 17:14:11 Modified: lddtree.py Log: lddtree.py: drop superfluous () around help strings Revision Changes Path 1.35 pax-utils/lddtree.py file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.35&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.35&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?r1=1.34&r2=1.35 Index: lddtree.py =================================================================== RCS file: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- lddtree.py 28 Mar 2013 01:17:14 -0000 1.34 +++ lddtree.py 28 Mar 2013 17:14:10 -0000 1.35 @@ -3,7 +3,7 @@ # Copyright 2012 Mike Frysinger # Use of this source code is governed by a BSD-style license (BSD-3) # pylint: disable=C0301 -# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.34 2013/03/28 01:17:14 vapier Exp $ +# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.35 2013/03/28 17:14:10 vapier Exp $ # TODO: Handle symlinks. @@ -374,7 +374,7 @@ def _ShowVersion(_option, _opt, _value, _parser): - d = '$Id: lddtree.py,v 1.34 2013/03/28 01:17:14 vapier Exp $'.split() + d = '$Id: lddtree.py,v 1.35 2013/03/28 17:14:10 vapier Exp $'.split() print('%s-%s %s %s' % (d[1].split('.')[0], d[2], d[3], d[4])) sys.exit(0) @@ -536,44 +536,44 @@ they need will be placed into /foo/lib/ only.""") parser.add_option('-a', '--all', action='store_true', default=False, - help=('Show all duplicated dependencies')) + help='Show all duplicated dependencies') parser.add_option('-R', '--root', default=os.environ.get('ROOT', ''), type='string', action='callback', callback=_NormalizePath, - help=('Search for all files/dependencies in ROOT')) + help='Search for all files/dependencies in ROOT') parser.add_option('--no-auto-root', dest='auto_root', action='store_false', default=True, - help=('Do not automatically prefix input ELFs with ROOT')) + help='Do not automatically prefix input ELFs with ROOT') parser.add_option('--copy-to-tree', dest='dest', default=None, type='string', action='callback', callback=_NormalizePath, - help=('Copy all files to the specified tree')) + help='Copy all files to the specified tree') parser.add_option('--bindir', default=None, type='string', action='callback', callback=_NormalizePath, - help=('Dir to store all ELFs specified on the command line')) + help='Dir to store all ELFs specified on the command line') parser.add_option('--libdir', default=None, type='string', action='callback', callback=_NormalizePath, - help=('Dir to store all ELF libs')) + help='Dir to store all ELF libs') parser.add_option('--generate-wrappers', action='store_true', default=False, - help=('Wrap executable ELFs with scripts for local ldso')) + help='Wrap executable ELFs with scripts for local ldso') parser.add_option('--copy-non-elfs', action='store_true', default=False, - help=('Copy over plain (non-ELF) files instead of warn+ignore')) + help='Copy over plain (non-ELF) files instead of warn+ignore') parser.add_option('-l', '--list', action='store_true', default=False, - help=('Display output in a simple list (easy for copying)')) + help='Display output in a simple list (easy for copying)') parser.add_option('-x', '--debug', action='store_true', default=False, - help=('Run with debugging')) + help='Run with debugging') parser.add_option('-v', '--verbose', action='store_true', default=False, - help=('Be verbose')) + help='Be verbose') parser.add_option('-V', '--version', action='callback', callback=_ShowVersion, - help=('Show version information')) + help='Show version information') (options, paths) = parser.parse_args(argv) if options.root != '/':