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, 10 Dec 2018 00:37:05
Message-Id: 1544402211.8705b6973349f9bfd5c2bc19e0d96ea85b3ee35b.mpagano@gentoo
1 commit: 8705b6973349f9bfd5c2bc19e0d96ea85b3ee35b
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 10 00:36:37 2018 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 10 00:36:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8705b697
7
8 sys-kernel/git-sources: Linux patch 4.20-rc6
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-4.20_rc6.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 c405998b278..846cf492bf0 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -4,3 +4,4 @@ DIST patch-4.20-rc2.patch 48404086 BLAKE2B 12646687c66d6374aaa5207770e39386b07bc
22 DIST patch-4.20-rc3.patch 48529229 BLAKE2B 2038039535eaf2e665b37b97d445f04c059a0111ec4d2da706b101f7a8b1dde00ea754f31266431c7bbe5d7a6fc5143b44486fc636c7b2e58181a88308838cd2 SHA512 4db0be60f09f19ae0cfa141bea43fd361bd307edafdd92d8c3418e3944120b01204b4e683c723f583318849336f4fe465309f9e854748b2c06c7330dfcb5a327
23 DIST patch-4.20-rc4.patch 48770023 BLAKE2B 42f4c2d9e021752708587f582b4b72bfc2d01876e366ca1c8e143e0eb1f7d453408e74246162cbdf0ca8482821e152d51a0ead50154d7d902b6953ce4ee975b3 SHA512 2b16a9deb7e5e8b80bf652e42672f4e60e81b2f6cab6928e8bed15bfd07233970269a6831621827b43b5340f132a25f161d50f503aa80f37014e901437fdea7c
24 DIST patch-4.20-rc5.patch 49157710 BLAKE2B 81a8c3fdb6b0e9a11e1d23c9f11dd9ab7e9fd021de4c1bc8331c3c07e6ac403111abe1921f69d7011e323f46b9e819e502c5cfb20b3358615b8a6116a5ff4b59 SHA512 1cac308f65df4b4627e836766d2faeb901cbbf4a7193a6097b796f5c179e02a1c07ceab9935a3c4d1d22ec75b46008321cb5e57862ba1bc43579fda2b826b337
25 +DIST patch-4.20-rc6.patch 49410279 BLAKE2B dc81a847dff97700a2fceff11371a8c98e900949467d930d9b602e68b78282fb818bfa527d722d8911fc0f4930f9b7defb2b9dd18ad56405e06ab6fa09288828 SHA512 72412e030699e7079e66062dc0d1ceb91b6ce59ca4b259c58b902bef7935697f5bfbbf4332246b3a082d13765fa7e5c32db114e999bd6011e93f8a9461d8bcec
26
27 diff --git a/sys-kernel/git-sources/git-sources-4.20_rc6.ebuild b/sys-kernel/git-sources/git-sources-4.20_rc6.ebuild
28 new file mode 100644
29 index 00000000000..54e27e6f6a7
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-4.20_rc6.ebuild
32 @@ -0,0 +1,40 @@
33 +# Copyright 1999-2018 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.19"
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 +}