Files
guru/dev-ml/lambdasoup/lambdasoup-1.1.1.ebuild
Thomas Bracht Laumann Jespersen 5fb6e4fce3 dev-ml/lambdasoup: add subslot, fix test deps
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
2025-10-24 04:39:32 +00:00

30 lines
612 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Functional HTML scraping and manipulation library"
HOMEPAGE="https://aantron.github.io/lambdasoup"
SRC_URI="https://github.com/aantron/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-ml/markup:=[ocamlopt?]
dev-ml/camlp-streams:=[ocamlopt?]
>=dev-ml/dune-2.7.0
>=dev-lang/ocaml-4.03.0:=[ocamlopt?]
"
DEPEND="
${RDEPEND}
test? (
dev-ml/ounit2:=[ocamlopt?]
)
"