From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1650166-garchives=archives.gentoo.org@lists.gentoo.org> 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 0CEA41581C1 for <garchives@archives.gentoo.org>; Fri, 5 Jul 2024 23:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EBCD2BC028; Fri, 5 Jul 2024 23:41:38 +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 0BBF62BC028 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Jul 2024 23:41:38 +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 1332E343090 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Jul 2024 23:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45E281D0E for <gentoo-commits@lists.gentoo.org>; Fri, 5 Jul 2024 23:41:35 +0000 (UTC) From: "Louis Sautier" <sbraz@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" <sbraz@gentoo.org> Message-ID: <1720222874.7c6f05d0593e2a87d9ff5b9f6ce68563fda2611a.sbraz@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-r1.ebuild sys-apps/ripgrep/ripgrep-14.1.0.ebuild X-VCS-Directories: sys-apps/ripgrep/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 7c6f05d0593e2a87d9ff5b9f6ce68563fda2611a X-VCS-Branch: master Date: Fri, 5 Jul 2024 23:41:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 63affa25-8f74-454f-9c18-43610f026e43 X-Archives-Hash: 74d62aef0d512a730ea6a8e1c6d1181a commit: 7c6f05d0593e2a87d9ff5b9f6ce68563fda2611a Author: Louis Sautier <sbraz <AT> gentoo <DOT> org> AuthorDate: Fri Jul 5 23:19:15 2024 +0000 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org> CommitDate: Fri Jul 5 23:41:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6f05d0 sys-apps/ripgrep: fix broken shell completions and man page These had been broken since a54beaa7e596d245. Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org> .../ripgrep/{ripgrep-14.1.0.ebuild => ripgrep-14.1.0-r1.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-r1.ebuild similarity index 91% rename from sys-apps/ripgrep/ripgrep-14.1.0.ebuild rename to sys-apps/ripgrep/ripgrep-14.1.0-r1.ebuild index 904eb11c2b63..3fa239d3ba2e 100644 --- a/sys-apps/ripgrep/ripgrep-14.1.0.ebuild +++ b/sys-apps/ripgrep/ripgrep-14.1.0-r1.ebuild @@ -99,21 +99,21 @@ src_install() { cargo_src_install newbashcomp - rg <<-EOF - "$(cargo_target_dir)"/rg --generate complete-bash) + $("$(cargo_target_dir)"/rg --generate complete-bash) EOF insinto /usr/share/fish/vendor_completions.d newins - rg.fish <<-EOF - "$(cargo_target_dir)"/rg --generate complete-fish) + $("$(cargo_target_dir)"/rg --generate complete-fish) EOF insinto /usr/share/zsh/site-functions newins - _rg <<-EOF - "$(cargo_target_dir)"/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 - "$(cargo_target_dir)"/rg --generate man) + $("$(cargo_target_dir)"/rg --generate man) EOF }