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 3F750158090 for ; Mon, 16 May 2022 05:26:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04EEDE08F4; Mon, 16 May 2022 05:26:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E1F44E08F4 for ; Mon, 16 May 2022 05:26:56 +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 100B2341843 for ; Mon, 16 May 2022 05:26:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24C48477 for ; Mon, 16 May 2022 05:26:52 +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: <1652678584.0780e5c526ce4534f783c1a7e19a94d5340dae4a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/yara/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/yara/yara-4.2.0-r1.ebuild app-forensics/yara/yara-4.2.1.ebuild X-VCS-Directories: app-forensics/yara/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0780e5c526ce4534f783c1a7e19a94d5340dae4a X-VCS-Branch: master Date: Mon, 16 May 2022 05:26:52 +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: 71f1ce07-dea0-427b-961e-5ee209907252 X-Archives-Hash: 34999dae2911c4c597ea11df26d258ba commit: 0780e5c526ce4534f783c1a7e19a94d5340dae4a Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Tue May 3 09:53:09 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 16 05:23:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0780e5c5 app-forensics/yara: delete *.la files Closes: https://bugs.gentoo.org/841653 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/24936 Signed-off-by: Sam James gentoo.org> app-forensics/yara/yara-4.2.0-r1.ebuild | 2 +- app-forensics/yara/yara-4.2.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-forensics/yara/yara-4.2.0-r1.ebuild b/app-forensics/yara/yara-4.2.0-r1.ebuild index 43df5bb723e0..55e7f11069d5 100644 --- a/app-forensics/yara/yara-4.2.0-r1.ebuild +++ b/app-forensics/yara/yara-4.2.0-r1.ebuild @@ -53,5 +53,5 @@ src_install() { # TODO: Allow tests to work against dyn. lib rather than building # statically just for tests. - find "${ED}" -name '*.a' -delete || die + find "${ED}" -name '*.a' -o -name '*.la' -delete || die } diff --git a/app-forensics/yara/yara-4.2.1.ebuild b/app-forensics/yara/yara-4.2.1.ebuild index 43df5bb723e0..55e7f11069d5 100644 --- a/app-forensics/yara/yara-4.2.1.ebuild +++ b/app-forensics/yara/yara-4.2.1.ebuild @@ -53,5 +53,5 @@ src_install() { # TODO: Allow tests to work against dyn. lib rather than building # statically just for tests. - find "${ED}" -name '*.a' -delete || die + find "${ED}" -name '*.a' -o -name '*.la' -delete || die }