Diff extlib-1.7.7-r1 with a extlib-1.7.8

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

  
4
EAPI=8
4
EAPI=7
5 5

  
6 6
inherit findlib vcs-clean
7 7

  
8 8
DESCRIPTION="Standard library extensions for O'Caml"
9 9
HOMEPAGE="https://github.com/ygrek/ocaml-extlib"
10 10
SRC_URI="https://github.com/ygrek/ocaml-extlib/archive/${PV}.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}/ocaml-${P}"
11 12

  
12 13
LICENSE="LGPL-2.1"
13 14
SLOT="0/${PV}"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
15
KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
15 16
IUSE="doc +ocamlopt"
16 17

  
17 18
# See bug #704146
......
19 20
RDEPEND="dev-lang/ocaml:=[ocamlopt?]"
20 21
DEPEND="${RDEPEND}"
21 22

  
22
PATCHES=(
23
	"${FILESDIR}"/${PN}-1.7.7-no-git.patch
24
	"${FILESDIR}"/0001-Add-support-for-OCaml-4.12.patch
25
	"${FILESDIR}"/0002-caml_hash_univ_param-was-removed-for-OCaml-pre-4.00-.patch
26
)
27

  
28
S="${WORKDIR}/ocaml-${P}"
29

  
30 23
src_prepare() {
31 24
	default
32 25
	egit_clean
Thank you!