commit:     3363801873557ed3416046d3879d08a6e5cef654
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 21:24:40 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 21:50:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33638018

dev-lang/fennel: bump to 1.4.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-lang/fennel/Manifest            |  1 +
 dev-lang/fennel/fennel-1.4.2.ebuild | 52 +++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-lang/fennel/Manifest b/dev-lang/fennel/Manifest
index c665ddb64949..18fdb5f8393e 100644
--- a/dev-lang/fennel/Manifest
+++ b/dev-lang/fennel/Manifest
@@ -1 +1,2 @@
 DIST fennel-1.4.0.tar.gz 299561 BLAKE2B 
a94bb15c04b69154dbea1bc562347cef0b9ddd9ec3c3994bf5999593ef89422338f54dfb0bbd6c8e6f487eeb6d1178cc916ed8a92ec7755c43108ff58d3a842e
 SHA512 
0c92496db478eb5445d95057433b54a945c38a40541c6891c1d887a296ce3c89468c688702249488b34192ce1783b4891e292b9b1702a0620e51cc103602694a
+DIST fennel-1.4.2.tar.gz 301195 BLAKE2B 
f5a124725b4d2573275f179090b0400ed07dcc50d6ae661dd588887b8774a2cb48ab9f720dfb7bc7049d1e353f430e75da48e9a08b716cc1a80e4e09bf269bc7
 SHA512 
13b6020314d010566c7521b85065a446e09f8a0cfec9b9cb4bc2e23fe59369d105538bcb8a3a7cd865c399742d98a1742da932f8bde993c1136422f803069071

diff --git a/dev-lang/fennel/fennel-1.4.2.ebuild 
b/dev-lang/fennel/fennel-1.4.2.ebuild
new file mode 100644
index 000000000000..2970b228386f
--- /dev/null
+++ b/dev-lang/fennel/fennel-1.4.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Fails to build with with "lua5-1".
+LUA_COMPAT=( lua5-{3,4} )
+
+inherit lua-single
+
+DESCRIPTION="Lisp-like language that compiles to Lua"
+HOMEPAGE="https://fennel-lang.org/
+       https://sr.ht/~technomancy/fennel/";
+
+if [[ "${PV}" == *9999* ]] ; then
+       inherit git-r3
+
+       EGIT_REPO_URI="https://git.sr.ht/~technomancy/${PN}";
+else
+       SRC_URI="https://git.sr.ht/~technomancy/${PN}/archive/${PV}.tar.gz
+               -> ${P}.tar.gz"
+
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+RDEPEND="
+       ${LUA_DEPS}
+"
+BDEPEND="
+       ${RDEPEND}
+"
+
+src_prepare() {
+       default
+
+       # Turn off failing tests. bug https://bugs.gentoo.org/906351
+       sed -e 's|"failures",||' -e 's|"repl",||' -i test/init.lua || die
+}
+
+src_test() {
+       emake test
+}
+
+src_install() {
+       emake LUA_LIB_DIR="${ED}/$(lua_get_lmod_dir)" PREFIX="${ED}/usr" install
+
+       dodoc *.md
+}

Reply via email to