diff options
| author | William Hubbs <williamh@gentoo.org> | 2024-06-27 11:48:31 -0500 |
|---|---|---|
| committer | William Hubbs <williamh@gentoo.org> | 2024-06-27 11:48:48 -0500 |
| commit | 28a0aecf9817480d649d4136d36502158fe18e47 (patch) | |
| tree | f81c80485a681d4e68c432974f06d810cc60c5ac /dev-util/github-cli/github-cli-2.52.0.ebuild | |
| parent | 47cb5617dee22f254e14a096e63eae113fc3910e (diff) | |
| download | gentoo-28a0aecf9817480d649d4136d36502158fe18e47.tar.gz gentoo-28a0aecf9817480d649d4136d36502158fe18e47.tar.bz2 gentoo-28a0aecf9817480d649d4136d36502158fe18e47.zip | |
dev-util/github-cli: add 2.52.0
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'dev-util/github-cli/github-cli-2.52.0.ebuild')
| -rw-r--r-- | dev-util/github-cli/github-cli-2.52.0.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-util/github-cli/github-cli-2.52.0.ebuild b/dev-util/github-cli/github-cli-2.52.0.ebuild new file mode 100644 index 000000000000..2d0c1da34ead --- /dev/null +++ b/dev-util/github-cli/github-cli-2.52.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} == *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 +} |
