From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 837921582EF for ; Mon, 17 Feb 2025 09:49:57 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6EAA63433E5 for ; Mon, 17 Feb 2025 09:49:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CC3F811047E; Mon, 17 Feb 2025 09:49:31 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C273B11047E for ; Mon, 17 Feb 2025 09:49:31 +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 7D0A134337E for ; Mon, 17 Feb 2025 09:49:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2A8A27ED for ; Mon, 17 Feb 2025 09:49:27 +0000 (UTC) From: "David Roman" 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 Roman" Message-ID: <1739638451.ac0e30777c8b84bb1a226280a36f1dbc6788e211.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/yazi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/yazi/yazi-25.2.11-r1.ebuild app-misc/yazi/yazi-25.2.11.ebuild X-VCS-Directories: app-misc/yazi/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: ac0e30777c8b84bb1a226280a36f1dbc6788e211 X-VCS-Branch: master Date: Mon, 17 Feb 2025 09:49:27 +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: 6029ca06-5bd0-4af4-8b55-ec8a76f6ddb2 X-Archives-Hash: 611d6f4e6e5bc282d92211760858561a commit: ac0e30777c8b84bb1a226280a36f1dbc6788e211 Author: demize unstable systems> AuthorDate: Sat Feb 15 16:52:14 2025 +0000 Commit: David Roman gmail com> CommitDate: Sat Feb 15 16:54:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac0e3077 app-misc/yazi: use system libonig with rust-onig This fixes an issue compiling with GCC 15. Closes: https://bugs.gentoo.org/945008 Signed-off-by: demize unstable.systems> app-misc/yazi/{yazi-25.2.11.ebuild => yazi-25.2.11-r1.ebuild} | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app-misc/yazi/yazi-25.2.11.ebuild b/app-misc/yazi/yazi-25.2.11-r1.ebuild similarity index 97% rename from app-misc/yazi/yazi-25.2.11.ebuild rename to app-misc/yazi/yazi-25.2.11-r1.ebuild index 424b73ae7..64b89c9fa 100644 --- a/app-misc/yazi/yazi-25.2.11.ebuild +++ b/app-misc/yazi/yazi-25.2.11-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024 Gentoo Authors +# Copyright 2024-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -395,6 +395,11 @@ QA_FLAGS_IGNORED=" usr/bin/ya.* " +RDEPEND=" + dev-libs/oniguruma +" +DEPEND="${RDEPEND}" + DOCS=( "README.md" "yazi-config/preset/keymap-default.toml" @@ -410,6 +415,9 @@ src_prepare() { } src_compile() { + # workaround for GCC 15 issues: + # unvendor libonig from rust-onig. see bugs 943785, 945008 + export RUSTONIG_SYSTEM_LIBONIG=1 cargo_src_compile use cli && cargo_src_compile -p "${PN}-cli" }