From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1REB1Y-00022g-ND for garchives@archives.gentoo.org; Thu, 13 Oct 2011 02:27:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57F9921C023; Thu, 13 Oct 2011 02:27:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1FCAE21C023 for ; Thu, 13 Oct 2011 02:27:48 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 75A681B400B for ; Thu, 13 Oct 2011 02:27:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6062480042 for ; Thu, 13 Oct 2011 02:27:46 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: Subject: [gentoo-commits] proj/elfix:master commit in: scripts/ X-VCS-Repository: proj/elfix X-VCS-Files: scripts/revdep-pax X-VCS-Directories: scripts/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: a856ce5c1eb670f5abcfdc4eca3038932fd33835 Date: Thu, 13 Oct 2011 02:27:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 433dcaaff1b68b7ede4c90343372c975 commit: a856ce5c1eb670f5abcfdc4eca3038932fd33835 Author: Anthony G. Basile gentoo org> AuthorDate: Thu Oct 13 02:27:41 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Thu Oct 13 02:27:41 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3Da856ce5c scripts/revdep-pax: improve format of output --- scripts/revdep-pax | 30 ++++++++++++++++++++++++++---- 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/scripts/revdep-pax b/scripts/revdep-pax index f06bf3d..dd359db 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -105,7 +105,13 @@ def print_forward_linkings( forward_linkings, so2lib= rary_mappings, verbose ): if verbose: print sv if count =3D=3D 0: - print 'No mismatches' + print + print '\tNo mismatches' + print + else: + print + print '\tMismatches' + print else: if count !=3D 0: print s @@ -159,7 +165,13 @@ def print_reverse_linkings( reverse_linkings, so2lib= rary_mappings, verbose ): if verbose: print sv if count =3D=3D 0: - print 'No mismatches' + print + print '\tNo mismatches' + print + else: + print + print '\tMismatches' + print else: if count !=3D 0: print s @@ -233,7 +245,12 @@ def run_binary(binary, verbose): =20 if count =3D=3D 0: print - print 'No mismatches' + print '\tNo mismatches' + print + else: + print + print '\tMismatches' + print =20 =20 def run_soname(soname, verbose): @@ -260,7 +277,12 @@ def run_soname(soname, verbose): =20 if count =3D=3D 0: print - print 'No mismatches' + print '\tNo mismatches' + print + else: + print + print '\tMismatches' + print =20 def main(): try: