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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5AC5015817D for ; Mon, 17 Jun 2024 09:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26786E2A1C; Mon, 17 Jun 2024 09:39:34 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 0CEADE2A18 for ; Mon, 17 Jun 2024 09:39:34 +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 DDDCE335CAF for ; Mon, 17 Jun 2024 09:39:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E36571D2C for ; Mon, 17 Jun 2024 09:39:29 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1718616467.6b9203dad8e93d7400c0ab0ffdfd617176325364.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/atuin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/atuin/atuin-18.2.0.ebuild app-shells/atuin/atuin-18.3.0.ebuild X-VCS-Directories: app-shells/atuin/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 6b9203dad8e93d7400c0ab0ffdfd617176325364 X-VCS-Branch: master Date: Mon, 17 Jun 2024 09:39:29 +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: c1f1bfa4-9da8-444c-b836-9c2f4be38a52 X-Archives-Hash: 6f4330a9840a1ce0217d1605a9d6066c commit: 6b9203dad8e93d7400c0ab0ffdfd617176325364 Author: James Le Cuirot gentoo org> AuthorDate: Thu Jun 13 21:45:59 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Jun 17 09:27:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b9203da app-shells/atuin: Use new cargo_target_dir helper Signed-off-by: James Le Cuirot gentoo.org> app-shells/atuin/atuin-18.2.0.ebuild | 2 +- app-shells/atuin/atuin-18.3.0.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-shells/atuin/atuin-18.2.0.ebuild b/app-shells/atuin/atuin-18.2.0.ebuild index 246cccde6449..bab19b883463 100644 --- a/app-shells/atuin/atuin-18.2.0.ebuild +++ b/app-shells/atuin/atuin-18.2.0.ebuild @@ -493,7 +493,7 @@ src_configure() { src_compile() { cargo_src_compile - ATUIN_BIN="target/$(usex debug debug release)/${PN}" + ATUIN_BIN="$(cargo_target_dir)/${PN}" # Prepare shell completion generation mkdir completions || die diff --git a/app-shells/atuin/atuin-18.3.0.ebuild b/app-shells/atuin/atuin-18.3.0.ebuild index dad51de2291c..94ea5c432867 100644 --- a/app-shells/atuin/atuin-18.3.0.ebuild +++ b/app-shells/atuin/atuin-18.3.0.ebuild @@ -505,7 +505,7 @@ src_configure() { src_compile() { cargo_src_compile - ATUIN_BIN="target/$(usex debug debug release)/${PN}" + ATUIN_BIN="$(cargo_target_dir)/${PN}" # Prepare shell completion generation mkdir completions || die