diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-05-03 18:14:22 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-05-03 18:14:22 -0400 |
commit | df152fce390c9af1b61593d166f758069837bc27 (patch) | |
tree | 45c136384f9c899dbeee37653f2624ef276c86fe /sys-kernel | |
parent | dev-libs/openssl: add 3.0.3 (diff) | |
download | gentoo-df152fce390c9af1b61593d166f758069837bc27.tar.gz gentoo-df152fce390c9af1b61593d166f758069837bc27.tar.bz2 gentoo-df152fce390c9af1b61593d166f758069837bc27.zip |
sys-kernel/git-sources: add 5.18_rc5
Closes: https://bugs.gentoo.org/842432
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.18_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 5933a5fa2228..46e10dac72e1 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -3,3 +3,4 @@ DIST patch-5.18-rc1.patch 112419200 BLAKE2B 1a5b4ff89c28f3ef798b2c6f5019b6a7e04d DIST patch-5.18-rc2.patch 112841658 BLAKE2B 8419291fadcf91225db3d946ab0aa4f312101ff85653c17422d338586342acb9ed7227899fd2b4f1b1771f907f822eadf8bcff15b6d62bb9784f455ba773861f SHA512 ebab6803bfd9c3312306e97577af8dcc166fabed0bdd8e76405ee0c9118ca7cf50f83b9d2c015d2644db9206f1843142c08245f4c428f4e78d7efd0fe6024684 DIST patch-5.18-rc3.patch 113219039 BLAKE2B 53b7e45c5d9b87286509f727e6edc3f455d2e424333e97ac75314a901d908950d84b99d7f289c825026537f4d0a34a818c346aa3c89d4a6e2335924e5a77bc67 SHA512 90c13f5584d64a4963e92ef50bd858771c92903c3c743b7b8e139c2e7a5164b997bb0b801545d732a499f3e544dd216d2717621bd21ac9962ba1850bdd32b721 DIST patch-5.18-rc4.patch 113439466 BLAKE2B e1c09d06a721c5bf34d3ed5d2b760032947a39d8bd09aaba99c1cd1fe21f40bd720cf5613672f35ee8890358ea5bd317b699bcf20348fe11666bf91fd2d73138 SHA512 c3ae845310be78d63a09983ce5815d41d2e18ad8be87e21048a28549bde8bc61fef268b00e35da645be633a3aba825491406944b1e0a1ff33ebb79adc5cbda9e +DIST patch-5.18-rc5.patch 113766752 BLAKE2B f0a10b3b14c7ec52ee330679dcea0f0a452226f3f6524177ae73f9a3e248380848cc0f0b9324a0b1b8705c02c087e8650376adf4f6f4459071e967d478789646 SHA512 e53d0d0346300d2ae3db66314464a52afcf1da5eb19a5236872f5dc226782e4005b879d28971ff308e6ba6833111fd2bd575cd443f1b5ad85b54d95897810ef4 diff --git a/sys-kernel/git-sources/git-sources-5.18_rc5.ebuild b/sys-kernel/git-sources/git-sources-5.18_rc5.ebuild new file mode 100644 index 000000000000..1b58d3fd64da --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.18_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.17" +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 +} |