Diff opam-solver-2.0.10 with a opam-solver-2.1.2

/usr/portage/dev-ml/opam-solver/opam-solver-2.1.2.ebuild 2023-10-09 14:52:29.800368358 +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 4
EAPI=7
......
8 8
DESCRIPTION="opam solver"
9 9
HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam"
10 10
SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> opam-${PV}.tar.gz"
11
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/dev-ml/opam/opam-2.1.0-dose3-6.patch.xz"
11 12
S="${WORKDIR}/opam-${PV/_/-}"
12 13

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

  
......
27 28
DEPEND="${RDEPEND}
28 29
	test? ( dev-ml/opam-client )"
29 30

  
30
# Cherry-picked from https://deb.debian.org/debian/pool/main/o/opam/opam_2.0.8-1.debian.tar.xz
31
PATCHES=( "${FILESDIR}/debian-Port-to-Dose3-6.0.1.patch" )
31
PATCHES=( "${WORKDIR}"/opam-2.1.0-dose3-6.patch )
32 32

  
33 33
src_prepare() {
34 34
	default
Thank you!