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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2F5BE15808A for ; Fri, 25 Jul 2025 14:12:25 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1D00E341F48 for ; Fri, 25 Jul 2025 14:12:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0F38E11055E; Fri, 25 Jul 2025 14:12:24 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 0583111055E for ; Fri, 25 Jul 2025 14:12:24 +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 B669E341F41 for ; Fri, 25 Jul 2025 14:12:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25455323B for ; Fri, 25 Jul 2025 14:12:22 +0000 (UTC) From: "Quinet Charlie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Quinet Charlie" Message-ID: <1753452740.09d47e4a5c469b13dcc74fa3a69e00779b2a9860.w.iron.zombie@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/lsfg-vk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/lsfg-vk/lsfg-vk-9999.ebuild X-VCS-Directories: app-emulation/lsfg-vk/ X-VCS-Committer: w.iron.zombie X-VCS-Committer-Name: Quinet Charlie X-VCS-Revision: 09d47e4a5c469b13dcc74fa3a69e00779b2a9860 X-VCS-Branch: dev Date: Fri, 25 Jul 2025 14:12:22 +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: 2649b7bf-d1a5-41d8-b1f2-df52fbb014cb X-Archives-Hash: 0e086ae10ed143a5b8dc82ea6de16697 commit: 09d47e4a5c469b13dcc74fa3a69e00779b2a9860 Author: Charlie Quinet gmail com> AuthorDate: Fri Jul 25 14:08:51 2025 +0000 Commit: Quinet Charlie gmail com> CommitDate: Fri Jul 25 14:12:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=09d47e4a app-emulation/lsfg-vk: remove bad workaround Signed-off-by: Charlie Quinet gmail.com> app-emulation/lsfg-vk/lsfg-vk-9999.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app-emulation/lsfg-vk/lsfg-vk-9999.ebuild b/app-emulation/lsfg-vk/lsfg-vk-9999.ebuild index 66c3327f84..b916f2eaac 100644 --- a/app-emulation/lsfg-vk/lsfg-vk-9999.ebuild +++ b/app-emulation/lsfg-vk/lsfg-vk-9999.ebuild @@ -54,21 +54,20 @@ RDEPEND="${DEPEND}" src_unpack() { if [[ ${PV} != 9999 ]]; then - default + use gui || default else git-r3_src_unpack fi if use gui; then - oldS="${S}" - S="${S}/ui" if [[ ${PV} != 9999 ]]; then - A=$(printf '%s\n' "${A[@]}" | grep '\.crate$' || true) # Workaroud to avoid unpacking twice cargo_src_unpack else + oldS="${S}" + S="${S}/ui" cargo_live_src_unpack + S="${oldS}" fi - S="${oldS}" fi }