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 0AD6F158087 for ; Wed, 12 Jan 2022 19:44:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5A1D2BC044; Wed, 12 Jan 2022 19:44:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C14B2BC044 for ; Wed, 12 Jan 2022 19:44:14 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15E1034306D for ; Wed, 12 Jan 2022 19:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50A9B275 for ; Wed, 12 Jan 2022 19:44:11 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1642016647.a1ce43fc69669cc7a74a1972e59703454a069ddf.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/tig/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/tig/tig-9999.ebuild X-VCS-Directories: dev-vcs/tig/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: a1ce43fc69669cc7a74a1972e59703454a069ddf X-VCS-Branch: master Date: Wed, 12 Jan 2022 19:44:11 +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: 5183c152-16f2-464e-b742-4c65485b701c X-Archives-Hash: 785860ab110e30f584975e7846714cfa commit: a1ce43fc69669cc7a74a1972e59703454a069ddf Author: Patrick McLean gentoo org> AuthorDate: Wed Jan 12 19:43:58 2022 +0000 Commit: Patrick McLean gentoo org> CommitDate: Wed Jan 12 19:44:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1ce43fc dev-vcs/tig: Sync 9999 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Patrick McLean gentoo.org> dev-vcs/tig/tig-9999.ebuild | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/dev-vcs/tig/tig-9999.ebuild b/dev-vcs/tig/tig-9999.ebuild index 3ea9666006a2..656ca0a2e20b 100644 --- a/dev-vcs/tig/tig-9999.ebuild +++ b/dev-vcs/tig/tig-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit bash-completion-r1 @@ -18,14 +18,18 @@ HOMEPAGE="https://jonas.github.io/tig/" LICENSE="GPL-2" SLOT="0" -IUSE="test unicode" +IUSE="pcre test unicode" REQUIRED_USE="test? ( unicode )" DEPEND=" sys-libs/ncurses:=[unicode(+)?] - sys-libs/readline:0=" -RDEPEND="${DEPEND} - dev-vcs/git" + sys-libs/readline:0= + pcre? ( dev-libs/libpcre2:= ) +" +RDEPEND=" + ${DEPEND} + dev-vcs/git +" [[ ${PV} == "9999" ]] && BDEPEND+=" app-text/asciidoc app-text/xmlto" # encoding/env issues @@ -37,7 +41,9 @@ src_prepare() { } src_configure() { - econf $(use_with unicode ncursesw) + econf \ + $(use_with pcre) \ + $(use_with unicode ncursesw) } src_compile() { @@ -47,7 +53,7 @@ src_compile() { src_test() { # workaround parallel test failures - emake -j1 test + LC_ALL=en_US.utf8 emake -j1 test } src_install() {