Files
guru/dev-ml/otoml/otoml-1.0.5.ebuild
Thomas Bracht Laumann Jespersen 4af48a0e37 dev-ml/otoml: add subslot, tests
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
2025-10-23 04:32:39 +00:00

33 lines
649 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="TOML parsing, manipulation, and pretty-printing library"
HOMEPAGE="https://github.com/dmbaturin/otoml"
SRC_URI="https://github.com/dmbaturin/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
DOCS=( README.md CHANGELOG.md )
RDEPEND="
dev-ml/menhir:=[ocamlopt?]
>=dev-ml/uutf-1.0.0:=[ocamlopt?]
>=dev-lang/ocaml-4.08:=[ocamlopt?]
>=dev-ml/dune-2.0.0
"
DEPEND="
${RDEPEND}
test? (
dev-ml/ounit2:=[ocamlopt?]
)
"