Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/luv/
Date: Tue, 07 Dec 2021 19:36:43
Message-Id: 1638905797.dd719008c4e50cc61c332d423109cda6978a937a.xgqt@gentoo
1 commit: dd719008c4e50cc61c332d423109cda6978a937a
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 19:22:06 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 19:36:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd719008
7
8 dev-ml/luv: add missing dependencies
9
10 Closes: https://bugs.gentoo.org/828518
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
13
14 dev-ml/luv/{luv-0.5.10.ebuild => luv-0.5.10-r1.ebuild} | 13 +++++++++----
15 1 file changed, 9 insertions(+), 4 deletions(-)
16
17 diff --git a/dev-ml/luv/luv-0.5.10.ebuild b/dev-ml/luv/luv-0.5.10-r1.ebuild
18 similarity index 72%
19 rename from dev-ml/luv/luv-0.5.10.ebuild
20 rename to dev-ml/luv/luv-0.5.10-r1.ebuild
21 index 0fa9ce2c59a1..a50ac52098a3 100644
22 --- a/dev-ml/luv/luv-0.5.10.ebuild
23 +++ b/dev-ml/luv/luv-0.5.10-r1.ebuild
24 @@ -6,14 +6,19 @@ EAPI=7
25 inherit dune
26
27 DESCRIPTION="Binding to libuv: cross-platform asynchronous I/O"
28 -SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz"
29 HOMEPAGE="https://github.com/aantron/luv"
30 +SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz"
31
32 SLOT="0/${PV}"
33 LICENSE="MIT"
34 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
35 -IUSE="+ocamlopt"
36 +IUSE="+ocamlopt test"
37 +RESTRICT="!test? ( test )"
38
39 -RDEPEND="dev-ml/ocaml-ctypes"
40 +RDEPEND="
41 + dev-libs/libuv:=
42 + dev-ml/ocaml-ctypes:=
43 + dev-ml/result:=
44 +"
45 DEPEND="${RDEPEND}"
46 -BDEPEND=""
47 +BDEPEND="test? ( dev-ml/alcotest )"