summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2023-03-10 09:17:03 +0100
committerAlfredo Tupone <tupone@gentoo.org>2023-03-10 09:17:49 +0100
commit8abfa2b4c6dbfaf272bff4145e9e1cb41a2de11e (patch)
tree50458dbf489db76301b46cde131de86ad0f92bcc /dev-ml
parentmail-mta/postfix: add 3.8_pre20230308, drop 3.8_pre20230304 (diff)
downloadgentoo-8abfa2b4c6dbfaf272bff4145e9e1cb41a2de11e.tar.gz
gentoo-8abfa2b4c6dbfaf272bff4145e9e1cb41a2de11e.tar.bz2
gentoo-8abfa2b4c6dbfaf272bff4145e9e1cb41a2de11e.zip
dev-ml/ppx_bin_prot: fix test deps, oUnit -> ounit2
Closes: https://bugs.gentoo.org/749171 Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild13
1 files changed, 12 insertions, 1 deletions
diff --git a/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild b/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild
index 09c3fc426cd0..667f5d60f08c 100644
--- a/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild
+++ b/dev-ml/ppx_bin_prot/ppx_bin_prot-0.14.0.ebuild
@@ -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
+}