Diff core_unix-0.15.0 with a core_unix-0.15.2-r1

/usr/portage/dev-ml/core_unix/core_unix-0.15.2-r1.ebuild 2023-10-09 14:52:29.784368358 +0300
1
# Copyright 2022 Gentoo Authors
1
# Copyright 2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
inherit dune
5
inherit dune toolchain-funcs
6 6

  
7 7
DESCRIPTION="Unix-specific portions of Core"
8 8
HOMEPAGE="https://github.com/janestreet/core_unix"
......
11 11

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

  
17 17
DEPEND="
18
	>=dev-lang/ocaml-4.09
19
	dev-ml/core:=
18 20
	dev-ml/core_kernel:${SLOT}
19 21
	dev-ml/expect_test_helpers_core:${SLOT}
20 22
	dev-ml/ocaml_intrinsics:${SLOT}
21
	dev-ml/timezone:${SLOT}
22 23
	dev-ml/spawn:${SLOT}
24
	dev-ml/timezone:${SLOT}
23 25
"
24 26
RDEPEND="${DEPEND}"
25 27
BDEPEND=""
28

  
29
PATCHES=( "${FILESDIR}"/${P}-musl.patch )
30

  
31
src_prepare() {
32
	sed -i \
33
		-e "s:gcc:$(tc-getCC):" \
34
		unix_pseudo_terminal/src/discover.sh \
35
		|| die
36

  
37
	default
38
}
Thank you!