Diff kgcc64-10.5.0 with a kgcc64-11.3.0

/usr/portage/sys-devel/kgcc64/kgcc64-11.3.0.ebuild 2023-10-09 14:52:35.488368501 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=8
4
EAPI=7
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 15
TOOLCHAIN_ALLOWED_LANGS="c"
17 16
TOOLCHAIN_PATCH_DEV="sam"
18
PATCH_GCC_VER="10.5.0"
19
PATCH_VER="6"
20
MUSL_VER="2"
21
MUSL_GCC_VER="10.5.0"
22 17
GCC_TARGET_NO_MULTILIB=true
23

  
18
PATCH_VER="4"
19
PATCH_GCC_VER="11.3.0"
24 20
inherit toolchain
25 21

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

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

  
31 27
# unlike every other target, hppa has not unified the 32/64 bit
32 28
# ports in binutils yet
33
DEPEND="hppa? ( sys-devel/binutils-hppa64 )"
29
BDEPEND="hppa? ( sys-devel/binutils-hppa64 )"
34 30

  
35 31
pkg_postinst() {
36 32
	toolchain_pkg_postinst
Thank you!