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 DB2E215802E for ; Wed, 26 Jun 2024 19:21:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09559E2B3B; Wed, 26 Jun 2024 19:21: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 D622CE2B3B for ; Wed, 26 Jun 2024 19:21:05 +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 C7062342F65 for ; Wed, 26 Jun 2024 19:21:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 393C1126B for ; Wed, 26 Jun 2024 19:21:03 +0000 (UTC) From: "Jonas Frei" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Frei" Message-ID: <1719429593.5ef6e5b0cc835eb1f43629e275f5f386da63397d.freijon@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-0.2.5-r1.ebuild X-VCS-Directories: app-misc/yazi/ X-VCS-Committer: freijon X-VCS-Committer-Name: Jonas Frei X-VCS-Revision: 5ef6e5b0cc835eb1f43629e275f5f386da63397d X-VCS-Branch: dev Date: Wed, 26 Jun 2024 19:21: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: 914bed6a-8918-430a-846e-c7e30359a8a7 X-Archives-Hash: e74aa1a3bab0b3408e86c768d58efb67 commit: 5ef6e5b0cc835eb1f43629e275f5f386da63397d Author: Jonas Frei pm me> AuthorDate: Wed Jun 26 19:17:21 2024 +0000 Commit: Jonas Frei pm me> CommitDate: Wed Jun 26 19:19:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ef6e5b0 app-misc/yazi: Use cargo_target_dir instead of hardcoding dobin path Signed-off-by: Jonas Frei pm.me> app-misc/yazi/yazi-0.2.5-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-misc/yazi/yazi-0.2.5-r1.ebuild b/app-misc/yazi/yazi-0.2.5-r1.ebuild index 6db0d5ffb..9bb6ac53a 100644 --- a/app-misc/yazi/yazi-0.2.5-r1.ebuild +++ b/app-misc/yazi/yazi-0.2.5-r1.ebuild @@ -346,8 +346,8 @@ src_compile() { } src_install() { - dobin "target/$(usex debug debug release)/${PN}" - use cli && dobin "target/$(usex debug debug release)/ya" + dobin "$(cargo_target_dir)/${PN}" + use cli && dobin "$(cargo_target_dir)/ya" newbashcomp "${S}/yazi-boot/completions/${PN}.bash" "${PN}" dozshcomp "${S}/yazi-boot/completions/_${PN}"