Diff uunf-15.0.0 with a uunf-15.1.0

/usr/portage/dev-ml/uunf/uunf-15.1.0.ebuild 2023-10-09 14:52:29.808368358 +0300
1 1
# Copyright 2019-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit opam
7 7

  
......
11 11

  
12 12
LICENSE="ISC"
13 13
SLOT="0/${PV}"
14
KEYWORDS="amd64 x86"
14
KEYWORDS="~amd64 ~x86"
15 15
IUSE=""
16 16

  
17
DEPEND="dev-ml/topkg:=
17
DEPEND="
18
	dev-ml/topkg:=
18 19
	dev-ml/uutf:=
19
	dev-ml/cmdliner:="
20
RDEPEND="${DEPEND}"
21
BDEPEND="dev-ml/findlib"
22
OPAM_FILE=opam
20
	dev-ml/cmdliner:=
21
"
22
RDEPEND="
23
	${DEPEND}
24
"
25
BDEPEND="
26
	dev-ml/findlib
27
"
28

  
29
OPAM_FILE="opam"
23 30

  
24 31
src_compile() {
25 32
	# Increase stack limit to 11GiB to avoid stack overflow error.
......
27 34
	ulimit -s 11530000
28 35

  
29 36
	ocaml pkg/pkg.ml build \
30
		|| die
37
		|| die "failed to run the pkg/pkg.ml ocaml compilation script"
31 38
}
Thank you!