Files
guru/dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild
Thomas Bracht Laumann Jespersen 4382b4db88 dev-ml/ocaml-tsort: impl testing
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
2025-10-18 07:02:20 +00:00

31 lines
595 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DUNE_PKG_NAME=tsort
inherit dune
DESCRIPTION="Easy to use and user-friendly topological sort"
HOMEPAGE="https://github.com/dmbaturin/ocaml-tsort"
SRC_URI="https://github.com/dmbaturin/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
DOCS=( README.md CHANGES.md )
RDEPEND="
>=dev-ml/dune-1.9
>=dev-lang/ocaml-4.3:=[ocamlopt?]
"
DEPEND="${RDEPEND}
test? (
dev-ml/alcotest:=[ocamlopt?]
)
"