dev-ml/ppx_bin_prot: fix test deps, oUnit -> ounit2

Closes: https://bugs.gentoo.org/749171
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2023-03-10 09:17:03 +01:00
parent 990d03bf5f
commit 8abfa2b4c6

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -28,4 +28,15 @@ RDEPEND="
DEPEND="${RDEPEND}
test? (
dev-ml/ppx_jane
dev-ml/core
dev-ml/ounit2
dev-ml/core_bench
)"
src_prepare() {
sed -i \
-e "s:oUnit:ounit2:" \
test/dune \
|| die
default
}