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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0026F15807B for ; Tue, 22 Oct 2024 00:08:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D24D4E092E; Tue, 22 Oct 2024 00:08:51 +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 5DB11E092E for ; Tue, 22 Oct 2024 00:08:51 +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 27028342FB0 for ; Tue, 22 Oct 2024 00:08:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7880511DF for ; Tue, 22 Oct 2024 00:08:48 +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: <1729555720.0e09a4b9c776809029c684211161362c62afdf1d.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/arc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/arc/arc-3.2-r1.ebuild dev-lang/arc/arc-3.2.ebuild X-VCS-Directories: dev-lang/arc/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 0e09a4b9c776809029c684211161362c62afdf1d X-VCS-Branch: master Date: Tue, 22 Oct 2024 00:08:48 +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: 50f84397-35e3-40d0-8535-c094aaa1d97d X-Archives-Hash: f7d46055a797fc906dea2b17b70e64e0 commit: 0e09a4b9c776809029c684211161362c62afdf1d Author: Maciej Barć gentoo org> AuthorDate: Mon Oct 21 19:16:09 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Oct 22 00:08:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e09a4b9 dev-lang/arc: require non-minimal Racket Closes: https://bugs.gentoo.org/941940 Signed-off-by: Maciej Barć gentoo.org> dev-lang/arc/{arc-3.2.ebuild => arc-3.2-r1.ebuild} | 26 +++++++++++++--------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/dev-lang/arc/arc-3.2.ebuild b/dev-lang/arc/arc-3.2-r1.ebuild similarity index 53% rename from dev-lang/arc/arc-3.2.ebuild rename to dev-lang/arc/arc-3.2-r1.ebuild index e9655cb6f6ca..2b085650c790 100644 --- a/dev-lang/arc/arc-3.2.ebuild +++ b/dev-lang/arc/arc-3.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,24 +16,28 @@ KEYWORDS="~amd64 ~x86" RDEPEND=" !app-arch/arc - dev-scheme/racket:= + dev-scheme/racket:=[-minimal] " -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} +" + +DOCS=( copyright how-to-run-news ) src_compile() { - # byte-compile some racket modules - local mod + # Byte-compile Racket modules. + local mod="" for mod in ac brackets ; do - raco make --vv ./${mod}.scm || die "raco failed to compile ${mod}" + raco make --vv "./${mod}.scm" || die "raco failed to compile ${mod}" done } src_install() { - dodoc copyright how-to-run-news - rm copyright how-to-run-news || die + einstalldocs + rm "${DOCS[@]}" || die - insinto /usr/share/${PN} - doins -r * + insinto "/usr/share/${PN}" + doins -r ./* - make_wrapper ${PN} "racket --load ./as.scm" /usr/share/${PN} + make_wrapper "${PN}" "racket --load ./as.scm" "/usr/share/${PN}" }