diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-02-20 17:47:08 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-02-20 17:47:08 -0500 |
commit | 00d945d4807e955820af61e1024639e41a2bf444 (patch) | |
tree | 50a1b7a2670f3eb5f77373cf428b93801f5c4321 /sys-kernel | |
parent | dev-python/ubelt: Bump to 1.0.1 (diff) | |
download | gentoo-00d945d4807e955820af61e1024639e41a2bf444.tar.gz gentoo-00d945d4807e955820af61e1024639e41a2bf444.tar.bz2 gentoo-00d945d4807e955820af61e1024639e41a2bf444.zip |
sys-kernel/git-sources: Linux patch 5.17-rc5
Package-Manager: Portage-3.0.30, Repoman-3.0.3
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.17_rc5.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index 4e965353aa2e..2187a52576f4 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -3,3 +3,4 @@ DIST patch-5.17-rc1.patch 36453946 BLAKE2B a600f68e504c7602098dd0bb26f405b1bca31 DIST patch-5.17-rc2.patch 36928215 BLAKE2B 3ae1f09eeb870fda422db561ca1adfd68c7ea96ddcd47672028d6ccc44c49eca5fe53e77b0173bd66be04883f7dc0a65addd55b435dd0f8d4fb7418a21d6a8d2 SHA512 dd10a6c88da50ca9e0a37aa1377b86122c56a50a8c608a02dd425ac23ee20418b29fe2332981bdffa45d2ac44b3b4a9e294fb786ba7c13c01ec821b6915cdb56 DIST patch-5.17-rc3.patch 37376734 BLAKE2B 40564254d729bdad9860b48a51657b6a3cef681b9f4add643d7a7e8bd80511cc3da9ec7257acd355a23cde8f1c8e51286560a168ad951100c9139057518d64f6 SHA512 d5c6444f73a1d0099ed9c3f1c35e7d0e6df487b9897d57b5f9d4d787df210dd8a2fb58c428a13844c5c846007fe5f349860503187690ed83f846b867377d5cf1 DIST patch-5.17-rc4.patch 37600999 BLAKE2B f5839b3f9cf1c7ec4e49ae29d27525a9bce1f244fbfbd30b4b2f9b35761873e74d79a36e4ecb619ce91d04829164b8e347a3c23d66fbef677619f0f8e51498d2 SHA512 54a3e37bad6e223b09bebe97f5188cbbbc38ada271611d817aa2d033895c602bfb989fcd028004507a0ab5063af532d3f5a16424f574f24d78e6962eb460998c +DIST patch-5.17-rc5.patch 37807134 BLAKE2B 26624949169e5f64fd76394e9ef5850f0eb2d71acd562bc7e44db20e7ad3bd178747bfffa99c5d5c54c54c7ada563417e617a5d8e63b077e70b42effe2a825a3 SHA512 e0ce9cc3c1bd1584d59d747f6419c54654d9be0ced307f2328f04ca1684c74e32e38b3dbabc292fffef87ab1813e4e3e0321f3a1e2d971b4cac81577f07ac0f3 diff --git a/sys-kernel/git-sources/git-sources-5.17_rc5.ebuild b/sys-kernel/git-sources/git-sources-5.17_rc5.ebuild new file mode 100644 index 000000000000..b7eedd7884ba --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.17_rc5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.16" +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.6-r4" + +pkg_postinst() { + postinst_sources +} |