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, 27 Feb 2022 23:28:17
Message-Id: 1646004441.80b836ff0a9a24c1a63ab867af708467c15dea15.mpagano@gentoo
1 commit: 80b836ff0a9a24c1a63ab867af708467c15dea15
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 23:27:21 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 23:27:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80b836ff
7
8 Linux patch 5.17-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.17_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 2187a52576f4..4ac36f2d193b 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -4,3 +4,4 @@ DIST patch-5.17-rc2.patch 36928215 BLAKE2B 3ae1f09eeb870fda422db561ca1adfd68c7ea
21 DIST patch-5.17-rc3.patch 37376734 BLAKE2B 40564254d729bdad9860b48a51657b6a3cef681b9f4add643d7a7e8bd80511cc3da9ec7257acd355a23cde8f1c8e51286560a168ad951100c9139057518d64f6 SHA512 d5c6444f73a1d0099ed9c3f1c35e7d0e6df487b9897d57b5f9d4d787df210dd8a2fb58c428a13844c5c846007fe5f349860503187690ed83f846b867377d5cf1
22 DIST patch-5.17-rc4.patch 37600999 BLAKE2B f5839b3f9cf1c7ec4e49ae29d27525a9bce1f244fbfbd30b4b2f9b35761873e74d79a36e4ecb619ce91d04829164b8e347a3c23d66fbef677619f0f8e51498d2 SHA512 54a3e37bad6e223b09bebe97f5188cbbbc38ada271611d817aa2d033895c602bfb989fcd028004507a0ab5063af532d3f5a16424f574f24d78e6962eb460998c
23 DIST patch-5.17-rc5.patch 37807134 BLAKE2B 26624949169e5f64fd76394e9ef5850f0eb2d71acd562bc7e44db20e7ad3bd178747bfffa99c5d5c54c54c7ada563417e617a5d8e63b077e70b42effe2a825a3 SHA512 e0ce9cc3c1bd1584d59d747f6419c54654d9be0ced307f2328f04ca1684c74e32e38b3dbabc292fffef87ab1813e4e3e0321f3a1e2d971b4cac81577f07ac0f3
24 +DIST patch-5.17-rc6.patch 38063544 BLAKE2B 7a57f1ae851fecfd89e2ad47e92b0c581ec166f42f3faec1986991d3629b7c48746c411b6b0f9cf2d1534c11a4d8560261cd236c8279561c6ee32030713c63f8 SHA512 f6c26d604db0db15678c866ad30d6d8b2ebd7fde66064e71d048080e20d26c4050a224d94917d5e1deff2a27c5607fc41440af6dbb3cc68d3043b3f8460b5f18
25
26 diff --git a/sys-kernel/git-sources/git-sources-5.17_rc6.ebuild b/sys-kernel/git-sources/git-sources-5.17_rc6.ebuild
27 new file mode 100644
28 index 000000000000..b7eedd7884ba
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-5.17_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.16"
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 +}