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 BE27E139695 for ; Tue, 1 Aug 2017 15:10:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3DE11FC0F8; Tue, 1 Aug 2017 15:10:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C9AD51FC131 for ; Tue, 1 Aug 2017 15:10:27 +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 7BC973417DF for ; Tue, 1 Aug 2017 15:10:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E224C7583 for ; Tue, 1 Aug 2017 15:10:24 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1501600127.2866f4373027f71ee945cbe06a13f23fc44ac846.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kexec-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/kexec-tools/kexec-tools-9999.ebuild X-VCS-Directories: sys-apps/kexec-tools/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 2866f4373027f71ee945cbe06a13f23fc44ac846 X-VCS-Branch: master Date: Tue, 1 Aug 2017 15:10:24 +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: b2010cc8-1e33-49a7-9cb7-d41b590c2695 X-Archives-Hash: 4662314821f3e90ddb21cddb72371d0d commit: 2866f4373027f71ee945cbe06a13f23fc44ac846 Author: Lars Wendler gentoo org> AuthorDate: Tue Aug 1 15:08:47 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Aug 1 15:08:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2866f437 sys-apps/kexec-tools: Sync live ebuild. Package-Manager: Portage-2.3.6, Repoman-2.3.3 Signed-off-by: Lars Wendler gentoo.org> sys-apps/kexec-tools/kexec-tools-9999.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/sys-apps/kexec-tools/kexec-tools-9999.ebuild b/sys-apps/kexec-tools/kexec-tools-9999.ebuild index fb38edc70a0..f3f01574c05 100644 --- a/sys-apps/kexec-tools/kexec-tools-9999.ebuild +++ b/sys-apps/kexec-tools/kexec-tools-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 if [[ ${PV} == "9999" ]] ; then inherit git-r3 @@ -9,10 +9,10 @@ if [[ ${PV} == "9999" ]] ; then AUTOTOOLS_AUTORECONF=true else SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~arm64 ~x86" fi -inherit autotools-utils linux-info systemd +inherit libtool linux-info systemd DESCRIPTION="Load another kernel from the currently executing Linux kernel" HOMEPAGE="https://kernel.org/pub/linux/utils/kernel/kexec/" @@ -40,6 +40,11 @@ pkg_setup() { export ASFLAGS="${CCASFLAGS}" } +src_prepare() { + default + elibtoolize +} + src_configure() { local myeconfargs=( $(use_with booke) @@ -47,15 +52,15 @@ src_configure() { $(use_with xen) $(use_with zlib) ) - autotools-utils_src_configure + econf "${myeconfargs[@]}" } src_install() { - autotools-utils_src_install + default dodoc "${FILESDIR}"/README.Gentoo - newinitd "${FILESDIR}"/kexec.init-2.0.12 kexec + newinitd "${FILESDIR}"/kexec.init-2.0.13-r1 kexec newconfd "${FILESDIR}"/kexec.conf-2.0.4 kexec insinto /etc