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, 25 Sep 2022 22:03:12
Message-Id: 1664143375.5d54fa6f369cb8f9cc8cd7bd01dfd7fd504f458d.mpagano@gentoo
1 commit: 5d54fa6f369cb8f9cc8cd7bd01dfd7fd504f458d
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 22:02:55 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 22:02:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d54fa6f
7
8 sys-kernel/git-sources: add 6.0_rc7
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_rc7.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 b175d1ec9f69..8d2e445730b1 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -5,3 +5,4 @@ DIST patch-6.0-rc3.patch 107861796 BLAKE2B 201851c3bb54d6af7a481b0b88067d738e0bb
21 DIST patch-6.0-rc4.patch 108161851 BLAKE2B 095c03da992f3b2ea26aaea3a10fa4efded546bb409e7580f689cd312dce77378397525776b9b138c158dbf59cd3061db99f48919afb003f3766965050b381ce SHA512 1386f9ac2fdfc5fbf07e524ed573be4f0df00fd2c0add97289e3d98ce36441339f81bfd3106dabf79898de50b363eff2f7cc88d03746f578b299fa13a0000438
22 DIST patch-6.0-rc5.patch 108427807 BLAKE2B 44f625c28f292d3ba2c43ebc6e06059c3874f0a4a1a645bd4ebda483fcc52eb4fc5dc166bd5bfc4dce5cac809901d53c9235bb7fc8003db73bbe2307b41057c0 SHA512 f5e8a8c74738b996633748eb8c84eaca3a1635335de4528a6f5c5446107c96b55e3b89867bd05207818e67fa711ed841dbd459b2b76d24f783f4b160404977a4
23 DIST patch-6.0-rc6.patch 108533829 BLAKE2B 279b3deaf52c40c2e0325092fd5a88c7e10fd5a4e61fbaa562ab66f6a906adca45629093fe102ae4edaa4276d2d471c0ea74f80c45f888b91989d3020122a82f SHA512 29f1b5cab76f41336416f462766c39655b1ba262293745273ed65df50848063cbc41386bb355165a84e4ddb1bbeaf559b818b6170521c5d16094deab008c9527
24 +DIST patch-6.0-rc7.patch 108721301 BLAKE2B d0765a518f737212ec29ddb675ed583eedd94677d82a0d53831ae19e060d7aef1e973f975b026bec3de8557f0c6c8a7a5403dbdddafd6103927d51ccba50e8f8 SHA512 c62ec2e6e385b62e9667c9c2b947a3090801a2b0bdd8f06374fdafa7e5f47f5c8bae5516abe8cedc9d78ef619033000c0d1c07fe65a533ac19f02dbab9f61511
25
26 diff --git a/sys-kernel/git-sources/git-sources-6.0_rc7.ebuild b/sys-kernel/git-sources/git-sources-6.0_rc7.ebuild
27 new file mode 100644
28 index 000000000000..6789923d7615
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-6.0_rc7.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.19"
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 +}