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 A2A4213997D for ; Mon, 11 Nov 2019 16:18:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA04EE08BD; Mon, 11 Nov 2019 16:18:04 +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 AD747E08BD for ; Mon, 11 Nov 2019 16:18:04 +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 9A93434CB95 for ; Mon, 11 Nov 2019 16:18:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB4E289F for ; Mon, 11 Nov 2019 16:18:00 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1573489071.26b0f7b6cf3f930c8a8d9c37da1f4dfc92a97c9e.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ed/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ed/ed-1.15-r1.ebuild sys-apps/ed/ed-1.15.ebuild X-VCS-Directories: sys-apps/ed/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 26b0f7b6cf3f930c8a8d9c37da1f4dfc92a97c9e X-VCS-Branch: master Date: Mon, 11 Nov 2019 16:18:00 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5b4c4b24-1e9e-484b-9d99-efc47ff5efe2 X-Archives-Hash: 27efe143020fb7fff58d56b05a887cf3 commit: 26b0f7b6cf3f930c8a8d9c37da1f4dfc92a97c9e Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Nov 11 16:17:27 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Nov 11 16:17:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b0f7b6 sys-apps/ed: rev bump - EAPI bumped to EAPI=7 - Do not use econf Closes: https://bugs.gentoo.org/611068 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Thomas Deutschmann gentoo.org> sys-apps/ed/{ed-1.15.ebuild => ed-1.15-r1.ebuild} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys-apps/ed/ed-1.15.ebuild b/sys-apps/ed/ed-1.15-r1.ebuild similarity index 88% rename from sys-apps/ed/ed-1.15.ebuild rename to sys-apps/ed/ed-1.15-r1.ebuild index c6c5d7a96bc..0226fe03f9c 100644 --- a/sys-apps/ed/ed-1.15.ebuild +++ b/sys-apps/ed/ed-1.15-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI="7" inherit toolchain-funcs @@ -21,10 +21,11 @@ RDEPEND="" src_configure() { # Upstream configure script is moronic. - econf \ + ./configure \ CC="$(tc-getCC)" \ CFLAGS="${CFLAGS}" \ - LDFLAGS="${CFLAGS} ${LDFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ CPPFLAGS="${CPPFLAGS}" \ - --bindir="${EPREFIX}/bin" + --bindir="${EPREFIX}/bin" \ + --prefix="${EPREFIX}/usr" }