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 49091138010 for ; Tue, 23 Oct 2012 21:09:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20144E04F2; Tue, 23 Oct 2012 21:09:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 82A40E04F2 for ; Tue, 23 Oct 2012 21:09:42 +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 E2C6B33D882 for ; Tue, 23 Oct 2012 21:09:41 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id B408B21600; Tue, 23 Oct 2012 21:09:39 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog eutils.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog eutils.eclass X-VCS-Directories: eclass X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121023210939.B408B21600@flycatcher.gentoo.org> Date: Tue, 23 Oct 2012 21:09:39 +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: 403d12d8-884a-4d7c-b2ca-eda5ea752307 X-Archives-Hash: 4019893286dc5b11f43bbabc868387f9 mgorny 12/10/23 21:09:39 Modified: ChangeLog eutils.eclass Log: prune_libtool_files(): fix variable reuse. Thanks to radhermit for the patch. Revision Changes Path 1.462 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.462&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.462&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.461&r2=1.462 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.461 retrieving revision 1.462 diff -u -r1.461 -r1.462 --- ChangeLog 23 Oct 2012 20:58:05 -0000 1.461 +++ ChangeLog 23 Oct 2012 21:09:39 -0000 1.462 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.461 2012/10/23 20:58:05 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.462 2012/10/23 21:09:39 mgorny Exp $ + + 23 Oct 2012; Michał Górny eutils.eclass: + prune_libtool_files(): fix variable reuse. Thanks to radhermit for the patch. 23 Oct 2012; Michał Górny distutils-r1.eclass, python-r1.eclass: 1.409 eclass/eutils.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.409&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.409&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?r1=1.408&r2=1.409 Index: eutils.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v retrieving revision 1.408 retrieving revision 1.409 diff -u -r1.408 -r1.409 --- eutils.eclass 11 Oct 2012 16:52:05 -0000 1.408 +++ eutils.eclass 23 Oct 2012 21:09:39 -0000 1.409 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.408 2012/10/11 16:52:05 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.409 2012/10/23 21:09:39 mgorny Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -1462,14 +1462,14 @@ # Create a list of all .pc-covered libs. local pc_libs=() if [[ ! ${removing_all} ]]; then - local f + local pc local tf=${T}/prune-lt-files.pc local pkgconf=$(tc-getPKG_CONFIG) - while IFS= read -r -d '' f; do # for all .pc files + while IFS= read -r -d '' pc; do # for all .pc files local arg - sed -e '/^Requires:/d' "${f}" > "${tf}" + sed -e '/^Requires:/d' "${pc}" > "${tf}" for arg in $("${pkgconf}" --libs "${tf}"); do [[ ${arg} == -l* ]] && pc_libs+=( lib${arg#-l}.la ) done