Diff capnproto-0.9.1 with a capnproto-0.10.2

/usr/portage/dev-libs/capnproto/capnproto-0.10.2.ebuild 2023-10-09 14:52:29.492368350 +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=8
......
12 12

  
13 13
LICENSE="MIT"
14 14
SLOT="0/091"
15
KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86"
15
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
16 16
IUSE="+ssl test zlib"
17 17

  
18 18
RESTRICT="!test? ( test )"
......
25 25
	test? ( dev-cpp/gtest )
26 26
"
27 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${P}-gcc-13.patch
30
)
31

  
28 32
src_configure() {
29 33
	if use arm || use ppc || use mips || [[ ${CHOST} == *i486* ]] ; then
30 34
		# append-libs won't work here, cmake doesn't respect it
Thank you!