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 3F54A15808B for ; Wed, 14 Feb 2024 20:28:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F390E2A42; Wed, 14 Feb 2024 20:28:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4409EE2A42 for ; Wed, 14 Feb 2024 20:28:05 +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 8BB8E3430BE for ; Wed, 14 Feb 2024 20:28:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 047DD14D1 for ; Wed, 14 Feb 2024 20:28:02 +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: <1707942479.189f1b3812d8319e2a378f99750612b586c34390.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/cyclone/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/cyclone/cyclone-9999.ebuild X-VCS-Directories: dev-scheme/cyclone/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 189f1b3812d8319e2a378f99750612b586c34390 X-VCS-Branch: master Date: Wed, 14 Feb 2024 20:28:02 +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: 6ab18c58-5fd6-4cfa-bafe-991ee8982326 X-Archives-Hash: 53b508b8b2a84bacc03ae0165eb305c5 commit: 189f1b3812d8319e2a378f99750612b586c34390 Author: Maciej Barć gentoo org> AuthorDate: Wed Feb 14 20:14:37 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Feb 14 20:27:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=189f1b38 dev-scheme/cyclone: sync live 9999 version Signed-off-by: Maciej Barć gentoo.org> dev-scheme/cyclone/cyclone-9999.ebuild | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/dev-scheme/cyclone/cyclone-9999.ebuild b/dev-scheme/cyclone/cyclone-9999.ebuild index 23bf9fb347ee..c709f1965f91 100644 --- a/dev-scheme/cyclone/cyclone-9999.ebuild +++ b/dev-scheme/cyclone/cyclone-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Cyclone is a self-hosting Scheme to C compiler @@ -11,30 +11,38 @@ inherit flag-o-matic toolchain-funcs DESCRIPTION="R7RS Scheme to C compiler" HOMEPAGE="http://justinethier.github.io/cyclone/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/justinethier/${PN}-bootstrap.git" else - SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/v${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-bootstrap-${PV}" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" - S="${WORKDIR}"/${PN}-bootstrap-${PV} fi LICENSE="MIT" SLOT="0" -RDEPEND="dev-libs/concurrencykit" -DEPEND="${RDEPEND}" +RDEPEND=" + dev-libs/concurrencykit +" +DEPEND=" + ${RDEPEND} +" src_configure() { export CYC_GCC_OPT_FLAGS="${CFLAGS}" + append-cflags -fPIC -Iinclude append-ldflags -L. tc-export AR CC RANLIB } src_compile() { - local myopts=( + local -a myopts=( PREFIX="/usr" CYC_GCC_OPT_FLAGS="${CYC_GCC_OPT_FLAGS}" AR="$(tc-getAR)"