gentoo/dev-ml/jingoo/jingoo-1.5.1.ebuild
Alfredo Tupone 9fa81a85f8
dev-ml/jingoo: add 1.5.1
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2025-08-24 14:47:19 +02:00

28 lines
638 B
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="OCaml template engine almost compatible with Jinja2"
HOMEPAGE="https://github.com/tategakibunko/jingoo/"
SRC_URI="https://github.com/tategakibunko/${PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-ml/menhir:=[ocamlopt?]
dev-ml/ppx_deriving:=[ocamlopt?]
dev-ml/re:=[ocamlopt?]
dev-ml/uucp:=
dev-ml/uutf:=[ocamlopt?]
"
DEPEND="${RDEPEND}"
BDEPEND="test? ( dev-ml/ounit2 )"