From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9BE83158086 for ; Tue, 7 Dec 2021 19:36:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEBA0E07D4; Tue, 7 Dec 2021 19:36:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6305E07D4 for ; Tue, 7 Dec 2021 19:36:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2D4734327A for ; Tue, 7 Dec 2021 19:36:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F52A1C6 for ; Tue, 7 Dec 2021 19:36:40 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1638905797.dd719008c4e50cc61c332d423109cda6978a937a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/luv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/luv/luv-0.5.10-r1.ebuild dev-ml/luv/luv-0.5.10.ebuild X-VCS-Directories: dev-ml/luv/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: dd719008c4e50cc61c332d423109cda6978a937a X-VCS-Branch: master Date: Tue, 7 Dec 2021 19:36:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 07b28b46-e7a6-4453-9142-b916d947ead6 X-Archives-Hash: 50ada2c30037faa987175fb8ca9e49da commit: dd719008c4e50cc61c332d423109cda6978a937a Author: Maciej Barć gentoo org> AuthorDate: Tue Dec 7 19:22:06 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Dec 7 19:36:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd719008 dev-ml/luv: add missing dependencies Closes: https://bugs.gentoo.org/828518 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> dev-ml/luv/{luv-0.5.10.ebuild => luv-0.5.10-r1.ebuild} | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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 0fa9ce2c59a1..a50ac52098a3 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 )"