Diff zen-sources-6.3.9 with a zen-sources-6.5.5
/usr/portage/sys-kernel/zen-sources/zen-sources-6.5.5.ebuild 2023-10-09 14:52:35.536368503 +0300 | ||
---|---|---|
4 | 4 |
EAPI="8" |
5 | 5 |
ETYPE="sources" |
6 | 6 |
K_WANT_GENPATCHES="base extras" |
7 |
K_GENPATCHES_VER="1" |
|
7 |
K_GENPATCHES_VER="7" |
|
8 | 8 |
K_SECURITY_UNSUPPORTED="1" |
9 | 9 |
K_NOSETEXTRAVERSION="1" |
10 | 10 | |
11 |
inherit kernel-2 |
|
11 |
inherit kernel-2 unpacker |
|
12 | 12 |
detect_version |
13 | 13 |
detect_arch |
14 | 14 | |
... | ... | |
16 | 16 |
HOMEPAGE="https://github.com/zen-kernel" |
17 | 17 |
IUSE="" |
18 | 18 | |
19 |
# Needed for zstd compression of the patch |
|
20 |
BDEPEND="$(unpacker_src_uri_depends)" |
|
21 | ||
19 | 22 |
DESCRIPTION="The Zen Kernel Live Sources" |
20 | 23 | |
21 |
ZEN_URI="https://github.com/zen-kernel/zen-kernel/releases/download/v${PV}-zen1/v${PV}-zen1.patch.xz" |
|
24 |
ZEN_URI="https://github.com/zen-kernel/zen-kernel/releases/download/v${PV}-zen1/linux-v${PV}-zen1.patch.zst" |
|
22 | 25 |
SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${ZEN_URI}" |
23 | 26 | |
24 |
UNIPATCH_LIST="${DISTDIR}/v${PV}-zen1.patch.xz" |
|
27 |
UNIPATCH_LIST="${WORKDIR}/linux-v${PV}-zen1.patch" |
|
25 | 28 |
UNIPATCH_STRICTORDER="yes" |
26 | 29 | |
27 | 30 |
K_EXTRAEINFO="For more info on zen-sources, and for how to report problems, see: \ |
28 | 31 |
${HOMEPAGE}, also go to #zen-sources on oftc" |
29 | 32 | |
33 |
src_unpack() { |
|
34 |
unpacker "linux-v${PV}-zen1.patch.zst" |
|
35 |
kernel-2_src_unpack |
|
36 |
} |
|
37 | ||
30 | 38 |
pkg_setup() { |
31 | 39 |
ewarn |
32 | 40 |
ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way." |
... | ... | |
37 | 45 |
kernel-2_pkg_setup |
38 | 46 |
} |
39 | 47 | |
48 |
src_install() { |
|
49 |
rm "${WORKDIR}/linux-v${PV}-zen1.patch" || die |
|
50 |
kernel-2_src_install |
|
51 |
} |
|
52 | ||
40 | 53 |
pkg_postrm() { |
41 | 54 |
kernel-2_pkg_postrm |
42 | 55 |
} |