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 37D0513835A for ; Tue, 20 Apr 2021 01:21:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C3DEE083E; Tue, 20 Apr 2021 01:21:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 033B7E083E for ; Tue, 20 Apr 2021 01:21:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B44CF340AC0 for ; Tue, 20 Apr 2021 01:21:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34BD8706 for ; Tue, 20 Apr 2021 01:21:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618881628.86800841556927c5a4a436475efb1839d73c5c5e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/hexedit/hexedit-1.2.13.ebuild X-VCS-Directories: app-editors/hexedit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 86800841556927c5a4a436475efb1839d73c5c5e X-VCS-Branch: master Date: Tue, 20 Apr 2021 01:21:06 +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: 93e811a0-a72d-46f0-ad79-0f8fbd486eee X-Archives-Hash: e5631032177958d19f7800f493e82b91 commit: 86800841556927c5a4a436475efb1839d73c5c5e Author: Sam James gentoo org> AuthorDate: Tue Apr 20 00:34:21 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 20 01:20:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86800841 app-editors/hexedit: port to EAPI 7 Signed-off-by: Sam James gentoo.org> app-editors/hexedit/hexedit-1.2.13.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app-editors/hexedit/hexedit-1.2.13.ebuild b/app-editors/hexedit/hexedit-1.2.13.ebuild index 10627d3f7c5..d0b42fcc75f 100644 --- a/app-editors/hexedit/hexedit-1.2.13.ebuild +++ b/app-editors/hexedit/hexedit-1.2.13.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools epatch +EAPI=7 + +inherit autotools DESCRIPTION="View and edit files in hex or ASCII" HOMEPAGE="http://rigaux.org/hexedit.html" @@ -15,10 +16,15 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~s390 sparc x86 ~amd64-li DEPEND="sys-libs/ncurses:=" RDEPEND="${DEPEND}" -S=${WORKDIR}/${PN} +S="${WORKDIR}"/${PN} + +PATCHES=( + "${FILESDIR}"/${PN}-1.2.13-tinfo.patch +) src_prepare() { - epatch "${FILESDIR}"/${PN}-1.2.13-tinfo.patch + default + mv configure.in configure.ac || die eautoreconf }