Diff ocaml_intrinsics-0.15.1 with a ocaml_intrinsics-0.15.2

/usr/portage/dev-ml/ocaml_intrinsics/ocaml_intrinsics-0.15.2.ebuild 2023-10-09 14:52:29.796368358 +0300
1
# Copyright 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 4
EAPI=8
5 5

  
6 6
inherit dune
7 7

  
8
DESCRIPTION="invoke amd64 instructions (such as clz,popcnt,rdtsc,rdpmc)"
9
HOMEPAGE="https://github.com/janestreet/ocaml_intrinsics"
10
SRC_URI="https://github.com/janestreet/${PN}/archive/refs/tags/v${PV}.tar.gz
8
DESCRIPTION="Invoke amd64 instructions (such as clz, popcnt, rdtsc, rdpmc)"
9
HOMEPAGE="https://github.com/janestreet/ocaml_intrinsics/"
10
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz
11 11
	-> ${P}.tar.gz"
12 12

  
13 13
LICENSE="MIT"
14 14
SLOT="0/$(ver_cut 1-2)"
15
KEYWORDS="~amd64"
15
KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
16 16
IUSE="+ocamlopt"
17
RESTRICT="test"
17 18

  
18 19
DEPEND="
19 20
	>=dev-lang/ocaml-4.08
20 21
	dev-ml/dune-configurator:=
21 22
"
22 23
RDEPEND="${DEPEND}"
23
BDEPEND=""
Thank you!