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 45CC415817D for ; Mon, 17 Jun 2024 09:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB24AE2A22; Mon, 17 Jun 2024 09:39:35 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F33DE2A22 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 8E2EC335D6A 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 09EC51D3A for ; Mon, 17 Jun 2024 09:39:31 +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: <1718617018.a54beaa7e596d245e534e45d69a05f3c2447ea0b.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ripgrep/ripgrep-14.1.0.ebuild X-VCS-Directories: sys-apps/ripgrep/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: a54beaa7e596d245e534e45d69a05f3c2447ea0b X-VCS-Branch: master Date: Mon, 17 Jun 2024 09:39:31 +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: 84bcbd0a-60d1-4e6d-8205-66813aaf4a24 X-Archives-Hash: 136867fd2b86ced44b10ccf969fb0480 commit: a54beaa7e596d245e534e45d69a05f3c2447ea0b Author: James Le Cuirot gentoo org> AuthorDate: Fri Jun 14 09:46:40 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Jun 17 09:36:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a54beaa7 sys-apps/ripgrep: Use new cargo_target_dir helper Signed-off-by: James Le Cuirot gentoo.org> sys-apps/ripgrep/ripgrep-14.1.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-apps/ripgrep/ripgrep-14.1.0.ebuild b/sys-apps/ripgrep/ripgrep-14.1.0.ebuild index 97d8367a346e..904eb11c2b63 100644 --- a/sys-apps/ripgrep/ripgrep-14.1.0.ebuild +++ b/sys-apps/ripgrep/ripgrep-14.1.0.ebuild @@ -99,21 +99,21 @@ src_install() { cargo_src_install newbashcomp - rg <<-EOF - $(target/$(usex debug debug release)/rg --generate complete-bash) + "$(cargo_target_dir)"/rg --generate complete-bash) EOF insinto /usr/share/fish/vendor_completions.d newins - rg.fish <<-EOF - $(target/$(usex debug debug release)/rg --generate complete-fish) + "$(cargo_target_dir)"/rg --generate complete-fish) EOF insinto /usr/share/zsh/site-functions newins - _rg <<-EOF - $(target/$(usex debug debug release)/rg --generate complete-zsh) + "$(cargo_target_dir)"/rg --generate complete-zsh) EOF dodoc CHANGELOG.md FAQ.md GUIDE.md README.md newman - rg.1 <<-EOF - $(target/$(usex debug debug release)/rg --generate man) + "$(cargo_target_dir)"/rg --generate man) EOF }