Files
guru/dev-ml/digestif/digestif-1.3.0.ebuild
Thomas Bracht Laumann Jespersen 2e282919f5 dev-ml/digestif: add subslot, impl testing
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
2025-10-19 19:47:29 +00:00

37 lines
722 B
Bash

# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)"
HOMEPAGE="https://github.com/mirage/digestif"
SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-lang/ocaml-4.8:=[ocamlopt?]
dev-ml/eqaf:=[ocamlopt?]
"
DEPEND="
${RDEPEND}
test? (
>=dev-ml/fmt-0.8.7:=[ocamlopt?]
dev-ml/alcotest:=[ocamlopt?]
dev-ml/bos
dev-ml/astring
dev-ml/fpath
dev-ml/rresult
dev-ml/findlib:=[ocamlopt?]
dev-ml/crowbar:=[ocamlopt?]
)
"