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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC4F6158041 for ; Mon, 4 Mar 2024 06:00:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FF8DE29CD; Mon, 4 Mar 2024 06:00:06 +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 0A23BE29CC for ; Mon, 4 Mar 2024 06:00:06 +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 13B7833BE3B for ; Mon, 4 Mar 2024 06:00:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70E1E119 for ; Mon, 4 Mar 2024 06:00:03 +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: <1709531729.7bbe8523321447cd14ac683242a8d253fb629c07.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/eza/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/eza/eza-0.17.2-r1.ebuild sys-apps/eza/eza-0.17.2.ebuild X-VCS-Directories: sys-apps/eza/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7bbe8523321447cd14ac683242a8d253fb629c07 X-VCS-Branch: master Date: Mon, 4 Mar 2024 06:00:03 +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: 8bcb36c5-67e6-4860-8073-3099d776f630 X-Archives-Hash: 14e3bf420765d25c03b03d4b0fce967f commit: 7bbe8523321447cd14ac683242a8d253fb629c07 Author: Sam James gentoo org> AuthorDate: Mon Mar 4 05:54:09 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 4 05:55:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bbe8523 sys-apps/eza: update environment variable for forcing system libgit2 See d98b521e041fe26b4f5e7b495e1cf11b7963903a. Signed-off-by: Sam James gentoo.org> sys-apps/eza/{eza-0.17.2.ebuild => eza-0.17.2-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/eza/eza-0.17.2.ebuild b/sys-apps/eza/eza-0.17.2-r1.ebuild similarity index 98% rename from sys-apps/eza/eza-0.17.2.ebuild rename to sys-apps/eza/eza-0.17.2-r1.ebuild index f31a0687ecba..ce4507d1c264 100644 --- a/sys-apps/eza/eza-0.17.2.ebuild +++ b/sys-apps/eza/eza-0.17.2-r1.ebuild @@ -208,7 +208,7 @@ SLOT="0" KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" IUSE="+git" -DEPEND="git? ( dev-libs/libgit2:= )" +DEPEND="git? ( >=dev-libs/libgit2-1.7.0:= )" RDEPEND="${DEPEND}" BDEPEND=">=virtual/rust-1.70.0" @@ -229,7 +229,7 @@ src_configure() { local myfeatures=( $(usev git) ) - export LIBGIT2_SYS_USE_PKG_CONFIG=1 + export LIBGIT2_NO_VENDOR=1 export PKG_CONFIG_ALLOW_CROSS=1 cargo_src_configure --no-default-features }