Diff gentoo-kernel-5.10.197 with a gentoo-kernel-5.15.133

/usr/portage/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.133.ebuild 2023-10-09 14:52:35.532368502 +0300
6 6
inherit kernel-build toolchain-funcs
7 7

  
8 8
MY_P=linux-${PV%.*}
9
GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 10 ))
10
# https://koji.fedoraproject.org/koji/packageinfo?packageID=8
11
CONFIG_VER=5.10.12
12
CONFIG_HASH=836165dd2dff34e4f2c47ca8f9c803002c1e6530
9
GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 6 ))
10
CONFIG_VER=5.15.19
11
CONFIG_HASH=ec69da7a42b5b7c3da91572ef22097b069ddbd01
13 12
GENTOO_CONFIG_VER=g9
14 13

  
15 14
DESCRIPTION="Linux kernel built with Gentoo patches"
......
43 42
S=${WORKDIR}/${MY_P}
44 43

  
45 44
LICENSE="GPL-2"
46
KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 x86"
45
KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
47 46
IUSE="debug hardened"
48
REQUIRED_USE="arm? ( savedconfig )"
47
REQUIRED_USE="
48
	arm? ( savedconfig )
49
	hppa? ( savedconfig )
50
	sparc? ( savedconfig )
51
"
49 52

  
50 53
RDEPEND="
51 54
	!sys-kernel/gentoo-kernel-bin:${SLOT}
......
60 63
QA_FLAGS_IGNORED="
61 64
	usr/src/linux-.*/scripts/gcc-plugins/.*.so
62 65
	usr/src/linux-.*/vmlinux
66
	usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg
63 67
"
64 68

  
65 69
src_prepare() {
......
95 99
			cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die
96 100
			biendian=true
97 101
			;;
102
		sparc)
103
			return
104
			;;
98 105
		x86)
99 106
			cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die
100 107
			;;
Thank you!