diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-07-17 18:10:27 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-07-17 18:11:29 -0400 |
commit | d3b272064005b04e55072ee57100ce7eeb14b9f3 (patch) | |
tree | 67f4f822be66ab150168cabff14a06799df3f289 /sys-kernel/git-sources | |
parent | dev-python/pyside2: drop to maintainer-needed (diff) | |
download | gentoo-d3b272064005b04e55072ee57100ce7eeb14b9f3.tar.gz gentoo-d3b272064005b04e55072ee57100ce7eeb14b9f3.tar.bz2 gentoo-d3b272064005b04e55072ee57100ce7eeb14b9f3.zip |
sys-kernel/git-sources: add 5.19_rc7
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'sys-kernel/git-sources')
-rw-r--r-- | sys-kernel/git-sources/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-5.19_rc7.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index 8215fa3222a2..cfc04995acfe 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -5,3 +5,4 @@ DIST patch-5.19-rc3.patch 91707998 BLAKE2B 838fb540ad60b1e6f90e90d873d470ae6defe DIST patch-5.19-rc4.patch 92086340 BLAKE2B fec8a8ca4dc1f25f6f06c1b7b2031b9e5f40b4b6ef56effb9a6150ba88beda69ebe3a88cb5bd00ba8548490d3b98b573482a6cf5dc5ec2b8b006d61b67317279 SHA512 9a4f7b207d31e2a2299c47de8f3fbb01558512ebe899af132eb6b711a3dc92d57568b9479b559b4e1d1a7eb59c5731afe38673eb13d09b250ee8a3df2d7e4d4c DIST patch-5.19-rc5.patch 92286884 BLAKE2B 869cd7384fe6d7cb2752f7144b1fc8a030d1721e2502c0e4c20888b117d22c6411ea568852aa9e58459477f3bcea0b40762ec2bc37e1cf6e4467ef192223f4ed SHA512 237f3be30596050bf0654356511a77453e661e2724b67de9f3ba91db5260e30b5685cedc796f6ab39d5c28faf40c25ebf168f8153c95c9ee71e17af4a20378cf DIST patch-5.19-rc6.patch 92531798 BLAKE2B 6298e7c38d27c7711176d24ab82ef8751aaf15769ed77081805ad515e495b9461e08df5a1aff29f9305895fceb03b592b8596eb269405634a057e5bd3a66b657 SHA512 5f893e2395dfb8049993a577d764856e005fb8561a6a7a162145be963a9d83ad987f1ac45b05235249d35510f37b090664a2480a08da78083c45380ae5c3501f +DIST patch-5.19-rc7.patch 92848147 BLAKE2B 732f15e4a6d81ec23a001064410cab9591e71f67d6a11cbee12d6274a9e72ffcc53330bc92b66f9b6dbbcd21bfdf72edb8d9b736743434b7d14f74b3b1ef7da3 SHA512 3786cf805de3e83aeb690d5cbfe9cfe3cad4993649bc4e2eebade6952a6d7d15aa4c0039a1b3aa77d93d131d2b20d7f22f227c41149871616912d0c42d6526a1 diff --git a/sys-kernel/git-sources/git-sources-5.19_rc7.ebuild b/sys-kernel/git-sources/git-sources-5.19_rc7.ebuild new file mode 100644 index 000000000000..64a9dd30df4c --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.19_rc7.ebuild @@ -0,0 +1,41 @@ +# 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.18" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +K_NODRYRUN="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 +} |