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, 11 Feb 2019 00:43:31
Message-Id: 1549845799.8519268a42de3e30e6f17bb1da9400c7d79d0276.mpagano@gentoo
1 commit: 8519268a42de3e30e6f17bb1da9400c7d79d0276
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 11 00:43:10 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 11 00:43:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8519268a
7
8 sys-kernel/git-sources: Linux patch 5.0-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-5.0_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 253a08821c2..a4487a32cf8 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -4,3 +4,4 @@ DIST patch-5.0-rc2.patch 41975987 BLAKE2B ddeb47fa996f2f84a9c9f1c81177d09035acee
22 DIST patch-5.0-rc3.patch 42400427 BLAKE2B 53a5f97b618168122ac77a16323e45ac501acb2f4a8f4b8d015f4fa31d25874ec98b32b751b3b6ca5857c05cbd876fcabfd57f2616fe55a12b86565288453ca3 SHA512 e5d461982879935633bd0b35e94001a45d2bf71181f86f0871de2697a0aed5c1d19290089feb7eaf919f58c13b61878abcf0403239c66d96d0e7c05a658a99ca
23 DIST patch-5.0-rc4.patch 42678556 BLAKE2B 0b1610bb3bd444d70927ed64806ab3dd9e994de0f87c4d00a2b00c24158594b9595901a6943db4e31ebf5058d9587e2133e0a4cb9bde96580dbf0720199353ca SHA512 4a531f46ebdc2ec0f39eaddc3b3362c792e235d591ca58571a9804ac180c546a34cada2c05bcc46828490d0563a0fdebe2b0932bf978f8762340019c61b1afc2
24 DIST patch-5.0-rc5.patch 42841821 BLAKE2B f7e27c9e475480245484ca22bbcfdeaa258e3bd7f27d95c1e1508c8d910d4f36f8a984ebc45855ea660d828eebf678ba68358f6dec3b68dd3ded64dd2d1f2ba8 SHA512 04d05fe675d90644606d8c8d19bbf32d912c9ffd670b32abdb72f89492d04d5c4544910fe0f7695978ba6ae34bd41fedab0c7941d8c14cd32112ec6c142568ae
25 +DIST patch-5.0-rc6.patch 43170751 BLAKE2B c88ec1b5be253a9cc6186720dac00d396ec17a22e0654c0d60308877a1a8f31669b674ad686b3f4c1895cf9a84b8cbd4c5f460dfe16c93f3323ac7a5d42c7780 SHA512 2d22e2a4bf8eb0eabc7401eaa741432c38314fd00133f9f04dc212e4c1e2b02a5ed9f42f1438d9b3ee429fb1bc18e14f7d18aa9b123dbaa382a4c249f88f9ed3
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.0_rc6.ebuild b/sys-kernel/git-sources/git-sources-5.0_rc6.ebuild
28 new file mode 100644
29 index 00000000000..10cee793e44
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.0_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="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 +}