[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2024-01-12 Thread William Hubbs
commit: 821fafdf5a99d98dab61b81c07f73ca628a0a085
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jan 12 22:31:51 2024 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jan 12 22:32:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821fafdf

dev-util/github-cli: add 2.42.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.42.0.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 449806aa8f13..6889afc81397 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -6,3 +6,5 @@ DIST github-cli-2.32.1-deps.tar.xz 100042076 BLAKE2B 
d362088e2fd24938c52c352ca88
 DIST github-cli-2.32.1.tar.gz 897387 BLAKE2B 
0a46b501958b3fc1b5d3e5467292dd3a3e4cc721d5ac822f637e26f345654bed01bdb27283a86351460c5f2650a54b635abf839e312bfe9b98b794eb60880aff
 SHA512 
4b5b56809110c6b7c19dec344c7171df0eed0bcf5388bc0c63ce5ac4a3b6f4606f1e8de207f5b6889834013059013e8a4b6701b82b933322ed4fcf0e48144b72
 DIST github-cli-2.33.0-deps.tar.xz 100032668 BLAKE2B 
bffaed49d2724951a34e37632ff131f47f66fb79516a42482d2e0d7399b29266cad5b8519912feb33e279d5b7d39b76efaeaaa48ff462db9912e063b41ce8dc3
 SHA512 
aefdb7c12507dbf02a943be9074f7eac12beefd7a5f8a7a08bbacbbaa46cd91f46262258b3fc0a00b41fb0ccf4816621e9ebe4f2bb10b5f6c5e6260ac003
 DIST github-cli-2.33.0.tar.gz 898066 BLAKE2B 
0af992e0687c1e5c2c3552e35419a65af348f76eee91f38377396eb7e7713e8c982b4677a9c35f329380d0281b443e342bb6470b0eade85118248e41333266db
 SHA512 
76a5490964828e375eb3cc0a625c25e6005f9cd44ae40ec04432fd7672bed4628b4db4ffdc713ec2cb59f00c6308e5cf2141a3c932d08ccef4fe5ef676b09916
+DIST github-cli-2.42.0-deps.tar.xz 101578632 BLAKE2B 
54153cd48dac9b2f3fc094b5060cca3d9911bda33dfd7e1b42f23b74f97597a664c8e490bec70c6e1215c2310aa6862398da035c3f662e819e158802b915d216
 SHA512 
4e7c0ac720ef8e2c5ab4c6d0918abc0e8a6c17df31566f4b0e49b74f90225093b792ec6d60ffb98db1a53eaa7a52e2fbcb1a059c57972e344522216a85736f90
+DIST github-cli-2.42.0.tar.gz 825997 BLAKE2B 
dadb64c62f55ed02c48b56ad02762b806fd4eb0c26c5d9509c9976b6fbddfc542fe46bc54c1790394ac7874e7632f655c001fdcd6cc629fa1fa1b4fc984211b3
 SHA512 
b8e76ea0bda9f9e78d9b8d5ff57326c1fa77f280688948facd83549d88f3d2259516ad9bb0f0455cecfa34168ef317f01683383cbe1b41e150b5ea9ab8c2fa2b

diff --git a/dev-util/github-cli/github-cli-2.42.0.ebuild 
b/dev-util/github-cli/github-cli-2.42.0.ebuild
new file mode 100644
index ..2d0c1da34ead
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.42.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-09-01 Thread William Hubbs
commit: ca3ce992822877f521b13eb320a45b7b63de7207
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Sep  1 18:08:37 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Sep  1 18:08:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3ce992

dev-util/github-cli: add 2.33.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.33.0.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 753c406ed45d..449806aa8f13 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -4,3 +4,5 @@ DIST github-cli-2.31.0-deps.tar.xz 106505536 BLAKE2B 
cfd4fd3b11839edeef86382b15a
 DIST github-cli-2.31.0.tar.gz 888221 BLAKE2B 
ad1d0125ca043f180d1cb46eb4413ea654e3ab23ea72cac10c04c40f5858fda825b6cfa2022454293018416a1ef12b8182fe1bdfaf6fea977145503689a062a0
 SHA512 
e0dbdba44d8a4ce9edb1b7387f26b8a865cf35d1006e86547ff44b7bffe78b29885b4e5e9654f966a6121d67e0097f4fc759405ffc9d34ca430032ed556a
 DIST github-cli-2.32.1-deps.tar.xz 100042076 BLAKE2B 
d362088e2fd24938c52c352ca88a2af76f31c8f4048bd0845043668cfe5d438921623ddf99f54d4239dc2cce927d147e1a4ba16fceef4f824b9a2e34540854e2
 SHA512 
7964719eed7383169496c6f156320eb2c9aa2b7fae374c025bad2dad2215e0502662a0a7da3722cfb660132e6cf5620cb4189ce8aaf9cf6a36f0cda29d28d12b
 DIST github-cli-2.32.1.tar.gz 897387 BLAKE2B 
0a46b501958b3fc1b5d3e5467292dd3a3e4cc721d5ac822f637e26f345654bed01bdb27283a86351460c5f2650a54b635abf839e312bfe9b98b794eb60880aff
 SHA512 
4b5b56809110c6b7c19dec344c7171df0eed0bcf5388bc0c63ce5ac4a3b6f4606f1e8de207f5b6889834013059013e8a4b6701b82b933322ed4fcf0e48144b72
+DIST github-cli-2.33.0-deps.tar.xz 100032668 BLAKE2B 
bffaed49d2724951a34e37632ff131f47f66fb79516a42482d2e0d7399b29266cad5b8519912feb33e279d5b7d39b76efaeaaa48ff462db9912e063b41ce8dc3
 SHA512 
aefdb7c12507dbf02a943be9074f7eac12beefd7a5f8a7a08bbacbbaa46cd91f46262258b3fc0a00b41fb0ccf4816621e9ebe4f2bb10b5f6c5e6260ac003
+DIST github-cli-2.33.0.tar.gz 898066 BLAKE2B 
0af992e0687c1e5c2c3552e35419a65af348f76eee91f38377396eb7e7713e8c982b4677a9c35f329380d0281b443e342bb6470b0eade85118248e41333266db
 SHA512 
76a5490964828e375eb3cc0a625c25e6005f9cd44ae40ec04432fd7672bed4628b4db4ffdc713ec2cb59f00c6308e5cf2141a3c932d08ccef4fe5ef676b09916

diff --git a/dev-util/github-cli/github-cli-2.33.0.ebuild 
b/dev-util/github-cli/github-cli-2.33.0.ebuild
new file mode 100644
index ..6ee5a5968dbd
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.33.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-08-07 Thread William Hubbs
commit: 88804394b3904d3543db91e61b77186cb0e89edd
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Aug  7 19:31:10 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Aug  7 19:31:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88804394

dev-util/github-cli: add 2.32.1

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.32.1.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index efb499c8e908..753c406ed45d 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -2,3 +2,5 @@ DIST github-cli-2.27.0-deps.tar.xz 106343228 BLAKE2B 
ac99c816089dd7cc309dcb0984d
 DIST github-cli-2.27.0.tar.gz 828409 BLAKE2B 
1c543dbf8caf39198107a71bcde159996e6a333c9a0949d4a8862e72255246d558e72e35e13947bbc4a3122a101a623c45681c6ddf127d1f4a425b7ff03ad3d6
 SHA512 
ea475e828ac28dca3ba5a12a5340df697c4dad2d76140eb591b822e438a78511d82e4786b6949fb52396d8b1ef07d70b7d0b2a5a378785cf4b35d084829d1bea
 DIST github-cli-2.31.0-deps.tar.xz 106505536 BLAKE2B 
cfd4fd3b11839edeef86382b15a2adc561d9d8377b3fe75d896914820e70708cf9781966e25afed3538c284a17efb82da4087613ab74c1a4acb2fb62d76b7f67
 SHA512 
e9f339d400841541d6aefb8b1725d36a5b6351edcdd4bc7ec25eb75cb8d15041a995e1bbcf9506ce5d96ea2bdaccf02077e37f593917ea3157937ea466e7f5a3
 DIST github-cli-2.31.0.tar.gz 888221 BLAKE2B 
ad1d0125ca043f180d1cb46eb4413ea654e3ab23ea72cac10c04c40f5858fda825b6cfa2022454293018416a1ef12b8182fe1bdfaf6fea977145503689a062a0
 SHA512 
e0dbdba44d8a4ce9edb1b7387f26b8a865cf35d1006e86547ff44b7bffe78b29885b4e5e9654f966a6121d67e0097f4fc759405ffc9d34ca430032ed556a
+DIST github-cli-2.32.1-deps.tar.xz 100042076 BLAKE2B 
d362088e2fd24938c52c352ca88a2af76f31c8f4048bd0845043668cfe5d438921623ddf99f54d4239dc2cce927d147e1a4ba16fceef4f824b9a2e34540854e2
 SHA512 
7964719eed7383169496c6f156320eb2c9aa2b7fae374c025bad2dad2215e0502662a0a7da3722cfb660132e6cf5620cb4189ce8aaf9cf6a36f0cda29d28d12b
+DIST github-cli-2.32.1.tar.gz 897387 BLAKE2B 
0a46b501958b3fc1b5d3e5467292dd3a3e4cc721d5ac822f637e26f345654bed01bdb27283a86351460c5f2650a54b635abf839e312bfe9b98b794eb60880aff
 SHA512 
4b5b56809110c6b7c19dec344c7171df0eed0bcf5388bc0c63ce5ac4a3b6f4606f1e8de207f5b6889834013059013e8a4b6701b82b933322ed4fcf0e48144b72

diff --git a/dev-util/github-cli/github-cli-2.32.1.ebuild 
b/dev-util/github-cli/github-cli-2.32.1.ebuild
new file mode 100644
index ..6ee5a5968dbd
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.32.1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-06-23 Thread Sam James
commit: 59b94a5a9577c9ba7df00404ba0334b2757affb9
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Sat Jun 24 02:47:22 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 24 02:58:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b94a5a

dev-util/github-cli: replace `filter-flags -flto*` with `filter-lto`

Signed-off-by: Leonardo Hernández Hernández  proton.me>
Signed-off-by: Sam James  gentoo.org>

 dev-util/github-cli/github-cli-2.27.0.ebuild | 4 ++--
 dev-util/github-cli/github-cli-2.31.0.ebuild | 4 ++--
 dev-util/github-cli/github-cli-.ebuild   | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-util/github-cli/github-cli-2.27.0.ebuild 
b/dev-util/github-cli/github-cli-2.27.0.ebuild
index afe949aebe68..6ee5a5968dbd 100644
--- a/dev-util/github-cli/github-cli-2.27.0.ebuild
+++ b/dev-util/github-cli/github-cli-2.27.0.ebuild
@@ -35,8 +35,8 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Filter '-flto*' flags to avoid build failures.
-   filter-flags "-flto*"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
# Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
filter-flags "-ggdb3"
# Go LDFLAGS are not the same as GCC/Binutils LDFLAGS

diff --git a/dev-util/github-cli/github-cli-2.31.0.ebuild 
b/dev-util/github-cli/github-cli-2.31.0.ebuild
index afe949aebe68..6ee5a5968dbd 100644
--- a/dev-util/github-cli/github-cli-2.31.0.ebuild
+++ b/dev-util/github-cli/github-cli-2.31.0.ebuild
@@ -35,8 +35,8 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Filter '-flto*' flags to avoid build failures.
-   filter-flags "-flto*"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
# Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
filter-flags "-ggdb3"
# Go LDFLAGS are not the same as GCC/Binutils LDFLAGS

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index 598812a1948b..95a298653b46 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -35,8 +35,8 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Filter '-flto*' flags to avoid build failures.
-   filter-flags "-flto*"
+   # Filter LTO flags to avoid build failures.
+   filter-lto
# Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
filter-flags "-ggdb3"
# Go LDFLAGS are not the same as GCC/Binutils LDFLAGS



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-06-22 Thread William Hubbs
commit: 4821fee94aa8e79cc797a74b03597572417ba622
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jun 22 20:39:23 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jun 22 20:39:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4821fee9

dev-util/github-cli: drop 2.18.0, 2.20.2, 2.21.2

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  6 ---
 dev-util/github-cli/github-cli-2.18.0.ebuild | 66 
 dev-util/github-cli/github-cli-2.20.2.ebuild | 66 
 dev-util/github-cli/github-cli-2.21.2.ebuild | 66 
 4 files changed, 204 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 0199d0d25e6e..efb499c8e908 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,9 +1,3 @@
-DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b262d19a701b6cb2a82420a29da5b08dab4369671f40adcdfb34760344d4d220bd91263cdefd7d57b92ce5770b2e682c6e4b44
 SHA512 
e9b1f87d4ec1c1e9d689df87c8a5d30180b0d60e074e292d262d0f204dc921bf09f13df8589892dccfde9ffd5579bd9c1c83169e36f6dc25b23ba3bfb2aa01be
-DIST github-cli-2.18.0.tar.gz 738480 BLAKE2B 
c56adae59ddbfa6693dff569c265db615e9609f7fee9942c349cb202d64f44ea1e2cccdb89632e65ebb954e133939e54053933b77782c741d768742403975e65
 SHA512 
3522d42016b165a8ffa5620bd2352023affceabb26d6c14ba5f5eeb5f42e3cfc002c71e7f0c1acbf4d626f0c3588c1609255802aabd1f4f700875ada82ef6826
-DIST github-cli-2.20.2-deps.tar.xz 105896704 BLAKE2B 
c9562daa3dc682b4733d4a6b716556b13fc7329a46124f4cd1a0b2df9b8498d32801a97259a27645af643482d934a5968b237c48da4bcba2fe8ceda7d833e194
 SHA512 
81b1d7d7309a6abd0f9c2702345dc983816e835ed9058d140c717e5fc26352dc456d2bf63fc1bea3ca890c31e7173f3d3450939a3a58fff1b317b352bff0a885
-DIST github-cli-2.20.2.tar.gz 759883 BLAKE2B 
a227ffc039ce861b0e006679f5487c5d9016cb57fc90438e29cccfcce6b087534ca7f53858c492296f35d721b802639d8b0100cf9c04166162e2f207a35c856b
 SHA512 
2e14c408c2fbf5a409e7a271b5c77400cc84cd7f2567722fe7140f685ecd297dd39062d02d3fafaf9fa396da419fb7aa0c2d93c0541a30f3286c6745c5965df4
-DIST github-cli-2.21.2-deps.tar.xz 105943376 BLAKE2B 
88b2f6a74a5bd88bfab180531c275f210ec153a5accc07a5a22889151ce373feab4cdd50db0677fa3208de43e89b646327722b50fe5d87194f0a13b97cda8c9b
 SHA512 
4bd39a91b33f4c8898e69901d1657dfd93a6889c51bd8f1c6107517e6280bd77e86a3afcff406480ef2e0625fb2c41b37fb8abb9bafdb35d306c50d9e40c63d6
-DIST github-cli-2.21.2.tar.gz 774307 BLAKE2B 
8f50d2cf5b093311974bffb56c0055021c35bf14f9323af0baaf5bc5803340ea053f7ae3cb5fe6475820c4e59a0044b55e865a87763be0cf65f7bb58ea9f5196
 SHA512 
c2bf99cfabae8329c6c0114afb2b7aadc6b081a0fa2398452c452f97e393f3597a61aa354223fad4f4a848089ee42dc26a529a43fc7006ffae090dadcb18c2e7
 DIST github-cli-2.27.0-deps.tar.xz 106343228 BLAKE2B 
ac99c816089dd7cc309dcb0984d87477e8b733ce938ac4b75c86357d63145ed4d4635d8c344fb68c806241636c7a84da372e228d8c074ad08b695c266b5c83ec
 SHA512 
caa52b8c4216f2cde4bfd33df3240b79401e91574061d6417cf78c8049e617996aa20b6dd09aa7ab8e7f9f5ebaa55b2f997da47d153d95e6d413707c1a7fc3c3
 DIST github-cli-2.27.0.tar.gz 828409 BLAKE2B 
1c543dbf8caf39198107a71bcde159996e6a333c9a0949d4a8862e72255246d558e72e35e13947bbc4a3122a101a623c45681c6ddf127d1f4a425b7ff03ad3d6
 SHA512 
ea475e828ac28dca3ba5a12a5340df697c4dad2d76140eb591b822e438a78511d82e4786b6949fb52396d8b1ef07d70b7d0b2a5a378785cf4b35d084829d1bea
 DIST github-cli-2.31.0-deps.tar.xz 106505536 BLAKE2B 
cfd4fd3b11839edeef86382b15a2adc561d9d8377b3fe75d896914820e70708cf9781966e25afed3538c284a17efb82da4087613ab74c1a4acb2fb62d76b7f67
 SHA512 
e9f339d400841541d6aefb8b1725d36a5b6351edcdd4bc7ec25eb75cb8d15041a995e1bbcf9506ce5d96ea2bdaccf02077e37f593917ea3157937ea466e7f5a3

diff --git a/dev-util/github-cli/github-cli-2.18.0.ebuild 
b/dev-util/github-cli/github-cli-2.18.0.ebuild
deleted file mode 100644
index 834906664386..
--- a/dev-util/github-cli/github-cli-2.18.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="GitHub CLI"
-HOMEPAGE="https://github.com/cli/cli;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/cli/cli.git;
-else
-   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
-   S="${WORKDIR}/cli-${PV}"
-fi
-
-LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
-SLOT="0"
-
-RDEPEND=">=dev-vcs/git-1.7.3"
-
-RESTRICT="test"
-
-src_unpack() {
-   if [[ ${PV} == * ]]; then
-   git-r3_src_unpack
-   go-module_live_vendor
-   else
-   go-module_src_unpack
-   fi
-}
-
-src_compile() {
-   [[ ${PV} == * ]] || export 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-06-22 Thread William Hubbs
commit: 567106f8c03c1eebf5ab8b6ae0bb163ca796190d
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jun 22 20:34:39 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jun 22 20:34:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=567106f8

dev-util/github-cli: add 2.31.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.31.0.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 32bea17638b5..0199d0d25e6e 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -6,3 +6,5 @@ DIST github-cli-2.21.2-deps.tar.xz 105943376 BLAKE2B 
88b2f6a74a5bd88bfab180531c2
 DIST github-cli-2.21.2.tar.gz 774307 BLAKE2B 
8f50d2cf5b093311974bffb56c0055021c35bf14f9323af0baaf5bc5803340ea053f7ae3cb5fe6475820c4e59a0044b55e865a87763be0cf65f7bb58ea9f5196
 SHA512 
c2bf99cfabae8329c6c0114afb2b7aadc6b081a0fa2398452c452f97e393f3597a61aa354223fad4f4a848089ee42dc26a529a43fc7006ffae090dadcb18c2e7
 DIST github-cli-2.27.0-deps.tar.xz 106343228 BLAKE2B 
ac99c816089dd7cc309dcb0984d87477e8b733ce938ac4b75c86357d63145ed4d4635d8c344fb68c806241636c7a84da372e228d8c074ad08b695c266b5c83ec
 SHA512 
caa52b8c4216f2cde4bfd33df3240b79401e91574061d6417cf78c8049e617996aa20b6dd09aa7ab8e7f9f5ebaa55b2f997da47d153d95e6d413707c1a7fc3c3
 DIST github-cli-2.27.0.tar.gz 828409 BLAKE2B 
1c543dbf8caf39198107a71bcde159996e6a333c9a0949d4a8862e72255246d558e72e35e13947bbc4a3122a101a623c45681c6ddf127d1f4a425b7ff03ad3d6
 SHA512 
ea475e828ac28dca3ba5a12a5340df697c4dad2d76140eb591b822e438a78511d82e4786b6949fb52396d8b1ef07d70b7d0b2a5a378785cf4b35d084829d1bea
+DIST github-cli-2.31.0-deps.tar.xz 106505536 BLAKE2B 
cfd4fd3b11839edeef86382b15a2adc561d9d8377b3fe75d896914820e70708cf9781966e25afed3538c284a17efb82da4087613ab74c1a4acb2fb62d76b7f67
 SHA512 
e9f339d400841541d6aefb8b1725d36a5b6351edcdd4bc7ec25eb75cb8d15041a995e1bbcf9506ce5d96ea2bdaccf02077e37f593917ea3157937ea466e7f5a3
+DIST github-cli-2.31.0.tar.gz 888221 BLAKE2B 
ad1d0125ca043f180d1cb46eb4413ea654e3ab23ea72cac10c04c40f5858fda825b6cfa2022454293018416a1ef12b8182fe1bdfaf6fea977145503689a062a0
 SHA512 
e0dbdba44d8a4ce9edb1b7387f26b8a865cf35d1006e86547ff44b7bffe78b29885b4e5e9654f966a6121d67e0097f4fc759405ffc9d34ca430032ed556a

diff --git a/dev-util/github-cli/github-cli-2.31.0.ebuild 
b/dev-util/github-cli/github-cli-2.31.0.ebuild
new file mode 100644
index ..afe949aebe68
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.31.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-04-13 Thread William Hubbs
commit: 6c202db6b69ba6a7a95b327d4b89e9b9f6f8bd73
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Apr 13 15:02:16 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Apr 13 15:02:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c202db6

dev-util/github-cli: add 2.27.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.27.0.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 8453d29a7104..32bea17638b5 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -4,3 +4,5 @@ DIST github-cli-2.20.2-deps.tar.xz 105896704 BLAKE2B 
c9562daa3dc682b4733d4a6b716
 DIST github-cli-2.20.2.tar.gz 759883 BLAKE2B 
a227ffc039ce861b0e006679f5487c5d9016cb57fc90438e29cccfcce6b087534ca7f53858c492296f35d721b802639d8b0100cf9c04166162e2f207a35c856b
 SHA512 
2e14c408c2fbf5a409e7a271b5c77400cc84cd7f2567722fe7140f685ecd297dd39062d02d3fafaf9fa396da419fb7aa0c2d93c0541a30f3286c6745c5965df4
 DIST github-cli-2.21.2-deps.tar.xz 105943376 BLAKE2B 
88b2f6a74a5bd88bfab180531c275f210ec153a5accc07a5a22889151ce373feab4cdd50db0677fa3208de43e89b646327722b50fe5d87194f0a13b97cda8c9b
 SHA512 
4bd39a91b33f4c8898e69901d1657dfd93a6889c51bd8f1c6107517e6280bd77e86a3afcff406480ef2e0625fb2c41b37fb8abb9bafdb35d306c50d9e40c63d6
 DIST github-cli-2.21.2.tar.gz 774307 BLAKE2B 
8f50d2cf5b093311974bffb56c0055021c35bf14f9323af0baaf5bc5803340ea053f7ae3cb5fe6475820c4e59a0044b55e865a87763be0cf65f7bb58ea9f5196
 SHA512 
c2bf99cfabae8329c6c0114afb2b7aadc6b081a0fa2398452c452f97e393f3597a61aa354223fad4f4a848089ee42dc26a529a43fc7006ffae090dadcb18c2e7
+DIST github-cli-2.27.0-deps.tar.xz 106343228 BLAKE2B 
ac99c816089dd7cc309dcb0984d87477e8b733ce938ac4b75c86357d63145ed4d4635d8c344fb68c806241636c7a84da372e228d8c074ad08b695c266b5c83ec
 SHA512 
caa52b8c4216f2cde4bfd33df3240b79401e91574061d6417cf78c8049e617996aa20b6dd09aa7ab8e7f9f5ebaa55b2f997da47d153d95e6d413707c1a7fc3c3
+DIST github-cli-2.27.0.tar.gz 828409 BLAKE2B 
1c543dbf8caf39198107a71bcde159996e6a333c9a0949d4a8862e72255246d558e72e35e13947bbc4a3122a101a623c45681c6ddf127d1f4a425b7ff03ad3d6
 SHA512 
ea475e828ac28dca3ba5a12a5340df697c4dad2d76140eb591b822e438a78511d82e4786b6949fb52396d8b1ef07d70b7d0b2a5a378785cf4b35d084829d1bea

diff --git a/dev-util/github-cli/github-cli-2.27.0.ebuild 
b/dev-util/github-cli/github-cli-2.27.0.ebuild
new file mode 100644
index ..afe949aebe68
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.27.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2023-01-16 Thread William Hubbs
commit: bdca0b565a5b1ba816bb7b2e1e72ec734595804d
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jan 16 20:11:18 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jan 16 20:11:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdca0b56

dev-util/github-cli: add 2.21.2

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.21.2.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 4f5aaa3aa312..8453d29a7104 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -2,3 +2,5 @@ DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b2
 DIST github-cli-2.18.0.tar.gz 738480 BLAKE2B 
c56adae59ddbfa6693dff569c265db615e9609f7fee9942c349cb202d64f44ea1e2cccdb89632e65ebb954e133939e54053933b77782c741d768742403975e65
 SHA512 
3522d42016b165a8ffa5620bd2352023affceabb26d6c14ba5f5eeb5f42e3cfc002c71e7f0c1acbf4d626f0c3588c1609255802aabd1f4f700875ada82ef6826
 DIST github-cli-2.20.2-deps.tar.xz 105896704 BLAKE2B 
c9562daa3dc682b4733d4a6b716556b13fc7329a46124f4cd1a0b2df9b8498d32801a97259a27645af643482d934a5968b237c48da4bcba2fe8ceda7d833e194
 SHA512 
81b1d7d7309a6abd0f9c2702345dc983816e835ed9058d140c717e5fc26352dc456d2bf63fc1bea3ca890c31e7173f3d3450939a3a58fff1b317b352bff0a885
 DIST github-cli-2.20.2.tar.gz 759883 BLAKE2B 
a227ffc039ce861b0e006679f5487c5d9016cb57fc90438e29cccfcce6b087534ca7f53858c492296f35d721b802639d8b0100cf9c04166162e2f207a35c856b
 SHA512 
2e14c408c2fbf5a409e7a271b5c77400cc84cd7f2567722fe7140f685ecd297dd39062d02d3fafaf9fa396da419fb7aa0c2d93c0541a30f3286c6745c5965df4
+DIST github-cli-2.21.2-deps.tar.xz 105943376 BLAKE2B 
88b2f6a74a5bd88bfab180531c275f210ec153a5accc07a5a22889151ce373feab4cdd50db0677fa3208de43e89b646327722b50fe5d87194f0a13b97cda8c9b
 SHA512 
4bd39a91b33f4c8898e69901d1657dfd93a6889c51bd8f1c6107517e6280bd77e86a3afcff406480ef2e0625fb2c41b37fb8abb9bafdb35d306c50d9e40c63d6
+DIST github-cli-2.21.2.tar.gz 774307 BLAKE2B 
8f50d2cf5b093311974bffb56c0055021c35bf14f9323af0baaf5bc5803340ea053f7ae3cb5fe6475820c4e59a0044b55e865a87763be0cf65f7bb58ea9f5196
 SHA512 
c2bf99cfabae8329c6c0114afb2b7aadc6b081a0fa2398452c452f97e393f3597a61aa354223fad4f4a848089ee42dc26a529a43fc7006ffae090dadcb18c2e7

diff --git a/dev-util/github-cli/github-cli-2.21.2.ebuild 
b/dev-util/github-cli/github-cli-2.21.2.ebuild
new file mode 100644
index ..afe949aebe68
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.21.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-12-01 Thread William Hubbs
commit: 056549238ea8aae862c3833ddb07469c9a5a148d
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Dec  1 21:16:00 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Dec  1 21:16:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05654923

dev-util/github-cli: drop 2.14.3

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 -
 dev-util/github-cli/github-cli-2.14.3.ebuild | 66 
 2 files changed, 68 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index c05c0babea21..4f5aaa3aa312 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,5 +1,3 @@
-DIST github-cli-2.14.3-deps.tar.xz 77143036 BLAKE2B 
7f06905270a7c9b17bbe8a83353c57da84cb365283fbb4bc488f2ce8873de79494adcf9d34aacd057d7610c3a68107f7fa19fcf74e885025a5e9f44ba49890a0
 SHA512 
da2b7d57160d22645b491fa8ffc93148c096a10b65aa9d4d4b8b4b1837460f3c5296d704e6f4fa0fd709d3f7c590cdf39c4c637c38b255c8b389ef106c35fb90
-DIST github-cli-2.14.3.tar.gz 716098 BLAKE2B 
7b45f97859501be4e639584e287d2114b9ed87402d3f35cc56eebdef8bf2b3cf8b9ecff633cf44a822edf20a5000c38a5b1c38822b0bf670d6c4c9c4e5e1a052
 SHA512 
460f3c053c1f0bea458f7a891f2b1a4cbd68b754bc165e3b097215748fc220f96138cf010608092702c86403d4551b288faba4349a69ae0e92b93ef4564825b5
 DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b262d19a701b6cb2a82420a29da5b08dab4369671f40adcdfb34760344d4d220bd91263cdefd7d57b92ce5770b2e682c6e4b44
 SHA512 
e9b1f87d4ec1c1e9d689df87c8a5d30180b0d60e074e292d262d0f204dc921bf09f13df8589892dccfde9ffd5579bd9c1c83169e36f6dc25b23ba3bfb2aa01be
 DIST github-cli-2.18.0.tar.gz 738480 BLAKE2B 
c56adae59ddbfa6693dff569c265db615e9609f7fee9942c349cb202d64f44ea1e2cccdb89632e65ebb954e133939e54053933b77782c741d768742403975e65
 SHA512 
3522d42016b165a8ffa5620bd2352023affceabb26d6c14ba5f5eeb5f42e3cfc002c71e7f0c1acbf4d626f0c3588c1609255802aabd1f4f700875ada82ef6826
 DIST github-cli-2.20.2-deps.tar.xz 105896704 BLAKE2B 
c9562daa3dc682b4733d4a6b716556b13fc7329a46124f4cd1a0b2df9b8498d32801a97259a27645af643482d934a5968b237c48da4bcba2fe8ceda7d833e194
 SHA512 
81b1d7d7309a6abd0f9c2702345dc983816e835ed9058d140c717e5fc26352dc456d2bf63fc1bea3ca890c31e7173f3d3450939a3a58fff1b317b352bff0a885

diff --git a/dev-util/github-cli/github-cli-2.14.3.ebuild 
b/dev-util/github-cli/github-cli-2.14.3.ebuild
deleted file mode 100644
index 834906664386..
--- a/dev-util/github-cli/github-cli-2.14.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="GitHub CLI"
-HOMEPAGE="https://github.com/cli/cli;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/cli/cli.git;
-else
-   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
-   S="${WORKDIR}/cli-${PV}"
-fi
-
-LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
-SLOT="0"
-
-RDEPEND=">=dev-vcs/git-1.7.3"
-
-RESTRICT="test"
-
-src_unpack() {
-   if [[ ${PV} == * ]]; then
-   git-r3_src_unpack
-   go-module_live_vendor
-   else
-   go-module_src_unpack
-   fi
-}
-
-src_compile() {
-   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Filter '-flto*' flags to avoid build failures.
-   filter-flags "-flto*"
-   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
-   filter-flags "-ggdb3"
-   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
-   unset LDFLAGS
-   # Once we set up cross compiling, this line will need to be adjusted
-   # to compile for the target.
-   # Everything else in this function happens on the host.
-   emake
-
-   einfo "Building man pages"
-   emake manpages
-
-   einfo "Building completions"
-   go run ./cmd/gh completion -s bash > gh.bash-completion || die
-   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
-}
-
-src_install() {
-   dobin bin/gh
-   dodoc README.md
-
-   doman share/man/man?/gh*.?
-
-   newbashcomp gh.bash-completion gh
-   insinto /usr/share/zsh/site-functions
-   newins gh.zsh-completion _gh
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-12-01 Thread William Hubbs
commit: 1dc05d35f986a5a3d96957221b46008ca00c069f
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Dec  1 21:12:38 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Dec  1 21:13:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc05d35

dev-util/github-cli: add 2.20.2

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.20.2.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 2860884c7156..c05c0babea21 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -2,3 +2,5 @@ DIST github-cli-2.14.3-deps.tar.xz 77143036 BLAKE2B 
7f06905270a7c9b17bbe8a83353c
 DIST github-cli-2.14.3.tar.gz 716098 BLAKE2B 
7b45f97859501be4e639584e287d2114b9ed87402d3f35cc56eebdef8bf2b3cf8b9ecff633cf44a822edf20a5000c38a5b1c38822b0bf670d6c4c9c4e5e1a052
 SHA512 
460f3c053c1f0bea458f7a891f2b1a4cbd68b754bc165e3b097215748fc220f96138cf010608092702c86403d4551b288faba4349a69ae0e92b93ef4564825b5
 DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b262d19a701b6cb2a82420a29da5b08dab4369671f40adcdfb34760344d4d220bd91263cdefd7d57b92ce5770b2e682c6e4b44
 SHA512 
e9b1f87d4ec1c1e9d689df87c8a5d30180b0d60e074e292d262d0f204dc921bf09f13df8589892dccfde9ffd5579bd9c1c83169e36f6dc25b23ba3bfb2aa01be
 DIST github-cli-2.18.0.tar.gz 738480 BLAKE2B 
c56adae59ddbfa6693dff569c265db615e9609f7fee9942c349cb202d64f44ea1e2cccdb89632e65ebb954e133939e54053933b77782c741d768742403975e65
 SHA512 
3522d42016b165a8ffa5620bd2352023affceabb26d6c14ba5f5eeb5f42e3cfc002c71e7f0c1acbf4d626f0c3588c1609255802aabd1f4f700875ada82ef6826
+DIST github-cli-2.20.2-deps.tar.xz 105896704 BLAKE2B 
c9562daa3dc682b4733d4a6b716556b13fc7329a46124f4cd1a0b2df9b8498d32801a97259a27645af643482d934a5968b237c48da4bcba2fe8ceda7d833e194
 SHA512 
81b1d7d7309a6abd0f9c2702345dc983816e835ed9058d140c717e5fc26352dc456d2bf63fc1bea3ca890c31e7173f3d3450939a3a58fff1b317b352bff0a885
+DIST github-cli-2.20.2.tar.gz 759883 BLAKE2B 
a227ffc039ce861b0e006679f5487c5d9016cb57fc90438e29cccfcce6b087534ca7f53858c492296f35d721b802639d8b0100cf9c04166162e2f207a35c856b
 SHA512 
2e14c408c2fbf5a409e7a271b5c77400cc84cd7f2567722fe7140f685ecd297dd39062d02d3fafaf9fa396da419fb7aa0c2d93c0541a30f3286c6745c5965df4

diff --git a/dev-util/github-cli/github-cli-2.20.2.ebuild 
b/dev-util/github-cli/github-cli-2.20.2.ebuild
new file mode 100644
index ..834906664386
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.20.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-10-19 Thread William Hubbs
commit: 8f6af58d0e25df2b0ced9e6f37fcc63e5a0c4ec3
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct 19 20:42:12 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct 19 20:42:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f6af58d

dev-util/github-cli: add 2.18.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.18.0.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index bc0727811d30..3cddd7104f79 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -4,3 +4,5 @@ DIST github-cli-2.12.1-deps.tar.xz 76485020 BLAKE2B 
c2d7e31a2fba9c34fc75c8d8f683
 DIST github-cli-2.12.1.tar.gz 717685 BLAKE2B 
b9782846185b8fd5295651cfdd082b987555edd0c3ae2ef7e0d69e100f331ea89e5ae9b8824af013f008677df2a0e8313b52cd7e0d95110884a62eb9e6e5c32e
 SHA512 
508f02cfb12bec485a6123bf04056e879832a762d7563c73d1f006f4c382cad75cfb73ae74f66f9ed90b0cfd68956434f2100bab1dd7c93ec6d0d7b3a9d2c13f
 DIST github-cli-2.14.3-deps.tar.xz 77143036 BLAKE2B 
7f06905270a7c9b17bbe8a83353c57da84cb365283fbb4bc488f2ce8873de79494adcf9d34aacd057d7610c3a68107f7fa19fcf74e885025a5e9f44ba49890a0
 SHA512 
da2b7d57160d22645b491fa8ffc93148c096a10b65aa9d4d4b8b4b1837460f3c5296d704e6f4fa0fd709d3f7c590cdf39c4c637c38b255c8b389ef106c35fb90
 DIST github-cli-2.14.3.tar.gz 716098 BLAKE2B 
7b45f97859501be4e639584e287d2114b9ed87402d3f35cc56eebdef8bf2b3cf8b9ecff633cf44a822edf20a5000c38a5b1c38822b0bf670d6c4c9c4e5e1a052
 SHA512 
460f3c053c1f0bea458f7a891f2b1a4cbd68b754bc165e3b097215748fc220f96138cf010608092702c86403d4551b288faba4349a69ae0e92b93ef4564825b5
+DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b262d19a701b6cb2a82420a29da5b08dab4369671f40adcdfb34760344d4d220bd91263cdefd7d57b92ce5770b2e682c6e4b44
 SHA512 
e9b1f87d4ec1c1e9d689df87c8a5d30180b0d60e074e292d262d0f204dc921bf09f13df8589892dccfde9ffd5579bd9c1c83169e36f6dc25b23ba3bfb2aa01be
+DIST github-cli-2.18.0.tar.gz 738480 BLAKE2B 
c56adae59ddbfa6693dff569c265db615e9609f7fee9942c349cb202d64f44ea1e2cccdb89632e65ebb954e133939e54053933b77782c741d768742403975e65
 SHA512 
3522d42016b165a8ffa5620bd2352023affceabb26d6c14ba5f5eeb5f42e3cfc002c71e7f0c1acbf4d626f0c3588c1609255802aabd1f4f700875ada82ef6826

diff --git a/dev-util/github-cli/github-cli-2.18.0.ebuild 
b/dev-util/github-cli/github-cli-2.18.0.ebuild
new file mode 100644
index ..834906664386
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.18.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-10-19 Thread William Hubbs
commit: 42db0f31ceb4e95b9489384b14bfbb96be0a54bd
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct 19 20:42:21 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct 19 20:42:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42db0f31

dev-util/github-cli: drop 2.11.3, 2.12.1

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  4 --
 dev-util/github-cli/github-cli-2.11.3.ebuild | 66 
 dev-util/github-cli/github-cli-2.12.1.ebuild | 66 
 3 files changed, 136 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 3cddd7104f79..2860884c7156 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,7 +1,3 @@
-DIST github-cli-2.11.3-deps.tar.xz 76137064 BLAKE2B 
6b8a224f8e0b05c32c8be83b4f5a0b05febb44b230c06ce0d14dfb5a814faf0361d24f32a5feb1ec348e9b80dd35635249bdf1febf6cd6202ba5ea1e3e6a3168
 SHA512 
f72909be8798a7efed8cb2ee2c37f51216056901fd285b4e2c894ebfc2f08194b99d846f2f0080da4c1c3359b47e36f7eece11b4bec93485da5330ad38c073f1
-DIST github-cli-2.11.3.tar.gz 716386 BLAKE2B 
dcb07cda11e03ffe75a9ec2fcb0ed33c1f2c6bb7599ed1b47ee9e1e0df609fa21ae2dd043be417cfee75dcb3686290f510c0fdffc0b1df08f816ab2ac79d940b
 SHA512 
952cd7c2a327c7169e201a4aa7c26a0e5c09a1ecef51b8d7c620fa9a849c2e8cc61447333f785851487a68d058b869e10bb290188594bd2fb00b0384297bdfd8
-DIST github-cli-2.12.1-deps.tar.xz 76485020 BLAKE2B 
c2d7e31a2fba9c34fc75c8d8f6836accbd2029b8f6be51c4ffda3d96ec06b9f331700573ac8478550676ed9385b8bc34ffa02a81d91aec3bde4bece0addae668
 SHA512 
1aa684d5aad6c5da45d4e0d8fe2c282a563890d7f48260668b393b0e93674b5c75862a84c421c8600c92d09ebfe655baaa42e3e7a4dc2f7a0792384ea555b2fc
-DIST github-cli-2.12.1.tar.gz 717685 BLAKE2B 
b9782846185b8fd5295651cfdd082b987555edd0c3ae2ef7e0d69e100f331ea89e5ae9b8824af013f008677df2a0e8313b52cd7e0d95110884a62eb9e6e5c32e
 SHA512 
508f02cfb12bec485a6123bf04056e879832a762d7563c73d1f006f4c382cad75cfb73ae74f66f9ed90b0cfd68956434f2100bab1dd7c93ec6d0d7b3a9d2c13f
 DIST github-cli-2.14.3-deps.tar.xz 77143036 BLAKE2B 
7f06905270a7c9b17bbe8a83353c57da84cb365283fbb4bc488f2ce8873de79494adcf9d34aacd057d7610c3a68107f7fa19fcf74e885025a5e9f44ba49890a0
 SHA512 
da2b7d57160d22645b491fa8ffc93148c096a10b65aa9d4d4b8b4b1837460f3c5296d704e6f4fa0fd709d3f7c590cdf39c4c637c38b255c8b389ef106c35fb90
 DIST github-cli-2.14.3.tar.gz 716098 BLAKE2B 
7b45f97859501be4e639584e287d2114b9ed87402d3f35cc56eebdef8bf2b3cf8b9ecff633cf44a822edf20a5000c38a5b1c38822b0bf670d6c4c9c4e5e1a052
 SHA512 
460f3c053c1f0bea458f7a891f2b1a4cbd68b754bc165e3b097215748fc220f96138cf010608092702c86403d4551b288faba4349a69ae0e92b93ef4564825b5
 DIST github-cli-2.18.0-deps.tar.xz 98885904 BLAKE2B 
2ba1252ca1ddab0e0dda6dbbd6b262d19a701b6cb2a82420a29da5b08dab4369671f40adcdfb34760344d4d220bd91263cdefd7d57b92ce5770b2e682c6e4b44
 SHA512 
e9b1f87d4ec1c1e9d689df87c8a5d30180b0d60e074e292d262d0f204dc921bf09f13df8589892dccfde9ffd5579bd9c1c83169e36f6dc25b23ba3bfb2aa01be

diff --git a/dev-util/github-cli/github-cli-2.11.3.ebuild 
b/dev-util/github-cli/github-cli-2.11.3.ebuild
deleted file mode 100644
index fdd2db7e3689..
--- a/dev-util/github-cli/github-cli-2.11.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="GitHub CLI"
-HOMEPAGE="https://github.com/cli/cli;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/cli/cli.git;
-else
-   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" 
https://github.com/ran-dall/portage-deps/raw/master/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~riscv"
-   S="${WORKDIR}/cli-${PV}"
-fi
-
-LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
-SLOT="0"
-
-RDEPEND=">=dev-vcs/git-1.7.3"
-
-RESTRICT="test"
-
-src_unpack() {
-   if [[ ${PV} == * ]]; then
-   git-r3_src_unpack
-   go-module_live_vendor
-   else
-   go-module_src_unpack
-   fi
-}
-
-src_compile() {
-   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Filter '-flto*' flags to avoid build failures.
-   filter-flags "-flto*"
-   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
-   filter-flags "-ggdb3"
-   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
-   unset LDFLAGS
-   # Once we set up cross compiling, this line will need to be adjusted
-   # to compile for the target.
-   # Everything else in this function happens on the host.
-   emake
-
-   einfo "Building man pages"
-   emake manpages
-
-   einfo "Building completions"
-   go run ./cmd/gh completion -s bash > gh.bash-completion || die
-   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
-}
-

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-08-25 Thread WANG Xuerui
commit: 139669848941102b2b8b593b2caf573483fd8f17
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Aug 25 06:57:33 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Aug 25 06:57:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13966984

dev-util/github-cli: keyword 2.14.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-util/github-cli/github-cli-2.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-2.14.3.ebuild 
b/dev-util/github-cli/github-cli-2.14.3.ebuild
index 77fd1c37e6b9..834906664386 100644
--- a/dev-util/github-cli/github-cli-2.14.3.ebuild
+++ b/dev-util/github-cli/github-cli-2.14.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
+   KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-08-25 Thread WANG Xuerui
commit: 82604657dc1f37852e96303993f4d886f124e613
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Aug 25 06:57:38 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Aug 25 06:57:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82604657

dev-util/github-cli: forward ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-util/github-cli/github-cli-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index e08b4ff2cbbe..598812a1948b 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~riscv"
+   KEYWORDS="~amd64 ~loong ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-08-05 Thread William Hubbs
commit: abbe89c2241490f807758dd2ac0cc3cf8ee68ee3
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Aug  5 18:57:10 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Aug  5 19:00:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abbe89c2

dev-util/github-cli: add 2.14.3

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.14.3.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 7da0067c9091..bc0727811d30 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -2,3 +2,5 @@ DIST github-cli-2.11.3-deps.tar.xz 76137064 BLAKE2B 
6b8a224f8e0b05c32c8be83b4f5a
 DIST github-cli-2.11.3.tar.gz 716386 BLAKE2B 
dcb07cda11e03ffe75a9ec2fcb0ed33c1f2c6bb7599ed1b47ee9e1e0df609fa21ae2dd043be417cfee75dcb3686290f510c0fdffc0b1df08f816ab2ac79d940b
 SHA512 
952cd7c2a327c7169e201a4aa7c26a0e5c09a1ecef51b8d7c620fa9a849c2e8cc61447333f785851487a68d058b869e10bb290188594bd2fb00b0384297bdfd8
 DIST github-cli-2.12.1-deps.tar.xz 76485020 BLAKE2B 
c2d7e31a2fba9c34fc75c8d8f6836accbd2029b8f6be51c4ffda3d96ec06b9f331700573ac8478550676ed9385b8bc34ffa02a81d91aec3bde4bece0addae668
 SHA512 
1aa684d5aad6c5da45d4e0d8fe2c282a563890d7f48260668b393b0e93674b5c75862a84c421c8600c92d09ebfe655baaa42e3e7a4dc2f7a0792384ea555b2fc
 DIST github-cli-2.12.1.tar.gz 717685 BLAKE2B 
b9782846185b8fd5295651cfdd082b987555edd0c3ae2ef7e0d69e100f331ea89e5ae9b8824af013f008677df2a0e8313b52cd7e0d95110884a62eb9e6e5c32e
 SHA512 
508f02cfb12bec485a6123bf04056e879832a762d7563c73d1f006f4c382cad75cfb73ae74f66f9ed90b0cfd68956434f2100bab1dd7c93ec6d0d7b3a9d2c13f
+DIST github-cli-2.14.3-deps.tar.xz 77143036 BLAKE2B 
7f06905270a7c9b17bbe8a83353c57da84cb365283fbb4bc488f2ce8873de79494adcf9d34aacd057d7610c3a68107f7fa19fcf74e885025a5e9f44ba49890a0
 SHA512 
da2b7d57160d22645b491fa8ffc93148c096a10b65aa9d4d4b8b4b1837460f3c5296d704e6f4fa0fd709d3f7c590cdf39c4c637c38b255c8b389ef106c35fb90
+DIST github-cli-2.14.3.tar.gz 716098 BLAKE2B 
7b45f97859501be4e639584e287d2114b9ed87402d3f35cc56eebdef8bf2b3cf8b9ecff633cf44a822edf20a5000c38a5b1c38822b0bf670d6c4c9c4e5e1a052
 SHA512 
460f3c053c1f0bea458f7a891f2b1a4cbd68b754bc165e3b097215748fc220f96138cf010608092702c86403d4551b288faba4349a69ae0e92b93ef4564825b5

diff --git a/dev-util/github-cli/github-cli-2.14.3.ebuild 
b/dev-util/github-cli/github-cli-2.14.3.ebuild
new file mode 100644
index ..77fd1c37e6b9
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.14.3.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-08-04 Thread Arthur Zamarin
commit: 444ad18e5a6dc787c0a7bc43717095f8c7bb3be4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug  4 18:40:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug  4 18:40:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444ad18e

dev-util/github-cli: Keyword 2.12.1 arm64, #863500

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-util/github-cli/github-cli-2.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-2.12.1.ebuild 
b/dev-util/github-cli/github-cli-2.12.1.ebuild
index 1dd5a7347001..77fd1c37e6b9 100644
--- a/dev-util/github-cli/github-cli-2.12.1.ebuild
+++ b/dev-util/github-cli/github-cli-2.12.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~ppc64 ~riscv"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-08-04 Thread Arthur Zamarin
commit: 3dac01ade8633ec7507f237da4597953a3ee891f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug  4 06:27:16 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug  4 06:27:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dac01ad

dev-util/github-cli: Keyword 2.12.1 ppc64, #863500

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-util/github-cli/github-cli-2.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-2.12.1.ebuild 
b/dev-util/github-cli/github-cli-2.12.1.ebuild
index e08b4ff2cbbe..1dd5a7347001 100644
--- a/dev-util/github-cli/github-cli-2.12.1.ebuild
+++ b/dev-util/github-cli/github-cli-2.12.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~riscv"
+   KEYWORDS="~amd64 ~ppc64 ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-06-22 Thread William Hubbs
commit: c642edb26bf86dc5b74c9d39602b7c0dc4fe27c7
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 22 14:44:11 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 22 14:55:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c642edb2

dev-util/github-cli: add 2.12.1

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.12.1.ebuild | 66 
 2 files changed, 68 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index aafc44154b04..7da0067c9091 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,2 +1,4 @@
 DIST github-cli-2.11.3-deps.tar.xz 76137064 BLAKE2B 
6b8a224f8e0b05c32c8be83b4f5a0b05febb44b230c06ce0d14dfb5a814faf0361d24f32a5feb1ec348e9b80dd35635249bdf1febf6cd6202ba5ea1e3e6a3168
 SHA512 
f72909be8798a7efed8cb2ee2c37f51216056901fd285b4e2c894ebfc2f08194b99d846f2f0080da4c1c3359b47e36f7eece11b4bec93485da5330ad38c073f1
 DIST github-cli-2.11.3.tar.gz 716386 BLAKE2B 
dcb07cda11e03ffe75a9ec2fcb0ed33c1f2c6bb7599ed1b47ee9e1e0df609fa21ae2dd043be417cfee75dcb3686290f510c0fdffc0b1df08f816ab2ac79d940b
 SHA512 
952cd7c2a327c7169e201a4aa7c26a0e5c09a1ecef51b8d7c620fa9a849c2e8cc61447333f785851487a68d058b869e10bb290188594bd2fb00b0384297bdfd8
+DIST github-cli-2.12.1-deps.tar.xz 76485020 BLAKE2B 
c2d7e31a2fba9c34fc75c8d8f6836accbd2029b8f6be51c4ffda3d96ec06b9f331700573ac8478550676ed9385b8bc34ffa02a81d91aec3bde4bece0addae668
 SHA512 
1aa684d5aad6c5da45d4e0d8fe2c282a563890d7f48260668b393b0e93674b5c75862a84c421c8600c92d09ebfe655baaa42e3e7a4dc2f7a0792384ea555b2fc
+DIST github-cli-2.12.1.tar.gz 717685 BLAKE2B 
b9782846185b8fd5295651cfdd082b987555edd0c3ae2ef7e0d69e100f331ea89e5ae9b8824af013f008677df2a0e8313b52cd7e0d95110884a62eb9e6e5c32e
 SHA512 
508f02cfb12bec485a6123bf04056e879832a762d7563c73d1f006f4c382cad75cfb73ae74f66f9ed90b0cfd68956434f2100bab1dd7c93ec6d0d7b3a9d2c13f

diff --git a/dev-util/github-cli/github-cli-2.12.1.ebuild 
b/dev-util/github-cli/github-cli-2.12.1.ebuild
new file mode 100644
index ..e08b4ff2cbbe
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.12.1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
+}
+
+src_install() {
+   dobin bin/gh
+   dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-06-22 Thread William Hubbs
commit: 3d01073cba7316a698d0222cd8f81c939d2fc23d
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 22 14:55:03 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 22 14:55:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d01073c

dev-util/github-cli: add myself as a maintainer

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/github-cli/metadata.xml b/dev-util/github-cli/metadata.xml
index 445256ff643d..a518799b2333 100644
--- a/dev-util/github-cli/metadata.xml
+++ b/dev-util/github-cli/metadata.xml
@@ -2,8 +2,8 @@
 https://www.gentoo.org/dtd/metadata.dtd;>
 
   
-robb...@gentoo.org
-Robin H. Johnson
+willi...@gentoo.org
+William Hubbs
   
   
 cli/cli



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-31 Thread Sam James
commit: d4f025e9b4df364ffd0677bafc802eec2ea587ad
Author: Randall T. Vasquez  icloud  com>
AuthorDate: Sun May 29 16:01:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 01:50:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f025e9

dev-util/github-cli: add new filter flags

This commits add `flag-o-matic` and add `-ggdb3` and `-flto*` in two seperate 
`fliter-flags` stanzas.

Closes: https://bugs.gentoo.org/847991
Signed-off-by: Randall T. Vasquez  icloud.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/github-cli/github-cli-.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index ec899ad1ea48..e08b4ff2cbbe 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-inherit bash-completion-r1 go-module
+inherit bash-completion-r1 flag-o-matic go-module
 
 DESCRIPTION="GitHub CLI"
 HOMEPAGE="https://github.com/cli/cli;
@@ -35,6 +35,10 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
# Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
# Once we set up cross compiling, this line will need to be adjusted



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-31 Thread Sam James
commit: ccce45a6a9753733dab4ecc3c4ccff4d6f3d8866
Author: Randall T. Vasquez  icloud  com>
AuthorDate: Sun May 29 15:04:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 01:50:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccce45a6

dev-util/github-cli: version bump

This commit bumps dev-util/github-cli from v2.11.0 to 2.11.3.

Signed-off-by: Randall T. Vasquez  icloud.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/github-cli/Manifest| 4 ++--
 .../{github-cli-2.11.0.ebuild => github-cli-2.11.3.ebuild}  | 6 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 82a40e137dc9..aafc44154b04 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,2 +1,2 @@
-DIST github-cli-2.11.0-deps.tar.xz 76402168 BLAKE2B 
210c9861199caf92aff566334530fe953cd66134219b88d83fc973920f9264b2343d1f3b16338b190b64333eaa825fd498e7e5011f03c87c2f8786316332e4f4
 SHA512 
f147e76cf0705d3e8da2296c038911c2b11e422d14dfdfce34bf31d0813189fba501878dcc5c37323b5ece37fa4948730c351c5438cc8a11e99677d2b8678801
-DIST github-cli-2.11.0.tar.gz 716133 BLAKE2B 
10c35dd8dd52e930c8dbae32d4ad5e02f2cb17872f9f1a4652ca6be7df2f8d38b18b98a1cf3577a249830691431f3408e0c3e00fda588e8c35412e32efcf2597
 SHA512 
4cccaf9baf1486ab031ffc4b0caf96b0b8eb0f25b52a303cc642ff35586139c13727b20cc9d4dc90335ba5b630f8778c49c6d7dcfdeb709df8c0de536e033ada
+DIST github-cli-2.11.3-deps.tar.xz 76137064 BLAKE2B 
6b8a224f8e0b05c32c8be83b4f5a0b05febb44b230c06ce0d14dfb5a814faf0361d24f32a5feb1ec348e9b80dd35635249bdf1febf6cd6202ba5ea1e3e6a3168
 SHA512 
f72909be8798a7efed8cb2ee2c37f51216056901fd285b4e2c894ebfc2f08194b99d846f2f0080da4c1c3359b47e36f7eece11b4bec93485da5330ad38c073f1
+DIST github-cli-2.11.3.tar.gz 716386 BLAKE2B 
dcb07cda11e03ffe75a9ec2fcb0ed33c1f2c6bb7599ed1b47ee9e1e0df609fa21ae2dd043be417cfee75dcb3686290f510c0fdffc0b1df08f816ab2ac79d940b
 SHA512 
952cd7c2a327c7169e201a4aa7c26a0e5c09a1ecef51b8d7c620fa9a849c2e8cc61447333f785851487a68d058b869e10bb290188594bd2fb00b0384297bdfd8

diff --git a/dev-util/github-cli/github-cli-2.11.0.ebuild 
b/dev-util/github-cli/github-cli-2.11.3.ebuild
similarity index 86%
rename from dev-util/github-cli/github-cli-2.11.0.ebuild
rename to dev-util/github-cli/github-cli-2.11.3.ebuild
index ec899ad1ea48..e08b4ff2cbbe 100644
--- a/dev-util/github-cli/github-cli-2.11.0.ebuild
+++ b/dev-util/github-cli/github-cli-2.11.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-inherit bash-completion-r1 go-module
+inherit bash-completion-r1 flag-o-matic go-module
 
 DESCRIPTION="GitHub CLI"
 HOMEPAGE="https://github.com/cli/cli;
@@ -35,6 +35,10 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Filter '-flto*' flags to avoid build failures.
+   filter-flags "-flto*"
+   # Filter '-ggdb3' flag to avoid build failures. bugs.gentoo.org/847991
+   filter-flags "-ggdb3"
# Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
# Once we set up cross compiling, this line will need to be adjusted



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-31 Thread Sam James
commit: f77e0e6f8c6fe13ad6cfe5e9e79538810c84df2b
Author: Randall T. Vasquez  icloud  com>
AuthorDate: Sun May 29 15:02:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 01:50:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f77e0e6f

dev-util/github-cli: drop v2.80.0

This commit drops dev-util/github-cli v2.80.0
Signed-off-by: Randall T. Vasquez  icloud.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/github-cli/Manifest|  2 -
 dev-util/github-cli/github-cli-2.8.0.ebuild | 62 -
 2 files changed, 64 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 3ebc07fee176..82a40e137dc9 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,4 +1,2 @@
 DIST github-cli-2.11.0-deps.tar.xz 76402168 BLAKE2B 
210c9861199caf92aff566334530fe953cd66134219b88d83fc973920f9264b2343d1f3b16338b190b64333eaa825fd498e7e5011f03c87c2f8786316332e4f4
 SHA512 
f147e76cf0705d3e8da2296c038911c2b11e422d14dfdfce34bf31d0813189fba501878dcc5c37323b5ece37fa4948730c351c5438cc8a11e99677d2b8678801
 DIST github-cli-2.11.0.tar.gz 716133 BLAKE2B 
10c35dd8dd52e930c8dbae32d4ad5e02f2cb17872f9f1a4652ca6be7df2f8d38b18b98a1cf3577a249830691431f3408e0c3e00fda588e8c35412e32efcf2597
 SHA512 
4cccaf9baf1486ab031ffc4b0caf96b0b8eb0f25b52a303cc642ff35586139c13727b20cc9d4dc90335ba5b630f8778c49c6d7dcfdeb709df8c0de536e033ada
-DIST github-cli-2.8.0-deps.tar.xz 157288896 BLAKE2B 
92937cf3c0928c6b8b29e0731d7a94f1df59a59fcbebda9f5a71d9da01963581934fcb112675b648d46398b3b7b522a9c2f5d08103fd31acee77ecec50c79508
 SHA512 
b0bdc79ca14a5d8309bec336c36e3b95bc0f2aa868ee611fa87f295ac7e5ff24399971ff88109d3d399fedecc311ab10af0f708a812ff0277744c2dae3d80129
-DIST github-cli-2.8.0.tar.gz 700297 BLAKE2B 
5a11d89532d57ecbe31a8e526d013f181f82f1c12148914f07f67ae20d6338ad7aa5aa25624136b276eb082f45c969da54744ce0d6398f0c22fe82805d635eab
 SHA512 
c46248a4b2376ff9df07198e9c29bd37dcd6c3a8b50081bfe0686f329b2bec8087506b435a17161af59f06fa26cda630a473c3e9d5470f8cc0c6cf5e25d9cea7

diff --git a/dev-util/github-cli/github-cli-2.8.0.ebuild 
b/dev-util/github-cli/github-cli-2.8.0.ebuild
deleted file mode 100644
index ec899ad1ea48..
--- a/dev-util/github-cli/github-cli-2.8.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module
-
-DESCRIPTION="GitHub CLI"
-HOMEPAGE="https://github.com/cli/cli;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/cli/cli.git;
-else
-   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
-   KEYWORDS="~amd64 ~riscv"
-   S="${WORKDIR}/cli-${PV}"
-fi
-
-LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
-SLOT="0"
-
-RDEPEND=">=dev-vcs/git-1.7.3"
-
-RESTRICT="test"
-
-src_unpack() {
-   if [[ ${PV} == * ]]; then
-   git-r3_src_unpack
-   go-module_live_vendor
-   else
-   go-module_src_unpack
-   fi
-}
-
-src_compile() {
-   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
-   unset LDFLAGS
-   # Once we set up cross compiling, this line will need to be adjusted
-   # to compile for the target.
-   # Everything else in this function happens on the host.
-   emake
-
-   einfo "Building man pages"
-   emake manpages
-
-   einfo "Building completions"
-   go run ./cmd/gh completion -s bash > gh.bash-completion || die
-   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
-}
-
-src_install() {
-   dobin bin/gh
-   dodoc README.md
-
-   doman share/man/man?/gh*.?
-
-   newbashcomp gh.bash-completion gh
-   insinto /usr/share/zsh/site-functions
-   newins gh.zsh-completion _gh
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-31 Thread Sam James
commit: 158c56858db0a92c1a5c866bd1292cab739a5342
Author: Randall T. Vasquez  icloud  com>
AuthorDate: Sun May 29 22:45:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 01:50:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=158c5685

dev-util/github-cli: update URL for EGO_SUM deps

This commit update the url to for the Go `EGO_SUM` deps.

Signed-off-by: Randall T. Vasquez  icloud.com>
Closes: https://github.com/gentoo/gentoo/pull/25677
Signed-off-by: Sam James  gentoo.org>

 dev-util/github-cli/github-cli-2.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-2.11.3.ebuild 
b/dev-util/github-cli/github-cli-2.11.3.ebuild
index e08b4ff2cbbe..fdd2db7e3689 100644
--- a/dev-util/github-cli/github-cli-2.11.3.ebuild
+++ b/dev-util/github-cli/github-cli-2.11.3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/cli/cli.git;
 else
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   SRC_URI+=" 
https://github.com/ran-dall/portage-deps/raw/master/${P}-deps.tar.xz;
KEYWORDS="~amd64 ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-24 Thread William Hubbs
commit: 572ba1c50b6970e3b2e6d4f6a8b005ada98f8d08
Author: William Hubbs  gentoo  org>
AuthorDate: Tue May 24 15:11:07 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue May 24 15:12:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=572ba1c5

dev-util/github-cli: sync live

Closes: https://bugs.gentoo.org/844436
Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/github-cli-.ebuild | 264 +
 1 file changed, 7 insertions(+), 257 deletions(-)

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index a85b465b8d87..ec899ad1ea48 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 inherit bash-completion-r1 go-module
 
 DESCRIPTION="GitHub CLI"
@@ -11,261 +11,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cli/cli.git;
 else
-EGO_SUM=(
-   "cloud.google.com/go v0.26.0/go.mod"
-   "github.com/AlecAivazis/survey/v2 v2.0.7"
-   "github.com/AlecAivazis/survey/v2 v2.0.7/go.mod"
-   "github.com/BurntSushi/toml v0.3.1"
-   "github.com/BurntSushi/toml v0.3.1/go.mod"
-   "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8"
-   "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8/go.mod"
-   "github.com/OneOfOne/xxhash v1.2.2/go.mod"
-   "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38"
-   "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod"
-   "github.com/alecthomas/chroma v0.7.2-0.20200304075647-34d9c7143bf5"
-   "github.com/alecthomas/chroma 
v0.7.2-0.20200304075647-34d9c7143bf5/go.mod"
-   "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721"
-   "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod"
-   "github.com/alecthomas/kong v0.2.1-0.20190708041108-0548c6b1afae/go.mod"
-   "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897"
-   "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897/go.mod"
-   "github.com/alecthomas/template 
v0.0.0-20160405071501-a0175ee3bccc/go.mod"
-   "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod"
-   "github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod"
-   "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod"
-   "github.com/beorn7/perks v1.0.0/go.mod"
-   "github.com/briandowns/spinner v1.10.1-0.20200410162419-bf6cf7ae6727"
-   "github.com/briandowns/spinner 
v1.10.1-0.20200410162419-bf6cf7ae6727/go.mod"
-   "github.com/cespare/xxhash v1.1.0/go.mod"
-   "github.com/charmbracelet/glamour v0.1.1-0.20200320173916-301d3bcf3058"
-   "github.com/charmbracelet/glamour 
v0.1.1-0.20200320173916-301d3bcf3058/go.mod"
-   "github.com/client9/misspell v0.3.4/go.mod"
-   "github.com/coreos/bbolt v1.3.2/go.mod"
-   "github.com/coreos/etcd v3.3.10+incompatible/go.mod"
-   "github.com/coreos/go-semver v0.2.0/go.mod"
-   "github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod"
-   "github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod"
-   "github.com/cpuguy83/go-md2man/v2 v2.0.0"
-   "github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod"
-   "github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964"
-   "github.com/danwakefield/fnmatch 
v0.0.0-20160403171240-cbb64ac3d964/go.mod"
-   "github.com/davecgh/go-spew v1.1.0/go.mod"
-   "github.com/davecgh/go-spew v1.1.1"
-   "github.com/davecgh/go-spew v1.1.1/go.mod"
-   "github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod"
-   "github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod"
-   "github.com/dlclark/regexp2 v1.1.6"
-   "github.com/dlclark/regexp2 v1.1.6/go.mod"
-   "github.com/dlclark/regexp2 v1.2.0"
-   "github.com/dlclark/regexp2 v1.2.0/go.mod"
-   "github.com/fatih/color v1.7.0"
-   "github.com/fatih/color v1.7.0/go.mod"
-   "github.com/fsnotify/fsnotify v1.4.7/go.mod"
-   "github.com/ghodss/yaml v1.0.0/go.mod"
-   "github.com/go-kit/kit v0.8.0/go.mod"
-   "github.com/go-logfmt/logfmt v0.3.0/go.mod"
-   "github.com/go-logfmt/logfmt v0.4.0/go.mod"
-   "github.com/go-stack/stack v1.8.0/go.mod"
-   "github.com/gogo/protobuf v1.1.1/go.mod"
-   "github.com/gogo/protobuf v1.2.1/go.mod"
-   "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod"
-   "github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod"
-   "github.com/golang/mock v1.1.1/go.mod"
-   "github.com/golang/protobuf v1.2.0/go.mod"
-   "github.com/golang/protobuf v1.3.1"
-   

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-05-24 Thread William Hubbs
commit: ae6a319c710261f8fdc8bd167ac705f6841ad71d
Author: William Hubbs  gentoo  org>
AuthorDate: Tue May 24 15:03:12 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue May 24 15:04:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6a319c

dev-util/github-cli: add 2.11.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  2 +
 dev-util/github-cli/github-cli-2.11.0.ebuild | 62 
 2 files changed, 64 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 8f13728bda4c..bb8cc96bab3f 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -48,6 +48,8 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.6.0.mod 736 
BLAKE2B 2337ea8dca35e
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.8.0.mod 622 BLAKE2B 
621e3faa3335ebec92c376298699510d800c2653c3680a438095c3dd9d6ba1f83f13a0302f316beea786b8f606ff3b4f62d21abe63d72f3f5c4e12fb81f61511
 SHA512 
409dad03104a4ac6b4a8c6da3540ab382345c86e48732f2b37d64ae2bc1c721d9f0a1ed0824a36085baa7102d2626e84f44706b16297623e8deb58fa9e24ba38
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
 DIST github-cli-2.0.0.tar.gz 548905 BLAKE2B 
f97d8be57270368999bd62eef1eba3e5ba1a9a7b1f879c3d3f8ef72b2fd68554fc4be37318b43054a7218e81f2984c0b2c2afdc226e81e1b51eb2fb15df72ed8
 SHA512 
3b0008894690a9a097259410e144e0031dee7c876e0b862e5219009d82a2f50d00ad22e3d92a16c369e9b1f0f51668e868c08d9eeb718dfe8a0337aa00233435
+DIST github-cli-2.11.0-deps.tar.xz 76402168 BLAKE2B 
210c9861199caf92aff566334530fe953cd66134219b88d83fc973920f9264b2343d1f3b16338b190b64333eaa825fd498e7e5011f03c87c2f8786316332e4f4
 SHA512 
f147e76cf0705d3e8da2296c038911c2b11e422d14dfdfce34bf31d0813189fba501878dcc5c37323b5ece37fa4948730c351c5438cc8a11e99677d2b8678801
+DIST github-cli-2.11.0.tar.gz 716133 BLAKE2B 
10c35dd8dd52e930c8dbae32d4ad5e02f2cb17872f9f1a4652ca6be7df2f8d38b18b98a1cf3577a249830691431f3408e0c3e00fda588e8c35412e32efcf2597
 SHA512 
4cccaf9baf1486ab031ffc4b0caf96b0b8eb0f25b52a303cc642ff35586139c13727b20cc9d4dc90335ba5b630f8778c49c6d7dcfdeb709df8c0de536e033ada
 DIST github-cli-2.4.0.tar.gz 637511 BLAKE2B 
09576f613bf07b4785619b4a0fa035b37e725aa96657998f7f4c3c05da118f781f85e29e48e8db6c210c284e3e43f482eac5c5f581b56de53c3119f3f47eda12
 SHA512 
393a09cbd838381627e349b4cd391755794ee71a2e9cf9fee14d155aabb48f1672b7fc100ea6d2782b5e2ca69c85bdc8f99d3aee81ce73e48e1ebc2ae79b91a8
 DIST github-cli-2.5.1.tar.gz 659105 BLAKE2B 
0dd35ac0b637420bfec007dc2abc0357155ad617b833538bbd9a5781564718bd35326374a7aa7f01d474330f4304b8cb304970480786582fe51bf1af2d6397b3
 SHA512 
9fcde985114d59f71a6f4bbd52ed603da748225111af745dc211ca750e58552a19e03b723646906d819b9c2e1d3211939de66576a997679c0e8e42ddeeb296de
 DIST github-cli-2.8.0-deps.tar.xz 157288896 BLAKE2B 
92937cf3c0928c6b8b29e0731d7a94f1df59a59fcbebda9f5a71d9da01963581934fcb112675b648d46398b3b7b522a9c2f5d08103fd31acee77ecec50c79508
 SHA512 
b0bdc79ca14a5d8309bec336c36e3b95bc0f2aa868ee611fa87f295ac7e5ff24399971ff88109d3d399fedecc311ab10af0f708a812ff0277744c2dae3d80129

diff --git a/dev-util/github-cli/github-cli-2.11.0.ebuild 
b/dev-util/github-cli/github-cli-2.11.0.ebuild
new file mode 100644
index ..ec899ad1ea48
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.11.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   go run 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-04-19 Thread William Hubbs
commit: f332c502504435451dd5da3ff67e20aeac8c075c
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Apr 20 01:42:44 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Apr 20 01:44:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f332c502

dev-util/github-cli: add 2.8.0

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|  2 +
 dev-util/github-cli/github-cli-2.8.0.ebuild | 62 +
 2 files changed, 64 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 5f0f5f64f160..8f13728bda4c 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -50,6 +50,8 @@ DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.
 DIST github-cli-2.0.0.tar.gz 548905 BLAKE2B 
f97d8be57270368999bd62eef1eba3e5ba1a9a7b1f879c3d3f8ef72b2fd68554fc4be37318b43054a7218e81f2984c0b2c2afdc226e81e1b51eb2fb15df72ed8
 SHA512 
3b0008894690a9a097259410e144e0031dee7c876e0b862e5219009d82a2f50d00ad22e3d92a16c369e9b1f0f51668e868c08d9eeb718dfe8a0337aa00233435
 DIST github-cli-2.4.0.tar.gz 637511 BLAKE2B 
09576f613bf07b4785619b4a0fa035b37e725aa96657998f7f4c3c05da118f781f85e29e48e8db6c210c284e3e43f482eac5c5f581b56de53c3119f3f47eda12
 SHA512 
393a09cbd838381627e349b4cd391755794ee71a2e9cf9fee14d155aabb48f1672b7fc100ea6d2782b5e2ca69c85bdc8f99d3aee81ce73e48e1ebc2ae79b91a8
 DIST github-cli-2.5.1.tar.gz 659105 BLAKE2B 
0dd35ac0b637420bfec007dc2abc0357155ad617b833538bbd9a5781564718bd35326374a7aa7f01d474330f4304b8cb304970480786582fe51bf1af2d6397b3
 SHA512 
9fcde985114d59f71a6f4bbd52ed603da748225111af745dc211ca750e58552a19e03b723646906d819b9c2e1d3211939de66576a997679c0e8e42ddeeb296de
+DIST github-cli-2.8.0-deps.tar.xz 157288896 BLAKE2B 
92937cf3c0928c6b8b29e0731d7a94f1df59a59fcbebda9f5a71d9da01963581934fcb112675b648d46398b3b7b522a9c2f5d08103fd31acee77ecec50c79508
 SHA512 
b0bdc79ca14a5d8309bec336c36e3b95bc0f2aa868ee611fa87f295ac7e5ff24399971ff88109d3d399fedecc311ab10af0f708a812ff0277744c2dae3d80129
+DIST github-cli-2.8.0.tar.gz 700297 BLAKE2B 
5a11d89532d57ecbe31a8e526d013f181f82f1c12148914f07f67ae20d6338ad7aa5aa25624136b276eb082f45c969da54744ce0d6398f0c22fe82805d635eab
 SHA512 
c46248a4b2376ff9df07198e9c29bd37dcd6c3a8b50081bfe0686f329b2bec8087506b435a17161af59f06fa26cda630a473c3e9d5470f8cc0c6cf5e25d9cea7
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.zip 160161 BLAKE2B 
5b4515c5ec0982bbb99e949c132605c4df924f89086507990470ccacd0b6c2bbf4212383938cb2bd330872bdd1d0c48a6832724fa875a073caf564e57a7729fa
 SHA512 
575e4d7c8feecc94b8d9f76c8afd10c9bfe90ff21e19c43da1667d0d9374168dea4a031ad3e683d16b8d87288b114f22d31a3f678041b00b2a631292182657b7
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.2.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80

diff --git a/dev-util/github-cli/github-cli-2.8.0.ebuild 
b/dev-util/github-cli/github-cli-2.8.0.ebuild
new file mode 100644
index ..ec899ad1ea48
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.8.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+   SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+   KEYWORDS="~amd64 ~riscv"
+   S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
+
+   einfo "Building man pages"
+   emake manpages
+
+   einfo "Building completions"
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-03-09 Thread Yixun Lan
commit: ca76f40d0f0be1efa602995e874aedd80532f886
Author: Yongxiang Liang  gmail  com>
AuthorDate: Mon Mar  7 15:05:38 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Mar 10 02:36:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca76f40d

dev-util/github-cli: keyword ~riscv

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yongxiang Liang  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/github-cli/github-cli-2.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/github-cli/github-cli-2.5.1.ebuild 
b/dev-util/github-cli/github-cli-2.5.1.ebuild
index 2d128443d547..391f14b796c1 100644
--- a/dev-util/github-cli/github-cli-2.5.1.ebuild
+++ b/dev-util/github-cli/github-cli-2.5.1.ebuild
@@ -886,7 +886,7 @@ EGO_SUM=(
 go-module_set_globals
SRC_URI="https://github.com/cli/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~riscv"
S="${WORKDIR}/cli-${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-02-22 Thread William Hubbs
commit: 4368171a1541d5382f424e8e0ffbed98bc406822
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Feb 22 15:22:28 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Feb 22 15:25:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4368171a

dev-util/github-cli: remove old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |   5 -
 dev-util/github-cli/github-cli-1.14.0.ebuild | 763 ---
 2 files changed, 768 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index b43e90e71feb..5f0f5f64f160 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -47,12 +47,9 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod 953 
BLAKE2B c520f4cc8fbb6
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.6.0.mod 736 BLAKE2B 
2337ea8dca35e9407e0b4fbb200e5465cf3338fe2eb3420444b1fa4805312f52cf9ade3e2e70d9dcc4973edcfcb1fe597d132032829133808c4842ad76f4c69b
 SHA512 
e1e51b6a44ac17f31a09b6fefea0840fd92febeeaf97ef8ce960825473b5acbab5ade353f89d5d48b5a85ebf2b928f727ec9a3f58c8e39afbec4fbb9c22e44c0
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.8.0.mod 622 BLAKE2B 
621e3faa3335ebec92c376298699510d800c2653c3680a438095c3dd9d6ba1f83f13a0302f316beea786b8f606ff3b4f62d21abe63d72f3f5c4e12fb81f61511
 SHA512 
409dad03104a4ac6b4a8c6da3540ab382345c86e48732f2b37d64ae2bc1c721d9f0a1ed0824a36085baa7102d2626e84f44706b16297623e8deb58fa9e24ba38
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
-DIST github-cli-1.14.0.tar.gz 538295 BLAKE2B 
710f2f698edecc78f5b82739bbb8be4e65092a7da277f4dc940a28ae17588aa034948a0c0d32839e81dd00197ad4fdb95998df91d36d2621b447a59189efe315
 SHA512 
12325c75bc442e522608da2bbed56fd541de3fc0212c2ec909ebde5a9eeb05785df98d513e8b80587cbba447aa5c13010d18f589f4a49a9f6be7fe8907116b1e
 DIST github-cli-2.0.0.tar.gz 548905 BLAKE2B 
f97d8be57270368999bd62eef1eba3e5ba1a9a7b1f879c3d3f8ef72b2fd68554fc4be37318b43054a7218e81f2984c0b2c2afdc226e81e1b51eb2fb15df72ed8
 SHA512 
3b0008894690a9a097259410e144e0031dee7c876e0b862e5219009d82a2f50d00ad22e3d92a16c369e9b1f0f51668e868c08d9eeb718dfe8a0337aa00233435
 DIST github-cli-2.4.0.tar.gz 637511 BLAKE2B 
09576f613bf07b4785619b4a0fa035b37e725aa96657998f7f4c3c05da118f781f85e29e48e8db6c210c284e3e43f482eac5c5f581b56de53c3119f3f47eda12
 SHA512 
393a09cbd838381627e349b4cd391755794ee71a2e9cf9fee14d155aabb48f1672b7fc100ea6d2782b5e2ca69c85bdc8f99d3aee81ce73e48e1ebc2ae79b91a8
 DIST github-cli-2.5.1.tar.gz 659105 BLAKE2B 
0dd35ac0b637420bfec007dc2abc0357155ad617b833538bbd9a5781564718bd35326374a7aa7f01d474330f4304b8cb304970480786582fe51bf1af2d6397b3
 SHA512 
9fcde985114d59f71a6f4bbd52ed603da748225111af745dc211ca750e58552a19e03b723646906d819b9c2e1d3211939de66576a997679c0e8e42ddeeb296de
-DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
-DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.zip 158004 
BLAKE2B 
7b7b51a3c765989f219ed5bd1480158270e48017ff9b44dc2c17d6033b31b70b7a83d31e819f1ed02d28cc3be3d17c8ef239487d9f7977aa52309fa0082ba74a
 SHA512 
14de18e33914dbfa2b33d818bc256ba67a4d53ebf7e081c165cbc69bdae4a0eb88d4b8e2aa1ee7848bb8f005844263f5722277314ffc3602f25a84c96687a963
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.zip 160161 BLAKE2B 
5b4515c5ec0982bbb99e949c132605c4df924f89086507990470ccacd0b6c2bbf4212383938cb2bd330872bdd1d0c48a6832724fa875a073caf564e57a7729fa
 SHA512 
575e4d7c8feecc94b8d9f76c8afd10c9bfe90ff21e19c43da1667d0d9374168dea4a031ad3e683d16b8d87288b114f22d31a3f678041b00b2a631292182657b7
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.2.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
@@ -409,7 +406,6 @@ DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.mod 416 
BLAKE2B 845f9f6d79c8b18d
 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2022-02-22 Thread William Hubbs
commit: 9f2da7b11558f2cfc75115f51a373446bb046f3b
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Feb 22 15:08:16 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Feb 22 15:09:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2da7b1

dev-util/github-cli: 2.5.1 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|  18 +
 dev-util/github-cli/github-cli-2.5.1.ebuild | 935 
 2 files changed, 953 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 625e94cae8aa..b43e90e71feb 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -50,6 +50,7 @@ DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.
 DIST github-cli-1.14.0.tar.gz 538295 BLAKE2B 
710f2f698edecc78f5b82739bbb8be4e65092a7da277f4dc940a28ae17588aa034948a0c0d32839e81dd00197ad4fdb95998df91d36d2621b447a59189efe315
 SHA512 
12325c75bc442e522608da2bbed56fd541de3fc0212c2ec909ebde5a9eeb05785df98d513e8b80587cbba447aa5c13010d18f589f4a49a9f6be7fe8907116b1e
 DIST github-cli-2.0.0.tar.gz 548905 BLAKE2B 
f97d8be57270368999bd62eef1eba3e5ba1a9a7b1f879c3d3f8ef72b2fd68554fc4be37318b43054a7218e81f2984c0b2c2afdc226e81e1b51eb2fb15df72ed8
 SHA512 
3b0008894690a9a097259410e144e0031dee7c876e0b862e5219009d82a2f50d00ad22e3d92a16c369e9b1f0f51668e868c08d9eeb718dfe8a0337aa00233435
 DIST github-cli-2.4.0.tar.gz 637511 BLAKE2B 
09576f613bf07b4785619b4a0fa035b37e725aa96657998f7f4c3c05da118f781f85e29e48e8db6c210c284e3e43f482eac5c5f581b56de53c3119f3f47eda12
 SHA512 
393a09cbd838381627e349b4cd391755794ee71a2e9cf9fee14d155aabb48f1672b7fc100ea6d2782b5e2ca69c85bdc8f99d3aee81ce73e48e1ebc2ae79b91a8
+DIST github-cli-2.5.1.tar.gz 659105 BLAKE2B 
0dd35ac0b637420bfec007dc2abc0357155ad617b833538bbd9a5781564718bd35326374a7aa7f01d474330f4304b8cb304970480786582fe51bf1af2d6397b3
 SHA512 
9fcde985114d59f71a6f4bbd52ed603da748225111af745dc211ca750e58552a19e03b723646906d819b9c2e1d3211939de66576a997679c0e8e42ddeeb296de
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.zip 158004 
BLAKE2B 
7b7b51a3c765989f219ed5bd1480158270e48017ff9b44dc2c17d6033b31b70b7a83d31e819f1ed02d28cc3be3d17c8ef239487d9f7977aa52309fa0082ba74a
 SHA512 
14de18e33914dbfa2b33d818bc256ba67a4d53ebf7e081c165cbc69bdae4a0eb88d4b8e2aa1ee7848bb8f005844263f5722277314ffc3602f25a84c96687a963
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
@@ -66,6 +67,8 @@ DIST 
github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180615182759-c93bf25de8e8
 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 
83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f
 SHA512 
9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4
 DIST 
github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.mod 
36 BLAKE2B 
d0745757255951a92d471fdb1eeaae2e118d367caf0fcea00a405536d7e30609f22276e7a453aac1ca38063635df798a0843f279c178d394a7cbef9c9f9b3c27
 SHA512 
87ff97fea3e25aa903503e56fe5afc337918f7253dd7175833adb144a7296451a7d4ebd76df504737a5b4c5237b1102920728d21a587957d5d25db5d38e1217b
 DIST 
github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.zip 
73310 BLAKE2B 
b0aaa346be477c14bd504f98219659c8a82ba08afdd94f1a5ffbb44cfcb6cc9b014c1ee35aec6071d4733134931e6d2a569940e9f1f06a5e69b00f56d82579e9
 SHA512 
adf9a3b8bda92edd028f497ca10648900a7aac4dae9372469b511afc74e79f8b990e448f375ab2a8df651a491bab5413196c06db531adc10358865f74de6f26b
+DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.10.0.mod 176 BLAKE2B 
033d4ff9927bdae7937068ad6a5295cf0d872811e13e4d2a18bbf6e8edcef9935aa2b4dfbf887f5c152b79adec5931c79ca34f474c8d519e1796eccf7d561b8d
 SHA512 
d8194b2458c1fb2a3b9cee9274e1c66a0bbaf676a051ee3ef085c9bc24279d132ccfd0a62767f9fab268090c29ff88e3a74448b0eea87b58f5e0b5e4c66ddd98
+DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.10.0.zip 1077001 BLAKE2B 
ec06bc79a6c298a9c421d247c3d727d9bb6421858231ff92fadaed34b4f0a0d5719a6be2a75c1d6c87283afa4789dc7db719e1db80509feed1edfb09431c0044
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-08-26 Thread William Hubbs
commit: 2b58e9dd2c335dea5b261b407ccaaed5a108c7d8
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Aug 26 16:05:55 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Aug 26 16:06:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b58e9dd

dev-util/github-cli: 2.0.0 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|   5 +
 dev-util/github-cli/github-cli-2.0.0.ebuild | 762 
 2 files changed, 767 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 0c2a905c0fc..4abfe371ad3 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -39,10 +39,13 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.8.0.mod 622 
BLAKE2B 621e3faa3335e
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
 DIST github-cli-1.10.3.tar.gz 503359 BLAKE2B 
d55fc857cdb4d56d4f17ffdda30a41198125f28dd5575f61fbb98aa16b6e4bdbc1245ddfc0fff227f1c58cda7bb7df8d25e4ac20511a7b7e3b4bdde0153ff51b
 SHA512 
0613471348f9598847b6fc573181cecc0a6c60a8c81c82723b3bb7d5ddc97ac4c1369199f68c09bcecd36f2e09ba1e133cf7444f193ef81f7aa1f4bdbb2694a9
 DIST github-cli-1.14.0.tar.gz 538295 BLAKE2B 
710f2f698edecc78f5b82739bbb8be4e65092a7da277f4dc940a28ae17588aa034948a0c0d32839e81dd00197ad4fdb95998df91d36d2621b447a59189efe315
 SHA512 
12325c75bc442e522608da2bbed56fd541de3fc0212c2ec909ebde5a9eeb05785df98d513e8b80587cbba447aa5c13010d18f589f4a49a9f6be7fe8907116b1e
+DIST github-cli-2.0.0.tar.gz 548905 BLAKE2B 
f97d8be57270368999bd62eef1eba3e5ba1a9a7b1f879c3d3f8ef72b2fd68554fc4be37318b43054a7218e81f2984c0b2c2afdc226e81e1b51eb2fb15df72ed8
 SHA512 
3b0008894690a9a097259410e144e0031dee7c876e0b862e5219009d82a2f50d00ad22e3d92a16c369e9b1f0f51668e868c08d9eeb718dfe8a0337aa00233435
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.14.zip 158004 
BLAKE2B 
7b7b51a3c765989f219ed5bd1480158270e48017ff9b44dc2c17d6033b31b70b7a83d31e819f1ed02d28cc3be3d17c8ef239487d9f7977aa52309fa0082ba74a
 SHA512 
14de18e33914dbfa2b33d818bc256ba67a4d53ebf7e081c165cbc69bdae4a0eb88d4b8e2aa1ee7848bb8f005844263f5722277314ffc3602f25a84c96687a963
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.9.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.9.zip 156501 BLAKE2B 
eb960b4af9b7599e976210b98af846f9144994afde0ab30f156b41ae52171c6d15837831bf25f83645522ac1dedab8a754cbba3234bb865174a830d41b9aba1c
 SHA512 
89198b8b284f000c872b3b265e1b90617e2fbf1f2d4c3c33b0def7f8dabd308fdcad07860bd8f9752388211f2efc04bb76d71562f5d330334813d8a9636eaae3
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.mod 708 BLAKE2B 
e0c08cc53c22f010726a5d7ba629fb11258cfc3cb16987f1ac6b3538383180ac6a6f4fd20d95e022fd8760943c1c51c051bb4a24ce003e70766a972ccdcb32e7
 SHA512 
667062212128948a6c4ba38da23e92e3e80fd3526f6b0d1b375cc123a0f35461f6586c3c135334bd8d67bb8f1b2fc1c8f3543713a0b7bc29e03ece3b8a21bc80
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.3.1.zip 160161 BLAKE2B 
5b4515c5ec0982bbb99e949c132605c4df924f89086507990470ccacd0b6c2bbf4212383938cb2bd330872bdd1d0c48a6832724fa875a073caf564e57a7729fa
 SHA512 
575e4d7c8feecc94b8d9f76c8afd10c9bfe90ff21e19c43da1667d0d9374168dea4a031ad3e683d16b8d87288b114f22d31a3f678041b00b2a631292182657b7
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
 DIST 
github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 
33 BLAKE2B 
d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2
 SHA512 
dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d
 DIST 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-05-25 Thread Joonas Niilola
commit: a9ddcad998111d620e5faa55429b93bf1dee16dd
Author: Marcin Woźniak  aol  com>
AuthorDate: Sat May 22 20:20:33 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue May 25 11:12:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ddcad9

dev-util/github-cli: Bump version to 1.10.3

Hi!
I bumped version to 1.10.3. I tested it in the separate environmental.

Signed-off-by: Marcin Woźniak  aol.com>
Closes: https://bugs.gentoo.org/753851
Closes: https://github.com/gentoo/gentoo/pull/20940
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/github-cli/Manifest |  42 +++
 dev-util/github-cli/github-cli-1.10.3.ebuild | 496 +++
 2 files changed, 538 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index df4081923d8..627adb43e6b 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -18,6 +18,7 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 
BLAKE2B 4fef9f7da9f23
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.zip 393806 BLAKE2B 
76acd4273e7b2b77b81e4363cee62f498846a6072b26c0229917ae984802134cb41da5ec081e5e71e0c97180dfb49306e624174ce86ee6eea59b22fb1584c45d
 SHA512 
9583b5d95556ab6e798d3d0d8c3eed51d45a6fd32b6dea207a089a33a1e50ca5e468e975d386fe00b704d568971d2f3b7fd3937b0494c4ae920dbee84d36a120
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.zip 
33828 BLAKE2B 
e46dda9bfc9513a2d03150e0f90c57b4028a60daa7a975a61a7e0deb82f83779b679d176527da6d2f763f174d6635c7aca9d0d1e0775d38a157f69e33fd1343d
 SHA512 
4206fa50ea8f056656804388954562efcc78a14ed8f249801c601ccd399f70ea101e5299e07bd9b86e6e137a3cd2103209ef186193a1129e108b224ee5497432
+DIST github-cli-1.10.3.tar.gz 503359 BLAKE2B 
d55fc857cdb4d56d4f17ffdda30a41198125f28dd5575f61fbb98aa16b6e4bdbc1245ddfc0fff227f1c58cda7bb7df8d25e4ac20511a7b7e3b4bdde0153ff51b
 SHA512 
0613471348f9598847b6fc573181cecc0a6c60a8c81c82723b3bb7d5ddc97ac4c1369199f68c09bcecd36f2e09ba1e133cf7444f193ef81f7aa1f4bdbb2694a9
 DIST github-cli-1.4.0.tar.gz 386950 BLAKE2B 
68126e45886e1bc38ac6c3a541e52f69299a6e12f1b6c5baafa6d5c3fbf5be8c30854b5c85294de6b50dd6bfe9e12262758a4751aad1aa4f310206ac10d4cf2f
 SHA512 
cac1675bef1bcf749c87cb1d196fe687e32b304d73e16d4fc21dc4f429d18d4c04aa00be713a6b76e1261df565ecb589b8cf2ad322e4f7d49ea102369c5bf644
 DIST github-cli-1.5.0.tar.gz 396453 BLAKE2B 
728939040d263bea4a623571d03589628f69bf3887b0bd79da14d36da8fa515c1d646c00b2aff154685369d0e1a4ea5b16ed788f4989addff28af233568f3208
 SHA512 
a75bf4ea913310f097dc158a1b8ce73453402af0647d918007afe7fa05cb5dbf1bdff1f4dfc4b4b0a301d68ed447428088e956fbcbc755ea9396ffb6cb77152c
 DIST github-cli-1.7.0.tar.gz 435572 BLAKE2B 
303b9e7ddd23a538952d0f2f9fa7f18f4523ef5ff9c1779d5d1988a709f4b26991934b0481b1ac3adb6ae70e1ba5601171fbe91fe1038e40f527c0359d974524
 SHA512 
27d50b698dcf137a192a80e3bf8ca9c5b393f566acc7d504f4285c236d6e1ef6e9195afcb3025f5c0442b2c538f18db6c2d86e5ce7074af59db384e91b01bb39
@@ -27,6 +28,8 @@ DIST 
github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.mod 719 BLAKE2B d95a
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.zip 154742 BLAKE2B 
1eb9644a4458d70e3d0ca66969cd4c50ee3ac3ec89a3840a0168d703fb4d716cdbdc703e07b9c60775220dfda3d48791d7410484314b7263f231155d51ec0d1b
 SHA512 
765d4137f91984faf60380e9a67726cc679c26dcf421445b932aa18db9f2b29ef9c58d69c3cdbb97c3f1703fb880152d53c6eeafb639392a35218afc6491d8aa
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.zip 155695 BLAKE2B 
e9e29d2b6d215b75a9de1d33b80d827bf7403f940fd106651a0b00e87672d9f1f4a8c084139a2da9a92998cb3327c978c228bdd781f2dc8c45ba7f0a6b7ab4fb
 SHA512 
8152f6fe278a329ab4518c77143b36e1bdd6f3f48ea0853e2e5a07b545728502776d61ad877e1819fb7641bcd57021d6343b979276a836a9b12d4f45b492ab48
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.9.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.9.zip 156501 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-04-16 Thread William Hubbs
commit: 37bcf70ee12289016323d0b59647f9c59e5c24be
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Apr 16 06:03:35 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Apr 16 06:04:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37bcf70e

dev-vcs/github-cli: 1.9.1 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|   1 +
 dev-util/github-cli/github-cli-1.9.1.ebuild | 644 
 2 files changed, 645 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 2c7e0e60410..df4081923d8 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -22,6 +22,7 @@ DIST github-cli-1.4.0.tar.gz 386950 BLAKE2B 
68126e45886e1bc38ac6c3a541e52f69299a
 DIST github-cli-1.5.0.tar.gz 396453 BLAKE2B 
728939040d263bea4a623571d03589628f69bf3887b0bd79da14d36da8fa515c1d646c00b2aff154685369d0e1a4ea5b16ed788f4989addff28af233568f3208
 SHA512 
a75bf4ea913310f097dc158a1b8ce73453402af0647d918007afe7fa05cb5dbf1bdff1f4dfc4b4b0a301d68ed447428088e956fbcbc755ea9396ffb6cb77152c
 DIST github-cli-1.7.0.tar.gz 435572 BLAKE2B 
303b9e7ddd23a538952d0f2f9fa7f18f4523ef5ff9c1779d5d1988a709f4b26991934b0481b1ac3adb6ae70e1ba5601171fbe91fe1038e40f527c0359d974524
 SHA512 
27d50b698dcf137a192a80e3bf8ca9c5b393f566acc7d504f4285c236d6e1ef6e9195afcb3025f5c0442b2c538f18db6c2d86e5ce7074af59db384e91b01bb39
 DIST github-cli-1.8.1.tar.gz 470115 BLAKE2B 
92de70b18afd61b123f6ef219dc7f5706a4d54d6fa26ccbf1cbfbb0341e2af4b787d94f6cdf3f9ba34eec3a621e0ad840b400f83c60c524dd3efa0ff75501c4e
 SHA512 
9d7abb0cc88b77a9698552b13ddc0077246eb81f85fad6c38aae9d61222e4a6299dc2c63bd6e54c7deb8c589355d89e083a674346e2ed7b3f257ac7a66a023ac
+DIST github-cli-1.9.1.tar.gz 499665 BLAKE2B 
26d7af80ab96907f4c7751101a2d37f6c2e5c7ab99c9bb1b443f03cc4b0010b46b31851d82043bddf9b21dbaaf355b2e357571e9aafc0721db26fbe8d005000d
 SHA512 
cade5252d0ab9dfc5bff52ad9accbc3d06eed10537f4db3fcf6116fe114e336670973cf0545ae2659989645795e930ad951c4d6dc30c7cdd6f6c0d82f3c75292
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.zip 154742 BLAKE2B 
1eb9644a4458d70e3d0ca66969cd4c50ee3ac3ec89a3840a0168d703fb4d716cdbdc703e07b9c60775220dfda3d48791d7410484314b7263f231155d51ec0d1b
 SHA512 
765d4137f91984faf60380e9a67726cc679c26dcf421445b932aa18db9f2b29ef9c58d69c3cdbb97c3f1703fb880152d53c6eeafb639392a35218afc6491d8aa
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5

diff --git a/dev-util/github-cli/github-cli-1.9.1.ebuild 
b/dev-util/github-cli/github-cli-1.9.1.ebuild
new file mode 100644
index 000..1270fd0f8c4
--- /dev/null
+++ b/dev-util/github-cli/github-cli-1.9.1.ebuild
@@ -0,0 +1,644 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+EGO_SUM=(
+   "cloud.google.com/go v0.26.0/go.mod"
+   "cloud.google.com/go v0.34.0/go.mod"
+   "cloud.google.com/go v0.38.0/go.mod"
+   "cloud.google.com/go v0.44.1/go.mod"
+   "cloud.google.com/go v0.44.2/go.mod"
+   "cloud.google.com/go v0.45.1/go.mod"
+   "cloud.google.com/go v0.46.3"
+   "cloud.google.com/go v0.46.3/go.mod"
+   "cloud.google.com/go/bigquery v1.0.1"
+   "cloud.google.com/go/bigquery v1.0.1/go.mod"
+   "cloud.google.com/go/datastore v1.0.0"
+   "cloud.google.com/go/datastore v1.0.0/go.mod"
+   "cloud.google.com/go/firestore v1.1.0"
+   "cloud.google.com/go/firestore v1.1.0/go.mod"
+   "cloud.google.com/go/pubsub v1.0.1"
+   "cloud.google.com/go/pubsub v1.0.1/go.mod"
+   "cloud.google.com/go/storage v1.0.0"
+   "cloud.google.com/go/storage v1.0.0/go.mod"
+   "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9"
+   "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod"
+   "github.com/AlecAivazis/survey/v2 v2.2.7"
+   "github.com/AlecAivazis/survey/v2 v2.2.7/go.mod"
+   "github.com/BurntSushi/toml v0.3.1"
+   "github.com/BurntSushi/toml v0.3.1/go.mod"
+   "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802"
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-03-14 Thread William Hubbs
commit: 9178668a87115f75d189ee2f08c11e921d7cd641
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Mar 14 17:57:58 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Mar 14 17:58:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9178668a

dev-util/github-cli: 1.7.0 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest   | 14 +-
 .../{github-cli-1.6.2.ebuild => github-cli-1.7.0.ebuild}   | 14 --
 2 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index dda6442b841..61b8f692cc8 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -13,7 +13,7 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 
BLAKE2B 4fef9f7da9f23
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
 DIST github-cli-1.4.0.tar.gz 386950 BLAKE2B 
68126e45886e1bc38ac6c3a541e52f69299a6e12f1b6c5baafa6d5c3fbf5be8c30854b5c85294de6b50dd6bfe9e12262758a4751aad1aa4f310206ac10d4cf2f
 SHA512 
cac1675bef1bcf749c87cb1d196fe687e32b304d73e16d4fc21dc4f429d18d4c04aa00be713a6b76e1261df565ecb589b8cf2ad322e4f7d49ea102369c5bf644
 DIST github-cli-1.5.0.tar.gz 396453 BLAKE2B 
728939040d263bea4a623571d03589628f69bf3887b0bd79da14d36da8fa515c1d646c00b2aff154685369d0e1a4ea5b16ed788f4989addff28af233568f3208
 SHA512 
a75bf4ea913310f097dc158a1b8ce73453402af0647d918007afe7fa05cb5dbf1bdff1f4dfc4b4b0a301d68ed447428088e956fbcbc755ea9396ffb6cb77152c
-DIST github-cli-1.6.2.tar.gz 419795 BLAKE2B 
cd34782f2afccc976487082532a15e9c9ca6ff0d12b89469e4234290a62e98d1207f111e51a8d7cef2a4ae926046b1705e59cf7e95364fd0981357f79f6004c9
 SHA512 
5aed724fe508d118c35d5efd089b1d0b7a220ed4713567fff528c692c402a8ee5245aef62fd8f219bead5e2d55dc92f9f2ca60e2c048e43c04dd48f125cf56d7
+DIST github-cli-1.7.0.tar.gz 435572 BLAKE2B 
303b9e7ddd23a538952d0f2f9fa7f18f4523ef5ff9c1779d5d1988a709f4b26991934b0481b1ac3adb6ae70e1ba5601171fbe91fe1038e40f527c0359d974524
 SHA512 
27d50b698dcf137a192a80e3bf8ca9c5b393f566acc7d504f4285c236d6e1ef6e9195afcb3025f5c0442b2c538f18db6c2d86e5ce7074af59db384e91b01bb39
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.zip 154742 BLAKE2B 
1eb9644a4458d70e3d0ca66969cd4c50ee3ac3ec89a3840a0168d703fb4d716cdbdc703e07b9c60775220dfda3d48791d7410484314b7263f231155d51ec0d1b
 SHA512 
765d4137f91984faf60380e9a67726cc679c26dcf421445b932aa18db9f2b29ef9c58d69c3cdbb97c3f1703fb880152d53c6eeafb639392a35218afc6491d8aa
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
@@ -148,6 +148,13 @@ DIST 
github.com%2Fhinshun%2Fvt10x%2F@v%2Fv0.0.0-20180616224451-1954e6464174.mod
 DIST 
github.com%2Fhinshun%2Fvt10x%2F@v%2Fv0.0.0-20180616224451-1954e6464174.zip 
22492 BLAKE2B 
e82ef3edaee9b1060bbb2933f101a6298978cf568e79626b2d327d970da112d433ba4d5fd267b2ba1040c85de93a83d8649acb584f35766720506f2b2a950aae
 SHA512 
5e6879cca425ea5b46f6acdaa71c63ca9da3f4d056ba50b8c037552595ff18151d0b399955c5037281a868c8c126753d95a36ed00ac2106dbe8d4e1fba915daf
 DIST github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod 44 BLAKE2B 
764581d416faa477a91695a42c68cef5638d019a1622fb3bcee976c1581e904995d33c79ffed1d3b805f660931ece844b3e17437f158f8b82ddae82e95f0358f
 SHA512 
0c77200112d96f9cddf8cf7da0059204914b06a8c400e2e672443bd02a45d9ebb3274275c20e6e7ee0728992e77579d945b36de44ccbaab2ee92fd55f382f7ac
 DIST github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.zip 3712 BLAKE2B 
f4f79741bb83862583f51f2ac5e80181eb0e9c2a4578df32f7e24eb98f4f548b99333e0e6a377e03ef701057b01e852e6b710ab885b65170c861bef556863da4
 SHA512 
e16bd414c1df566a12944e4a99ebd84d2103f0cb3bf8ec312e3de400f20b3eae27845db50672801c10474dbf1dc61d0c2e16e5dcd3c4447681c0b77f9114a411
+DIST 
github.com%2Fitchyny%2Fastgen-go%2F@v%2Fv0.0.0-20210113000433-0da0671862a3.mod 
45 BLAKE2B 
deee82c732b1293068a504f976dac3949cfc27be1dc7ac3b82592b3b69c3bdc59452a4d9daeca0d6bc87dc2dc38062915e5b33bafa5073140c7e55d752777233
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-02-24 Thread William Hubbs
commit: 5635fb01af449cd668da58e4ffcf8ce7e14b028e
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Feb 24 17:58:19 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Feb 24 19:22:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5635fb01

dev-util/github-cli: 1.6.2 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|   2 +
 dev-util/github-cli/github-cli-1.6.2.ebuild | 494 
 2 files changed, 496 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index a8b008b0771..dda6442b841 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -13,6 +13,7 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 
BLAKE2B 4fef9f7da9f23
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
 DIST github-cli-1.4.0.tar.gz 386950 BLAKE2B 
68126e45886e1bc38ac6c3a541e52f69299a6e12f1b6c5baafa6d5c3fbf5be8c30854b5c85294de6b50dd6bfe9e12262758a4751aad1aa4f310206ac10d4cf2f
 SHA512 
cac1675bef1bcf749c87cb1d196fe687e32b304d73e16d4fc21dc4f429d18d4c04aa00be713a6b76e1261df565ecb589b8cf2ad322e4f7d49ea102369c5bf644
 DIST github-cli-1.5.0.tar.gz 396453 BLAKE2B 
728939040d263bea4a623571d03589628f69bf3887b0bd79da14d36da8fa515c1d646c00b2aff154685369d0e1a4ea5b16ed788f4989addff28af233568f3208
 SHA512 
a75bf4ea913310f097dc158a1b8ce73453402af0647d918007afe7fa05cb5dbf1bdff1f4dfc4b4b0a301d68ed447428088e956fbcbc755ea9396ffb6cb77152c
+DIST github-cli-1.6.2.tar.gz 419795 BLAKE2B 
cd34782f2afccc976487082532a15e9c9ca6ff0d12b89469e4234290a62e98d1207f111e51a8d7cef2a4ae926046b1705e59cf7e95364fd0981357f79f6004c9
 SHA512 
5aed724fe508d118c35d5efd089b1d0b7a220ed4713567fff528c692c402a8ee5245aef62fd8f219bead5e2d55dc92f9f2ca60e2c048e43c04dd48f125cf56d7
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.zip 154742 BLAKE2B 
1eb9644a4458d70e3d0ca66969cd4c50ee3ac3ec89a3840a0168d703fb4d716cdbdc703e07b9c60775220dfda3d48791d7410484314b7263f231155d51ec0d1b
 SHA512 
765d4137f91984faf60380e9a67726cc679c26dcf421445b932aa18db9f2b29ef9c58d69c3cdbb97c3f1703fb880152d53c6eeafb639392a35218afc6491d8aa
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
@@ -336,6 +337,7 @@ DIST 
golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod 25 BLAK
 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod 25 
BLAKE2B 
01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2
 SHA512 
a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod 25 
BLAKE2B 
01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2
 SHA512 
a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod 25 
BLAKE2B 
01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2
 SHA512 
a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
+DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip 25620 
BLAKE2B 
770b7dc9bdd8999123fb58cfd951dcbd5592172fd394f1a70abc918e3d7adee5273da1c757f95be15a0ede27f4fd00804564828251ab308d6fc4b116415ac144
 SHA512 
5a9db9d294b5f2121f3de994da38161f013a0512ad64aaf51f1c7a94b7cdb1ec4102f7c457d29f9bde209e8c254f6ad034c294af3649dbd10d5349c05874f74c
 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180823144017-11551d06cbcc.mod 24 
BLAKE2B 
64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-01-29 Thread William Hubbs
commit: f7191b27d91730a6fcce161838d58ce0cd110d3d
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jan 29 16:36:21 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jan 29 16:37:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7191b27

dev-util/github-cli: restrict tests for 1.4.0 and 1.5.0 for now

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/github-cli-1.4.0.ebuild | 2 ++
 dev-util/github-cli/github-cli-1.5.0.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/dev-util/github-cli/github-cli-1.4.0.ebuild 
b/dev-util/github-cli/github-cli-1.4.0.ebuild
index 7a42da97bc6..50e86ca6b94 100644
--- a/dev-util/github-cli/github-cli-1.4.0.ebuild
+++ b/dev-util/github-cli/github-cli-1.4.0.ebuild
@@ -449,6 +449,8 @@ SLOT="0"
 
 RDEPEND=">=dev-vcs/git-1.7.3"
 
+RESTRICT+=" test "
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack

diff --git a/dev-util/github-cli/github-cli-1.5.0.ebuild 
b/dev-util/github-cli/github-cli-1.5.0.ebuild
index 5936cbca035..a1e5f51cda9 100644
--- a/dev-util/github-cli/github-cli-1.5.0.ebuild
+++ b/dev-util/github-cli/github-cli-1.5.0.ebuild
@@ -453,6 +453,8 @@ SLOT="0"
 
 RDEPEND=">=dev-vcs/git-1.7.3"
 
+RESTRICT+=" test "
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2021-01-29 Thread William Hubbs
commit: 416413669342d605e0c96d70c1d061ca63a51940
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jan 29 15:52:16 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jan 29 15:54:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41641366

dev-util/github-cli: 1.5.0 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|   7 +
 dev-util/github-cli/github-cli-1.5.0.ebuild | 491 
 2 files changed, 498 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 6e7a40d4f8f..ecf7b970172 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -17,12 +17,15 @@ DIST github-cli-0.8.0.tar.gz 225839 BLAKE2B 
c460405973e73374d393f19a6315a9b4af4d
 DIST github-cli-0.9.0.tar.gz 236398 BLAKE2B 
8a1004b8fcf54179e2538d71471b4952fbe9ec2b67d97bea130afcceeb0b6dfd93ce9a9a477f54c1f689a0c5707cae5550445719a7badd81c66748543909d4fa
 SHA512 
75d09cdcff4f31d6cad0e9570af3aafcffdfd8bdb925596780abde24c0ba20a212cfc9426aaa29e7409c7fbb7061bb8c88c15aef11fc9d9490265fa51aae5cd8
 DIST github-cli-1.0.0.tar.gz 337523 BLAKE2B 
8b7e2c507da77224d03f0c349eb0cb9538f3293a3684994cec1a8fc3f6f9f261d71f8febf54936afdfe734b0595ae052a2c6c83db803331b4991c453b50284d2
 SHA512 
c4b9c041ff8e63551ea6d94ec65017f8d264bc5b5c5b70b0525fcaea672c34f5e6aa57d096decef35891fb8d51a732c15835b0354e712b9dda353b7c869988c4
 DIST github-cli-1.4.0.tar.gz 386950 BLAKE2B 
68126e45886e1bc38ac6c3a541e52f69299a6e12f1b6c5baafa6d5c3fbf5be8c30854b5c85294de6b50dd6bfe9e12262758a4751aad1aa4f310206ac10d4cf2f
 SHA512 
cac1675bef1bcf749c87cb1d196fe687e32b304d73e16d4fc21dc4f429d18d4c04aa00be713a6b76e1261df565ecb589b8cf2ad322e4f7d49ea102369c5bf644
+DIST github-cli-1.5.0.tar.gz 396453 BLAKE2B 
728939040d263bea4a623571d03589628f69bf3887b0bd79da14d36da8fa515c1d646c00b2aff154685369d0e1a4ea5b16ed788f4989addff28af233568f3208
 SHA512 
a75bf4ea913310f097dc158a1b8ce73453402af0647d918007afe7fa05cb5dbf1bdff1f4dfc4b4b0a301d68ed447428088e956fbcbc755ea9396ffb6cb77152c
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.mod 731 BLAKE2B 
1ca410dae120a2ec12efbe7c1d8e0fdd2a38ed1ed76ab770e37aa6ba449da6b5ef6e32a51e6ee263a982f1a593e2ee239fe0a774063d4295261f9ff63e09fc1c
 SHA512 
72213e0d0609572f5e749a4f295a8b3ffd13bfe38f786fa3174e53ec318a623e9122c69718944034aa70b05ddad1771cbfa62d2fdc49df2152c5c9679a681ff9
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.zip 90292 BLAKE2B 
aa2accf4630d73289f2ef94ad870fc8599f25b7eff43d56b08c0b72464848181845db5b9c4b6bde5c91ad0969f2baa02d1d2f2aaca27287952895ab547b60ab3
 SHA512 
aba8a60445568ecb8f68b5d85604845e2a77a216f747b15b8012be59f5609a4e71d367aec4c6a222c9ec93d1b8063a190d9d529075be19ef633ef7f26b138216
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.1.1.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.1.1.zip 151157 BLAKE2B 
9580dddcd115d6a103153197f520eec62845acd051b3ab0771826cc4e5c34fe81173fca5878f92bff5513633b630fdb8efbab3b25a8e6d2fdbeac167307774b4
 SHA512 
37e1f668ff036df4352f8d612975d050bb8e70be2b02b3fbcb44301c26d48951aad6ca7857fae36e418edd68bcab4d3a56b2ff195dc396e890993b1d73454303
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.3.zip 154742 BLAKE2B 
1eb9644a4458d70e3d0ca66969cd4c50ee3ac3ec89a3840a0168d703fb4d716cdbdc703e07b9c60775220dfda3d48791d7410484314b7263f231155d51ec0d1b
 SHA512 
765d4137f91984faf60380e9a67726cc679c26dcf421445b932aa18db9f2b29ef9c58d69c3cdbb97c3f1703fb880152d53c6eeafb639392a35218afc6491d8aa
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.zip 155695 BLAKE2B 
e9e29d2b6d215b75a9de1d33b80d827bf7403f940fd106651a0b00e87672d9f1f4a8c084139a2da9a92998cb3327c978c228bdd781f2dc8c45ba7f0a6b7ab4fb
 SHA512 
8152f6fe278a329ab4518c77143b36e1bdd6f3f48ea0853e2e5a07b545728502776d61ad877e1819fb7641bcd57021d6343b979276a836a9b12d4f45b492ab48
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-09-17 Thread William Hubbs
commit: c7e50371d16b70f9e40e2a16b5e1282513d1ee59
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Sep 17 14:10:28 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Sep 17 14:11:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e50371

dev-util/github-cli: 1.0.0 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|  38 
 dev-util/github-cli/github-cli-1.0.0.ebuild | 330 
 2 files changed, 368 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index a885bdc51f1..7e77491acab 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -3,8 +3,11 @@ DIST github-cli-0.10.1.tar.gz 257623 BLAKE2B 
5b2dfb95ef4f4880524cfcae178e1c30dda
 DIST github-cli-0.11.0.tar.gz 267416 BLAKE2B 
4200693f4e63eec6c7123240f0eee871e82fc58e2714896ce85a09b791450d275a77681ad4f91f044c8f5041b3d3d35e1e4131ade1260d1b46e275468e172ace
 SHA512 
9b4bac9750c38170817f4f818723f1b2a48caed0e49a706f6de3a151c9c84cd492b92c65bf1c9251d672831bf81fbf76c64ad2611fbd70b745fc091754db8eb1
 DIST github-cli-0.8.0.tar.gz 225839 BLAKE2B 
c460405973e73374d393f19a6315a9b4af4de2ec3634b37a1669b8683e0cf5c1e5872dae4d130e9fca15dc1e9abc4888d706b1050883361f378c8da5916d
 SHA512 
5fca1f148a2973eafffa25df052ad09a8407dbcd2e41b9c5152011b990f02c27e1dc75b41d5c2b985bb18c6f1070839e8d526032230a910f9f776147a3a31c19
 DIST github-cli-0.9.0.tar.gz 236398 BLAKE2B 
8a1004b8fcf54179e2538d71471b4952fbe9ec2b67d97bea130afcceeb0b6dfd93ce9a9a477f54c1f689a0c5707cae5550445719a7badd81c66748543909d4fa
 SHA512 
75d09cdcff4f31d6cad0e9570af3aafcffdfd8bdb925596780abde24c0ba20a212cfc9426aaa29e7409c7fbb7061bb8c88c15aef11fc9d9490265fa51aae5cd8
+DIST github-cli-1.0.0.tar.gz 337523 BLAKE2B 
8b7e2c507da77224d03f0c349eb0cb9538f3293a3684994cec1a8fc3f6f9f261d71f8febf54936afdfe734b0595ae052a2c6c83db803331b4991c453b50284d2
 SHA512 
c4b9c041ff8e63551ea6d94ec65017f8d264bc5b5c5b70b0525fcaea672c34f5e6aa57d096decef35891fb8d51a732c15835b0354e712b9dda353b7c869988c4
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.mod 731 BLAKE2B 
1ca410dae120a2ec12efbe7c1d8e0fdd2a38ed1ed76ab770e37aa6ba449da6b5ef6e32a51e6ee263a982f1a593e2ee239fe0a774063d4295261f9ff63e09fc1c
 SHA512 
72213e0d0609572f5e749a4f295a8b3ffd13bfe38f786fa3174e53ec318a623e9122c69718944034aa70b05ddad1771cbfa62d2fdc49df2152c5c9679a681ff9
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.zip 90292 BLAKE2B 
aa2accf4630d73289f2ef94ad870fc8599f25b7eff43d56b08c0b72464848181845db5b9c4b6bde5c91ad0969f2baa02d1d2f2aaca27287952895ab547b60ab3
 SHA512 
aba8a60445568ecb8f68b5d85604845e2a77a216f747b15b8012be59f5609a4e71d367aec4c6a222c9ec93d1b8063a190d9d529075be19ef633ef7f26b138216
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.1.1.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
+DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.1.1.zip 151157 BLAKE2B 
9580dddcd115d6a103153197f520eec62845acd051b3ab0771826cc4e5c34fe81173fca5878f92bff5513633b630fdb8efbab3b25a8e6d2fdbeac167307774b4
 SHA512 
37e1f668ff036df4352f8d612975d050bb8e70be2b02b3fbcb44301c26d48951aad6ca7857fae36e418edd68bcab4d3a56b2ff195dc396e890993b1d73454303
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip 56132 BLAKE2B 
5edcfe991d7fc40094d637bae8d8d6f1f897ab3d3786ade2bb80287738103264520681ced8d30d2037253206c32d3f867f4d024a571cb9aad030ebc451e198eb
 SHA512 
43ed64ae515738487e9b75a2290d0b2bc25e83c021a9f29b21487c37adbf34e74e1e7d3d5ec0dfe678c8396356f95c3993a5f5610d1791ff62056cd182a4272f
 DIST github.com%2F!make!now!just%2Fheredoc%2F@v%2Fv1.0.0.mod 47 BLAKE2B 
dfd201f05c706aa363cbabd93007bc8ce093490f650cb59d3bb29c8a2977490fd11ea1027ddee290bea8a33abd78ef87336bef390490bdc8dce7ef6b8e73ce70
 SHA512 
283a7606aaa0d7463b9744a13a6c2064ca5d815077622a5d36e43be704c17403d80e6a5e106f544baaacf922b14d106843d99c1af174808960cc27a3fc26db91
@@ -16,9 +19,12 @@ DIST 
github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.
 DIST 
github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.zip 
73310 BLAKE2B 
b0aaa346be477c14bd504f98219659c8a82ba08afdd94f1a5ffbb44cfcb6cc9b014c1ee35aec6071d4733134931e6d2a569940e9f1f06a5e69b00f56d82579e9
 SHA512 
adf9a3b8bda92edd028f497ca10648900a7aac4dae9372469b511afc74e79f8b990e448f375ab2a8df651a491bab5413196c06db531adc10358865f74de6f26b
 DIST 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-07-26 Thread William Hubbs
commit: 7c2f741dc6e77cb94a5d4fcfddff904d698b155c
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Jul 26 17:42:55 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Jul 26 17:51:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c2f741d

dev-util/github-cli: 0.11.0 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest |  11 +
 dev-util/github-cli/github-cli-0.11.0.ebuild | 323 +++
 2 files changed, 334 insertions(+)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index 8b3e26cdb59..a885bdc51f1 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,5 +1,6 @@
 DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 
814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b
 SHA512 
5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273
 DIST github-cli-0.10.1.tar.gz 257623 BLAKE2B 
5b2dfb95ef4f4880524cfcae178e1c30dda608fc0d437e7f1090d04124cf4a6b1aaac8314baa9f27e2215758f44a1067b7807e61fa3271e75b9150dfa3b739ee
 SHA512 
ab7e236b3aa14d4cb24e2af96fca07aa1a9cbacf4b80fcfce8ed157e24cca3c8c6e5ffa05240dabb8494e308960237d5b6920a4c426de6c00b655b201439d769
+DIST github-cli-0.11.0.tar.gz 267416 BLAKE2B 
4200693f4e63eec6c7123240f0eee871e82fc58e2714896ce85a09b791450d275a77681ad4f91f044c8f5041b3d3d35e1e4131ade1260d1b46e275468e172ace
 SHA512 
9b4bac9750c38170817f4f818723f1b2a48caed0e49a706f6de3a151c9c84cd492b92c65bf1c9251d672831bf81fbf76c64ad2611fbd70b745fc091754db8eb1
 DIST github-cli-0.8.0.tar.gz 225839 BLAKE2B 
c460405973e73374d393f19a6315a9b4af4de2ec3634b37a1669b8683e0cf5c1e5872dae4d130e9fca15dc1e9abc4888d706b1050883361f378c8da5916d
 SHA512 
5fca1f148a2973eafffa25df052ad09a8407dbcd2e41b9c5152011b990f02c27e1dc75b41d5c2b985bb18c6f1070839e8d526032230a910f9f776147a3a31c19
 DIST github-cli-0.9.0.tar.gz 236398 BLAKE2B 
8a1004b8fcf54179e2538d71471b4952fbe9ec2b67d97bea130afcceeb0b6dfd93ce9a9a477f54c1f689a0c5707cae5550445719a7badd81c66748543909d4fa
 SHA512 
75d09cdcff4f31d6cad0e9570af3aafcffdfd8bdb925596780abde24c0ba20a212cfc9426aaa29e7409c7fbb7061bb8c88c15aef11fc9d9490265fa51aae5cd8
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.mod 731 BLAKE2B 
1ca410dae120a2ec12efbe7c1d8e0fdd2a38ed1ed76ab770e37aa6ba449da6b5ef6e32a51e6ee263a982f1a593e2ee239fe0a774063d4295261f9ff63e09fc1c
 SHA512 
72213e0d0609572f5e749a4f295a8b3ffd13bfe38f786fa3174e53ec318a623e9122c69718944034aa70b05ddad1771cbfa62d2fdc49df2152c5c9679a681ff9
@@ -32,6 +33,8 @@ DIST github.com%2Fbriandowns%2Fspinner%2F@v%2Fv1.11.1.zip 
222552 BLAKE2B fb3c694
 DIST github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod 146 BLAKE2B 
5efa8dad622ae253ffa106eafea277fd947fc0f28e6962e461283ce2267d992b85b1f0eb9074a90009d8ed1d47f9e1f3e03cfc0eb7ad7df104282cfd144cc12a
 SHA512 
32c34a590e6c113a16700ef2faa5124ebb6c8773cd76594312157bd2b70d54cd939ff2c32fac47421b5615e804142cb7b393394d4745d5894f9b68392bc37ad9
 DIST 
github.com%2Fcharmbracelet%2Fglamour%2F@v%2Fv0.1.1-0.20200320173916-301d3bcf3058.mod
 315 BLAKE2B 
8df0e2009d27da74972a7e67c996f4968738c3dc87fc68ad7fd0d74a0fd661e2a6de497efe742ef3f5cc8739011f49f58dad708cd9e89e829489fd61d1e686e4
 SHA512 
0b385c4ffe887f5023645af413daa5df47a9ec840cbc9d886088050885732cf1246a88c930b8005290f5005cd017c7fbf9e4a85c0a7304d8058353e7ee61f1a9
 DIST 
github.com%2Fcharmbracelet%2Fglamour%2F@v%2Fv0.1.1-0.20200320173916-301d3bcf3058.zip
 553185 BLAKE2B 
f8157149a821cd527c9b9a4980e7d18038f4be550b20c3fef3b7f45818812773cebc35ab2955fcfeebfaf469a160c780a20a52323907848db0764e1c633b13b6
 SHA512 
aed0a7f014eac4cb07dac7e4fd446523e5787903d7bfe3dbf187055cd7ed81bb398652a7219af6cbee158599fa6739d4b615d41007d26d00b01b078813f2aff8
+DIST 
github.com%2Fcli%2Fshurcoo!l-graphql%2F@v%2Fv0.0.0-20200707151639-0f7232a2bf7e.mod
 182 BLAKE2B 
cfaa0b1b2ef310b9950e6e41ffa374e1e4c19ddb07519f493c5c2e7ffab9d7e8a1da63646d8e56b603075a93a3dcb9fa6b5acac9f183dbabe78e00bb28d3f660
 SHA512 
f9514e587a38fdf0bf2d29c6d908b242645341b4b5e1616bc2257ebd2eb1afa45ffc41132077957112c3d23d833c102dd7291efb8cfe32f326db40e99d20b6c2
+DIST 
github.com%2Fcli%2Fshurcoo!l-graphql%2F@v%2Fv0.0.0-20200707151639-0f7232a2bf7e.zip
 25883 BLAKE2B 
40e18b6c3af8a28922261454d82fca14c83f2153d3d84f2729f15a19b6cd8e61cdf6d31908d259ef3eca51527ee0cdc162ed114d48c24c9a03d82912e436507d
 SHA512 
eacfdd76948c11b063d041db27fb51b28e2c3dc434113a668678905106907adf10cc8004117ccc8d312ebeb33c81201d1bd90392b4a96707dadc2f2d4b0b5bab
 DIST github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod 35 BLAKE2B 
45d27e6bbd9255a355b6bd14ac839c7d87fabb393693a8b862ad974017af01309e5d36fa99d4925905c1617c0d90b5263b54cd95af2dbab186e293936dc86459
 SHA512 
ca8192c6321468b4332eb63c765a5798150dce9312873123b48d9ec67ebb4229cffc7b7e8054b8b0a6f45611f08130008031edf33da3468bb9a4ee9455fa02a5
 DIST github.com%2Fcoreos%2Fbbolt%2F@v%2Fv1.3.2.mod 31 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-06-12 Thread William Hubbs
commit: 23d6e910651b74097e39c40d22e2bc8675d1b31a
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jun 12 21:12:46 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jun 12 21:12:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d6e910

dev-util/github-cli: sync live ebuild

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/github-cli-.ebuild | 23 +--
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index 9da2da770a1..a85b465b8d8 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -273,13 +273,6 @@ LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
 SLOT="0"
 
 RDEPEND=">=dev-vcs/git-1.7.3"
-BDEPEND=">=dev-lang/go-1.13"
-
-unset GOBIN GOPATH GOCODE
-
-PATCHES=(
-   "${FILESDIR}/cli-0.9.0-manpage-build-gen-docs.patch"
-)
 
 src_unpack() {
if [[ ${PV} == * ]]; then
@@ -292,17 +285,19 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
 
-   emake bin/gh # default target
-
-   einfo "Building manpage"
+   einfo "Building man pages"
emake manpages
 
-   einfo "Building completion"
-   bin/gh completion -s bash > gh.bash-completion || die
-   bin/gh completion -s zsh > gh.zsh-completion || die
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/files/

2020-06-12 Thread William Hubbs
commit: 01f819dbc3bc89fa1163000beb188fa7616dea9c
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jun 12 21:13:34 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jun 12 21:13:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f819db

dev-util/github-cli: remove patch

Signed-off-by: William Hubbs  gentoo.org>

 .../files/cli-0.9.0-manpage-build-gen-docs.patch  | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch 
b/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch
deleted file mode 100644
index ff79812f2f5..000
--- a/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch
+++ /dev/null
@@ -1,15 +0,0 @@
 cli-0.9.0/Makefile.orig2020-05-30 20:59:44.372628296 -0700
-+++ cli-0.9.0/Makefile 2020-05-30 21:02:17.172650230 -0700
-@@ -46,6 +46,10 @@
- .PHONY: site-publish
- 
- 
-+bin/gen-docs:
-+  @go build -trimpath -ldflags "$(LDFLAGS)" -o "$@" ./cmd/gen-docs
-+
- .PHONY: manpages
--manpages:
--  go run ./cmd/gen-docs --man-page --doc-path ./share/man/man1/
-+manpages: bin/gen-docs
-+  bin/gen-docs --man-page --doc-path ./share/man/man1/
-+



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-06-07 Thread William Hubbs
commit: ffcf0ed0166a91e2e6f1bd5ea8ab7e39117ae38c
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Jun  7 17:53:16 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Jun  7 17:59:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffcf0ed0

dev-util/github-cli: drop patch and use "go run" for completions

The makefile uses "go run" to generate the man pages, so we really don't
need to  build a gen-docs binary.

Also, switch to using "go run" to generate the shell completions.

Once we allow cross compiling, we can use the first emake to compile gh
for the target and run everything else on the host.

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/github-cli-0.9.0-r1.ebuild | 23 +--
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild 
b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
index 9da2da770a1..a85b465b8d8 100644
--- a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
+++ b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
@@ -273,13 +273,6 @@ LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0"
 SLOT="0"
 
 RDEPEND=">=dev-vcs/git-1.7.3"
-BDEPEND=">=dev-lang/go-1.13"
-
-unset GOBIN GOPATH GOCODE
-
-PATCHES=(
-   "${FILESDIR}/cli-0.9.0-manpage-build-gen-docs.patch"
-)
 
 src_unpack() {
if [[ ${PV} == * ]]; then
@@ -292,17 +285,19 @@ src_unpack() {
 
 src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
-   # Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
+   # Go LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
+   # Once we set up cross compiling, this line will need to be adjusted
+   # to compile for the target.
+   # Everything else in this function happens on the host.
+   emake
 
-   emake bin/gh # default target
-
-   einfo "Building manpage"
+   einfo "Building man pages"
emake manpages
 
-   einfo "Building completion"
-   bin/gh completion -s bash > gh.bash-completion || die
-   bin/gh completion -s zsh > gh.zsh-completion || die
+   einfo "Building completions"
+   go run ./cmd/gh completion -s bash > gh.bash-completion || die
+   go run ./cmd/gh completion -s zsh > gh.zsh-completion || die
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-05-30 Thread Robin H. Johnson
commit: a7181fdca50e66f58ab6bb09d5d8bec30719a086
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun May 31 04:16:54 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun May 31 04:16:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7181fdc

dev-util/github-cli: sync live ebuild

Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-util/github-cli/github-cli-.ebuild | 22 --
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index 0cdc3f07d7d..9da2da770a1 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.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;
@@ -277,6 +277,10 @@ BDEPEND=">=dev-lang/go-1.13"
 
 unset GOBIN GOPATH GOCODE
 
+PATCHES=(
+   "${FILESDIR}/cli-0.9.0-manpage-build-gen-docs.patch"
+)
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack
@@ -290,10 +294,24 @@ src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
# Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
-   emake
+
+   emake bin/gh # default target
+
+   einfo "Building manpage"
+   emake manpages
+
+   einfo "Building completion"
+   bin/gh completion -s bash > gh.bash-completion || die
+   bin/gh completion -s zsh > gh.zsh-completion || die
 }
 
 src_install() {
dobin bin/gh
dodoc README.md
+
+   doman share/man/man?/gh*.?
+
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
 }



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/files/, dev-util/github-cli/

2020-05-30 Thread Robin H. Johnson
commit: 1f645e13c3bdd0ef8b850dfd084bc0e914ce65c6
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun May 31 04:16:15 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun May 31 04:16:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f645e13

dev-util/github-cli: fix PR#16024 issues

Closes: https://github.com/gentoo/gentoo/pull/16024
Signed-off-by: Robin H. Johnson  gentoo.org>

 .../files/cli-0.9.0-manpage-build-gen-docs.patch   | 15 +++
 dev-util/github-cli/github-cli-0.9.0-r1.ebuild | 22 +-
 2 files changed, 32 insertions(+), 5 deletions(-)

diff --git a/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch 
b/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch
new file mode 100644
index 000..ff79812f2f5
--- /dev/null
+++ b/dev-util/github-cli/files/cli-0.9.0-manpage-build-gen-docs.patch
@@ -0,0 +1,15 @@
+--- cli-0.9.0/Makefile.orig2020-05-30 20:59:44.372628296 -0700
 cli-0.9.0/Makefile 2020-05-30 21:02:17.172650230 -0700
+@@ -46,6 +46,10 @@
+ .PHONY: site-publish
+ 
+ 
++bin/gen-docs:
++  @go build -trimpath -ldflags "$(LDFLAGS)" -o "$@" ./cmd/gen-docs
++
+ .PHONY: manpages
+-manpages:
+-  go run ./cmd/gen-docs --man-page --doc-path ./share/man/man1/
++manpages: bin/gen-docs
++  bin/gen-docs --man-page --doc-path ./share/man/man1/
++

diff --git a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild 
b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
index 766be325438..9da2da770a1 100644
--- a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
+++ b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
@@ -277,6 +277,10 @@ BDEPEND=">=dev-lang/go-1.13"
 
 unset GOBIN GOPATH GOCODE
 
+PATCHES=(
+   "${FILESDIR}/cli-0.9.0-manpage-build-gen-docs.patch"
+)
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack
@@ -290,16 +294,24 @@ src_compile() {
[[ ${PV} == * ]] || export GH_VERSION="v${PV}"
# Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
-   emake
+
+   emake bin/gh # default target
+
+   einfo "Building manpage"
+   emake manpages
+
+   einfo "Building completion"
+   bin/gh completion -s bash > gh.bash-completion || die
+   bin/gh completion -s zsh > gh.zsh-completion || die
 }
 
 src_install() {
dobin bin/gh
dodoc README.md
 
-   make manpages
-   doman share/man/man1/gh*.1
+   doman share/man/man?/gh*.?
 
-   bin/gh completion -s bash > gh
-   dobashcomp gh
+   newbashcomp gh.bash-completion gh
+   insinto /usr/share/zsh/site-functions
+   newins gh.zsh-completion _gh
 }



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-05-30 Thread Robin H. Johnson
commit: 360c4b4e56af60943ca2b7eaee6ec72d322d7df5
Author: Jeffrey Lin  icurse  nl>
AuthorDate: Sun May 31 02:28:56 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun May 31 04:16:38 2020 +
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
 }



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-05-30 Thread Robin H. Johnson
commit: 7d3eec2b8efa6f85df086248a689ff85c01d9b42
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun May 31 04:07:00 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun May 31 04:16:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d3eec2b

dev-util/github-cli: avoid failure if GOBIN/GOPATH/GOCODE in build env

Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-util/github-cli/github-cli-0.8.0.ebuild| 2 ++
 dev-util/github-cli/github-cli-0.9.0-r1.ebuild | 2 ++
 dev-util/github-cli/github-cli-.ebuild | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/dev-util/github-cli/github-cli-0.8.0.ebuild 
b/dev-util/github-cli/github-cli-0.8.0.ebuild
index 61c48d3dee4..0cdc3f07d7d 100644
--- a/dev-util/github-cli/github-cli-0.8.0.ebuild
+++ b/dev-util/github-cli/github-cli-0.8.0.ebuild
@@ -275,6 +275,8 @@ SLOT="0"
 RDEPEND=">=dev-vcs/git-1.7.3"
 BDEPEND=">=dev-lang/go-1.13"
 
+unset GOBIN GOPATH GOCODE
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack

diff --git a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild 
b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
index 40cf4d76c40..766be325438 100644
--- a/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
+++ b/dev-util/github-cli/github-cli-0.9.0-r1.ebuild
@@ -275,6 +275,8 @@ SLOT="0"
 RDEPEND=">=dev-vcs/git-1.7.3"
 BDEPEND=">=dev-lang/go-1.13"
 
+unset GOBIN GOPATH GOCODE
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index 61c48d3dee4..0cdc3f07d7d 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -275,6 +275,8 @@ SLOT="0"
 RDEPEND=">=dev-vcs/git-1.7.3"
 BDEPEND=">=dev-lang/go-1.13"
 
+unset GOBIN GOPATH GOCODE
+
 src_unpack() {
if [[ ${PV} == * ]]; then
git-r3_src_unpack



[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-05-26 Thread William Hubbs
commit: 5efe6130ab1cc783d5d2bc2b38c29ad110522234
Author: William Hubbs  gentoo  org>
AuthorDate: Tue May 26 20:19:10 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue May 26 20:19:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5efe6130

dev-util/github-cli: 0.9.0 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-util/github-cli/Manifest|   3 +-
 dev-util/github-cli/github-cli-0.9.0.ebuild | 297 
 2 files changed, 299 insertions(+), 1 deletion(-)

diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index f6086036daf..3ad8abca839 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,5 +1,6 @@
-DIST github-cli-0.8.0.tar.gz 225839 BLAKE2B 
c460405973e73374d393f19a6315a9b4af4de2ec3634b37a1669b8683e0cf5c1e5872dae4d130e9fca15dc1e9abc4888d706b1050883361f378c8da5916d
 SHA512 
5fca1f148a2973eafffa25df052ad09a8407dbcd2e41b9c5152011b990f02c27e1dc75b41d5c2b985bb18c6f1070839e8d526032230a910f9f776147a3a31c19
 DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 
814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b
 SHA512 
5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273
+DIST github-cli-0.8.0.tar.gz 225839 BLAKE2B 
c460405973e73374d393f19a6315a9b4af4de2ec3634b37a1669b8683e0cf5c1e5872dae4d130e9fca15dc1e9abc4888d706b1050883361f378c8da5916d
 SHA512 
5fca1f148a2973eafffa25df052ad09a8407dbcd2e41b9c5152011b990f02c27e1dc75b41d5c2b985bb18c6f1070839e8d526032230a910f9f776147a3a31c19
+DIST github-cli-0.9.0.tar.gz 236398 BLAKE2B 
8a1004b8fcf54179e2538d71471b4952fbe9ec2b67d97bea130afcceeb0b6dfd93ce9a9a477f54c1f689a0c5707cae5550445719a7badd81c66748543909d4fa
 SHA512 
75d09cdcff4f31d6cad0e9570af3aafcffdfd8bdb925596780abde24c0ba20a212cfc9426aaa29e7409c7fbb7061bb8c88c15aef11fc9d9490265fa51aae5cd8
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.mod 731 BLAKE2B 
1ca410dae120a2ec12efbe7c1d8e0fdd2a38ed1ed76ab770e37aa6ba449da6b5ef6e32a51e6ee263a982f1a593e2ee239fe0a774063d4295261f9ff63e09fc1c
 SHA512 
72213e0d0609572f5e749a4f295a8b3ffd13bfe38f786fa3174e53ec318a623e9122c69718944034aa70b05ddad1771cbfa62d2fdc49df2152c5c9679a681ff9
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.0.7.zip 90292 BLAKE2B 
aa2accf4630d73289f2ef94ad870fc8599f25b7eff43d56b08c0b72464848181845db5b9c4b6bde5c91ad0969f2baa02d1d2f2aaca27287952895ab547b60ab3
 SHA512 
aba8a60445568ecb8f68b5d85604845e2a77a216f747b15b8012be59f5609a4e71d367aec4c6a222c9ec93d1b8063a190d9d529075be19ef633ef7f26b138216
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146

diff --git a/dev-util/github-cli/github-cli-0.9.0.ebuild 
b/dev-util/github-cli/github-cli-0.9.0.ebuild
new file mode 100644
index 000..61c48d3dee4
--- /dev/null
+++ b/dev-util/github-cli/github-cli-0.9.0.ebuild
@@ -0,0 +1,297 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/cli/cli.git;
+else
+EGO_SUM=(
+   "cloud.google.com/go v0.26.0/go.mod"
+   "github.com/AlecAivazis/survey/v2 v2.0.7"
+   "github.com/AlecAivazis/survey/v2 v2.0.7/go.mod"
+   "github.com/BurntSushi/toml v0.3.1"
+   "github.com/BurntSushi/toml v0.3.1/go.mod"
+   "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8"
+   "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8/go.mod"
+   "github.com/OneOfOne/xxhash v1.2.2/go.mod"
+   "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38"
+   "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod"
+   "github.com/alecthomas/chroma v0.7.2-0.20200304075647-34d9c7143bf5"
+   "github.com/alecthomas/chroma 
v0.7.2-0.20200304075647-34d9c7143bf5/go.mod"
+   "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721"
+   "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod"
+   "github.com/alecthomas/kong v0.2.1-0.20190708041108-0548c6b1afae/go.mod"
+   "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897"
+   "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897/go.mod"
+   "github.com/alecthomas/template 
v0.0.0-20160405071501-a0175ee3bccc/go.mod"
+   "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod"
+   "github.com/armon/consul-api 

[gentoo-commits] repo/gentoo:master commit in: dev-util/github-cli/

2020-05-18 Thread Mike Gilbert
commit: eb031c43aea54ab098d243207066941478242c3e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun May 17 16:47:28 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 18 15:47:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb031c43

dev-util/github-cli: fix live ebuild

Closes: https://github.com/gentoo/gentoo/pull/15851
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-util/github-cli/github-cli-0.8.0.ebuild | 4 ++--
 dev-util/github-cli/github-cli-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/github-cli/github-cli-0.8.0.ebuild 
b/dev-util/github-cli/github-cli-0.8.0.ebuild
index ec3be96c343..61c48d3dee4 100644
--- a/dev-util/github-cli/github-cli-0.8.0.ebuild
+++ b/dev-util/github-cli/github-cli-0.8.0.ebuild
@@ -276,7 +276,7 @@ RDEPEND=">=dev-vcs/git-1.7.3"
 BDEPEND=">=dev-lang/go-1.13"
 
 src_unpack() {
-   if has live "${PROPERTIES}"; then
+   if [[ ${PV} == * ]]; then
git-r3_src_unpack
go-module_live_vendor
else
@@ -285,7 +285,7 @@ src_unpack() {
 }
 
 src_compile() {
-   has live "${PROPERTIES}" || export GH_VERSION="v${PV}"
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
# Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
emake

diff --git a/dev-util/github-cli/github-cli-.ebuild 
b/dev-util/github-cli/github-cli-.ebuild
index ec3be96c343..61c48d3dee4 100644
--- a/dev-util/github-cli/github-cli-.ebuild
+++ b/dev-util/github-cli/github-cli-.ebuild
@@ -276,7 +276,7 @@ RDEPEND=">=dev-vcs/git-1.7.3"
 BDEPEND=">=dev-lang/go-1.13"
 
 src_unpack() {
-   if has live "${PROPERTIES}"; then
+   if [[ ${PV} == * ]]; then
git-r3_src_unpack
go-module_live_vendor
else
@@ -285,7 +285,7 @@ src_unpack() {
 }
 
 src_compile() {
-   has live "${PROPERTIES}" || export GH_VERSION="v${PV}"
+   [[ ${PV} == * ]] || export GH_VERSION="v${PV}"
# Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
unset LDFLAGS
emake