Diff uucp-15.0.0 with a uucp-15.1.0

/usr/portage/dev-ml/uucp/uucp-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

  
16
DEPEND="dev-ml/topkg
17
	dev-ml/findlib"
18
RDEPEND="${DEPEND}"
19
BDEPEND="dev-ml/ocamlbuild"
20
OPAM_FILE=opam
16
DEPEND="
17
	dev-ml/topkg
18
	dev-ml/findlib
19
"
20
RDEPEND="
21
	${DEPEND}
22
"
23
BDEPEND="
24
	dev-ml/ocamlbuild
25
"
26

  
27
OPAM_FILE="opam"
21 28

  
22 29
src_compile() {
23
	ocaml pkg/pkg.ml build \
24
		--with-uutf true \
25
		--with-uunf false \
26
		--with-cmdliner true \
27
		|| die
30
	ocaml pkg/pkg.ml build		\
31
		--with-uunf false		\
32
		--with-cmdliner true	\
33
		|| die "failed to run the pkg/pkg.ml ocaml compilation script"
28 34
}
Thank you!