[arch-commits] Commit in go-tools/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Fri Feb 16 22:40:09 UTC 2018


    Date: Friday, February 16, 2018 @ 22:40:08
  Author: bpiotrowski
Revision: 317174

archrelease: copy trunk to testing-x86_64

Added:
  go-tools/repos/testing-x86_64/
  go-tools/repos/testing-x86_64/PKGBUILD
    (from rev 317173, go-tools/trunk/PKGBUILD)

----------+
 PKGBUILD |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

Copied: go-tools/repos/testing-x86_64/PKGBUILD (from rev 317173, go-tools/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-02-16 22:40:08 UTC (rev 317174)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+
+pkgname=go-tools
+epoch=2
+pkgver=1.10+2306+25101aad
+pkgrel=1
+pkgdesc='Developer tools for the Go programming language'
+arch=(x86_64)
+url='http://golang.org/'
+license=(BSD)
+depends=(glibc)
+makedepends=(git go-pie)
+_commit=25101aadb97aa42907eee6a238d6d26a6cb3c756
+_net_commit=136a25c244d3019482a795d728110278d6ba09a4
+source=(git+https://go.googlesource.com/tools#commit=$_commit
+        git+https://github.com/golang/net#commit=$_net_commit)
+md5sums=('SKIP'
+         'SKIP')
+
+_tools=(benchcmp callgraph cover digraph eg fiximports godex godoc goimports
+        gomvpkg gorename gotype goyacc guru heapview html2article present
+        ssadump stringer)
+
+pkgver() {
+  local _gover=1.10
+  cd tools
+  printf "%s+%s+%s" $_gover "$(git rev-list --count HEAD)" \
+    "$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  mkdir -p gopath/src/golang.org/x build
+  cp -r tools net gopath/src/golang.org/x/
+}
+
+build() {
+  export GOPATH="$srcdir/gopath"
+
+  cd build
+  for tool in ${_tools[@]}; do
+    go build -v -a golang.org/x/tools/cmd/$tool
+  done
+}
+
+check() {
+  export GOPATH="$srcdir/gopath"
+
+  for tool in ${_tools[@]}; do
+    go test golang.org/x/tools/cmd/$tool
+  done
+}
+
+package() {
+  for tool in ${_tools[@]}; do
+    install -Dm755 build/$tool "$pkgdir/usr/bin/$tool"
+  done
+
+  install -Dm644 tools/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list