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, 03 Jul 2022 23:29:23
Message-Id: 1656890937.238dfed6a759fa3f65c054de5c62c347a85eba42.mpagano@gentoo
1 commit: 238dfed6a759fa3f65c054de5c62c347a85eba42
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 23:28:57 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 23:28:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=238dfed6
7
8 sys-kernel/git-sources: add 5.19_rc5
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.19_rc5.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
17 index 96c39784145e..a7afe55c2cb6 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -3,3 +3,4 @@ DIST patch-5.19-rc1.patch 90995640 BLAKE2B 0042e0a588fb4fa43259373e7c251e0f17f76
21 DIST patch-5.19-rc2.patch 91368249 BLAKE2B bef883f4eb087216758ed81dd83652f24486dbf918a7bdb3da2104eaaeda5cfbfa66b820c6085971b68b20daca9f0da2bca475420273ba765264dbed19b8e505 SHA512 8f59b859f7f464bc44dfb65f0d7dae435e01c5a6f2692243ba61249bd96e8b8fa5fa196461d0ad78ae90879d1aa9d89452ab93d1c86fe823a7a2f479b280340d
22 DIST patch-5.19-rc3.patch 91707998 BLAKE2B 838fb540ad60b1e6f90e90d873d470ae6defe5762239ab0113b7c552f425ecbf2701846ca8788414b198dd9df541f4387c62fed8e111fa3d73f063b98b26a536 SHA512 18a9a9c3254417425a6a9a4f438322ea926f2667621102fd715f0557dbbdf282a73af0c786ecce7fdc0fcd58f33443f470594f6b6cfd52c983bbf9c35d1d55b2
23 DIST patch-5.19-rc4.patch 92086340 BLAKE2B fec8a8ca4dc1f25f6f06c1b7b2031b9e5f40b4b6ef56effb9a6150ba88beda69ebe3a88cb5bd00ba8548490d3b98b573482a6cf5dc5ec2b8b006d61b67317279 SHA512 9a4f7b207d31e2a2299c47de8f3fbb01558512ebe899af132eb6b711a3dc92d57568b9479b559b4e1d1a7eb59c5731afe38673eb13d09b250ee8a3df2d7e4d4c
24 +DIST patch-5.19-rc5.patch 92286884 BLAKE2B 869cd7384fe6d7cb2752f7144b1fc8a030d1721e2502c0e4c20888b117d22c6411ea568852aa9e58459477f3bcea0b40762ec2bc37e1cf6e4467ef192223f4ed SHA512 237f3be30596050bf0654356511a77453e661e2724b67de9f3ba91db5260e30b5685cedc796f6ab39d5c28faf40c25ebf168f8153c95c9ee71e17af4a20378cf
25
26 diff --git a/sys-kernel/git-sources/git-sources-5.19_rc5.ebuild b/sys-kernel/git-sources/git-sources-5.19_rc5.ebuild
27 new file mode 100644
28 index 000000000000..64a9dd30df4c
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-5.19_rc5.ebuild
31 @@ -0,0 +1,41 @@
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.18"
42 +K_EXP_GENPATCHES_NOUSE="1"
43 +K_FROM_GIT="yes"
44 +K_NODRYRUN="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.6-r4"
69 +
70 +pkg_postinst() {
71 + postinst_sources
72 +}