Diff luv-0.5.11-r2 with a luv-0.5.12

/usr/portage/dev-ml/luv/luv-0.5.12.ebuild 2023-10-09 14:52:29.792368358 +0300
7 7

  
8 8
DESCRIPTION="Binding to libuv: cross-platform asynchronous I/O"
9 9
HOMEPAGE="https://github.com/aantron/luv"
10
SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz"
10

  
11
if [[ ${PV} == *9999* ]] ; then
12
	inherit git-r3
13
	EGIT_REPO_URI="https://github.com/aantron/${PN}.git"
14
else
15
	SRC_URI="https://github.com/aantron/${PN}/releases/download/${PV}/${P}.tar.gz"
16
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
17
fi
11 18

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

  
......
23 29
	dev-ml/integers:=
24 30
"
25 31
DEPEND="${RDEPEND}"
26
BDEPEND="sys-devel/gnuconfig
27
	test? ( dev-ml/alcotest[ocamlopt?] )"
32
BDEPEND="
33
	sys-devel/gnuconfig
34
	test? ( dev-ml/alcotest[ocamlopt?] )
35
"
28 36

  
29 37
src_prepare() {
30 38
	default
Thank you!