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 904CA1581D3 for ; Fri, 31 May 2024 22:16:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 058E3E2A25; Fri, 31 May 2024 22:16:22 +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 5DB20E2A19 for ; Fri, 31 May 2024 22:16:21 +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 3E07634068A for ; Fri, 31 May 2024 22:16:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9AA311C01 for ; Fri, 31 May 2024 22:16:18 +0000 (UTC) From: "Henri Gasc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Henri Gasc" Message-ID: <1717193762.b8bcd816709d553a65d3ac820125719906814474.gasc@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/rars/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/rars/rars-1.6-r1.ebuild app-emulation/rars/rars-1.6.ebuild X-VCS-Directories: app-emulation/rars/ X-VCS-Committer: gasc X-VCS-Committer-Name: Henri Gasc X-VCS-Revision: b8bcd816709d553a65d3ac820125719906814474 X-VCS-Branch: dev Date: Fri, 31 May 2024 22:16:18 +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: d63b16e7-28d4-4876-8ac3-9181627c8494 X-Archives-Hash: ac87b6b67c880aecd4c82d5ed2ac5069 commit: b8bcd816709d553a65d3ac820125719906814474 Author: Henri Gasc eurecom fr> AuthorDate: Fri May 31 22:15:24 2024 +0000 Commit: Henri Gasc eurecom fr> CommitDate: Fri May 31 22:16:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b8bcd816 app-emulation/rars: Fix value of S Closes: https://bugs.gentoo.org/932128 Signed-off-by: Henri Gasc eurecom.fr> app-emulation/rars/{rars-1.6.ebuild => rars-1.6-r1.ebuild} | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/app-emulation/rars/rars-1.6.ebuild b/app-emulation/rars/rars-1.6-r1.ebuild similarity index 89% rename from app-emulation/rars/rars-1.6.ebuild rename to app-emulation/rars/rars-1.6-r1.ebuild index 9e563f421..c68fc9d80 100644 --- a/app-emulation/rars/rars-1.6.ebuild +++ b/app-emulation/rars/rars-1.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,10 @@ DESCRIPTION="RARS -- RISC-V Assembler and Runtime Simulator" HOMEPAGE="https://github.com/TheThirdOne/rars" SRC_URI=" https://github.com/TheThirdOne/rars/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz - https://github.com/TheThirdOne/JSoftFloat/archive/${jsoft_hash}.tar.gz -> JSoftFloat-75c3a5d.gh.tar.gz" + https://github.com/TheThirdOne/JSoftFloat/archive/${jsoft_hash}.tar.gz -> JSoftFloat-75c3a5d.gh.tar.gz +" +# We need S to point to this directory +S="${WORKDIR}/${P}" LICENSE="MIT" SLOT="0" @@ -27,11 +30,6 @@ src_unpack() { mv "${WORKDIR}/JSoftFloat-${jsoft_hash}" "${S}/src/jsoftfloat" } -src_prepare() { - default - java-pkg_clean -} - src_compile() { # Using the build-jar.sh script cd "${S}"