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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7A30E138350 for ; Fri, 3 Apr 2020 15:27:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92522E09AB; Fri, 3 Apr 2020 15:27:23 +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 755A4E09AB for ; Fri, 3 Apr 2020 15:27:23 +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 7C3F434EF26 for ; Fri, 3 Apr 2020 15:27:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FC3617 for ; Fri, 3 Apr 2020 15:27:19 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1585927575.b26988f18888fec99330ae4465c725843b322e29.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/go-jira/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/go-jira/go-jira-1.0.23.ebuild X-VCS-Directories: app-misc/go-jira/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b26988f18888fec99330ae4465c725843b322e29 X-VCS-Branch: master Date: Fri, 3 Apr 2020 15:27:19 +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: c50b38a7-1664-4101-8b4a-d19606233b0d X-Archives-Hash: 17469c65617b4b415e301c2f8ffcb84e commit: b26988f18888fec99330ae4465c725843b322e29 Author: William Hubbs gentoo org> AuthorDate: Fri Apr 3 15:25:50 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Apr 3 15:26:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26988f1 app-misc/go-jira: add comments about generating completion scripts Signed-off-by: William Hubbs gentoo.org> app-misc/go-jira/go-jira-1.0.23.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app-misc/go-jira/go-jira-1.0.23.ebuild b/app-misc/go-jira/go-jira-1.0.23.ebuild index c04fe2181eb..5ef88f785e2 100644 --- a/app-misc/go-jira/go-jira-1.0.23.ebuild +++ b/app-misc/go-jira/go-jira-1.0.23.ebuild @@ -3,6 +3,7 @@ EAPI=7 +# bash-completion-r1 can be added once we can generate completion scripts inherit go-module DESCRIPTION="A simple JIRA commandline client in Go" @@ -114,9 +115,16 @@ S="${WORKDIR}/jira-${PV}" src_compile() { go build -o jira cmd/jira/main.go || die + # these cause failures. +# ./jira --completion-script-bash > jira.bash || die +# ./jira --completion-script-zsh > jira.zsh || die } src_install() { dobin jira dodoc {CHANGELOG,README}.md + # This can be uncommented once we can generate completion scripts +# newbashcomp jira.bash jira +# insinto /usr/share/zsh/site-functions +# newins jira.zsh _jira }