diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-10-20 01:04:57 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-10-20 01:04:57 +0000 |
| commit | 20581b55364ac26fbbf01fee4a690c666af3a797 (patch) | |
| tree | fb66fab90318693048083ee1c458c0d3575be3bb /dev-util/github-cli/github-cli-2.11.3.ebuild | |
| parent | 4578500c9c4b5d7af90dbda8470aa83cd04a3169 (diff) | |
| download | baldeagleos-repo-20581b55364ac26fbbf01fee4a690c666af3a797.tar.gz baldeagleos-repo-20581b55364ac26fbbf01fee4a690c666af3a797.tar.xz baldeagleos-repo-20581b55364ac26fbbf01fee4a690c666af3a797.zip | |
Adding metadata
Diffstat (limited to 'dev-util/github-cli/github-cli-2.11.3.ebuild')
| -rw-r--r-- | dev-util/github-cli/github-cli-2.11.3.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
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..000000000000 --- 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} == *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/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} == *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 '-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 -} |
