git » go-1.20.git » commit 24856da

upgpkg: 2:1.6.3-1

author Alexander Rødseth
2016-07-21 21:38:46 UTC
committer Alexander Rødseth
2016-07-21 21:38:46 UTC
parent 9bbc5086455bd111246d01f039d3bde8b3a10704

upgpkg: 2:1.6.3-1

PKGBUILD +7 -7

diff --git a/PKGBUILD b/PKGBUILD
index 708c53b..753d479 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,8 +10,8 @@
 # Contributor: John Luebs <jkluebs@gmail.com>
 
 pkgname=('go' 'go-tools')
-pkgver=1.6.2
-pkgrel=2
+pkgver=1.6.3
+pkgrel=1
 epoch=2
 arch=('x86_64' 'i686')
 url='http://golang.org/'
@@ -68,7 +68,7 @@ build() {
   bash make.bash --no-clean
 
   # System-wide tools
-  for tool in godex godoc goimports gomvpkg gorename gotype; do
+  for tool in godex goimports gomvpkg gorename gotype; do
     $GOROOT/bin/go get -d golang.org/x/tools/cmd/$tool
     $GOROOT/bin/go build -v -x -o $GOPATH/bin/$tool $_gourl/$tool
   done
@@ -96,7 +96,7 @@ check() {
   export PATH="$srcdir/$pkgname-$pkgver/bin:$PATH"
   export GOROOT_BOOTSTRAP=/usr/lib/go
 
-  for tool in godoc goimports gomvpkg gorename gotype \
+  for tool in goimports gomvpkg gorename gotype \
     benchcmp bundle callgraph digraph eg fiximports guru html2article oracle present ssadump stress stringer; do
     GOPATH="$srcdir" $GOROOT/bin/go test -v -x $_gourl/$tool
   done
@@ -111,7 +111,7 @@ package_go() {
               'git: for fetching sources from git repositories'
               'bzr: for fetching sources from bazaar repositories'
               'subversion: for fetching sources from subversion repositories'
-              'go-tools: godoc, goimports, gorename, and other tools.')
+              'go-tools: doc, goimports, gorename, and other tools.')
   install="$pkgname.install"
 
   cd "$pkgname-$pkgver"
@@ -144,7 +144,7 @@ package_go() {
 
   install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
 
-  # For godoc
+  # For the doc command
   install -Dm644 favicon.ico "$pkgdir/usr/lib/go/favicon.ico"
 
   # Clean Windows specific files.
@@ -158,7 +158,7 @@ package_go() {
 }
 
 package_go-tools() {
-  pkgdesc='Developer tools for the Go programming language (includes godoc)'
+  pkgdesc='Developer tools for the Go programming language'
   depends=('go>2:1.5.3-1')
 
   GOOS=linux