blob: a3ea889c7bc29943351bdfc7a823550e5953ab66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Write tests, let a fuzzer find failing cases"
HOMEPAGE="https://github.com/stedolan/crowbar"
SRC_URI="https://github.com/stedolan/crowbar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt test"
RDEPEND="
dev-ml/afl-persistent:=
>=dev-ml/cmdliner-1.1.0:=
dev-ml/ocplib-endian:=
"
DEPEND="
${RDEPEND}
test? (
dev-ml/calendar
dev-ml/fpath
dev-ml/pprint
dev-ml/uucp
dev-ml/uunf
dev-ml/uutf
)
"
RESTRICT="!test? ( test )"
|