2018-12-22 16:32:10 +00:00
|
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
2021-12-03 14:59:09 +00:00
|
|
|
# Contributor: Daniel Martí <mvdan@mvdan.cc>
|
2021-06-05 22:07:38 +00:00
|
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
2019-03-15 18:25:53 +00:00
|
|
|
# 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
|
|
|
pkgname=go
|
2014-03-22 15:00:40 +00:00
|
|
|
epoch=2
|
2023-12-05 21:55:03 +00:00
|
|
|
pkgver=1.21.5
|
2023-06-06 19:20:38 +00:00
|
|
|
pkgrel=1
|
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)
|
2022-06-02 00:04:31 +00:00
|
|
|
makedepends=(git go)
|
2020-05-18 19:05:06 +00:00
|
|
|
replaces=(go-pie)
|
|
|
|
provides=(go-pie)
|
|
|
|
options=(!strip staticlibs)
|
2022-06-02 00:04:31 +00:00
|
|
|
source=(https://go.dev/dl/go${pkgver}.src.tar.gz{,.asc})
|
2020-05-18 19:05:06 +00:00
|
|
|
validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
|
2023-12-05 21:55:03 +00:00
|
|
|
sha256sums=('285cbbdf4b6e6e62ed58f370f3f6d8c30825d6e56c5853c66d3c23bcdb09db19'
|
2021-02-21 19:53:41 +00:00
|
|
|
'SKIP')
|
2017-04-03 18:25:22 +00:00
|
|
|
|
|
|
|
case "$CARCH" in
|
|
|
|
x86_64) export GOARCH=amd64 ;;
|
|
|
|
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
|
2013-04-08 18:56:19 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
cd "$pkgname/src"
|
2021-12-03 14:59:09 +00:00
|
|
|
./make.bash -v
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2021-08-17 23:10:49 +00:00
|
|
|
export GO_TEST_TIMEOUT_SCALE=3
|
2017-04-03 18:25:22 +00:00
|
|
|
|
2020-05-18 19:05:06 +00:00
|
|
|
cd $pkgname/src
|
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
|
|
|
|
2021-08-17 23:10:49 +00:00
|
|
|
install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go" \
|
|
|
|
"$pkgdir/usr/lib/go/pkg/linux_amd64_"{dynlink,race}
|
|
|
|
|
2021-10-23 19:35:23 +00:00
|
|
|
cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
|
2022-06-02 00:04:31 +00:00
|
|
|
# We can't strip all binaries and libraries,
|
|
|
|
# as that also strips some testdata directories and breaks the tests.
|
|
|
|
# Just strip the packaged binaries as a compromise.
|
|
|
|
strip $STRIP_BINARIES "$pkgdir/usr/lib/go"{/bin/*,/pkg/tool/*/*}
|
|
|
|
|
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
|
2022-05-14 14:17:45 +00:00
|
|
|
rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build
|
2018-11-21 13:45:36 +00:00
|
|
|
|
2023-08-09 06:01:08 +00:00
|
|
|
# https://github.com/golang/go/issues/57179
|
|
|
|
install -Dm644 go.env "$pkgdir/usr/lib/go/go.env"
|
|
|
|
|
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
|