Diff glibc-2.43-r2 with a glibc-9999

/usr/portage/sys-libs/glibc/glibc-9999.ebuild 2026-06-23 19:41:04.244895853 +0300
12 12
EMULTILIB_PKG="true"
13 13

  
14 14
# Gentoo patchset (ignored for live ebuilds)
15
PATCH_VER=3
16
PATCH_DEV=dilfridge
15
PATCH_VER=1
17 16

  
18 17
# gcc mulitilib bootstrap files version
19 18
GCC_BOOTSTRAP_VER=20201208
......
43 42
if [[ ${PV} == *9999 ]]; then
44 43
	inherit git-r3
45 44
else
46
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
45
	#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
47 46
	SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
48 47
	SRC_URI+=" https://distfiles.gentoo.org/pub/proj/toolchain/glibc/patches/${P}-patches-${PATCH_VER}.tar.xz"
49 48
	SRC_URI+=" verify-sig? ( mirror://gnu/glibc/${P}.tar.xz.sig )"
......
924 923
			die "Found directory (${ESYSROOT}/usr/lib/include) which will break build (bug #833620)!"
925 924
		fi
926 925

  
927
		if [[ ${CTARGET} == *-linux* ]] ; then
926
		if is_linux ; then
928 927
			local run_kv build_kv want_kv
929 928

  
930 929
			run_kv=$(g_get_running_KV)
......
1617 1616

  
1618 1617
	if is_hurd && has amd64 $(get_install_abis) ; then
1619 1618
		# First, let's check for sanity
1620
		if [[ -f "${D}$(alt_prefix)/lib/ld-x86-64.so.1" ]] ; then
1619
		if [[ -f "${D}/$(alt_prefix)/lib/ld-x86-64.so.1" ]] ; then
1621 1620
			die "Somehow your amd64 hurd glibc installed /lib/ld-x86-64.so.1 ... this should not happen."
1622 1621
		fi
1623 1622

  
......
1627 1626

  
1628 1627
	if is_hurd && has x86 $(get_install_abis) ; then
1629 1628
		# First, let's check for sanity
1630
		if [[ -f "${D}$(alt_prefix)/$(get_abi_LIBDIR x86)/ld.so" ]] ; then
1629
		if [[ -f "${D}/$(alt_prefix)/$(get_abi_LIBDIR x86)/ld.so" ]] ; then
1631 1630
			die "Somehow your x86 hurd glibc installed ld.so ... this should not happen."
1632 1631
		fi
1633 1632

  
Thank you!