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 C7BDC15802E for ; Sat, 29 Jun 2024 10:47:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6241E2C73; Sat, 29 Jun 2024 10:47:39 +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 B72FAE2C73 for ; Sat, 29 Jun 2024 10:47:39 +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 D3AC733BEED for ; Sat, 29 Jun 2024 10:47:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B31B1218 for ; Sat, 29 Jun 2024 10:47:37 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1719658055.c32861ff28b2c89e98819080f4b3883b8328dbc1.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/chez/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/chez/chez-10.0.0.ebuild X-VCS-Directories: dev-scheme/chez/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: c32861ff28b2c89e98819080f4b3883b8328dbc1 X-VCS-Branch: master Date: Sat, 29 Jun 2024 10:47:37 +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: a2117405-3382-482f-befc-5f57afa1b6c4 X-Archives-Hash: 28fb46bbb4650b881e16dd7af5d54b8d commit: c32861ff28b2c89e98819080f4b3883b8328dbc1 Author: Maciej Barć gentoo org> AuthorDate: Sat Jun 29 10:42:33 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Jun 29 10:47:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32861ff dev-scheme/chez: ncurses & threads by deault; update arch_map Signed-off-by: Maciej Barć gentoo.org> dev-scheme/chez/chez-10.0.0.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-scheme/chez/chez-10.0.0.ebuild b/dev-scheme/chez/chez-10.0.0.ebuild index c7b445a4a130..125542683907 100644 --- a/dev-scheme/chez/chez-10.0.0.ebuild +++ b/dev-scheme/chez/chez-10.0.0.ebuild @@ -17,7 +17,7 @@ S="${WORKDIR}/csv${PV//a}" LICENSE="Apache-2.0 MIT" SLOT="0/${PV}" KEYWORDS="amd64 ~arm ~x86" -IUSE="X ncurses threads" +IUSE="X +ncurses +threads" # "some output differs from expected", needs in-depth investigation. RESTRICT="test" @@ -54,13 +54,16 @@ src_prepare() { src_configure() { # See official docs for translation guide. - # https://cisco.github.io/ChezScheme/release_notes/v9.6/release_notes.html - # "t" for threading + arch_map + "le" for Linux (hardcoded for now) + # https://cisco.github.io/ChezScheme/release_notes/v10.0/release_notes.html + # "t" for threading + arch_map + "le" for Linux local -A arch_map=( + [x86]=i3 [amd64]=a6 + [arm64]=arm64 [arm]=arm32 + [riscv]=rv64 + [loong]=la64 [ppc]=ppc32 - [x86]=i3 ) local machine="$(usex threads 't' '')${arch_map[${ARCH}]}le"