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 AC6F115803E for ; Thu, 4 Jan 2024 00:07:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D59BF2BC01E; Thu, 4 Jan 2024 00:07:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B8F7E2BC01E for ; Thu, 4 Jan 2024 00:07:29 +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 E6832343067 for ; Thu, 4 Jan 2024 00:07:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31D67AC2 for ; Thu, 4 Jan 2024 00:07:27 +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: <1704326755.4672163358ac5fdff3470273352a892cc13d3934.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/lsof/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/lsof/lsof-4.99.0.ebuild sys-process/lsof/lsof-4.99.3.ebuild X-VCS-Directories: sys-process/lsof/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4672163358ac5fdff3470273352a892cc13d3934 X-VCS-Branch: master Date: Thu, 4 Jan 2024 00:07:27 +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: 8dce77e3-a158-4d88-ac90-9de13a1ac252 X-Archives-Hash: 27fdb2f766eb3798bfcd53585f08869f commit: 4672163358ac5fdff3470273352a892cc13d3934 Author: Sv. Lockal gmail com> AuthorDate: Mon Dec 25 16:57:40 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 4 00:05:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46721633 sys-process/lsof: do not install libtool .la files Closes: https://bugs.gentoo.org/920370 Signed-off-by: Sv. Lockal gmail.com> Signed-off-by: Sam James gentoo.org> sys-process/lsof/lsof-4.99.0.ebuild | 5 +++++ sys-process/lsof/lsof-4.99.3.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/sys-process/lsof/lsof-4.99.0.ebuild b/sys-process/lsof/lsof-4.99.0.ebuild index c94a98abca1d..d1dba0173182 100644 --- a/sys-process/lsof/lsof-4.99.0.ebuild +++ b/sys-process/lsof/lsof-4.99.0.ebuild @@ -39,6 +39,11 @@ src_compile() { emake DEBUG="" all } +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} + pkg_postinst() { if [[ ${CHOST} == *-solaris* ]] ; then einfo "Note: to use lsof on Solaris you need read permissions on" diff --git a/sys-process/lsof/lsof-4.99.3.ebuild b/sys-process/lsof/lsof-4.99.3.ebuild index 9965531bc30b..c22f1df517e3 100644 --- a/sys-process/lsof/lsof-4.99.3.ebuild +++ b/sys-process/lsof/lsof-4.99.3.ebuild @@ -39,6 +39,11 @@ src_compile() { emake DEBUG="" all } +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} + pkg_postinst() { if [[ ${CHOST} == *-solaris* ]] ; then einfo "Note: to use lsof on Solaris you need read permissions on"