Diff cyclone-0.33.0 with a cyclone-0.34.0

/usr/portage/dev-scheme/cyclone/cyclone-0.34.0.ebuild 2023-10-09 14:52:30.896368386 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
# Cyclone is a self-hosting Scheme to C compiler
......
16 16
	EGIT_REPO_URI="https://github.com/justinethier/${PN}-bootstrap.git"
17 17
else
18 18
	SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
19
	KEYWORDS="~amd64"
19
	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
20 20
	S="${WORKDIR}/${PN}-bootstrap-${PV}"
21 21
fi
22 22

  
23 23
LICENSE="MIT"
24 24
SLOT="0"
25 25

  
26
DEPEND="dev-libs/concurrencykit"
27
RDEPEND="${DEPEND}"
26
RDEPEND="dev-libs/concurrencykit"
27
DEPEND="${RDEPEND}"
28 28

  
29 29
src_configure() {
30 30
	export CYC_GCC_OPT_FLAGS="${CFLAGS}"
Thank you!