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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC614158CBB for ; Mon, 8 May 2023 07:44:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01F3CE07B2; Mon, 8 May 2023 07:44:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD053E07B2 for ; Mon, 8 May 2023 07:44:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0069340E28 for ; Mon, 8 May 2023 07:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 628718B7 for ; Mon, 8 May 2023 07:44:13 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1683531848.3736fa97a500c7442573eb81a713bffc8d57210f.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/librnp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/librnp/librnp-0.17.0.ebuild X-VCS-Directories: dev-util/librnp/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3736fa97a500c7442573eb81a713bffc8d57210f X-VCS-Branch: master Date: Mon, 8 May 2023 07:44:13 +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: 17e4eab8-4833-42d3-b26d-6f57c9b98f63 X-Archives-Hash: 39618e4f33b7322c62fb53b72d4a2a87 commit: 3736fa97a500c7442573eb81a713bffc8d57210f Author: Joonas Niilola gentoo org> AuthorDate: Mon May 8 05:30:57 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon May 8 07:44:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3736fa97 dev-util/librnp: don't install static libs Closes: https://bugs.gentoo.org/905648 Signed-off-by: Joonas Niilola gentoo.org> dev-util/librnp/librnp-0.17.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/librnp/librnp-0.17.0.ebuild b/dev-util/librnp/librnp-0.17.0.ebuild index 880c4fef9541..a85c4cc7aad8 100644 --- a/dev-util/librnp/librnp-0.17.0.ebuild +++ b/dev-util/librnp/librnp-0.17.0.ebuild @@ -78,3 +78,8 @@ src_test() { cd "${BUILD_DIR}"/src/tests || die ctest -j"${MAKEOPTS}" -R .* --output-on-failure || die } + +src_install() { + cmake_src_install + find "${D}" -name '*.a' -delete || die +}