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 1Rg2ld-0001Ev-Vn for garchives@archives.gentoo.org; Wed, 28 Dec 2011 23:18:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C66B321C07B; Wed, 28 Dec 2011 23:18:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 90B6D21C07B for ; Wed, 28 Dec 2011 23:18:34 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0BC991B401B for ; Wed, 28 Dec 2011 23:18:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 4F11680043 for ; Wed, 28 Dec 2011 23:18:33 +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: cb964f970b988964dd3c26dfbdfd489463938517 Date: Wed, 28 Dec 2011 23:18:33 +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: ae0392d9-1726-41dc-af8f-1f4e62cbe813 X-Archives-Hash: 519468a12efd3a7110b9221ccaaee67e commit: cb964f970b988964dd3c26dfbdfd489463938517 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Dec 28 23:18:28 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Dec 28 23:18:28 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3Dcb964f97 misc/test-revdep-pax/testrevdeppax.sh: further cleanup output --- scripts/revdep-pax | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/revdep-pax b/scripts/revdep-pax index e22d3a7..b0d8bcc 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -217,13 +217,17 @@ def migrate_flags(importer, exporter_str_flags, exp= orter_bin_flags): =20 for i in range(len(importer_str_flags)): if importer_str_flags[i].isupper() and exporter_str_flags[i].islower()= : - print 'Warning: importer =3D %s exporter =3D %s' % ( importer_str_fl= ags[i], exporter_str_flags[i] ) + print '\t\tWarning: %s has %s, trying to set to %s' % ( + importer, importer_str_flags[i], exporter_str_flags[i] ), if importer_str_flags[i].isupper() and exporter_str_flags[i] =3D=3D '-= ': - print 'Warning: importer =3D %s exporter =3D %s' % ( importer_str_fl= ags[i], exporter_str_flags[i] ) + print '\t\tWarning: %s has %s, trying to set to %s' % ( + importer, importer_str_flags[i], exporter_str_flags[i] ), if importer_str_flags[i].islower() and exporter_str_flags[i].isupper()= : - print 'Warning: importer =3D %s exporter =3D %s' % ( importer_str_fl= ags[i], exporter_str_flags[i] ) + print '\t\tWarning: %s has %s, trying to set to %s' % ( + importer, importer_str_flags[i], exporter_str_flags[i] ), if importer_str_flags[i].islower() and exporter_str_flags[i] =3D=3D '-= ': - print 'Warning: importer =3D %s exporter =3D %s' % ( importer_str_fl= ags[i], exporter_str_flags[i] ) + print '\t\tWarning: %s has %s, trying to set to %s' % ( + importer, importer_str_flags[i], exporter_str_flags[i] ), =20 pax.setflags(importer, result_bin_flags) =20