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 0E31B1582EF for ; Sat, 15 Feb 2025 16:57:27 +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 E6A373430A3 for ; Sat, 15 Feb 2025 16:57:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9A7981102CD; Sat, 15 Feb 2025 16:57:25 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9149B1102CD for ; Sat, 15 Feb 2025 16:57:25 +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 1751C3430A3 for ; Sat, 15 Feb 2025 16:57:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75375175A for ; Sat, 15 Feb 2025 16:57:23 +0000 (UTC) From: "demize" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "demize" Message-ID: <1739638451.ac0e30777c8b84bb1a226280a36f1dbc6788e211.demize@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: demize X-VCS-Committer-Name: demize X-VCS-Revision: ac0e30777c8b84bb1a226280a36f1dbc6788e211 X-VCS-Branch: dev Date: Sat, 15 Feb 2025 16:57:23 +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: 27f9c2dd-29bf-481f-b03d-4df163473fc5 X-Archives-Hash: add0388bfdee73685dee85d588732382 commit: ac0e30777c8b84bb1a226280a36f1dbc6788e211 Author: demize unstable systems> AuthorDate: Sat Feb 15 16:52:14 2025 +0000 Commit: demize unstable systems> 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" }