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 May 2020 23:00:01
Message-Id: 1588546784.df07ccdde424d7628310fea60d2879ea8637c7a9.mpagano@gentoo
1 commit: df07ccdde424d7628310fea60d2879ea8637c7a9
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 3 22:59:44 2020 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun May 3 22:59:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df07ccdd
7
8 sys-kernel/git-sources: Linux patch 5.7-rc4
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
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.7_rc4.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 e087b4ff88d..7ffa64e58b3 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -2,3 +2,4 @@ DIST linux-5.6.tar.xz 111785252 BLAKE2B 8dbe02a8ca7fd3dcf512a15c5d8098c1e7f94257
22 DIST patch-5.7-rc1.patch 39521598 BLAKE2B d9cc47f8f075262b5b67035cc4d552303a57fd396f3a813ac36dedb9efc09650d51b2880ded146ebd1e639288991fa9775b7820d2360d6303e8d4c82968e1ce2 SHA512 5a9bc1a7aa4cbc06c0a0644c4d03994016e67b51bfc9c130545dea94bb4cc2be7ee00846abdb4be438af1714eb1ea5269c957edd17440d8e48addb68d101b177
23 DIST patch-5.7-rc2.patch 39838150 BLAKE2B 86a9b1fdb1a0ffdeb5ba8ff0dd7afa0058a3b2be49862001541102b915ad792ae00f1e6f9c671b5f7112cc266ee8697f648584b21d5dcb787e2beaf5c991e29c SHA512 c677ce84cd7616e8840a131b3fab3a647e9778a6b6e7315f7f6a128a32cd699b04f62c5cbed0221339e20ca60d35a95efb188af5e93f8a83e3e323810cfbd469
24 DIST patch-5.7-rc3.patch 40283173 BLAKE2B c8f85c4a52156d6590f60464ceba4144fa7562e3a23584d29f20e8f31e66c315d83dd7f171780fbdc5a9b9487677322b6a9e35e50c78fd39130bfc0337a6c93e SHA512 c298a70d8b1d90824a8da8d1b99dac5a2436bbd0bcefdc08712626daf1d4d6c692b1d1c80133bff5429502ebf1932801725d53c9882a34cbe7b9739add19852a
25 +DIST patch-5.7-rc4.patch 40402513 BLAKE2B 26fa667e2e82320e77de13700dce3886ee489db699499eec84292a0afbfa6da020ef8bf68993ae555854a935172c50d059e9f424f45ba3a628fafe0c1cde2d15 SHA512 da1f23765c7b5ef0a35b5de736e95446d7c96a5771346d5fbded526d2c46bc5c8387f7601ed92eebb29cb4c1614f39c1360d94666d2b0c0869b0bb22cd68ee5e
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.7_rc4.ebuild b/sys-kernel/git-sources/git-sources-5.7_rc4.ebuild
28 new file mode 100644
29 index 00000000000..73b080b1d06
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.7_rc4.ebuild
32 @@ -0,0 +1,40 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
37 +UNIPATCH_STRICTORDER="yes"
38 +K_NOUSENAME="yes"
39 +K_NOSETEXTRAVERSION="yes"
40 +K_NOUSEPR="yes"
41 +K_SECURITY_UNSUPPORTED="1"
42 +K_BASE_VER="5.6"
43 +K_EXP_GENPATCHES_NOUSE="1"
44 +K_FROM_GIT="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.5"
69 +
70 +pkg_postinst() {
71 + postinst_sources
72 +}