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 2A1EC158095 for ; Sat, 27 Aug 2022 23:45:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3F37E0A9F; Sat, 27 Aug 2022 23:45:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 D95B3E0A9F for ; Sat, 27 Aug 2022 23:45:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2400F3415D0 for ; Sat, 27 Aug 2022 15:04:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C03B588 for ; Sat, 27 Aug 2022 15:04:11 +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: <1661612649.032868896dae09e5e0411b3b53ed3de693d398ec.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: 032868896dae09e5e0411b3b53ed3de693d398ec X-VCS-Branch: master Date: Sat, 27 Aug 2022 15:04:11 +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: 2028f2e8-cea2-4e99-86bb-44e3827fad19 X-Archives-Hash: 0f9210e6f332b912179adc6e5453a710 commit: 032868896dae09e5e0411b3b53ed3de693d398ec Author: Maciej Barć gentoo org> AuthorDate: Sat Aug 27 14:35:07 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Aug 27 15:04:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03286889 dev-scheme/cyclone: sync live Signed-off-by: Maciej Barć gentoo.org> dev-scheme/cyclone/cyclone-9999.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dev-scheme/cyclone/cyclone-9999.ebuild b/dev-scheme/cyclone/cyclone-9999.ebuild index 12a81a63780a..23bf9fb347ee 100644 --- a/dev-scheme/cyclone/cyclone-9999.ebuild +++ b/dev-scheme/cyclone/cyclone-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Cyclone is a self-hosting Scheme to C compiler -# cyclone-bootstrap is the Cyclone SOURCE transpiled by it to C +# cyclone-bootstrap is the Cyclone source transpiled by it to C. EAPI=8 @@ -11,13 +11,13 @@ 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/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-bootstrap-${PV}" + SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + S="${WORKDIR}"/${PN}-bootstrap-${PV} fi LICENSE="MIT" @@ -49,7 +49,6 @@ src_test() { } src_install() { - einstalldocs - emake PREFIX="/usr" DESTDIR="${D}" install + einstalldocs }