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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7B0C158094 for ; Sun, 10 Jul 2022 11:32:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55650E0BD2; Sun, 10 Jul 2022 11:32:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76498E0BDF for ; Sun, 10 Jul 2022 11:32:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81479340E7C for ; Sun, 10 Jul 2022 11:32:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFDC852B for ; Sun, 10 Jul 2022 11:32:08 +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: <1657452723.d07024cc1ace6e153a00ac17012a71504d838c39.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wdiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/wdiff/wdiff-1.2.2-r1.ebuild app-text/wdiff/wdiff-1.2.2-r2.ebuild X-VCS-Directories: app-text/wdiff/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d07024cc1ace6e153a00ac17012a71504d838c39 X-VCS-Branch: master Date: Sun, 10 Jul 2022 11:32:08 +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: 8ea146a1-9316-415c-8f0c-0bacc8e8f6a5 X-Archives-Hash: 3861aa3fa16056bf1d1b0a83962d5d2f commit: d07024cc1ace6e153a00ac17012a71504d838c39 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 11:31:17 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 10 11:32:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d07024cc app-text/wdiff: EAPI 8 Signed-off-by: Sam James gentoo.org> .../{wdiff-1.2.2-r1.ebuild => wdiff-1.2.2-r2.ebuild} | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app-text/wdiff/wdiff-1.2.2-r1.ebuild b/app-text/wdiff/wdiff-1.2.2-r2.ebuild similarity index 85% rename from app-text/wdiff/wdiff-1.2.2-r1.ebuild rename to app-text/wdiff/wdiff-1.2.2-r2.ebuild index 9f0af0d46f14..4418e21d3f05 100644 --- a/app-text/wdiff/wdiff-1.2.2-r1.ebuild +++ b/app-text/wdiff/wdiff-1.2.2-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Create a diff disregarding formatting" HOMEPAGE="https://www.gnu.org/software/wdiff/" @@ -16,14 +16,16 @@ RESTRICT="!test? ( test )" RDEPEND=" sys-apps/diffutils sys-apps/less - sys-libs/ncurses:0=" -DEPEND="${RDEPEND} + sys-libs/ncurses:= +" +DEPEND="${RDEPEND}" +BDEPEND=" sys-apps/texinfo - test? ( app-misc/screen )" + test? ( app-misc/screen ) +" src_configure() { - econf \ - $(use_enable experimental) + econf $(use_enable experimental) } src_test() { @@ -31,5 +33,6 @@ src_test() { # when an incompatible screenrc is found touch tests/screenrc || die export SYSSCREENRC=tests/screenrc SCREENRC=tests/screenrc + default }