Diff findlib-1.8.1-r2 with a findlib-1.9.3

/usr/portage/dev-ml/findlib/findlib-1.9.3.ebuild 2023-10-09 14:52:29.788368358 +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 4
EAPI=7
......
9 9

  
10 10
LICENSE="MIT"
11 11
SLOT="0"
12
KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
12
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
13 13
IUSE="doc +ocamlopt tk"
14 14

  
15 15
DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?]
16
	<dev-lang/ocaml-4.13
17 16
	tk? ( dev-ml/labltk:= )"
18 17
RDEPEND="${DEPEND}"
19 18

  
20 19
QA_FLAGS_IGNORED='.*'
21 20

  
22
PATCHES=( "${FILESDIR}"/externalmeta7.patch )
23

  
24 21
src_prepare() {
25 22
	default
26 23
	export ocamlfind_destdir="${EPREFIX}/usr/$(get_libdir)/ocaml"
......
55 52
		docinto html
56 53
		dodoc -r ref-html guide-html
57 54
	fi
55

  
56
	# See bug #803275 and bug #833604
57
	rm -f "${ED}"/usr/$(get_libdir)/ocaml/{ocamlbuild,labltk}/META || die
58 58
}
59 59

  
60 60
check_stublibs() {
Thank you!