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, 02 Mar 2020 00:00:35
Message-Id: 1583107224.1c6736e1c9a0de5d834f0db558a01b8957abae21.mpagano@gentoo
1 commit: 1c6736e1c9a0de5d834f0db558a01b8957abae21
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 2 00:00:15 2020 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 2 00:00:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6736e1
7
8 sys-kernel/git-sources: Linux patch 5.6-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.6_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 90e891f9e41..5b393404f55 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -2,3 +2,4 @@ DIST linux-5.5.tar.xz 110713660 BLAKE2B 36b990d3650c409652206c319c93c0cf68885334
22 DIST patch-5.6-rc1.patch 39491488 BLAKE2B adc1688d19eb26d6b253255c427bea5b1961f1fd10244f06fd3ccc942f19b8f93ff65fa142ed7d7339c7a18409d00bbaa7be30ca1dbb7e02970cd2311c27e54f SHA512 399b5a639171e48e9a45a3f7cd6612aaf953f54996ad3c52fc1e6c7c83b73649bb73c77d3a3675ca6a7740fd51c73a00d8059d743d753ef0eeb231ba55f4ed7d
23 DIST patch-5.6-rc2.patch 40918846 BLAKE2B 72e67ad7b6766989cb826d9c54fc3cc1937f33c4a8225956fc331275b4feb385b79c4ba5d77acd67773d064c5e3a20e3006937a2fcaf761dd3ef0ff358780431 SHA512 1448cae996064fe2769fbbc52f6dc4d5b4a24459b37aae6cbf2163902229cae9a6f54347b1f53ce030c7d88a8e8a59463a76f471ec6034259c091b276285380f
24 DIST patch-5.6-rc3.patch 41366122 BLAKE2B 73f606aa9e24d7e0b4030f883007c0ee40810ac5ecc52da90c2e58448f15a909529b50ce5e3e33274fb1514264e1522753b68ce92991449c16ff5fe61f8784a2 SHA512 a49a177ec7d527da1ee97c3e2f9b3fc97055452de1d82d743aa609ef0ef1abc345791e5ed3d28ecf833b5af833c6f9af9b5b9e8d0895ca103483e384f5d924d6
25 +DIST patch-5.6-rc4.patch 41609569 BLAKE2B 1bcd1a93270b59224459c24a9808b84d872713c239f82a0c4b0aba71e9856b12598764a5c14ca410365e7d6461808f4d7a677e57e3423c910b5f1118edc6ea0c SHA512 46f9f16855065e1bd090b3520f7b7e55bdeab2ddf12b931d3b78e3e00872a070cb313dd7c25eb7631e34bd6bfeedefacca84f34927a64ae34c5251a8194182aa
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.6_rc4.ebuild b/sys-kernel/git-sources/git-sources-5.6_rc4.ebuild
28 new file mode 100644
29 index 00000000000..4b09cc629ca
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.6_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.5"
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 ~sh ~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 +}