Diff mtime-1.4.0 with a mtime-2.0.0

/usr/portage/dev-ml/mtime/mtime-2.0.0.ebuild 2023-10-09 14:52:29.792368358 +0300
1 1
# Copyright 1999-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 edo opam
7 7

  
8 8
DESCRIPTION="OCaml module to access monotonic wall-clock time"
9
HOMEPAGE="https://erratique.ch/software/mtime https://github.com/dbuenzli/mtime"
9
HOMEPAGE="https://erratique.ch/software/mtime/
10
	https://github.com/dbuenzli/mtime/"
10 11
SRC_URI="https://erratique.ch/software/mtime/releases/${P}.tbz"
11 12

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

  
18 19
RDEPEND="dev-lang/ocaml:=[ocamlopt]"
19
DEPEND="${RDEPEND}
20
DEPEND="
21
	${RDEPEND}
20 22
	dev-ml/topkg
21 23
	dev-ml/ocamlbuild
22
	dev-ml/findlib"
24
	dev-ml/findlib
25
"
23 26

  
24 27
src_compile() {
25 28
	edo ocaml pkg/pkg.ml build \
Thank you!