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, 22 Aug 2022 09:38:25
Message-Id: 1661161033.95fbefa4c905692480d969a7d872ae34dc98b300.mpagano@gentoo
1 commit: 95fbefa4c905692480d969a7d872ae34dc98b300
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 22 09:37:13 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 09:37:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95fbefa4
7
8 sys-kernel/git-sources: add 6.0_rc2
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-6.0_rc2.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 2f37cf1193e3..8044e3918dd1 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -1,2 +1,3 @@
21 DIST linux-5.19.tar.xz 131581464 BLAKE2B 4db03a6830a3b3bbf0837e1912182a443d9a4aa8af20a12e6ec814ed708038452d3c0ccee1258cca671c464d76461536363a8adc56e9d098c9a44ae3484a297a SHA512 00313b2f9b82d2dc3fb8294007cf7d7599d254b717ed2de23c81fa7a1bbcbc2798ad286cb94e2f7f5bd54132d1d764facd90d30f79dbcc6616cc7f926adc2623
22 DIST patch-6.0-rc1.patch 107038239 BLAKE2B bea392cf4596fe326b58c08c20918bfe34d9bfb4ee8fca35b5930c35b44b721771ddd8d82fcb1c39f87b9fd3f072ca4e50417009346f0dcd97b930bcaa09c3fd SHA512 12113138533109c9939c8d1eae8982a4abaccc4c591c8d8f6a76e61a26bb04df94bd9074c2ce70126f712f7db031c6c2c7fdee3ff038e6926cb4aa5b7353e038
23 +DIST patch-6.0-rc2.patch 107549416 BLAKE2B a4fefa99fab946258b1fc4c2cd3e8cd92de4047e53f6695ceaebc67d62d11df267dbc34d8f5e3ed1517dc98fb4cd4d8c8d0ce5cefe9b211b3ce63a6efe60f5c0 SHA512 cc950717e1ccc7d3e4b7222db2f368e3a7377bcf7c4c1999b6e921ebfb5c71547747c2dd2465ce4c1880fe966108b1b0474d76d6ea014bfe70493245c644d631
24
25 diff --git a/sys-kernel/git-sources/git-sources-6.0_rc2.ebuild b/sys-kernel/git-sources/git-sources-6.0_rc2.ebuild
26 new file mode 100644
27 index 000000000000..6789923d7615
28 --- /dev/null
29 +++ b/sys-kernel/git-sources/git-sources-6.0_rc2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="8"
35 +UNIPATCH_STRICTORDER="yes"
36 +K_NOUSENAME="yes"
37 +K_NOSETEXTRAVERSION="yes"
38 +K_NOUSEPR="yes"
39 +K_SECURITY_UNSUPPORTED="1"
40 +K_BASE_VER="5.19"
41 +K_EXP_GENPATCHES_NOUSE="1"
42 +K_FROM_GIT="yes"
43 +K_NODRYRUN="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 +}