mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-lang/eisl: drop old 5.66
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
DIST eisl-5.66.gh.tar.gz 4491453 BLAKE2B 7a7cb6ebd488376c8fc0fff3faf500295eddad78b544e94c36412fa5e95a82c40fdb4e824f04d864a0fbb3e0d79dcbe1b35f6342e4da8690b2b89d2c5c32fcf5 SHA512 728bf5a6f0c9654914e1e12b48431cb271a472abb03aa0a7fad059cf61ea5194a9dd56fca05ae3cdac862f276c0eeccd36b5de5805711a989e69cbe0f13f19c3
|
||||
DIST eisl-5.67.gh.tar.gz 4482477 BLAKE2B 05ee9f0a23c0bea6e240c6abd4b352ba8fc089a95cb70ba672858e4e9194fcfed03af679338535650fd0a4e3fcd22cdae7cd3e62447199b5105e1f86ca5abd0a SHA512 f4cf9d207a3a51e69d0a9b6bce885a5735700fde4fb27807a5c802ca9490296f27357349cc2771dafa5d66d19a1cb3581ec22ce9a5346d6150cfe176393b05ad
|
||||
DIST eisl-5.68.gh.tar.gz 4482617 BLAKE2B 90cf0e843e7c80d0156504275e237c0cfd8ecd5934d53a2210fea9a0743dca27a92f4dd8eec4656f4dcb30065590055cb3050827cd27e2d3492845f2e2c85675 SHA512 686213fbe2933b0e009fe7d22cc4c8269b3ac3034df74338413b0607eb857445210f4a1e872f9eef682c31ec688e8760834acf7e2858e90f8b80823471fb1f34
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=9
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Interpreter and compiler compatible with the ISLisp standard"
|
||||
HOMEPAGE="https://github.com/sasagawa888/eisl/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]] ; then
|
||||
inherit git-r3
|
||||
|
||||
EGIT_REPO_URI="https://github.com/sasagawa888/${PN}"
|
||||
else
|
||||
SRC_URI="https://github.com/sasagawa888/${PN}/archive/v${PV}.tar.gz
|
||||
-> ${P}.gh.tar.gz"
|
||||
|
||||
KEYWORDS="amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
RESTRICT="test"
|
||||
|
||||
DOCS=( README{,-ja}.md documents )
|
||||
|
||||
RDEPEND="
|
||||
sys-libs/ncurses:=
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${PN}-5.61-makefile.patch" )
|
||||
|
||||
src_compile() {
|
||||
# bug https://bugs.gentoo.org/939771
|
||||
# don't clean and compile in one invocation with --shuffle possible
|
||||
local target=""
|
||||
for target in clean edlis eisl ; do
|
||||
emake CC="$(tc-getCC)" FLAGS="${LDFLAGS}" "${target}"
|
||||
done
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# Tests run cppcheck (and fail).
|
||||
:
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin 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
|
||||
}
|
||||
Reference in New Issue
Block a user