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, 30 Jun 2019 11:14:14
Message-Id: 1561893239.3de9b5fd09b280b9734ee1c8176ec88c1baac69a.mpagano@gentoo
1 commit: 3de9b5fd09b280b9734ee1c8176ec88c1baac69a
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 30 11:13:49 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 30 11:13:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de9b5fd
7
8 sys-kernel/git-sources: Linux patch 5.2-rc7
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 sys-kernel/git-sources/Manifest | 1 +
14 sys-kernel/git-sources/git-sources-5.2_rc7.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 1e5de9689f6..d54f0c4d21b 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -5,3 +5,4 @@ DIST patch-5.2-rc3.patch 56859377 BLAKE2B 15f2fab5ef83a06efbe1a40fc1423d7c4fbd72
22 DIST patch-5.2-rc4.patch 60202893 BLAKE2B 0b87ff128da720388b11243143bb15daaa27db66f363a5c89034b92b0cf5eb9dcdc7f4a6fa78bde409e389600f0361ab6574e2d3eb5318dd91cec6271ff507da SHA512 ae5d8cf7ae969dc5fa30faa0b0f29c783071b45f07fa9e73768095da896a5cea7d91f5545986ea7ce659a5cd09ce861f68df75264565a10f87abde6490fc4a46
23 DIST patch-5.2-rc5.patch 60381150 BLAKE2B b3c86b5feadb357354ad89c24e322bd13b47d0bfe75395312115ba7f8f2edafb3d7bca3b527c63fdf9e9f40d28900900a8861536737655521f450416487c007a SHA512 6cb7282c7f715fcf1c8042ff0e4f33cda5baf69f635fdce49bc6271b7b07dce9e63a7104e44be91402955b20da5617ef0c979907a1007e1fbc4b492f15c93690
24 DIST patch-5.2-rc6.patch 64104387 BLAKE2B 67e56b7074e355b795fb0b1453f1b8d0835737fb08022e755a407253fd4cec4aa5b395920983aa6c59258a11aa5fead544570a48a48b24378fccd81e51754bbd SHA512 6c5c5a7d40a41919dde7d518feadfb9d2af49ec82013135e64b4d767839c31e9da3a570469a1293b75eb0dcbda31906f5087bfaf9145018b706b34fd9e89c70c
25 +DIST patch-5.2-rc7.patch 64215113 BLAKE2B 85c33f7e2e5dbf7071288486d87df9bcbffea3413925f18ba60666548ba2fbb4caf7f2531194819098888875397f17ca38c5d4394cb25798e25347d93351923f SHA512 e51f223becfdbd22ea9aa4a06ddd09d14e1e7898d7e4858bcf5cc1ffa46346ac9b07f9b3c45118aa282f56a9ae9d6668fc3a740f927dd3126c3e54a08e9962d3
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.2_rc7.ebuild b/sys-kernel/git-sources/git-sources-5.2_rc7.ebuild
28 new file mode 100644
29 index 00000000000..8509b233b0a
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.2_rc7.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.1"
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 +}