From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E0D6139694 for ; Thu, 3 Aug 2017 20:06:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8195E0F6A; Thu, 3 Aug 2017 20:06:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5EC4E0F6A for ; Thu, 3 Aug 2017 20:06:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D1893418E6 for ; Thu, 3 Aug 2017 20:06:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1102C75DD for ; Thu, 3 Aug 2017 20:06:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1501790763.2d52f6ab3ffaa564cc6d0f3da6225a39049e8633.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/kpatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/kpatch/kpatch-0.4.0.ebuild X-VCS-Directories: sys-kernel/kpatch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2d52f6ab3ffaa564cc6d0f3da6225a39049e8633 X-VCS-Branch: master Date: Thu, 3 Aug 2017 20:06:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e44bb655-26e4-415e-9458-d8f29f1f6d2b X-Archives-Hash: 1fa41c6eb0591728d2f72eb7f1742578 commit: 2d52f6ab3ffaa564cc6d0f3da6225a39049e8633 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 3 16:21:15 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 3 20:06:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d52f6ab sys-kernel/kpatch: Remove old sys-kernel/kpatch/kpatch-0.4.0.ebuild | 69 ----------------------------------- 1 file changed, 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 a43c52353b3..00000000000 --- 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 -}