From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-979204-garchives=archives.gentoo.org@lists.gentoo.org> 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 1139D1396D9 for <garchives@archives.gentoo.org>; Thu, 19 Oct 2017 09:15:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1BD0E0BF4; Thu, 19 Oct 2017 09:15:43 +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 821A0E0B73 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Oct 2017 09:15:43 +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 1CAE333BEA7 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Oct 2017 09:15:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82A2D826 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Oct 2017 09:15:40 +0000 (UTC) From: "Lars Wendler" <polynomial-c@gentoo.org> 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" <polynomial-c@gentoo.org> Message-ID: <1508404539.a6ef526c60b1f809f9d008e5ecdba9cb28b795c1.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: a6ef526c60b1f809f9d008e5ecdba9cb28b795c1 X-VCS-Branch: master Date: Thu, 19 Oct 2017 09:15:40 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c95295bb-5b21-43a0-8b05-5697ceb8e16c X-Archives-Hash: 8a9ad3827ee947e4d85709d7f7b68330 commit: a6ef526c60b1f809f9d008e5ecdba9cb28b795c1 Author: Sergey Alirzaev <zl29ah <AT> gmail <DOT> com> AuthorDate: Wed Oct 18 22:36:00 2017 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Thu Oct 19 09:15:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ef526c sys-apps/kexec-tools: update the live ebuild git -> https and make it build Closes: https://github.com/gentoo/gentoo/pull/5979 sys-apps/kexec-tools/kexec-tools-9999.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sys-apps/kexec-tools/kexec-tools-9999.ebuild b/sys-apps/kexec-tools/kexec-tools-9999.ebuild index f3f01574c05..784f7a48e98 100644 --- a/sys-apps/kexec-tools/kexec-tools-9999.ebuild +++ b/sys-apps/kexec-tools/kexec-tools-9999.ebuild @@ -4,9 +4,8 @@ EAPI=6 if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git" - AUTOTOOLS_AUTORECONF=true + inherit git-r3 autotools + EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git" else SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz" KEYWORDS="~amd64 ~arm64 ~x86" @@ -42,7 +41,11 @@ pkg_setup() { src_prepare() { default - elibtoolize + if [[ ${PV} == "9999" ]] ; then + eautoreconf + else + elibtoolize + fi } src_configure() {