Diff nlohmann_json-3.11.2 with a nlohmann_json-3.11.2-r1

/usr/portage/dev-cpp/nlohmann_json/nlohmann_json-3.11.2-r1.ebuild 2023-10-09 14:52:29.308368346 +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
......
21 21

  
22 22
LICENSE="MIT"
23 23
SLOT="0"
24
KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
24
KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86"
25 25
IUSE="test"
26 26
RESTRICT="!test? ( test )"
27 27

  
28 28
DOCS=( ChangeLog.md README.md )
29 29

  
30
PATCHES=(
31
	"${FILESDIR}"/${PN}-3.11.2-gcc13.patch
32
	"${FILESDIR}"/${PN}-3.11.2-gcc13-2.patch
33
)
34

  
30 35
src_prepare() {
31 36
	if use test ; then
32 37
		ln -s "${WORKDIR}"/json_test_data-${TEST_VERSION} "${S}"/json_test_data || die
Thank you!