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, 01 Jan 2023 22:39:10
Message-Id: 1672612736.98b0f13e747b08c26bf7b043a6f921c23dbfe5e2.mpagano@gentoo
1 commit: 98b0f13e747b08c26bf7b043a6f921c23dbfe5e2
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 1 22:38:56 2023 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 1 22:38:56 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b0f13e
7
8 sys-kernel/git-sources: add 6.2_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.2_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 534a696c2586..82b009a989e0 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -1,2 +1,3 @@
21 DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68
22 DIST patch-6.2-rc1.patch 61917436 BLAKE2B 038ccb5a750e55c926f223456acf32b06f38e01c1449fbd102d685202342ed774672927688cef83c19558bcb1b45919a85c34b3088ac81df6c81e569e4ed0ac2 SHA512 3a5fd0288c20bfb234e5f62102ebf9caa4addbe91e39c1a5882cbe68b32f2e6bfda1e91247526f5e0b3e18400906a44112c29f21777f838860a52b520eb7dc54
23 +DIST patch-6.2-rc2.patch 62009581 BLAKE2B b17cc02211a6c6c3f97eb8dd8896c572ea1dcef404c08c374aa21cb1d21d6c51bab37207454d2af63ae99e5c97fcd11e44ff243f82b57183a03a80131a838fc3 SHA512 047856bb07a371579a520a62d91f6fce78537da1826ea7ea3e39504470b47968c039037684e5b88918f48de1a22f1b6aa8ebbe7ab22f52ab4f0440255970c5a2
24
25 diff --git a/sys-kernel/git-sources/git-sources-6.2_rc2.ebuild b/sys-kernel/git-sources/git-sources-6.2_rc2.ebuild
26 new file mode 100644
27 index 000000000000..3361401fba57
28 --- /dev/null
29 +++ b/sys-kernel/git-sources/git-sources-6.2_rc2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2023 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="6.1"
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 ~loong ~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 +}