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 Nov 2019 23:28:01
Message-Id: 1572823671.ec1ddfe403d8fdab4481ff6a00641fc6070fb018.mpagano@gentoo
1 commit: ec1ddfe403d8fdab4481ff6a00641fc6070fb018
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 3 23:27:40 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 3 23:27:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1ddfe4
7
8 sys-kernel/git-sources: Linux patch 5.4-rc6
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
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.4_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 93c40c455f9..5cae3f6c2a7 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -4,3 +4,4 @@ DIST patch-5.4-rc2.patch 64354864 BLAKE2B 864d97e1ed5986448fdb1bc8782e1be236b702
22 DIST patch-5.4-rc3.patch 64816978 BLAKE2B 792d0a5149c03ee81c82a1a59b54f64339c5fada49a81115e303deda82a07b3f5f6f5a38205ad01490fc24e7bf7d4d3937e4dd597b6d367e9ddc5f81728a5f27 SHA512 a370c3093d8bfcb6fc6bacaca9e5eff44c32d14f5b49c534298407f1e2625802f93afd407e3f2c002f86adbb64ef3a97a7d29ced09b79600238029e0375c7b4b
23 DIST patch-5.4-rc4.patch 65188215 BLAKE2B b21830779c7e941ba794fe574a705b292615a83fc59632a6d6bb40cb30dbb51af38879c65e0e8c7cbe8e2b3393f273866b737b86ae79c327f369e6289e082103 SHA512 7f7efd9b0a26c55974e6ce7f979ee1eabce8e9bdf4f5a2392d9c61e8a9a1f00045ddf683c1574e0fb6849dbca8fc79397e7dc2fbeac3d72b68162c8e1f4d0f11
24 DIST patch-5.4-rc5.patch 65413587 BLAKE2B c96d21d762e5cf348bc270459c360ff76cdaa1027a05c55b13db64de1479cf3017b97231450f96bf4e40002b246c9eaf88b0f028d5487298fbfa80c7d7363ed0 SHA512 457827d6877dd8c071437d3def99d23d3c65091cda89908f093b77fb59e3ae22e601b62f6156aa27a484415ce2e6084fee22709ab460ca33a79be5ea038ea105
25 +DIST patch-5.4-rc6.patch 65835147 BLAKE2B e63b88e78069da1dfdb543855e819fafd2c7c694f0d6d3592d289289fed374291a7085fea48aa662f67a294a2b62cba49de74820d1c96123c6f69cc5e1d8fb2f SHA512 59f724e2afd61aeb177a437adb3f8013a8a8bca360ca63a71cb3dc10724ef809ee8ed21c780045223f69be25ab81e89a0d8c18ec531b6ae63eb2b3597d7c2b60
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.4_rc6.ebuild b/sys-kernel/git-sources/git-sources-5.4_rc6.ebuild
28 new file mode 100644
29 index 00000000000..7f3937ff792
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.4_rc6.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="5.3"
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 +}