Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/
Date: Mon, 04 Oct 2021 19:27:10
Message-Id: 1633375618.f878c2b0c29401feb55bf1e16be5b2538e7f3845.mpagano@gentoo
1 commit: f878c2b0c29401feb55bf1e16be5b2538e7f3845
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 19:26:58 2021 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 19:26:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f878c2b0
7
8 sys-kernel/git-sources: Linux patch 5.15-rc4
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
12
13 sys-kernel/git-sources/Manifest | 1 +
14 sys-kernel/git-sources/git-sources-5.15_rc4.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
18 index 88956474761..77dc550d0cc 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -2,3 +2,4 @@ DIST linux-5.14.tar.xz 120669872 BLAKE2B 0047f5aaa3940dff97f4055ef544faafbbb5282
22 DIST patch-5.15-rc1.patch 41357462 BLAKE2B 7df3298b6dcf7eb5a4867e84dc801e344063645f12af695fd81cc8310dd6fe79da06412e893eefa220d45c0118de6f5ae1768bc009cdb1b37d9fc0bb4fdb919a SHA512 d045bb66c810b2fe2c700cbd4518a1329fdf006402e382bfcf0f097785409d00187df1fc998944abb46e5eaa6884cd5b50d20575adb4e77342ce11c951cf6317
23 DIST patch-5.15-rc2.patch 41617220 BLAKE2B b2216f798e64ccbcd3d6a9ecbf77388a6af97bce43c913dc0b8561db909b15f242ea63a5a266c422f887ef5f1232119f30b213fa9604a57596611f69b51964e9 SHA512 76d1054282c00adef7c31701e0991e9d279e641ee4f009713169aea2f0c9e4cce0eca356e32ed8e818fef57b601f9205f2ff32e4a139bb2ac48a2bd1d2b4a178
24 DIST patch-5.15-rc3.patch 41945558 BLAKE2B 550064d9cd8b30c062cd4411d169547317a406e259cc46b124a8e6115d2ff4e370903fad3a5bf4e62e9db07fb7d510ecf6c2b36ba27534b813cb379f7fe9c966 SHA512 6e3ae62519dd991d26eee5063d511749d282ad1b8a57d020ee179a5819ed7842f3f22c2ac8ec972f57bb1d4650f46ee3d8a98f52d33c7e82412e4968af2ed3cc
25 +DIST patch-5.15-rc4.patch 42309515 BLAKE2B bb92e0f0fe290faf86da6f0cb4980b1af700d735bb22250851df5c6712af59b82de524cd96f9e3180c4d77121d09258109c16fb48d342e6117073d2ac8189524 SHA512 e5b3c895d72d7c9be5ce409072a3076d5c9789a510e72cd6e5c79011a321a1de219bd84e6ce3df5cba94f4103dbb3c8082e0317b7783138dba05b956737e697c
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.15_rc4.ebuild b/sys-kernel/git-sources/git-sources-5.15_rc4.ebuild
28 new file mode 100644
29 index 00000000000..d7e4ec9a150
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.15_rc4.ebuild
32 @@ -0,0 +1,40 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +UNIPATCH_STRICTORDER="yes"
38 +K_NOUSENAME="yes"
39 +K_NOSETEXTRAVERSION="yes"
40 +K_NOUSEPR="yes"
41 +K_SECURITY_UNSUPPORTED="1"
42 +K_BASE_VER="5.14"
43 +K_EXP_GENPATCHES_NOUSE="1"
44 +K_FROM_GIT="yes"
45 +ETYPE="sources"
46 +CKV="${PVR/-r/-git}"
47 +
48 +# only use this if it's not an _rc/_pre release
49 +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
50 +inherit kernel-2
51 +detect_version
52 +
53 +DESCRIPTION="The very latest -git version of the Linux kernel"
54 +HOMEPAGE="https://www.kernel.org"
55 +SRC_URI="${KERNEL_URI}"
56 +
57 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
58 +IUSE=""
59 +
60 +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
61 +experimental nature. If you have any issues, try a matching vanilla-sources
62 +ebuild -- if the problem is not there, please contact the upstream kernel
63 +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to
64 +report the problem so it can be fixed in time for the next kernel release."
65 +
66 +RDEPEND=""
67 +DEPEND="${RDEPEND}
68 + >=sys-devel/patch-2.7.5"
69 +
70 +pkg_postinst() {
71 + postinst_sources
72 +}