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 2842E15ACFB for ; Wed, 12 Apr 2023 04:04:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48F7BE08A0; Wed, 12 Apr 2023 04:04:47 +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 2C33DE08A0 for ; Wed, 12 Apr 2023 04:04:47 +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 318A5340F05 for ; Wed, 12 Apr 2023 04:04:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDEF0A41 for ; Wed, 12 Apr 2023 04:04:42 +0000 (UTC) From: "Jonas Frei" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Frei" Message-ID: <1681272079.145828cc04f5c50b1c6bd87db08aa16f6f43b946.freijon@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-devel/just/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-devel/just/just-1.13.0.ebuild X-VCS-Directories: sys-devel/just/ X-VCS-Committer: freijon X-VCS-Committer-Name: Jonas Frei X-VCS-Revision: 145828cc04f5c50b1c6bd87db08aa16f6f43b946 X-VCS-Branch: dev Date: Wed, 12 Apr 2023 04:04:42 +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: 47f1015f-d946-4cb2-8f6f-c62d404e6d79 X-Archives-Hash: 63e782d41f7678c3838b0d43db99d7ee commit: 145828cc04f5c50b1c6bd87db08aa16f6f43b946 Author: Jonas Frei pm me> AuthorDate: Wed Apr 12 03:59:19 2023 +0000 Commit: Jonas Frei pm me> CommitDate: Wed Apr 12 04:01:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=145828cc sys-devel/just: Make use of 'shell-completion' eclass Signed-off-by: Jonas Frei pm.me> sys-devel/just/just-1.13.0.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sys-devel/just/just-1.13.0.ebuild b/sys-devel/just/just-1.13.0.ebuild index ebcc0d139..3aaea82ed 100644 --- a/sys-devel/just/just-1.13.0.ebuild +++ b/sys-devel/just/just-1.13.0.ebuild @@ -116,7 +116,7 @@ CRATES=" ${P} " -inherit bash-completion-r1 cargo toolchain-funcs +inherit cargo shell-completion toolchain-funcs DESCRIPTION="Just a command runner (with syntax inspired by 'make')" HOMEPAGE=" @@ -157,10 +157,8 @@ src_install() { newbashcomp "completions/${PN}.bash" "${PN}" # zsh-completion - insinto /usr/share/zsh/site-functions - newins "completions/${PN}.zsh" "_${PN}" + newzshcomp "completions/${PN}.zsh" "_${PN}" # fish-completion - insinto /usr/share/fish/vendor_completions.d - doins "completions/${PN}.fish" + dofishcomp "completions/${PN}.fish" }