diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-03-20 14:20:05 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-04 12:04:20 +0000 |
commit | 263ca65d85827d3a51f148e95c163e9426c6ecab (patch) | |
tree | 2d9591cf8d4cd7fa056ea723e9755355e294097b /community/go | |
parent | e9a882dd0d6a871ab3e4c9f4e7cb91ade1f50e67 (diff) | |
download | aports-263ca65d85827d3a51f148e95c163e9426c6ecab.tar.bz2 aports-263ca65d85827d3a51f148e95c163e9426c6ecab.tar.xz |
community/go: strip the binaries
It should be possible to strip go binaries these days [0]:
> We don't intentionally do anything that would make stripping a binary
not OK, and strip has worked for the past five years or so.
[0]: https://groups.google.com/forum/?_escaped_fragment_=topic/golang-dev/ABppMOjYP6w#!topic/golang-dev/ABppMOjYP6w
Diffstat (limited to 'community/go')
-rw-r--r-- | community/go/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 2f33f72fb6..04cc05927d 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -5,7 +5,7 @@ pkgver=1.11 # This should be the latest commit on the corresponding release branch # https://github.com/golang/tools/commits/release-branch.go1.10 _toolsver="e9928cbe4ab476eebf6ff177f77b344773acfa9b" -pkgrel=0 +pkgrel=1 pkgdesc="Go programming language compiler" url="http://www.golang.org/" arch="all" @@ -13,7 +13,6 @@ license="BSD" depends="binutils gcc" depends_dev="" makedepends="bash go-bootstrap" -options="!strip" provides="go-bootstrap=$pkgver-r$pkgrel" install="" subpackages="$pkgname-doc" |