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 7CBEB139694 for ; Mon, 17 Jul 2017 20:29:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD042E0E06; Mon, 17 Jul 2017 20:29:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 96EC5E0E06 for ; Mon, 17 Jul 2017 20:29:05 +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 5421E341950 for ; Mon, 17 Jul 2017 20:29:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C11947489 for ; Mon, 17 Jul 2017 20:29:02 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1500323317.71734624a5e5aeac1583da4217ea5a1cfa6101df.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kbuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kbuild/kbuild-9999.ebuild X-VCS-Directories: dev-util/kbuild/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 71734624a5e5aeac1583da4217ea5a1cfa6101df X-VCS-Branch: master Date: Mon, 17 Jul 2017 20:29:02 +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: 71a1211e-1f31-41bd-9840-e4fc35d274d2 X-Archives-Hash: f156c9b37c81186bcc76fdf39a69c46a commit: 71734624a5e5aeac1583da4217ea5a1cfa6101df Author: Amy Liffey gentoo org> AuthorDate: Mon Jul 17 20:27:10 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Mon Jul 17 20:28:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71734624 dev-util/kbuild: live ebuild eapi bump to 6 Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-util/kbuild/kbuild-9999.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-util/kbuild/kbuild-9999.ebuild b/dev-util/kbuild/kbuild-9999.ebuild index 32de18e3ea3..5df4852ffb2 100644 --- a/dev-util/kbuild/kbuild-9999.ebuild +++ b/dev-util/kbuild/kbuild-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 +EAPI=6 WANT_AUTOMAKE=1.9 @@ -20,14 +20,15 @@ DEPEND="sys-devel/gettext virtual/yacc" RDEPEND="" -S=${WORKDIR}/${MY_P/-src} +S="${WORKDIR}/${MY_P/-src}" src_prepare() { - rm -rf "${S}/kBuild/bin" + default + rm -rf "${S}/kBuild/bin" || die - cd "${S}/src/kmk" + cd "${S}/src/kmk" || die eautoreconf - cd "${S}/src/sed" + cd "${S}/src/sed" || die eautoreconf }