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 CD3B4158089 for ; Wed, 27 Sep 2023 03:45:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA2192BC02A; Wed, 27 Sep 2023 03:45:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 92D0E2BC022 for ; Wed, 27 Sep 2023 03:45:15 +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 C999E335CE9 for ; Wed, 27 Sep 2023 03:45:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43775126B for ; Wed, 27 Sep 2023 03:45:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1695786281.91499964a5762bae4e03146aec998b89e1d59c63.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/bat/bat-0.23.0.ebuild X-VCS-Directories: sys-apps/bat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 91499964a5762bae4e03146aec998b89e1d59c63 X-VCS-Branch: master Date: Wed, 27 Sep 2023 03:45:13 +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: 6c471009-b85b-41f8-9aec-23df15d68665 X-Archives-Hash: 02f8b1bbe9b1ba7e4111b7990c36df2b commit: 91499964a5762bae4e03146aec998b89e1d59c63 Author: Leonardo Hernández Hernández proton me> AuthorDate: Wed Sep 27 03:28:07 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 27 03:44:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91499964 sys-apps/bat: use shell-completion.eclass Signed-off-by: Leonardo Hernández Hernández proton.me> Closes: https://github.com/gentoo/gentoo/pull/33083 Signed-off-by: Sam James gentoo.org> sys-apps/bat/bat-0.23.0.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/sys-apps/bat/bat-0.23.0.ebuild b/sys-apps/bat/bat-0.23.0.ebuild index c1f9cd57a92c..74a9d70d51bf 100644 --- a/sys-apps/bat/bat-0.23.0.ebuild +++ b/sys-apps/bat/bat-0.23.0.ebuild @@ -169,7 +169,7 @@ CRATES=" yaml-rust@0.4.5 " -inherit bash-completion-r1 cargo +inherit cargo shell-completion DESCRIPTION="cat(1) clone with syntax highlighting and Git integration" HOMEPAGE="https://github.com/sharkdp/bat" @@ -217,10 +217,6 @@ src_install() { doman assets/manual/bat.1 newbashcomp assets/completions/${PN}.bash ${PN} - - insinto /usr/share/zsh/site-functions - newins assets/completions/${PN}.zsh _${PN} - - insinto /usr/share/fish/vendor_completions.d - doins assets/completions/${PN}.fish + newzshcomp assets/completions/${PN}.zsh _${PN} + dofishcomp assets/completions/${PN}.fish }