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 780001381F3 for ; Mon, 14 Oct 2013 17:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65153E0AD8; Mon, 14 Oct 2013 17:00:15 +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 BB16DE0AD8 for ; Mon, 14 Oct 2013 17:00:14 +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 36CE733EEE2 for ; Mon, 14 Oct 2013 17:00:13 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 26F2C2004C; Mon, 14 Oct 2013 17:00:11 +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 media-libs/libid3tag: libid3tag-0.15.1b-r4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libid3tag-0.15.1b-r4.ebuild ChangeLog X-VCS-Directories: media-libs/libid3tag X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131014170011.26F2C2004C@flycatcher.gentoo.org> Date: Mon, 14 Oct 2013 17:00: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: 9a762c4d-7821-42d3-b675-44325db5d7f7 X-Archives-Hash: 71c24093c471ff92501fcbf463867083 mgorny 13/10/14 17:00:11 Modified: libid3tag-0.15.1b-r4.ebuild ChangeLog Log: Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug #483304. (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!) Revision Changes Path 1.2 media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild?r1=1.1&r2=1.2 Index: libid3tag-0.15.1b-r4.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- libid3tag-0.15.1b-r4.ebuild 31 Jul 2013 17:35:01 -0000 1.1 +++ libid3tag-0.15.1b-r4.ebuild 14 Oct 2013 17:00:11 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild,v 1.1 2013/07/31 17:35:01 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild,v 1.2 2013/10/14 17:00:11 mgorny Exp $ EAPI=5 inherit eutils multilib libtool multilib-minimal @@ -46,5 +46,6 @@ } multilib_src_install_all() { - find "${ED}" -name '*.la' -exec rm -f '{}' + + prune_libtool_files --all + einstalldocs } 1.49 media-libs/libid3tag/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/ChangeLog?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/ChangeLog?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libid3tag/ChangeLog?r1=1.48&r2=1.49 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- ChangeLog 31 Jul 2013 17:35:01 -0000 1.48 +++ ChangeLog 14 Oct 2013 17:00:11 -0000 1.49 @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libid3tag # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v 1.48 2013/07/31 17:35:01 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v 1.49 2013/10/14 17:00:11 mgorny Exp $ + + 14 Oct 2013; Michał Górny libid3tag-0.15.1b-r4.ebuild: + Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug + #483304. *libid3tag-0.15.1b-r4 (31 Jul 2013)