mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
68 lines
1.9 KiB
Text
68 lines
1.9 KiB
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor Andrei Jiroh Eugenio Halili <ajhalili2006@gmail.com>
|
|
# Maintainer: Andrei Jiroh Eugenio Halili <ajhalili2006@gmail.com>
|
|
pkgname=github-cli
|
|
pkgver=2.24.3
|
|
pkgrel=0
|
|
pkgdesc="CLI for dealing with GitHub"
|
|
options="net" # Need to fetch modules
|
|
url="https://cli.github.com"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="git"
|
|
makedepends="go"
|
|
checkdepends="openssh-keygen openssh-client"
|
|
subpackages="
|
|
$pkgname-doc
|
|
$pkgname-bash-completion
|
|
$pkgname-zsh-completion
|
|
"
|
|
source="https://github.com/cli/cli/archive/v$pkgver/github-cli-$pkgver.tar.gz
|
|
no-ignore-goflags.patch
|
|
"
|
|
builddir="$srcdir/cli-$pkgver"
|
|
|
|
export CGO_ENABLED=0
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
# TODO: These tests invoke the TTY and our container *really* does not like that
|
|
# Copied from https://github.com/archlinux/svntogit-community/blob/packages/github-cli/trunk/PKGBUILD
|
|
rm pkg/cmd/auth/login/login_test.go
|
|
}
|
|
|
|
build() {
|
|
CGO_CPPFLAGS="$CPPFLAGS" \
|
|
CGO_CFLAGS="$CFLAGS" \
|
|
CGO_CXXFLAGS="$CXXFLAGS" \
|
|
CGO_LDFLAGS="$LDFLAGS" \
|
|
\
|
|
make GH_VERSION="v$pkgver" bin/gh manpages
|
|
bin/gh completion -s bash | install -Dm0644 /dev/stdin \
|
|
share/bash-completion/completions/gh
|
|
bin/gh completion -s zsh | install -Dm0644 /dev/stdin \
|
|
share/zsh/site-functions/_gh
|
|
}
|
|
|
|
check() {
|
|
export TZ=Europe/London
|
|
# skip tests that fail in official CI
|
|
export GITHUB_ACTIONS=true
|
|
go test -v ./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 bin/gh "$pkgdir"/usr/bin/gh
|
|
|
|
mkdir -p "$pkgdir"/usr
|
|
cp -r share "$pkgdir"/usr
|
|
}
|
|
|
|
sha512sums="
|
|
e2be22a26f6b149e90cb9a190dc1bc1f925e243de73b2fe4f487496ef001d0291d026aacb14cc16bb0c4e3019a5d5bcd6ac8c024fc5506f83fd61a98bb1d7741 github-cli-2.24.3.tar.gz
|
|
873b931af40952b2e1b82d7d825d301a5334be40e9df34fc192160e564a26d13d7de4d13d48cfe08119f9b4741c25051068d062181e23f80abefad1d18155357 no-ignore-goflags.patch
|
|
"
|