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, 30 Jan 2022 15:56:05
Message-Id: 1643558152.2222fa51a5820f46cddf9b4c04bb292896f15c74.mpagano@gentoo
1 commit: 2222fa51a5820f46cddf9b4c04bb292896f15c74
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 15:55:52 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 30 15:55:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2222fa51
7
8 sys-kernel/git-sources: Linux version bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
12
13 sys-kernel/git-sources/Manifest | 1 +
14 sys-kernel/git-sources/git-sources-5.17_rc2.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
18 index 30b9dcee75fb..0c0a4cdd9c59 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -1,2 +1,3 @@
22 DIST linux-5.16.tar.xz 123114100 BLAKE2B 07a90cc640ff89e1359c06cee8c38abd33e51f9b9a89833e31a1d2750526fda4a59e8884db3c1ea63df0a37f0d3de6b5a922b014b7313d8abce20d90ac08adcb SHA512 7a257dd576bc8493595ec7d6f3c9cb6e22c772a8b2dbe735d2485c4f5c56e26a08695546e7e0f1f1cd04a533f25e829361958d4da0b98bf0ba8094dd57a85aaf
23 DIST patch-5.17-rc1.patch 36453946 BLAKE2B a600f68e504c7602098dd0bb26f405b1bca318baaaeb479d6b5b0a0483d5aa5f9baaeb2f1d3f53734821dfbd2a77be4cf7fa4f7057b5c6ae7fe9b6c068b0cd12 SHA512 0de5045d74ae2e64c40fc482879152ff0b696eba2618cda66e231e70afe8e1d18d946bfcfda50d5c037ab90e11f9777d558b4fdef785f9777b8f97959551ee65
24 +DIST patch-5.17-rc2.patch 36928215 BLAKE2B 3ae1f09eeb870fda422db561ca1adfd68c7ea96ddcd47672028d6ccc44c49eca5fe53e77b0173bd66be04883f7dc0a65addd55b435dd0f8d4fb7418a21d6a8d2 SHA512 dd10a6c88da50ca9e0a37aa1377b86122c56a50a8c608a02dd425ac23ee20418b29fe2332981bdffa45d2ac44b3b4a9e294fb786ba7c13c01ec821b6915cdb56
25
26 diff --git a/sys-kernel/git-sources/git-sources-5.17_rc2.ebuild b/sys-kernel/git-sources/git-sources-5.17_rc2.ebuild
27 new file mode 100644
28 index 000000000000..b7eedd7884ba
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-5.17_rc2.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 +}