blob: a0aa5d1ee2e278b6bc74770e96c16b74cdeeea42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
ETYPE="sources"
CKV="$(ver_cut 1-3)"
K_SECURITY_UNSUPPORTED="1"
K_WANT_GENPATCHES="base extras"
K_GENPATCHES_VER="12"
K_NODRYRUN="1"
inherit kernel-2
detect_version
detect_arch
if [[ ${PV} != ${PV/_rc} ]] ; then
# $PV is expected to be of following form: 6.0_rc5_p1
MY_TAG="$(ver_cut 6)"
MY_BASE="$(ver_rs 2 - $(ver_cut 1-4))"
else
# $PV is expected to be of following form: 5.19.0_p1
MY_TAG="$(ver_cut 5)"
if [[ "$(ver_cut 3)" == "0" ]] ; then
MY_BASE="$(ver_cut 1-2)"
else
MY_BASE="$(ver_cut 1-3)"
fi
fi
EXTRAVERSION="-asahi-${MY_TAG}"
ASAHI_TAG="asahi-${MY_BASE}-${MY_TAG}"
DESCRIPTION="Asahi Linux kernel sources"
HOMEPAGE="https://asahilinux.org"
SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}
https://github.com/AsahiLinux/linux/compare/v${MY_BASE}...${ASAHI_TAG}.patch
-> linux-${ASAHI_TAG}.patch
"
KV_FULL="${PVR/_p/-asahi-}"
S="${WORKDIR}/linux-${KV_FULL}"
KEYWORDS="~arm64"
IUSE="rust"
DEPEND="
${DEPEND}
rust? (
|| (
>=dev-lang/rust-bin-1.76[rust-src,rustfmt]
>=dev-lang/rust-1.76[rust-src,rustfmt]
)
dev-util/bindgen
)
"
UNIPATCH_STRICTORDER="yes"
UNIPATCH_LIST="
${FILESDIR}/asahi-6.8-config-gentoo-Drop-RANDSTRUCT-from-GENTOO_KERNEL_SEL.patch
${FILESDIR}/asahi-6.8.2_revert_spi_stable_asahi.patch
${DISTDIR}/linux-asahi-6.8.9-6.patch
${FILESDIR}/asahi-sources-6.6.0_p16-enable-speakers-stage1.patch
${FILESDIR}/asahi-sources-6.6.0_p16-enable-speakers-stage2.patch
"
src_prepare() {
default
# remove asahi upstream set localversion, use EXTRAVERSION instead
rm localversion.05-asahi
}
pkg_postinst() {
einfo "For more information about Asahi Linux please visit ${HOMEPAGE},"
einfo "or consult the Wiki at https://github.com/AsahiLinux/docs/wiki."
kernel-2_pkg_postinst
}
|