Diff libgcrypt-1.10.1-r2 with a libgcrypt-1.10.1-r3

/usr/portage/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild 2023-10-09 14:52:29.516368351 +0300
13 13

  
14 14
LICENSE="LGPL-2.1 MIT"
15 15
SLOT="0/20" # subslot = soname major version
16
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
16
KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
17 17
IUSE="+asm cpu_flags_arm_neon cpu_flags_arm_aes cpu_flags_arm_sha1 cpu_flags_arm_sha2 cpu_flags_ppc_altivec cpu_flags_ppc_vsx2 cpu_flags_ppc_vsx3 cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_padlock cpu_flags_x86_sha cpu_flags_x86_sse4_1 doc +getentropy static-libs"
18 18

  
19 19
# Build system only has --disable-arm-crypto-support right now
......
46 46
	"${FILESDIR}"/${PN}-powerpc-darwin.patch
47 47
	"${FILESDIR}"/${PN}-1.10.1-fix-no-asm-hppa.patch
48 48
	"${FILESDIR}"/${PN}-1.9.4-no-fgrep-libgcrypt-config.patch
49
	"${FILESDIR}"/${PN}-1.10.1-configure-clang16.patch
50
	"${FILESDIR}"/libgcrypt-1.10-build-Allow-build-with-Oz.patch
49 51
)
50 52

  
51 53
MULTILIB_CHOST_TOOLS=(
......
101 103
	# https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commitdiff;h=0b399721ce9709ae25f9d2050360c5ab2115ae29
102 104
	# https://dev.gnupg.org/T5581
103 105
	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102124
104
	if use arm64 && tc-is-gcc && (($(gcc-major-version) == 11)) && (($(gcc-minor-version) <= 2)) && (($(gcc-micro-version) == 0)) ; then
106
	if use arm64 && tc-is-gcc && (($(gcc-major-version) == 11)) &&
107
		(($(gcc-minor-version) <= 2)) && (($(gcc-micro-version) == 0)) ; then
105 108
		append-flags -fno-tree-loop-vectorize
106 109
	fi
107 110

  
Thank you!