summaryrefslogtreecommitdiff
path: root/dev-util/github-cli
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-04 03:04:33 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-04 03:04:33 -0500
commit3b087cb8037b6f474d64a793289ff822cebdf1c8 (patch)
tree39205d65894685267f578a7255e5ec028f40e614 /dev-util/github-cli
parentb7c761e367074b6c8a81e0c7f64c72564299812c (diff)
downloadbaldeagleos-repo-3b087cb8037b6f474d64a793289ff822cebdf1c8.tar.gz
baldeagleos-repo-3b087cb8037b6f474d64a793289ff822cebdf1c8.tar.xz
baldeagleos-repo-3b087cb8037b6f474d64a793289ff822cebdf1c8.zip
Adding metadata
Diffstat (limited to 'dev-util/github-cli')
-rw-r--r--dev-util/github-cli/Manifest2
-rw-r--r--dev-util/github-cli/github-cli-2.100.0.ebuild51
-rw-r--r--dev-util/github-cli/metadata.xml4
3 files changed, 57 insertions, 0 deletions
diff --git a/dev-util/github-cli/Manifest b/dev-util/github-cli/Manifest
index bb4f07c8c87a..a3b881dfa78d 100644
--- a/dev-util/github-cli/Manifest
+++ b/dev-util/github-cli/Manifest
@@ -1,3 +1,5 @@
+DIST github-cli-2.100.0-deps.tar.xz 62670456 BLAKE2B c8f93715498cac5090d2490688c238f32e5495d7df20006a260abcdd71b0abdf7212e23dacf9550e54a0b3ea0e686402bf7eb9eed956fcfa27ee8a02e8bcafbd SHA512 11b9ddb673749b90201b008fb9b7fe7a47fa356b7c33915f2220d710ff5edf4607119d51dbdba27e4f8374dadd2aba833554695ec2e4fa13a9731868584d6f7b
+DIST github-cli-2.100.0.tar.gz 15067137 BLAKE2B 4fd52c059dfdc931d27860d953fbfbf8e0b2ce604549b6e28e9fdf8054014d807c42c542c3bba35cc73880df9f9177d2aa4c81d00c4816271bc6e7ba5097d74e SHA512 af9ea93dd72bc57ce7f66f164d26b11a1f7c2c2b7b8c76c447d5d3785d214757cac6e4682a409b05bd5560f170cd96423b5274351ac3042581d1fe65c67a8664
DIST github-cli-2.96.0-deps.tar.xz 62178716 BLAKE2B 9e06cb75d05b00785cc073d2c8ea4dd081a12686dd356586ef9335c8c453ed56aa87a783e2c11ae19b3402941c066054c227c695af8094af236452d99938ab28 SHA512 f2589251d1c65609338d3d20b0eba3db7379375f14f6bb9a65966d39cde98d3a32d1e7870343c957ab44794763846504329f0f198bd40e4496890c64a848a969
DIST github-cli-2.96.0.tar.gz 14796760 BLAKE2B 6fadf6a785d2f5fd5ec4ebc55bb08bb3eaaa135929595ca04119ebd0ecee131a1b2cec4ce77c59a408bf106a6b28ff8793b2bbc602f7a8cfb0a168445cb50553 SHA512 af530e2bd052bc75e20c1285712e35c952872160a690afba9127bd4654ea35d0963231e908648d5766803bfec803d39a58479b69e605d8e9ac7121ad0be1a6ca
DIST github-cli-2.98.0-deps.tar.xz 62386296 BLAKE2B cc07ec3afe4723a366939648eb1b1985a109501077902c1e9982c0723b1373868284b2f91bddab6e9ce5b7ab785470d5c701194978f37ef02d9b5ba3cbab4b9a SHA512 4fe76d421986a8f2edc6262620c5e5ebe9321a3946fd82f52f17e3e9ef67dcc5b1e8f85d9d4ab43be08b4bbbf6b9ebab7c187425017ce97627accc0e83356505
diff --git a/dev-util/github-cli/github-cli-2.100.0.ebuild b/dev-util/github-cli/github-cli-2.100.0.ebuild
new file mode 100644
index 000000000000..f45edf95ba48
--- /dev/null
+++ b/dev-util/github-cli/github-cli-2.100.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+inherit go-module
+
+DESCRIPTION="GitHub CLI"
+HOMEPAGE="https://github.com/cli/cli"
+
+if [[ ${PV} == *9999 ]]; 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/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-deps.tar.xz"
+ KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+ S="${WORKDIR}/cli-${PV}"
+fi
+
+LICENSE="MIT"
+# Dependent licenses
+LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 Unlicense"
+SLOT="0"
+RESTRICT="test"
+
+RDEPEND=">=dev-vcs/git-1.7.3"
+BDEPEND=">=dev-lang/go-1.26.1"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.92.0-disable-telemetry.patch"
+)
+
+src_unpack() {
+ if [[ ${PV} == *9999 ]]; then
+ git-r3_src_unpack
+ go-module_live_vendor
+ else
+ go-module_src_unpack
+ fi
+}
+
+src_compile() {
+ [[ ${PV} != 9999 ]] && export GH_VERSION="v${PV}"
+ emake prefix="${EPREFIX}/usr" bin/gh manpages completions
+}
+
+src_install() {
+ emake prefix="${EPREFIX}/usr" DESTDIR="${D}" install
+ dodoc README.md
+}
diff --git a/dev-util/github-cli/metadata.xml b/dev-util/github-cli/metadata.xml
index 17492b5107c4..478583f5b166 100644
--- a/dev-util/github-cli/metadata.xml
+++ b/dev-util/github-cli/metadata.xml
@@ -5,5 +5,9 @@
<email>williamh@gentoo.org</email>
<name>William Hubbs</name>
</maintainer>
+ <maintainer type="person">
+ <email>arthurzam@gentoo.org</email>
+ <name>Arthur Zamarin</name>
+ </maintainer>
<origin>baldeagleos-repo</origin>
</pkgmetadata>