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, 18 Feb 2019 11:28:20
Message-Id: 1550489287.b1e5e4cd754b1bd6271597c48879a66a38b792ac.mpagano@gentoo
1 commit: b1e5e4cd754b1bd6271597c48879a66a38b792ac
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 18 11:27:59 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 11:28:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e5e4cd
7
8 sys-kernel/git-sources: Linux patch 5.0-rc7
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sys-kernel/git-sources/Manifest | 1 +
14 sys-kernel/git-sources/git-sources-5.0_rc7.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 a4487a32cf8..ad57a007e97 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -5,3 +5,4 @@ DIST patch-5.0-rc3.patch 42400427 BLAKE2B 53a5f97b618168122ac77a16323e45ac501acb
22 DIST patch-5.0-rc4.patch 42678556 BLAKE2B 0b1610bb3bd444d70927ed64806ab3dd9e994de0f87c4d00a2b00c24158594b9595901a6943db4e31ebf5058d9587e2133e0a4cb9bde96580dbf0720199353ca SHA512 4a531f46ebdc2ec0f39eaddc3b3362c792e235d591ca58571a9804ac180c546a34cada2c05bcc46828490d0563a0fdebe2b0932bf978f8762340019c61b1afc2
23 DIST patch-5.0-rc5.patch 42841821 BLAKE2B f7e27c9e475480245484ca22bbcfdeaa258e3bd7f27d95c1e1508c8d910d4f36f8a984ebc45855ea660d828eebf678ba68358f6dec3b68dd3ded64dd2d1f2ba8 SHA512 04d05fe675d90644606d8c8d19bbf32d912c9ffd670b32abdb72f89492d04d5c4544910fe0f7695978ba6ae34bd41fedab0c7941d8c14cd32112ec6c142568ae
24 DIST patch-5.0-rc6.patch 43170751 BLAKE2B c88ec1b5be253a9cc6186720dac00d396ec17a22e0654c0d60308877a1a8f31669b674ad686b3f4c1895cf9a84b8cbd4c5f460dfe16c93f3323ac7a5d42c7780 SHA512 2d22e2a4bf8eb0eabc7401eaa741432c38314fd00133f9f04dc212e4c1e2b02a5ed9f42f1438d9b3ee429fb1bc18e14f7d18aa9b123dbaa382a4c249f88f9ed3
25 +DIST patch-5.0-rc7.patch 43364873 BLAKE2B 8501ec5081cff19d8dad47f9b17e09f68601a58079e8077a304faa036b7577823616f1e6877b7f66fd16708493b972c6ddac4bde9c2c03864256cedb692223d3 SHA512 5429044dad3f17bfae70735ee6a3b062fa3848564979540e096432a6f3bd9459533c799843292b11884373513d0b15239f4fe2fe1f5e0802fddd357117858ecc
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.0_rc7.ebuild b/sys-kernel/git-sources/git-sources-5.0_rc7.ebuild
28 new file mode 100644
29 index 00000000000..10cee793e44
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.0_rc7.ebuild
32 @@ -0,0 +1,40 @@
33 +# Copyright 1999-2019 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="4.20"
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 +}