summaryrefslogtreecommitdiff
path: root/dev-lang
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-08-30 03:04:44 -0500
committerroot <root@alpha.trunkmasters.com>2026-08-30 03:04:44 -0500
commitacb1593a8b3f287b06b8e2073eff6a70f02e2c4f (patch)
tree950eb19e1852de9b256fb61d164281c48f3d296c /dev-lang
parent675018c33e0383ac7d40ba2922d90d811382accc (diff)
downloadbaldeagleos-repo-acb1593a8b3f287b06b8e2073eff6a70f02e2c4f.tar.gz
baldeagleos-repo-acb1593a8b3f287b06b8e2073eff6a70f02e2c4f.tar.xz
baldeagleos-repo-acb1593a8b3f287b06b8e2073eff6a70f02e2c4f.zip
Adding metadata
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/eisl/Manifest1
-rw-r--r--dev-lang/eisl/eisl-5.67.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/dev-lang/eisl/Manifest b/dev-lang/eisl/Manifest
index d57aaaef6bd3..89af50a0ccbe 100644
--- a/dev-lang/eisl/Manifest
+++ b/dev-lang/eisl/Manifest
@@ -1,2 +1 @@
-DIST eisl-5.67.gh.tar.gz 4482477 BLAKE2B 05ee9f0a23c0bea6e240c6abd4b352ba8fc089a95cb70ba672858e4e9194fcfed03af679338535650fd0a4e3fcd22cdae7cd3e62447199b5105e1f86ca5abd0a SHA512 f4cf9d207a3a51e69d0a9b6bce885a5735700fde4fb27807a5c802ca9490296f27357349cc2771dafa5d66d19a1cb3581ec22ce9a5346d6150cfe176393b05ad
DIST eisl-5.68.gh.tar.gz 4482617 BLAKE2B 90cf0e843e7c80d0156504275e237c0cfd8ecd5934d53a2210fea9a0743dca27a92f4dd8eec4656f4dcb30065590055cb3050827cd27e2d3492845f2e2c85675 SHA512 686213fbe2933b0e009fe7d22cc4c8269b3ac3034df74338413b0607eb857445210f4a1e872f9eef682c31ec688e8760834acf7e2858e90f8b80823471fb1f34
diff --git a/dev-lang/eisl/eisl-5.67.ebuild b/dev-lang/eisl/eisl-5.67.ebuild
deleted file mode 100644
index 642dba3ea84f..000000000000
--- a/dev-lang/eisl/eisl-5.67.ebuild
+++ /dev/null
@@ -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
-}