Diff cyclone-0.34.0 with a cyclone-0.35.0

/usr/portage/dev-scheme/cyclone/cyclone-0.35.0.ebuild 2023-10-09 14:52:30.896368386 +0300
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
5
# cyclone-bootstrap is the Cyclone SOURCE transpiled by it to C
5
# cyclone-bootstrap is the Cyclone source transpiled by it to C.
6 6

  
7 7
EAPI=8
8 8

  
......
11 11
DESCRIPTION="R7RS Scheme to C compiler"
12 12
HOMEPAGE="http://justinethier.github.io/cyclone/"
13 13

  
14
if [[ "${PV}" == *9999* ]]; then
14
if [[ ${PV} == *9999* ]] ; then
15 15
	inherit git-r3
16 16
	EGIT_REPO_URI="https://github.com/justinethier/${PN}-bootstrap.git"
17 17
else
18
	SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
18
	SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/v${PV}.tar.gz -> ${P}.tar.gz"
19 19
	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
20
	S="${WORKDIR}/${PN}-bootstrap-${PV}"
20
	S="${WORKDIR}"/${PN}-bootstrap-${PV}
21 21
fi
22 22

  
23 23
LICENSE="MIT"
......
49 49
}
50 50

  
51 51
src_install() {
52
	einstalldocs
53

  
54 52
	emake PREFIX="/usr" DESTDIR="${D}" install
53
	einstalldocs
55 54
}
Thank you!