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 0006613835B for ; Sun, 31 May 2020 04:18:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECB58E0871; Sun, 31 May 2020 04:18:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D75B6E0871 for ; Sun, 31 May 2020 04:18:05 +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 6F25934F014 for ; Sun, 31 May 2020 04:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98AB126D for ; Sun, 31 May 2020 04:18:01 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1590898598.360c4b4e56af60943ca2b7eaee6ec72d322d7df5.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/github-cli/github-cli-0.9.0-r1.ebuild dev-util/github-cli/github-cli-0.9.0.ebuild X-VCS-Directories: dev-util/github-cli/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 360c4b4e56af60943ca2b7eaee6ec72d322d7df5 X-VCS-Branch: master Date: Sun, 31 May 2020 04:18:01 +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: 404ccb6e-36b9-415d-a810-210fc34d0be8 X-Archives-Hash: 0848975d8e4dd3ab4178f5695d53c737 commit: 360c4b4e56af60943ca2b7eaee6ec72d322d7df5 Author: Jeffrey Lin icurse nl> AuthorDate: Sun May 31 02:28:56 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun May 31 04:16:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360c4b4e dev-util/github-cli: add bash completion, manpages Signed-off-by: Jeffrey Lin icurse.nl> (cherry picked from commit 05a59f8c3ed2991f4999c4936dbf5fc0565b7b60) Signed-off-by: Robin H. Johnson gentoo.org> .../{github-cli-0.9.0.ebuild => github-cli-0.9.0-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-util/github-cli/github-cli-0.9.0.ebuild b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild similarity index 99% rename from dev-util/github-cli/github-cli-0.9.0.ebuild rename to dev-util/github-cli/github-cli-0.9.0-r1.ebuild index 61c48d3dee4..40cf4d76c40 100644 --- a/dev-util/github-cli/github-cli-0.9.0.ebuild +++ b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit go-module +inherit bash-completion-r1 go-module DESCRIPTION="GitHub CLI" HOMEPAGE="https://github.com/cli/cli" @@ -294,4 +294,10 @@ src_compile() { src_install() { dobin bin/gh dodoc README.md + + make manpages + doman share/man/man1/gh*.1 + + bin/gh completion -s bash > gh + dobashcomp gh }