2018-12-22 16:32:10 +00:00
|
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
2019-03-15 18:25:53 +00:00
|
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
|
|
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
|
2018-12-22 16:32:10 +00:00
|
|
|
# Contributor: Pierre Neidhardt <ambrevar@gmail.com>
|
2018-11-21 13:45:36 +00:00
|
|
|
# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
|
|
|
|
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
|
|
|
# Contributor: Andres Perera <andres87p gmail>
|
|
|
|
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
|
|
|
# Contributor: Christian Himpel <chressie@gmail.com>
|
|
|
|
# Contributor: Mike Rosset <mike.rosset@gmail.com>
|
|
|
|
# Contributor: Daniel YC Lin <dlin.tw@gmail.com>
|
|
|
|
# Contributor: John Luebs <jkluebs@gmail.com>
|
2014-01-27 17:32:44 +00:00
|
|
|
|
2012-11-22 18:49:32 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - added switches for our architectures
|
2020-05-18 19:05:06 +00:00
|
|
|
# - don't build stdlib with race detector for 32-bit ARM (not supported)
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
pkgname=go
|
2014-03-22 15:00:40 +00:00
|
|
|
epoch=2
|
2020-11-13 19:15:43 +00:00
|
|
|
pkgver=1.15.5
|
2020-11-14 16:25:25 +00:00
|
|
|
pkgrel=2
|
2020-05-18 19:05:06 +00:00
|
|
|
pkgdesc='Core compiler tools for the Go programming language'
|
2017-12-10 14:37:03 +00:00
|
|
|
arch=(x86_64)
|
2018-11-21 13:45:36 +00:00
|
|
|
url='https://golang.org/'
|
2017-04-03 18:25:22 +00:00
|
|
|
license=(BSD)
|
2020-04-09 16:55:19 +00:00
|
|
|
makedepends=(git go perl)
|
2020-05-18 19:05:06 +00:00
|
|
|
replaces=(go-pie)
|
|
|
|
provides=(go-pie)
|
|
|
|
options=(!strip staticlibs)
|
2020-10-16 18:51:57 +00:00
|
|
|
source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc}
|
2020-11-14 16:25:25 +00:00
|
|
|
"fix-color.patch::https://github.com/golang/go/commit/29634436fd741a7c685bf8f242b6fd62f093d1ad.patch"
|
|
|
|
"fix-ldflags.patch")
|
2020-05-18 19:05:06 +00:00
|
|
|
validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
|
2020-11-13 19:15:43 +00:00
|
|
|
sha256sums=('c1076b90cf94b73ebed62a81d802cd84d43d02dea8c07abdc922c57a071c84f1'
|
2020-10-16 18:51:57 +00:00
|
|
|
'SKIP'
|
2020-11-14 16:25:25 +00:00
|
|
|
'f6bf4c18e4395bdd4925b1f15a713fa3daca0a28123d6c20d51234d7ce2d3357'
|
|
|
|
'57793df3095606f930b95c8b40deca6a0c9dbc3b3fcc491ad77a91c01f67c12e')
|
2020-10-16 18:51:57 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${pkgname}"
|
|
|
|
patch -Np1 < "$srcdir/fix-color.patch"
|
2020-11-14 16:25:25 +00:00
|
|
|
patch -Np1 < "$srcdir/fix-ldflags.patch"
|
2020-10-16 18:51:57 +00:00
|
|
|
}
|
2017-04-03 18:25:22 +00:00
|
|
|
|
|
|
|
case "$CARCH" in
|
|
|
|
x86_64) export GOARCH=amd64 ;;
|
|
|
|
arm) export GOARCH=arm GOARM=5 ;;
|
|
|
|
armv6h) export GOARCH=arm GOARM=6 ;;
|
|
|
|
armv7h) export GOARCH=arm GOARM=7 ;;
|
|
|
|
aarch64) export GOARCH=arm64 ;;
|
|
|
|
esac
|
2017-09-04 14:44:10 +00:00
|
|
|
|
2012-11-22 18:49:32 +00:00
|
|
|
build() {
|
2020-05-18 19:05:06 +00:00
|
|
|
export GOROOT_FINAL=/usr/lib/go
|
|
|
|
export GOROOT_BOOTSTRAP=/usr/lib/go
|
2017-04-03 18:25:22 +00:00
|
|
|
export GOPATH="$srcdir/"
|
2020-05-18 19:05:06 +00:00
|
|
|
export GOROOT="$srcdir/$pkgname"
|
|
|
|
export GOBIN="$GOROOT/bin"
|
2013-04-08 18:56:19 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
cd "$pkgname/src"
|
|
|
|
./make.bash --no-clean -v
|
2017-12-10 14:37:03 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
[[ $CARCH == "aarch64" ]] && PATH="$GOBIN:$PATH" go install -v -race std
|
|
|
|
PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2020-05-18 19:05:06 +00:00
|
|
|
export GOROOT_FINAL=/usr/lib/go
|
|
|
|
export GOROOT_BOOTSTRAP=/usr/lib/go
|
|
|
|
export GOROOT="$srcdir/$pkgname"
|
2014-05-13 13:06:49 +00:00
|
|
|
export GOBIN="$GOROOT/bin"
|
2020-05-18 19:05:06 +00:00
|
|
|
export PATH="$srcdir/$pkgname/bin:$PATH"
|
2017-04-03 18:25:22 +00:00
|
|
|
export GO_TEST_TIMEOUT_SCALE=2
|
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
cd $pkgname/src
|
2020-07-15 00:36:26 +00:00
|
|
|
rm os/signal/signal_cgo_test.go # TODO: There is a bug somewhere.
|
|
|
|
# Should only affect containers
|
|
|
|
# so lets just say No.
|
2019-03-15 18:25:53 +00:00
|
|
|
./run.bash --no-rebuild -v -v -v -k
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
package() {
|
|
|
|
cd "$pkgname"
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2017-04-03 18:25:22 +00:00
|
|
|
install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
|
2019-01-31 00:25:13 +00:00
|
|
|
cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
|
2017-04-03 18:25:22 +00:00
|
|
|
cp -r doc/* "$pkgdir/usr/share/doc/go"
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2017-04-03 18:25:22 +00:00
|
|
|
ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
|
|
|
|
ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
|
|
|
|
ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2016-02-05 03:59:16 +00:00
|
|
|
install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
|
2014-11-07 14:39:12 +00:00
|
|
|
|
2018-11-21 13:45:36 +00:00
|
|
|
rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
|
2018-09-03 18:03:53 +00:00
|
|
|
|
|
|
|
# TODO: Figure out if really needed
|
|
|
|
rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
|
2018-11-21 13:45:36 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
2017-09-04 14:44:10 +00:00
|
|
|
}
|
2018-11-21 13:45:36 +00:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et
|