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, 13 Jan 2019 23:04:02
Message-Id: 1547420630.8bc516fb0808c46b35e73ff6c1cf49ccd5faa6bc.mpagano@gentoo
1 commit: 8bc516fb0808c46b35e73ff6c1cf49ccd5faa6bc
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 13 23:03:39 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 13 23:03:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc516fb
7
8 sys-kernel/git-sources: Linux patch 5.0-rc2
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11 Package-Manager: Portage-2.3.54, Repoman-2.3.11
12
13 sys-kernel/git-sources/Manifest | 1 +
14 sys-kernel/git-sources/git-sources-5.0_rc2.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 a317b800002..5ed9b0d0dd2 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -1,2 +1,3 @@
22 DIST linux-4.20.tar.xz 104257836 BLAKE2B fb52cad2897da319299486fa8c3b9415cd0aee0842dbf353a5b269720dcb902db407bb55dd95a77b212dcb4a488c15363d561f3649d6bd16885561f2466d90b1 SHA512 e282399beea5da539701aed2bc131abd5bc74a970dcd344163e9d295106dfd700180e672ed546ae5e55bc6b9ac95efd5ca1de2039015c1b7a6fc9c01ea6583d4
23 DIST patch-5.0-rc1.patch 41507244 BLAKE2B 4d66bc2d6be0f84b02a3baaaba02276d3258d713f882ce48973fd93d1ffb3a99505692af61f7e80f18436ee847d542bb0e3fa9f2df727995bf310f08342676da SHA512 811bf8534c4054fad7faa19e0b8513ce3d7f9d515f3e09c4f7767af0d66fba1995261df08ff0c16518e1ed1c966539d9d1e55501e7a89b46773e859241b8ad29
24 +DIST patch-5.0-rc2.patch 41975987 BLAKE2B ddeb47fa996f2f84a9c9f1c81177d09035aceef0447cbe426d494c6a48d6fe9d650cec6776fb3e767d5f1bc0a8bd8a6eb193f598b7b547ee038dfcfe063bc9f3 SHA512 7e615b21a7f1ed3df5a13b84a4e07f5b7c73910f146b86185fd50bb6adb9a87021c7dabefddbe8c1e00e9a8d89dcfa94bf50b8c012bba4c80da05343de8fa77e
25
26 diff --git a/sys-kernel/git-sources/git-sources-5.0_rc2.ebuild b/sys-kernel/git-sources/git-sources-5.0_rc2.ebuild
27 new file mode 100644
28 index 00000000000..10cee793e44
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-5.0_rc2.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +UNIPATCH_STRICTORDER="yes"
37 +K_NOUSENAME="yes"
38 +K_NOSETEXTRAVERSION="yes"
39 +K_NOUSEPR="yes"
40 +K_SECURITY_UNSUPPORTED="1"
41 +K_BASE_VER="4.20"
42 +K_EXP_GENPATCHES_NOUSE="1"
43 +K_FROM_GIT="yes"
44 +ETYPE="sources"
45 +CKV="${PVR/-r/-git}"
46 +
47 +# only use this if it's not an _rc/_pre release
48 +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
49 +inherit kernel-2
50 +detect_version
51 +
52 +DESCRIPTION="The very latest -git version of the Linux kernel"
53 +HOMEPAGE="https://www.kernel.org"
54 +SRC_URI="${KERNEL_URI}"
55 +
56 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
57 +IUSE=""
58 +
59 +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
60 +experimental nature. If you have any issues, try a matching vanilla-sources
61 +ebuild -- if the problem is not there, please contact the upstream kernel
62 +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to
63 +report the problem so it can be fixed in time for the next kernel release."
64 +
65 +RDEPEND=""
66 +DEPEND="${RDEPEND}
67 + >=sys-devel/patch-2.7.5"
68 +
69 +pkg_postinst() {
70 + postinst_sources
71 +}