mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
68 lines
1.9 KiB
Plaintext
68 lines
1.9 KiB
Plaintext
# 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.21.1
|
|
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
|
|
go test -v ./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 bin/gh "$pkgdir"/usr/bin/gh
|
|
|
|
mkdir -p "$pkgdir"/usr
|
|
cp -r share "$pkgdir"/usr
|
|
}
|
|
|
|
|
|
sha512sums="
|
|
20d2fa4fd5da98df5368976320d106f835da5338facedaa91435ee56678e2b687b58821d53f27e60962d4796e2ae41c7d59a089d511606ff0df5fb90632081b1 github-cli-2.21.1.tar.gz
|
|
873b931af40952b2e1b82d7d825d301a5334be40e9df34fc192160e564a26d13d7de4d13d48cfe08119f9b4741c25051068d062181e23f80abefad1d18155357 no-ignore-goflags.patch
|
|
"
|