diff options
author | 2023-05-30 12:10:17 +0200 | |
---|---|---|
committer | 2023-05-30 14:05:48 +0200 | |
commit | ab6005690c82a191a765f8e58aac27bcfc0805dc (patch) | |
tree | 320ce3f450fb7c1b3151dc5ce359c1b41a9dd406 /dev-lang/eisl | |
parent | app-shells/tcsh-6.24.01-r1: keyword ~arm64-macos (diff) | |
download | gentoo-ab6005690c82a191a765f8e58aac27bcfc0805dc.tar.gz gentoo-ab6005690c82a191a765f8e58aac27bcfc0805dc.tar.bz2 gentoo-ab6005690c82a191a765f8e58aac27bcfc0805dc.zip |
dev-lang/eisl: bump to 2.98
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/eisl')
-rw-r--r-- | dev-lang/eisl/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/eisl/eisl-2.98.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-lang/eisl/Manifest b/dev-lang/eisl/Manifest index 1ff9d1d4adc7..ba3e90bbc904 100644 --- a/dev-lang/eisl/Manifest +++ b/dev-lang/eisl/Manifest @@ -2,3 +2,4 @@ DIST eisl-2.85.tar.gz 2126779 BLAKE2B b95735cac70a1bae0277f910ba0b69746ca44979c0 DIST eisl-2.90.tar.gz 2129524 BLAKE2B 5b7a7aaf68a53ac4611b90f98f50fb66973411f1303f0de9dab14301a49847a1250c07d1e912d55783b939d3a2b7a6aa82fa3d9b42818ea9aacf37949ba9e14a SHA512 3cefc6608e1f4d4a0ba581c2043cb9af9d379273cfda74a4ac77f802dbb672faf98af5a60a946e12f0abedd47074b67a0c8163a81eebca92a20cd04f767d6b0f DIST eisl-2.93.tar.gz 2138623 BLAKE2B 049628a3dba0b9da5334bb575e7cfd977cdee6b08f009590c3dd13ba81e325ef4cf9d64c8a3fc7b59b9459e5dca0f7d49243b61040d662200a3b64f797d631fe SHA512 261ca84594f6fa408739e3aedb0f0c0b0d246df14b6b79a3efb013219730b93290e725eb976980ac23488c361bca05eb642d3b4fc408ee4355ba84ca658185e7 DIST eisl-2.97.tar.gz 2140483 BLAKE2B 0a191f4e27bc06efe30c8cbca2f4a85cef4393b7ae1025a6fd04e74eabdc2293a9a24fb9a7201c9ec5080d74cb7973f1de0540bfa01761acacacbe03832476ff SHA512 d7d0a04a57c6da3d9573436e833985629a2a57c6fd2d586fa09a85fe3cfd0197ab3ef7cb4befb1779a08dd947159124c964e120ae52ac8778ca8b3a8356af4dd +DIST eisl-2.98.tar.gz 2143636 BLAKE2B e38bf59e491218602e24217903b0f656ebcdee29311ec988447bff58b92f3bc51aa671ba8daf304fa8ce05a45ba71e22839bf74cfc6b1cc704e4c2bd1b5e1a74 SHA512 611bae543c4b12c3b7fb43a660edd219e9d8c1211ce6e3d7d19beae3ac5863f4f20722b79865444a42da30a0210474616115432428a2341b79e20b59e4a3a6e4 diff --git a/dev-lang/eisl/eisl-2.98.ebuild b/dev-lang/eisl/eisl-2.98.ebuild new file mode 100644 index 000000000000..fc6d817410fa --- /dev/null +++ b/dev-lang/eisl/eisl-2.98.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Interpreter and compiler compatible with the ISLisp standard" +HOMEPAGE="https://github.com/sasagawa888/eisl/" +SRC_URI="https://github.com/sasagawa888/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="test" # Tests run cppcheck (and fail) + +DOCS=( README{,-ja}.md documents ) + +RDEPEND="sys-libs/ncurses:=" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-2.85-Makefile.patch ) + +src_compile() { + emake CC="$(tc-getCC)" clean edlis eisl +} + +src_install() { + exeinto /usr/bin + doexe edlis eisl + + # Compilation of ISLisp files on installation fails. + # Do not compile them and mimic "make install". + insinto /usr/share/${PN} + doins -r library + doins fast.h ffi.h + + einstalldocs +} |