2018-11-21 13:45:36 +00:00
|
|
|
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
|
|
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
2018-12-22 16:32:10 +00:00
|
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
|
|
# 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
|
2017-12-10 14:51:17 +00:00
|
|
|
# - don't build stdlib with race detector (x86 only)
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
pkgbase=go
|
|
|
|
pkgname=(go go-pie)
|
2014-03-22 15:00:40 +00:00
|
|
|
epoch=2
|
2019-01-24 19:08:49 +00:00
|
|
|
pkgver=1.11.5
|
2019-01-31 00:25:13 +00:00
|
|
|
pkgrel=3
|
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)
|
|
|
|
makedepends=(git go)
|
2018-12-14 13:56:39 +00:00
|
|
|
source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
|
|
|
|
default-buildmode-pie.patch)
|
2019-01-24 19:08:49 +00:00
|
|
|
sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
|
2018-02-18 02:58:08 +00:00
|
|
|
'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
|
2017-04-03 18:25:22 +00:00
|
|
|
|
|
|
|
export GOOS=linux
|
|
|
|
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
|
|
|
|
export GOROOT_FINAL=/usr/lib/go
|
|
|
|
export GOROOT_BOOTSTRAP=/usr/lib/go
|
2018-02-18 17:25:27 +00:00
|
|
|
export GOCACHE=off
|
2012-11-22 18:49:32 +00:00
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
prepare() {
|
2018-11-21 13:45:36 +00:00
|
|
|
cp -r $pkgbase $pkgbase-pie
|
2017-09-04 14:44:10 +00:00
|
|
|
|
2018-11-21 13:45:36 +00:00
|
|
|
cd $pkgbase-pie
|
|
|
|
patch -p1 -i "$srcdir/default-buildmode-pie.patch"
|
2017-09-04 14:44:10 +00:00
|
|
|
}
|
|
|
|
|
2012-11-22 18:49:32 +00:00
|
|
|
build() {
|
2017-04-03 18:25:22 +00:00
|
|
|
export GOPATH="$srcdir/"
|
2013-04-08 18:56:19 +00:00
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
for _pkgname in ${pkgname[@]}; do
|
|
|
|
export GOROOT="$srcdir/$_pkgname"
|
2017-12-10 14:37:03 +00:00
|
|
|
export GOBIN="$GOROOT/bin"
|
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
cd "$srcdir/$_pkgname/src"
|
2018-02-18 02:58:08 +00:00
|
|
|
./make.bash --no-clean -v
|
2017-12-10 14:37:03 +00:00
|
|
|
|
2018-02-18 02:58:08 +00:00
|
|
|
PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
|
|
|
|
#PATH="$GOBIN:$PATH" go install -v -race std
|
2017-09-04 14:44:10 +00:00
|
|
|
done
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2017-09-04 14:44:10 +00:00
|
|
|
# Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
|
|
|
|
export GOROOT="$srcdir/$pkgbase"
|
2014-05-13 13:06:49 +00:00
|
|
|
export GOBIN="$GOROOT/bin"
|
2017-09-04 14:44:10 +00:00
|
|
|
export PATH="$srcdir/$pkgbase/bin:$PATH"
|
2017-04-03 18:25:22 +00:00
|
|
|
export GO_TEST_TIMEOUT_SCALE=2
|
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
cd $pkgbase/src
|
|
|
|
./run.bash --no-rebuild -v -v -v -k
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
2017-09-04 14:44:10 +00:00
|
|
|
_package() {
|
2017-12-10 14:37:03 +00:00
|
|
|
options=(!strip staticlibs)
|
2017-09-04 14:44:10 +00:00
|
|
|
cd "$srcdir/$1"
|
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
|
|
|
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
|
2016-02-05 03:59:16 +00:00
|
|
|
}
|
2017-09-04 14:44:10 +00:00
|
|
|
|
|
|
|
package_go() {
|
|
|
|
pkgdesc='Core compiler tools for the Go programming language'
|
|
|
|
|
|
|
|
_package $pkgname
|
|
|
|
}
|
|
|
|
|
|
|
|
package_go-pie() {
|
|
|
|
pkgdesc='Core compiler tools for the Go programming language (with PIE enabled by default)'
|
|
|
|
provides=(go)
|
|
|
|
conflicts=(go)
|
|
|
|
|
|
|
|
_package $pkgname
|
2019-01-27 17:46:55 +00:00
|
|
|
|
|
|
|
# linux_amd64 is essentially the content of linux_amd64_shared, however there might
|
|
|
|
# be cases where the user could generate the _shared directory as it's missing in go-pie.
|
|
|
|
# Make sure it exists without rebuilding std with -buildmode=pie.
|
|
|
|
cp -a "$pkgdir/usr/lib/go/pkg/linux_${GOARCH}/" "$pkgdir/usr/lib/go/pkg/linux_${GOARCH}_shared"
|
2017-09-04 14:44:10 +00:00
|
|
|
}
|
2018-11-21 13:45:36 +00:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et
|