mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-09 00:10:21 +03:00
dev-util/github-cli: add 2.42.0
Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
@@ -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 aefdb7c12507dbf02acccc943be9074f7eac12beefd7a5f8a7a08bbacbbaa46cd91f46262258b3fc0a00b41fb0ccf4816621e9ebe4f2bb10b5f6c5e6260ac003
|
||||
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
|
||||
|
||||
66
dev-util/github-cli/github-cli-2.42.0.ebuild
Normal file
66
dev-util/github-cli/github-cli-2.42.0.ebuild
Normal file
@@ -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} == *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://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} == *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}"
|
||||
# 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
|
||||
}
|
||||
Reference in New Issue
Block a user