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, 18 Nov 2018 23:20:18
Message-Id: 1542583192.49d1141cc1af71ca97111ab109180d2239fa2b2b.mpagano@gentoo
1 commit: 49d1141cc1af71ca97111ab109180d2239fa2b2b
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 18 23:19:43 2018 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 18 23:19:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d1141c
7
8 sys-kernel/git-sources: Linux patch 4.20-rc3
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_rc3.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 ec0e4b7d14a..222c251c8a3 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -1,3 +1,4 @@
22 DIST linux-4.19.tar.xz 103117552 BLAKE2B 1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0 SHA512 ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
23 DIST patch-4.20-rc1.patch 48053133 BLAKE2B 21b563b992bedb9d9eb0011804cc9d6c862f7e55194c02679e3ec540aa0913ecdfc2dd9769a34b8e2980427fc0e3116743b17516a1aa7607a984dd7ee4bca10e SHA512 04bd50386208ff7f3aecf50c79702368a75aac1d356cc5020d379abd80aff821afd501d05e6fab42cca48bba0593f71442534d9fbc119f1cf0dd056999f78c22
24 DIST patch-4.20-rc2.patch 48404086 BLAKE2B 12646687c66d6374aaa5207770e39386b07bc0a4d445cb92a2cf563a326e49d2d5cf0eeaa805557aac1526b636762be97887a0b466cfcd9e71b02d38b9dd97b1 SHA512 f41189be7659962e451eedd7e057420fe7744ca82608260b2212bf97bcc2e59fd143c3c261e1f1a35e4fff80e500c2b436a46b50c209c7cdceb5ef5cc9fa628f
25 +DIST patch-4.20-rc3.patch 48529229 BLAKE2B 2038039535eaf2e665b37b97d445f04c059a0111ec4d2da706b101f7a8b1dde00ea754f31266431c7bbe5d7a6fc5143b44486fc636c7b2e58181a88308838cd2 SHA512 4db0be60f09f19ae0cfa141bea43fd361bd307edafdd92d8c3418e3944120b01204b4e683c723f583318849336f4fe465309f9e854748b2c06c7330dfcb5a327
26
27 diff --git a/sys-kernel/git-sources/git-sources-4.20_rc3.ebuild b/sys-kernel/git-sources/git-sources-4.20_rc3.ebuild
28 new file mode 100644
29 index 00000000000..54e27e6f6a7
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-4.20_rc3.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 +}