diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-09-07 13:48:36 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-09-07 14:17:44 +0200 |
commit | 2100f31117e2268ea0a5b7cf4f83ec2df06df6b8 (patch) | |
tree | 507d2eb86f4a1a93b1a030223edb9d43bde907f5 /dev-ml/ocaml-ssl | |
parent | sys-kernel/linux-firmware: drop 20210818 (diff) | |
download | gentoo-2100f31117e2268ea0a5b7cf4f83ec2df06df6b8.tar.gz gentoo-2100f31117e2268ea0a5b7cf4f83ec2df06df6b8.tar.bz2 gentoo-2100f31117e2268ea0a5b7cf4f83ec2df06df6b8.zip |
dev-ml/ocaml-ssl: add missing alcotest (test) dependency
Closes: https://bugs.gentoo.org/869017
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-ml/ocaml-ssl')
-rw-r--r-- | dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild index 7b07f7dcd71d..e5341df81d71 100644 --- a/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild @@ -14,12 +14,16 @@ SRC_URI="https://github.com/savonet/ocaml-ssl/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="LGPL-2.1" SLOT="0/${PV}" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" -IUSE="+ocamlopt" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" -BDEPEND="dev-ml/dune-configurator" DEPEND="dev-libs/openssl:0= >=dev-lang/ocaml-3.10:=[ocamlopt?]" RDEPEND="${DEPEND}" +BDEPEND=" + dev-ml/dune-configurator + test? ( dev-ml/alcotest ) +" src_install() { dune_src_install |