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 F15DE15817D for ; Mon, 17 Jun 2024 09:39:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10541E2A27; Mon, 17 Jun 2024 09:39:36 +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 pigeon.gentoo.org (Postfix) with ESMTPS id E2C29E2A27 for ; Mon, 17 Jun 2024 09:39:35 +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 81E31335D2B for ; Mon, 17 Jun 2024 09:39:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C27CA1D37 for ; Mon, 17 Jun 2024 09:39:30 +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: <1718617015.8899ec25ed1653262946a7cb61d9c9f7b1753f78.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/maturin/maturin-1.4.0.ebuild dev-util/maturin/maturin-1.5.1-r1.ebuild dev-util/maturin/maturin-1.6.0.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 8899ec25ed1653262946a7cb61d9c9f7b1753f78 X-VCS-Branch: master Date: Mon, 17 Jun 2024 09:39:30 +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: 6f41f0b8-c20b-4362-84b6-401b29a5c2b3 X-Archives-Hash: 4c016105c28381929b2e56cea1e2f15f commit: 8899ec25ed1653262946a7cb61d9c9f7b1753f78 Author: James Le Cuirot gentoo org> AuthorDate: Fri Jun 14 09:46:11 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Jun 17 09:36:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8899ec25 dev-util/maturin: Use new cargo_target_dir helper Signed-off-by: James Le Cuirot gentoo.org> dev-util/maturin/maturin-1.4.0.ebuild | 2 +- dev-util/maturin/maturin-1.5.1-r1.ebuild | 2 +- dev-util/maturin/maturin-1.6.0.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-util/maturin/maturin-1.4.0.ebuild b/dev-util/maturin/maturin-1.4.0.ebuild index 3cf5c02fedec..44d0ced2f704 100644 --- a/dev-util/maturin/maturin-1.4.0.ebuild +++ b/dev-util/maturin/maturin-1.4.0.ebuild @@ -513,7 +513,7 @@ python_compile_all() { use !doc || mdbook build -d html guide || die if ! tc-is-cross-compiler; then - local maturin=target/$(usex debug{,} release)/maturin + local maturin=$(cargo_target_dir)/maturin ${maturin} completions bash > "${T}"/${PN} || die ${maturin} completions fish > "${T}"/${PN}.fish || die ${maturin} completions zsh > "${T}"/_${PN} || die diff --git a/dev-util/maturin/maturin-1.5.1-r1.ebuild b/dev-util/maturin/maturin-1.5.1-r1.ebuild index 9ecde386152b..211d3fcd65d5 100644 --- a/dev-util/maturin/maturin-1.5.1-r1.ebuild +++ b/dev-util/maturin/maturin-1.5.1-r1.ebuild @@ -513,7 +513,7 @@ python_compile_all() { use !doc || mdbook build -d html guide || die if ! tc-is-cross-compiler; then - local maturin=target/$(usex debug{,} release)/maturin + local maturin=$(cargo_target_dir)/maturin ${maturin} completions bash > "${T}"/${PN} || die ${maturin} completions fish > "${T}"/${PN}.fish || die ${maturin} completions zsh > "${T}"/_${PN} || die diff --git a/dev-util/maturin/maturin-1.6.0.ebuild b/dev-util/maturin/maturin-1.6.0.ebuild index 05c3f81d01c8..13a38fc10e8b 100644 --- a/dev-util/maturin/maturin-1.6.0.ebuild +++ b/dev-util/maturin/maturin-1.6.0.ebuild @@ -522,7 +522,7 @@ python_compile_all() { use !doc || mdbook build -d html guide || die if ! tc-is-cross-compiler; then - local maturin=target/$(usex debug{,} release)/maturin + local maturin=$(cargo_target_dir)/maturin ${maturin} completions bash > "${T}"/${PN} || die ${maturin} completions fish > "${T}"/${PN}.fish || die ${maturin} completions zsh > "${T}"/_${PN} || die