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 84103158083 for ; Tue, 10 Sep 2024 13:00:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D315DE29B7; Tue, 10 Sep 2024 13:00:02 +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 BEFA2E29B7 for ; Tue, 10 Sep 2024 13:00:02 +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 0B3CA33BE9F for ; Tue, 10 Sep 2024 13:00:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62A931F41 for ; Tue, 10 Sep 2024 13:00:00 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1725973191.2869341fddfe1c3d232551ddffac507e167f5677.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/giac/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/giac/giac-1.9.0.995-r1.ebuild sci-mathematics/giac/giac-1.9.0.995.ebuild X-VCS-Directories: sci-mathematics/giac/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 2869341fddfe1c3d232551ddffac507e167f5677 X-VCS-Branch: master Date: Tue, 10 Sep 2024 13:00:00 +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: f4a4f6d7-131d-452e-9088-a6f6cb195cc6 X-Archives-Hash: f1da9626f6379387f7564fbfdc1010b6 commit: 2869341fddfe1c3d232551ddffac507e167f5677 Author: Michael Orlitzky gentoo org> AuthorDate: Tue Sep 10 12:51:10 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Sep 10 12:59:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2869341f sci-mathematics/giac: delete more build artifacts in src_prepare() Closes: https://bugs.gentoo.org/939308 Signed-off-by: Michael Orlitzky gentoo.org> .../giac/{giac-1.9.0.995.ebuild => giac-1.9.0.995-r1.ebuild} | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sci-mathematics/giac/giac-1.9.0.995.ebuild b/sci-mathematics/giac/giac-1.9.0.995-r1.ebuild similarity index 92% rename from sci-mathematics/giac/giac-1.9.0.995.ebuild rename to sci-mathematics/giac/giac-1.9.0.995-r1.ebuild index 28dba8596875..6a9a85a14f05 100644 --- a/sci-mathematics/giac/giac-1.9.0.995.ebuild +++ b/sci-mathematics/giac/giac-1.9.0.995-r1.ebuild @@ -78,9 +78,15 @@ src_prepare() { # similar deal with gl2ps rm src/gl2ps.[ch] || die - # mjs is an arm executable artifact that should not have been shipped - # Removing it so it can be rebuilt with the host architecture - rm src/mkjs || die + # These are executable (ARM) build artifacts that should not have + # been shipped. We remove them so they can be rebuilt properly. + rm src/mkjs doc/khicas.nwa || die + + # Don't waste time eautoreconfing the bundled micropython that we + # never use. + sed -e 's/micropython-1.12//g' -i Makefile.am || die + sed -e '/micropython-1.12/d' -i configure.ac || die + rm -r micropython-1.12 || die default eautoreconf