Diff zlib-ng-2.1.7 with a zlib-ng-2.2.3

/usr/portage/sys-libs/zlib-ng/zlib-ng-2.2.3.ebuild 2025-02-03 17:39:35.946678051 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
14 14

  
15 15
LICENSE="ZLIB"
16 16
SLOT="0"
17
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~sparc ~x86"
17
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~sparc ~x86"
18 18

  
19 19
CPU_USE=(
20 20
	x86_{avx2,avx512f,avx512_vnni,sse2,ssse3,sse4_2,pclmul,vpclmulqdq}
......
37 37
		-DZLIB_COMPAT=$(usex compat)
38 38
		-DZLIB_ENABLE_TESTS=$(usex test)
39 39
		-DWITH_GTEST=$(usex test)
40

  
41
		# Unaligned access is controversial and undefined behaviour
42
		# Let's keep it off for now
43
		# https://github.com/gentoo/gentoo/pull/17167
44
		-DWITH_UNALIGNED=OFF
45 40
	)
46 41

  
47 42
	# The intrinsics options are all defined conditionally, so we need
Thank you!