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 E9D901382C5 for ; Sun, 24 May 2020 20:25:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25CB7E0978; Sun, 24 May 2020 20:25:14 +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 03D14E0978 for ; Sun, 24 May 2020 20:25:13 +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 000A134F08B for ; Sun, 24 May 2020 20:25:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2112F242 for ; Sun, 24 May 2020 20:25:11 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1590351826.519fcb2b2d4b03d6c09a752f1fb8aff89c2e9cef.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/x265-3.3.ebuild X-VCS-Directories: media-libs/x265/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 519fcb2b2d4b03d6c09a752f1fb8aff89c2e9cef X-VCS-Branch: master Date: Sun, 24 May 2020 20:25: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bd1189f7-5465-41d8-9bfe-3352d570ae5b X-Archives-Hash: 716b27b495b212536d0f85575c2ef844 commit: 519fcb2b2d4b03d6c09a752f1fb8aff89c2e9cef Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 23 23:20:05 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun May 24 20:23:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519fcb2b media-libs/x265: delete all static libraries Closes: https://bugs.gentoo.org/724598 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann gentoo.org> media-libs/x265/x265-3.3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/media-libs/x265/x265-3.3.ebuild b/media-libs/x265/x265-3.3.ebuild index ca3553d0293..422b036bbd1 100644 --- a/media-libs/x265/x265-3.3.ebuild +++ b/media-libs/x265/x265-3.3.ebuild @@ -193,4 +193,9 @@ multilib_src_install() { multilib_src_install_all() { dodoc -r "${S}/../doc/"* + + # we don't install *.a files for all variants, + # so just delete these files instead of pretending + # real USE=static-libs support + find "${ED}" -name "*.a" -delete || die }