Diff csexp-1.5.1 with a csexp-1.5.2

/usr/portage/dev-ml/csexp/csexp-1.5.2.ebuild 2023-10-09 14:52:29.784368358 +0300
1
# Copyright 2020-2022 Gentoo Authors
1
# Copyright 2020-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="Parsing and printing of S-expressions in Canonical form"
9
HOMEPAGE="https://github.com/ocaml-dune/csexp"
9
HOMEPAGE="https://github.com/ocaml-dune/csexp/"
10 10
SRC_URI="https://github.com/ocaml-dune/csexp/releases/download/${PV}/${P}.tbz"
11 11

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

  
18 18
RDEPEND=">=dev-ml/result-1.5:=[ocamlopt=]"
19
DEPEND="${RDEPEND}
20
	test? ( dev-ml/ppx_expect )"
19
DEPEND="${RDEPEND}"
20
BDEPEND="test? ( dev-ml/ppx_expect )"
Thank you!