Diff markup-1.0.2-r1 with a markup-1.0.3

/usr/portage/dev-ml/markup/markup-1.0.3.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
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit dune
7 7

  
8 8
DESCRIPTION="Error-recovering streaming HTML5 and XML parsers"
9 9
HOMEPAGE="https://github.com/aantron/markup.ml"
10
SRC_URI="https://github.com/aantron/markup.ml/archive/${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://github.com/aantron/markup.ml/archive/${PV}.tar.gz
11
	-> ${P}.tar.gz"
12
S="${WORKDIR}"/${PN}.ml-${PV}
11 13

  
12 14
LICENSE="BSD"
13 15
SLOT="0/${PV}"
......
15 17
IUSE="+ocamlopt test"
16 18
RESTRICT="!test? ( test )"
17 19

  
18
RDEPEND="dev-ml/lwt:=
19
	dev-ml/uutf:="
20
DEPEND="${RDEPEND}
21
	test? ( dev-ml/ounit2 )"
22

  
23
S="${WORKDIR}/${PN}.ml-${PV}"
20
RDEPEND="
21
	dev-ml/lwt:=
22
	dev-ml/uchar:=
23
	dev-ml/uutf:=
24
"
25
DEPEND="${RDEPEND}"
26
BDEPEND="test? ( dev-ml/ounit2 )"
Thank you!