Diff luv-0.5.10-r3 with a luv-0.5.11-r2

/usr/portage/dev-ml/luv/luv-0.5.11-r2.ebuild 2023-10-09 14:52:29.792368358 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
11 11

  
12 12
LICENSE="MIT"
13 13
SLOT="0/${PV}"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
14
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
15 15
IUSE="+ocamlopt test"
16 16
RESTRICT="!test? ( test )"
17 17

  
18 18
RDEPEND="
19
	<=dev-lang/ocaml-4.13:=[ocamlopt?]
19
	dev-lang/ocaml:=[ocamlopt?]
20 20
	dev-libs/libuv:=
21 21
	dev-ml/ocaml-ctypes:=[ocamlopt?]
22 22
	dev-ml/result:=[ocamlopt?]
23
	dev-ml/integers:=
23 24
"
24 25
DEPEND="${RDEPEND}"
25 26
BDEPEND="sys-devel/gnuconfig
......
30 31

  
31 32
	cp "${BROOT}"/usr/share/gnuconfig/config.{guess,sub} src/c/vendor/configure/ || die
32 33
}
34

  
35
src_compile() {
36
	LUV_USE_SYSTEM_LIBUV=yes dune_src_compile
37
}
Thank you!