From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1232578-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 840C71382C5 for <garchives@archives.gentoo.org>; Sat, 19 Dec 2020 10:54:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4230E085B; Sat, 19 Dec 2020 10:54:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8AFBAE085B for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 10:54:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FEFC341034 for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 10:54:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83F2BCA for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 10:54:24 +0000 (UTC) From: "Georgy Yakovlev" <gyakovlev@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, "Georgy Yakovlev" <gyakovlev@gentoo.org> Message-ID: <1608375130.0adeb21344b8506cc7949bf2587752ef1c3f8f47.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/fd/fd-8.2.1.ebuild X-VCS-Directories: sys-apps/fd/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 0adeb21344b8506cc7949bf2587752ef1c3f8f47 X-VCS-Branch: master Date: Sat, 19 Dec 2020 10:54:24 +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: 5063c281-a9c4-4405-a771-76f3a62083d3 X-Archives-Hash: 320117ae8f1f1abcf7b481c44097d677 commit: 0adeb21344b8506cc7949bf2587752ef1c3f8f47 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Sat Dec 19 10:50:07 2020 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Sat Dec 19 10:52:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adeb213 sys-apps/fd: fix zsh completion in 8.2.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> sys-apps/fd/fd-8.2.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-apps/fd/fd-8.2.1.ebuild b/sys-apps/fd/fd-8.2.1.ebuild index 4518c112e24..4d2bf148c6e 100644 --- a/sys-apps/fd/fd-8.2.1.ebuild +++ b/sys-apps/fd/fd-8.2.1.ebuild @@ -96,6 +96,11 @@ src_install() { newbashcomp "${T}"/shell_completions/fd.bash fd insinto /usr/share/fish/vendor_completions.d doins "${T}"/shell_completions/fd.fish + + # zsh completion is in contrib + insinto /usr/share/zsh/site-functions + doins contrib/completion/_fd + dodoc README.md doman doc/*.1 }