Date: Friday, March 8, 2019 @ 15:10:54 Author: bpiotrowski Revision: 438083
2:1.12+2915+49d818b07-1 Modified: go-tools/trunk/PKGBUILD ----------+ PKGBUILD | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-03-08 14:35:29 UTC (rev 438082) +++ PKGBUILD 2019-03-08 15:10:54 UTC (rev 438083) @@ -3,7 +3,7 @@ pkgname=go-tools epoch=2 -pkgver=1.11+2495+9e9bf16a4 +pkgver=1.12+2915+49d818b07 pkgrel=1 pkgdesc='Developer tools for the Go programming language' arch=(x86_64) @@ -11,21 +11,21 @@ license=(BSD) depends=(glibc) makedepends=(git go-pie) -_commit=9e9bf16a4efe175e2867e1661feefa6278e4e14e -_net_commit=c39426892332e1bb5ec0a434a079bf82f5d30c54 -source=(git+https://go.googlesource.com/tools#commit=$_commit - git+https://github.com/golang/net#commit=$_net_commit) +_commit=49d818b07734fb3230f2d00bc5d4453348348d24 +_net_commit=16b79f2e4e95ea23b2bf9903c9809ff7b013ce85 +source=(go-tools::git+https://go.googlesource.com/tools#commit=$_commit + golang-net::git+https://github.com/golang/net#commit=$_net_commit) md5sums=('SKIP' 'SKIP') _tools=(benchcmp callgraph compilebench cover digraph eg fiximports go-contrib-init godex godoc goimports gomvpkg gorename gotype - goyacc guru heapview html2article present ssadump stringer - tip toolstash) + goyacc guru html2article present ssadump stringer + toolstash) pkgver() { - local _gover=1.11 - cd tools + local _gover=1.12 + cd go-tools printf "%s+%s+%s" $_gover "$(git rev-list --count HEAD)" \ "$(git rev-parse --short HEAD)" } @@ -32,7 +32,8 @@ prepare() { mkdir -p gopath/src/golang.org/x - cp -rf tools net gopath/src/golang.org/x/ + cp -rf go-tools gopath/src/golang.org/x/tools + cp -rf golang-net gopath/src/golang.org/x/net } build() { @@ -52,5 +53,5 @@ install -Dm755 gopath/bin/$tool "$pkgdir/usr/bin/$tool" done - install -Dm644 tools/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 go-tools/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }
