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 9116F138350 for ; Mon, 10 Feb 2020 00:18:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81C7BE0897; Mon, 10 Feb 2020 00:18:39 +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 66391E0897 for ; Mon, 10 Feb 2020 00:18:39 +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 875C034E95F for ; Mon, 10 Feb 2020 00:18:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B4C1132 for ; Mon, 10 Feb 2020 00:18:37 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1581293887.a6c45dd6e550a3b1f90911489aafae3c07e282dc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/renameutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/renameutils/renameutils-0.12.0.ebuild X-VCS-Directories: sys-apps/renameutils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a6c45dd6e550a3b1f90911489aafae3c07e282dc X-VCS-Branch: master Date: Mon, 10 Feb 2020 00:18:37 +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: 0c162ae5-ff83-481c-9fdb-9f4c470c210d X-Archives-Hash: feaf88664a97ea49512f97aa58674569 commit: a6c45dd6e550a3b1f90911489aafae3c07e282dc Author: David Seifert gentoo org> AuthorDate: Mon Feb 10 00:18:07 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 10 00:18:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6c45dd6 sys-apps/renameutils: Port to EAPI 7 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> sys-apps/renameutils/renameutils-0.12.0.ebuild | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/sys-apps/renameutils/renameutils-0.12.0.ebuild b/sys-apps/renameutils/renameutils-0.12.0.ebuild index 95b7981085a..7d0f5dfb332 100644 --- a/sys-apps/renameutils/renameutils-0.12.0.ebuild +++ b/sys-apps/renameutils/renameutils-0.12.0.ebuild @@ -1,25 +1,29 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=7 -inherit autotools eutils +inherit autotools DESCRIPTION="Use your favorite text editor to rename files" HOMEPAGE="http://www.nongnu.org/renameutils/" SRC_URI="https://savannah.nongnu.org/download/renameutils/${P}.tar.gz" + LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="nls" -DEPEND=">=sys-libs/readline-5.0-r2" +DEPEND="sys-libs/readline:=" RDEPEND="${DEPEND}" +PATCHES=( + "${FILESDIR}"/${P}-typo.patch + "${FILESDIR}"/${P}-autopoint.patch +) + src_prepare() { - epatch \ - "${FILESDIR}/${P}-typo.patch" \ - "${FILESDIR}/${P}-autopoint.patch" + default eautoreconf }