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, 22 Aug 2021 21:42:46
Message-Id: 1629668559.03492fa7bd267b5f54f0ae4d4f4d2bf47414ed3b.mpagano@gentoo
1 commit: 03492fa7bd267b5f54f0ae4d4f4d2bf47414ed3b
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 21:42:32 2021 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 21:42:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03492fa7
7
8 sys-kernel/git-sources: Linux patch 5.14-rc7
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
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.14_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 80bd4cfc743..09a4516b00a 100644
19 --- a/sys-kernel/git-sources/Manifest
20 +++ b/sys-kernel/git-sources/Manifest
21 @@ -5,3 +5,4 @@ DIST patch-5.14-rc3.patch 69715862 BLAKE2B bf826bfaf1968b2da2f074bb16ac82237c41d
22 DIST patch-5.14-rc4.patch 69955713 BLAKE2B b4e3051cbba62cf937072205c29116362578be25dec7d5b25d020ffb4e634855be2771c152a36b1d40249692aceed0e70edc25479aad1ac99399dbec878fd97b SHA512 0d62ef70193c4bcb2b13637878e5c6d163d59cdcf00ec1447fe356e86853735e460706aba783a1942de0f32dc5b3fc8d95a012ff6cdcb6ab0d398556a2aa3bf4
23 DIST patch-5.14-rc5.patch 70193505 BLAKE2B 3439ab433227c4daca6b4c8dc4f357fce38689f6af669554559294bba3491566ae1bdd4c703bafb96c84f5a2028926b35f253c4f379dff37d9899a0436e0424d SHA512 1752aa29cefbce5baa3e89307c0b87d09a0db29330dab58ad33e9866bc31e2378a9a6cdcb0fd4b05b9794f934c30353a558420527d853907266f8bfb535f30a5
24 DIST patch-5.14-rc6.patch 70415935 BLAKE2B d1c1777b24e3a99b8acf7a79d5490e5f5222e77ea9bba525677fdeac22f5143d45f8cc04b78f6f800c924a39965e21871dd9a7b3d8cbc36331bcc914f5b8f9d2 SHA512 4f4544b2dda82e1b556bf1c24de27965eba9ec6875ff4950b87775cafa893cb629c5e25603be78d36426c2f35838d4be60c4ff72fe8664eb0f8dfce8a6cceee1
25 +DIST patch-5.14-rc7.patch 70593573 BLAKE2B 47396856eb7ed4f8fff1341d8280124a0211a2fb6192e60dd5f735827a0b3e4468beef187e74c45b1701254da3b7d3a24b82a1f371b95fbb523ed62f307c448a SHA512 c9c7d7135fbe704c5cf7c08fcceb4097f910c82f6f1c64b174640e4ebf9a325539186148652c8d9014814364b72f1ce25170816858119413ffc795dbcbd4bb3e
26
27 diff --git a/sys-kernel/git-sources/git-sources-5.14_rc7.ebuild b/sys-kernel/git-sources/git-sources-5.14_rc7.ebuild
28 new file mode 100644
29 index 00000000000..d43c5c0ce00
30 --- /dev/null
31 +++ b/sys-kernel/git-sources/git-sources-5.14_rc7.ebuild
32 @@ -0,0 +1,40 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
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.13"
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 ~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 +}