diff options
author | Mike Pagano <mpagano@gentoo.org> | 2020-12-06 19:25:14 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2020-12-06 19:25:14 -0500 |
commit | 0b927fc5236c1ac69bb41643fd0c94ce2f5ff01c (patch) | |
tree | bc719e2ef8e85e1e64efd284fc4ceb5c541b0c8b /sys-kernel | |
parent | eclass/distutils-r1: Fix EclassDocMissingFunc (diff) | |
download | gentoo-0b927fc5236c1ac69bb41643fd0c94ce2f5ff01c.tar.gz gentoo-0b927fc5236c1ac69bb41643fd0c94ce2f5ff01c.tar.bz2 gentoo-0b927fc5236c1ac69bb41643fd0c94ce2f5ff01c.zip |
sys-kernel/git-sources: Linux patch 5.10-rc7
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/git-sources/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-5.10_rc7.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index 7dd18e50966f..5671b69ff88c 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -5,3 +5,4 @@ DIST patch-5.10-rc3.patch 65452543 BLAKE2B c93fc460613fc75b323580916376d6300faea DIST patch-5.10-rc4.patch 65892587 BLAKE2B a9ba5ce6f0c9f2a8524bbf65515f8aa7ca023d532ba560fe512d17e9186396f4667dbf0318b1863934fcd47c2276e6f7c58fddc449522000878db4b60227a8b3 SHA512 45b58dc20d56951c1bcb750d2cb6d345552721168b1a40aa2046fc4ad22a9d9695f03fd13ff5c3e5138110986749860589e26507d7e87901916f942e8da0aacd DIST patch-5.10-rc5.patch 66285645 BLAKE2B 13ff435b02128b6eaf4d790190591a09d185a6099856aa748ed029a1b7b8b988f8de3b2deaca680882982ae2348cf6178a2af1a6ac89a0e89756b2650ad6c022 SHA512 08726264447c2d9ac71e2832b0054a998544c44b922cec729aecd3f9158347d3fb59a9d9d899c70dceba5b0d54a81d4d4e9134e5fe4a8b6c767569a4f921043c DIST patch-5.10-rc6.patch 66602796 BLAKE2B 9b056fec355a4a2111df58e6b871d80f93cfd43be47045cd145651de15ea1e2d89af2f6c02327b8d8f5e2c44767764b6e9fb6a9e89680b8d8ce205e2741b7831 SHA512 571a88e88758de5c3a4c9b8f18fd8818b89a5c569f95a06b3b5144fa897af9e1a510e4191d4acb1fb05a282c930507e82b5057d9967e5905ec033223cfb0b604 +DIST patch-5.10-rc7.patch 66768885 BLAKE2B 388b0d3f63f1e4fa582f3ab1bc5840a4efe7f97b5c73d3f5d18b5f2748a6b6fcf2151c23ec16b5bbcaf8a9fb9a731564f66b1fc274d9934aeffb18cf3bca1e14 SHA512 4865fae427b345d8733fb8bf39f9d9a12ffa3f99113d40872c85f7e5914dc92807e930683a11fbbc787ecae0ccac85b016af3a553e225f1031334cc9b1849d87 diff --git a/sys-kernel/git-sources/git-sources-5.10_rc7.ebuild b/sys-kernel/git-sources/git-sources-5.10_rc7.ebuild new file mode 100644 index 000000000000..90316ad99864 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.10_rc7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.9" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +ETYPE="sources" +CKV="${PVR/-r/-git}" + +# only use this if it's not an _rc/_pre release +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" +inherit kernel-2 +detect_version + +DESCRIPTION="The very latest -git version of the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and +experimental nature. If you have any issues, try a matching vanilla-sources +ebuild -- if the problem is not there, please contact the upstream kernel +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to +report the problem so it can be fixed in time for the next kernel release." + +RDEPEND="" +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.5" + +pkg_postinst() { + postinst_sources +} |