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 1Rg4NT-00078y-TQ for garchives@archives.gentoo.org; Thu, 29 Dec 2011 01:01:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30D3721C171; Thu, 29 Dec 2011 01:00:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 01E8C21C16F for ; Thu, 29 Dec 2011 01:00:48 +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 8026D1B404E for ; Thu, 29 Dec 2011 01:00:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id C09FD8005D for ; Thu, 29 Dec 2011 01:00:47 +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:elfix-0.4.x 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: fbcad85ef135af4e767f4d8ea90925592656719b Date: Thu, 29 Dec 2011 01:00:47 +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: e8ad330f-b641-411e-b0b6-ebc0b08f036d X-Archives-Hash: 701c3636a7233b93dfb1d8ab9a2b7ec9 commit: fbcad85ef135af4e767f4d8ea90925592656719b Author: Anthony G. Basile gentoo org> AuthorDate: Wed Dec 28 23:18:28 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Thu Dec 29 00:59:32 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3Dfbcad85e scripts/revdep-pax: 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