Date: Wednesday, November 9, 2022 @ 10:13:29 Author: alerque Revision: 1346138
archrelease: copy trunk to community-x86_64 Deleted: github-cli/repos/community-x86_64/PKGBUILD ----------+ PKGBUILD | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2022-11-09 10:11:23 UTC (rev 1346137) +++ PKGBUILD 2022-11-09 10:13:29 UTC (rev 1346138) @@ -1,53 +0,0 @@ -# Maintainer: Morten Linderud <[email protected]> -# Maintainer: Caleb Maclennan <[email protected]> -# Contributor: Eli Schwartz <[email protected]> -# Contributor: Richard Bradfield <[email protected]> - -pkgname=github-cli -pkgver=2.19.0 -pkgrel=1 -pkgdesc="The GitHub CLI" -arch=("x86_64") -url="https://github.com/cli/cli" -license=("MIT") -depends=("glibc" "mailcap") -makedepends=("go" "git") -checkdepends=("openssh") -optdepends=("git: To interact with repositories") -source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -sha256sums=('522aeaa5e1ed885d89cf44fe8e1c84da6a372046d4e173a5cd290821ac5afdc8') - -prepare() { - cd "cli-${pkgver}" - # TODO: These tests invoke the TTY and our container *really* does not like that - rm pkg/cmd/auth/login/login_test.go -} - -build() { - cd "cli-$pkgver" - - export CGO_CPPFLAGS="${CPPFLAGS}" - export CGO_CFLAGS="${CFLAGS}" - export CGO_CXXFLAGS="${CXXFLAGS}" - export CGO_LDFLAGS="${LDFLAGS}" - export CGO_ENABLED=0 - export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw -ldflags=-linkmode=external" - - make GH_VERSION="v$pkgver" bin/gh manpages - bin/gh completion -s bash | install -Dm644 /dev/stdin share/bash-completion/completions/gh - bin/gh completion -s zsh | install -Dm644 /dev/stdin share/zsh/site-functions/_gh - bin/gh completion -s fish | install -Dm644 /dev/stdin share/fish/vendor_completions.d/gh.fish -} - -check(){ - cd "cli-$pkgver" - make test -} - -package() { - cd "cli-$pkgver" - make DESTDIR="${pkgdir}" prefix="/usr" install - cp -r share/ "$pkgdir"/usr - install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md" -}
