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 838A115817D for ; Fri, 14 Jun 2024 06:46:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99A76E2B58; Fri, 14 Jun 2024 06:46:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47BC0E2B55 for ; Fri, 14 Jun 2024 06:46:01 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70E1633BF39 for ; Fri, 14 Jun 2024 06:46:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A135A1CE9 for ; Fri, 14 Jun 2024 06:45:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1718347482.3bad08811afac029950515aa93f5bc32803e9713.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/pmix/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/pmix/pmix-4.2.8.ebuild X-VCS-Directories: sys-cluster/pmix/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3bad08811afac029950515aa93f5bc32803e9713 X-VCS-Branch: master Date: Fri, 14 Jun 2024 06:45:58 +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: a4695a8f-01b3-4817-9c66-fa7b9e0e6fe5 X-Archives-Hash: 7435faf54ea33059286d9056a7fc8963 commit: 3bad08811afac029950515aa93f5bc32803e9713 Author: Eli Schwartz gmail com> AuthorDate: Mon Jun 10 05:14:59 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 14 06:44:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bad0881 sys-cluster/pmix: clean up junk libtool remainders Standard boilerplate for finding and deleting all .la files. Closes: https://bugs.gentoo.org/880355 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sys-cluster/pmix/pmix-4.2.8.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-cluster/pmix/pmix-4.2.8.ebuild b/sys-cluster/pmix/pmix-4.2.8.ebuild index ce44f08ba0c0..9fb7d4f09632 100644 --- a/sys-cluster/pmix/pmix-4.2.8.ebuild +++ b/sys-cluster/pmix/pmix-4.2.8.ebuild @@ -44,6 +44,8 @@ src_configure() { src_install() { default + find "${ED}" -name '*.la' -delete || die + # bug #884765 mv "${ED}"/usr/bin/pquery "${ED}"/usr/bin/pmix-pquery || die }