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: Sun, 08 May 2022 22:28:45
Message-Id: 1652048903.6fe78bf9007e6c90e5826b465d35c0447a640ebf.mpagano@gentoo
1 commit: 6fe78bf9007e6c90e5826b465d35c0447a640ebf
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 22:28:23 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 22:28:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe78bf9
7
8 sys-kernel/git-sources: add 5.18_rc6
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 sys-kernel/git-sources/Manifest | 1 +
13 sys-kernel/git-sources/git-sources-5.18_rc6.ebuild | 40 ++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
17 index 46e10dac72e1..d695e964c372 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -4,3 +4,4 @@ DIST patch-5.18-rc2.patch 112841658 BLAKE2B 8419291fadcf91225db3d946ab0aa4f31210
21 DIST patch-5.18-rc3.patch 113219039 BLAKE2B 53b7e45c5d9b87286509f727e6edc3f455d2e424333e97ac75314a901d908950d84b99d7f289c825026537f4d0a34a818c346aa3c89d4a6e2335924e5a77bc67 SHA512 90c13f5584d64a4963e92ef50bd858771c92903c3c743b7b8e139c2e7a5164b997bb0b801545d732a499f3e544dd216d2717621bd21ac9962ba1850bdd32b721
22 DIST patch-5.18-rc4.patch 113439466 BLAKE2B e1c09d06a721c5bf34d3ed5d2b760032947a39d8bd09aaba99c1cd1fe21f40bd720cf5613672f35ee8890358ea5bd317b699bcf20348fe11666bf91fd2d73138 SHA512 c3ae845310be78d63a09983ce5815d41d2e18ad8be87e21048a28549bde8bc61fef268b00e35da645be633a3aba825491406944b1e0a1ff33ebb79adc5cbda9e
23 DIST patch-5.18-rc5.patch 113766752 BLAKE2B f0a10b3b14c7ec52ee330679dcea0f0a452226f3f6524177ae73f9a3e248380848cc0f0b9324a0b1b8705c02c087e8650376adf4f6f4459071e967d478789646 SHA512 e53d0d0346300d2ae3db66314464a52afcf1da5eb19a5236872f5dc226782e4005b879d28971ff308e6ba6833111fd2bd575cd443f1b5ad85b54d95897810ef4
24 +DIST patch-5.18-rc6.patch 113973406 BLAKE2B b98869d18829ae1d7e6a2240727623469cb25abe50923e1e5df77134ff1e2496fb4f945b13f1c7dc14687253249d50c298f72cfe371b737f11b097c91b1e88ac SHA512 f375221195d68d57541892ca27316bf80aed6b6a2cf8d23df71bd772b774e550bbc4e0800f0b6cdaa691af2f9aebc63b5907cc065913a03838a5dc7837fa1755
25
26 diff --git a/sys-kernel/git-sources/git-sources-5.18_rc6.ebuild b/sys-kernel/git-sources/git-sources-5.18_rc6.ebuild
27 new file mode 100644
28 index 000000000000..1b58d3fd64da
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-5.18_rc6.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="8"
36 +UNIPATCH_STRICTORDER="yes"
37 +K_NOUSENAME="yes"
38 +K_NOSETEXTRAVERSION="yes"
39 +K_NOUSEPR="yes"
40 +K_SECURITY_UNSUPPORTED="1"
41 +K_BASE_VER="5.17"
42 +K_EXP_GENPATCHES_NOUSE="1"
43 +K_FROM_GIT="yes"
44 +ETYPE="sources"
45 +CKV="${PVR/-r/-git}"
46 +
47 +# only use this if it's not an _rc/_pre release
48 +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
49 +inherit kernel-2
50 +detect_version
51 +
52 +DESCRIPTION="The very latest -git version of the Linux kernel"
53 +HOMEPAGE="https://www.kernel.org"
54 +SRC_URI="${KERNEL_URI}"
55 +
56 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
57 +IUSE=""
58 +
59 +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
60 +experimental nature. If you have any issues, try a matching vanilla-sources
61 +ebuild -- if the problem is not there, please contact the upstream kernel
62 +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to
63 +report the problem so it can be fixed in time for the next kernel release."
64 +
65 +RDEPEND=""
66 +DEPEND="${RDEPEND}
67 + >=sys-devel/patch-2.7.6-r4"
68 +
69 +pkg_postinst() {
70 + postinst_sources
71 +}