diff options
author | Mike Pagano <mpagano@gentoo.org> | 2024-04-07 18:02:41 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2024-04-07 18:02:41 -0400 |
commit | f3dd89cc21408c7d3cc0e51626b735bd908095aa (patch) | |
tree | dffec379e13ce55c28bae7431acdcd2f670ba13f /sys-kernel/git-sources | |
parent | media-libs/gst-plugins-bad: fix bz2 build, drop msdk plugin, cleanups, touchups (diff) | |
download | gentoo-f3dd89cc21408c7d3cc0e51626b735bd908095aa.tar.gz gentoo-f3dd89cc21408c7d3cc0e51626b735bd908095aa.tar.bz2 gentoo-f3dd89cc21408c7d3cc0e51626b735bd908095aa.zip |
sys-kernel/git-sources: add 6.9_rc3
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-6.9_rc3.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index cb9fb6eb27ff..9a83e342dfc8 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -1,3 +1,4 @@ DIST linux-6.7.tar.xz 141406528 BLAKE2B cecdbd19905e43e485ab73b352ced18b37f2a138c97a6956cadcda5d3d271001117dc1cf896b166ff019fc7f405f9539e2ed0d6112b0890efb04d182adf4fd0e SHA512 de06de556191614bd9daf077ae239360352a402bab407748e67f1e5108c92fd933e451707840ab22fe0f9976db3d1e1b60ca9d41cf894f015ca09b3f652b74ad DIST patch-6.9-rc1.patch 96098154 BLAKE2B c7ab938924bf2b159da4ef02730ce3e51beab9a9267419e195861a5de4962facca4937ce1f8d9451d99723e8af30b2cd6c20f01868cf9a9e935d225cad462ff1 SHA512 2f094d30277ae51bc9451565ba3e0e03cb12f331239f974bf7713fbd17b4aac73722e46b425aaedd22d42b73767b234f26f8e9e24cac8ad5d5a7e0e5aeb94638 DIST patch-6.9-rc2.patch 96447882 BLAKE2B 3b5afddc2d45f37f99c9709e741a39ce91a65b54d1c1966a58b812aecba060fc75d9ac218cfd2e6aa51ac9737ab357acdafb19e9d112a6d7908fff08c0f5817e SHA512 46166b7ca352a78368e3d2d29eed60986c0acbb9467f1af60a1000fe0da925dd824bce11906b2555e7a27b9bbcc8546850038a6c90f3dc1260910560cd48e4f6 +DIST patch-6.9-rc3.patch 96996955 BLAKE2B e95fb3392051c331776e0c4719255dab156f648bf80c2e1c5f3e7478975cb59b9562eb9d60c356ea693388a69bee054eef3359a8fba2a3a979c82bc1b8d5b13a SHA512 7af4288187a2751f78c72e67e27d0b8237c365114ce0b6f57fd0eb91e9b1c25b394f73ffe717c094fee53d89d073aca49af1479abc4dfe80515d7f2c16b11a46 diff --git a/sys-kernel/git-sources/git-sources-6.9_rc3.ebuild b/sys-kernel/git-sources/git-sources-6.9_rc3.ebuild new file mode 100644 index 000000000000..ca760a458b08 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-6.9_rc3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2024 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="6.7" +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 ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86" + +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." + +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.6-r4" + +pkg_postinst() { + postinst_sources +} |