diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-08-03 18:21:15 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-08-03 22:06:03 +0200 |
commit | 2d52f6ab3ffaa564cc6d0f3da6225a39049e8633 (patch) | |
tree | 8d8a85eca378d87b4811d056031fca21ac7ed875 /sys-kernel/kpatch | |
parent | package.mask: Last rite sys-kernel/openvz-sources, #580516 (diff) | |
download | gentoo-2d52f6ab3ffaa564cc6d0f3da6225a39049e8633.tar.gz gentoo-2d52f6ab3ffaa564cc6d0f3da6225a39049e8633.tar.bz2 gentoo-2d52f6ab3ffaa564cc6d0f3da6225a39049e8633.zip |
sys-kernel/kpatch: Remove old
Diffstat (limited to 'sys-kernel/kpatch')
-rw-r--r-- | sys-kernel/kpatch/kpatch-0.4.0.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sys-kernel/kpatch/kpatch-0.4.0.ebuild b/sys-kernel/kpatch/kpatch-0.4.0.ebuild deleted file mode 100644 index a43c52353b3d..000000000000 --- a/sys-kernel/kpatch/kpatch-0.4.0.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit linux-info linux-mod flag-o-matic - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/dynup/${PN}.git" -else - SRC_URI="https://github.com/dynup/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="Dynamic kernel patching for Linux" -HOMEPAGE="https://github.com/dynup/kpatch" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="examples +modules test" - -RDEPEND=" - app-crypt/pesign - dev-libs/openssl:0= - sys-libs/zlib - sys-apps/pciutils - sys-libs/ncurses:0 - sys-apps/yum" -DEPEND=" - ${RDEPEND} - dev-libs/elfutils - sys-devel/bison" - -pkg_pretend() { - if kernel_is gt 3 9 0; then - if ! linux_config_exists; then - eerror "Unable to check the currently running kernel for kpatch support" - eerror "Please be sure a .config file is available in the kernel src dir" - eerror "and ensure the kernel has been built." - else - # Fail to build if these kernel options are not enabled (see kpatch/kmod/core/Makefile) - CONFIG_CHECK="FUNCTION_TRACER HAVE_FENTRY MODULES SYSFS KALLSYMS_ALL" - ERROR_FUNCTION_TRACER="CONFIG_FUNCTION_TRACER must be enabled in the kernel's config file" - ERROR_HAVE_FENTRY="CONFIG_HAVE_FENTRY must be enabled in the kernel's config file" - ERROR_MODULES="CONFIG_MODULES must be enabled in the kernel's config file" - ERROR_SYSFS="CONFIG_SYSFS must be enabled in the kernel's config file" - ERROR_KALLSYMS_ALL="CONFIG_KALLSYMS_ALL must be enabled in the kernel's config file" - fi - else - eerror - eerror "kpatch is not available for Linux kernels below 4.0.0" - eerror - die "Upgrade the kernel sources before installing kpatch." - fi - - check_extra_config -} - -src_prepare() { - replace-flags '-O?' '-O1' - default -} - -src_install() { - unset ARCH - emake DESTDIR="${D}" all install - einstalldocs -} |