Diff kgcc64-11.3.0 with a kgcc64-11.4.0

/usr/portage/sys-devel/kgcc64/kgcc64-11.4.0.ebuild 2023-10-09 14:52:35.488368501 +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
EAPI=7
4
EAPI=8
5 5

  
6 6
case ${CHOST} in
7 7
	hppa*)    CTARGET=hppa64-${CHOST#*-};;
......
12 12
	i?86*)    CTARGET=x86_64-${CHOST#*-};;
13 13
esac
14 14
export CTARGET
15

  
16
GCC_TARGET_NO_MULTILIB=true
15 17
TOOLCHAIN_ALLOWED_LANGS="c"
16 18
TOOLCHAIN_PATCH_DEV="sam"
17
GCC_TARGET_NO_MULTILIB=true
18
PATCH_VER="4"
19
PATCH_GCC_VER="11.3.0"
19
PATCH_GCC_VER="11.4.0"
20
PATCH_VER="10"
21
MUSL_VER="2"
22
MUSL_GCC_VER="11.4.0"
20 23
inherit toolchain
21 24

  
22 25
DESCRIPTION="64bit kernel compiler"
23 26

  
24 27
# Works on hppa and mips; all other archs, refer to bug #228115
25
KEYWORDS="hppa"
28
KEYWORDS="~hppa"
26 29

  
27 30
# unlike every other target, hppa has not unified the 32/64 bit
28 31
# ports in binutils yet
Thank you!