From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9C8BB1382C5 for ; Sat, 12 May 2018 21:56:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE6F5E0993; Sat, 12 May 2018 21:56:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AE86E0993 for ; Sat, 12 May 2018 21:56:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39556335C96 for ; Sat, 12 May 2018 21:56:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 770F537 for ; Sat, 12 May 2018 21:56:43 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1526162197.564fdb6ba3a1f6fa1d6e7ee1e5b1d8df50a2dfb9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/xz-utils/xz-utils-5.2.4-r1.ebuild app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild X-VCS-Directories: app-arch/xz-utils/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 564fdb6ba3a1f6fa1d6e7ee1e5b1d8df50a2dfb9 X-VCS-Branch: master Date: Sat, 12 May 2018 21:56:43 +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: 00575432-d5c7-4462-8ce2-c829ee16d873 X-Archives-Hash: 47409ace74c73c0e677e7eb43b7de5d6 commit: 564fdb6ba3a1f6fa1d6e7ee1e5b1d8df50a2dfb9 Author: Lars Wendler gentoo org> AuthorDate: Sat May 12 21:56:17 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat May 12 21:56:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=564fdb6b app-arch/xz-utils: Fixed installation of *.a files. Closes: https://bugs.gentoo.org/655614 Package-Manager: Portage-2.3.36, Repoman-2.3.9 .../xz-utils/{xz-utils-5.2.4-r1.ebuild => xz-utils-5.2.4-r2.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-arch/xz-utils/xz-utils-5.2.4-r1.ebuild b/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild similarity index 95% rename from app-arch/xz-utils/xz-utils-5.2.4-r1.ebuild rename to app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild index 6916173e206..dd59406bd52 100644 --- a/app-arch/xz-utils/xz-utils-5.2.4-r1.ebuild +++ b/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild @@ -79,7 +79,10 @@ multilib_src_install() { } multilib_src_install_all() { - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die + find "${ED}" -name '*.la' -delete || die + if ! use static-libs ; then + find "${ED}" -name "*.a" -delete || die + fi rm "${ED%/}"/usr/share/doc/${PF}/COPYING* || die }