diff options
author | Karl Linden <karl.j.linden@gmail.com> | 2018-05-16 09:48:06 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-19 20:36:45 -0400 |
commit | 3be98a20ec267f8258658a4573bbb306af687a07 (patch) | |
tree | e9ce3ba17fb4b9794049b9321b39e927aef5a2a7 /sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild | |
parent | x11-terms/terminology: remove 1.2.0 (diff) | |
download | gentoo-3be98a20ec267f8258658a4573bbb306af687a07.tar.gz gentoo-3be98a20ec267f8258658a4573bbb306af687a07.tar.bz2 gentoo-3be98a20ec267f8258658a4573bbb306af687a07.zip |
sys-kernel/rt-sources: version bump to 4.4.131_p148
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8428
Diffstat (limited to 'sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild')
-rw-r--r-- | sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild b/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild new file mode 100644 index 000000000000..1ca2170247ac --- /dev/null +++ b/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +KEYWORDS="~amd64" + +HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/" + +inherit versionator + +CKV="$(get_version_component_range 1-3)" +K_SECURITY_UNSUPPORTED="1" +K_DEBLOB_AVAILABLE="1" +RT_PATCHSET="${PV/*_p}" + +inherit kernel-2 +detect_version + +K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}" +RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz" +RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \ + mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}" + +DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the CONFIG_PREEMPT_RT patch" +SRC_URI="${KERNEL_URI} ${RT_URI}" + +KV_FULL="${PVR/_p/-rt}" +S="${WORKDIR}/linux-${KV_FULL}" + +UNIPATCH_LIST="${DISTDIR}/${RT_FILE}" +UNIPATCH_STRICTORDER="yes" + +PATCHES=( + "${FILESDIR}"/rt-sources-posix-printf.patch # 627068 +) + +src_prepare() { + default + + # 627796 + sed \ + "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \ + -i "${S}/kernel/Kconfig.preempt" +} + +pkg_postinst() { + kernel-2_pkg_postinst + ewarn + ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any way." + ewarn "If you need support, please contact the RT project developers directly." + ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with" + ewarn "the ebuilds." + ewarn +} + +K_EXTRAEINFO="For more info on rt-sources and details on how to report problems, see: \ +${HOMEPAGE}." |