From dd719008c4e50cc61c332d423109cda6978a937a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Tue, 7 Dec 2021 20:22:06 +0100 Subject: [PATCH] dev-ml/luv: add missing dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/828518 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć --- .../luv/{luv-0.5.10.ebuild => luv-0.5.10-r1.ebuild} | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) rename dev-ml/luv/{luv-0.5.10.ebuild => luv-0.5.10-r1.ebuild} (72%) diff --git a/dev-ml/luv/luv-0.5.10.ebuild b/dev-ml/luv/luv-0.5.10-r1.ebuild similarity index 72% rename from dev-ml/luv/luv-0.5.10.ebuild rename to dev-ml/luv/luv-0.5.10-r1.ebuild index 0fa9ce2c59a18..a50ac52098a30 100644 --- a/dev-ml/luv/luv-0.5.10.ebuild +++ b/dev-ml/luv/luv-0.5.10-r1.ebuild @@ -6,14 +6,19 @@ EAPI=7 inherit dune DESCRIPTION="Binding to libuv: cross-platform asynchronous I/O" -SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz" HOMEPAGE="https://github.com/aantron/luv" +SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz" SLOT="0/${PV}" LICENSE="MIT" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -IUSE="+ocamlopt" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" -RDEPEND="dev-ml/ocaml-ctypes" +RDEPEND=" + dev-libs/libuv:= + dev-ml/ocaml-ctypes:= + dev-ml/result:= +" DEPEND="${RDEPEND}" -BDEPEND="" +BDEPEND="test? ( dev-ml/alcotest )"