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, 25 Feb 2019 12:35:14
Message-Id: 1551098103.da74994786b29da372d50cb252f2e09211bfd9e3.mpagano@gentoo
1 commit: da74994786b29da372d50cb252f2e09211bfd9e3
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 25 12:34:46 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 25 12:35:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da749947
7
8 sys-kernel/git-sources: Linux patch 5.0-rc8
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_rc8.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 ad57a007e97..5721e0ba15b 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -6,3 +6,4 @@ DIST patch-5.0-rc4.patch 42678556 BLAKE2B 0b1610bb3bd444d70927ed64806ab3dd9e994d
22 DIST patch-5.0-rc5.patch 42841821 BLAKE2B f7e27c9e475480245484ca22bbcfdeaa258e3bd7f27d95c1e1508c8d910d4f36f8a984ebc45855ea660d828eebf678ba68358f6dec3b68dd3ded64dd2d1f2ba8 SHA512 04d05fe675d90644606d8c8d19bbf32d912c9ffd670b32abdb72f89492d04d5c4544910fe0f7695978ba6ae34bd41fedab0c7941d8c14cd32112ec6c142568ae
23 DIST patch-5.0-rc6.patch 43170751 BLAKE2B c88ec1b5be253a9cc6186720dac00d396ec17a22e0654c0d60308877a1a8f31669b674ad686b3f4c1895cf9a84b8cbd4c5f460dfe16c93f3323ac7a5d42c7780 SHA512 2d22e2a4bf8eb0eabc7401eaa741432c38314fd00133f9f04dc212e4c1e2b02a5ed9f42f1438d9b3ee429fb1bc18e14f7d18aa9b123dbaa382a4c249f88f9ed3
24 DIST patch-5.0-rc7.patch 43364873 BLAKE2B 8501ec5081cff19d8dad47f9b17e09f68601a58079e8077a304faa036b7577823616f1e6877b7f66fd16708493b972c6ddac4bde9c2c03864256cedb692223d3 SHA512 5429044dad3f17bfae70735ee6a3b062fa3848564979540e096432a6f3bd9459533c799843292b11884373513d0b15239f4fe2fe1f5e0802fddd357117858ecc
25 +DIST patch-5.0-rc8.patch 43587760 BLAKE2B a9f4e114712c35dfa8f75d72399ac25694768a399236862f2739c55abc078f1c1323aacb4b8a607a21f9caec7bfe50c48f918b950ddbaced5fcbfbafdeba8652 SHA512 4cc4437e1fdfed003df3caa8e2196b8c5e2c8f304b0127dcaef7e3f4a4cb1a688ae221c4949b32d4df82a5bd992a0037c9832f0cf1a5bc152e1c9eed4e83a7c3
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.0_rc8.ebuild b/sys-kernel/git-sources/git-sources-5.0_rc8.ebuild
28 new file mode 100644
29 index 00000000000..10cee793e44
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.0_rc8.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 +}