[arch-commits] Commit in keybase/trunk (PKGBUILD)

Felix Yan fyan at archlinux.org
Tue May 24 05:40:57 UTC 2016


    Date: Tuesday, May 24, 2016 @ 07:40:56
  Author: fyan
Revision: 176183

upgpkg: keybase 1.0.16-1

- switch to gcc-go
- upstream new release

Modified:
  keybase/trunk/PKGBUILD

----------+
 PKGBUILD |   11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-05-23 23:01:22 UTC (rev 176182)
+++ PKGBUILD	2016-05-24 05:40:56 UTC (rev 176183)
@@ -4,28 +4,29 @@
 
 pkgname=keybase
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=1.0.15
-_realver=1.0.15
+pkgver=1.0.16
+_realver=1.0.16
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://keybase.io/'
 license=('BSD')
 depends=('gnupg')
-makedepends=('go' 'git' 'mercurial')
+makedepends=('gcc-go' 'git' 'mercurial')
 source=("git+https://github.com/keybase/client.git#tag=v$_realver")
 sha256sums=('SKIP')
 
 prepare() {
   cd client
+  mkdir -p .gopath/src
+  mv go/vendor/* .gopath/src/
   mkdir -p .gopath/src/github.com/keybase
   ln -sf "$PWD" .gopath/src/github.com/keybase/client
   export GOPATH="$PWD/.gopath"
-  export GO15VENDOREXPERIMENT=1
 }
 
 build() {
   cd client/go/keybase
-  go build -a -tags production github.com/keybase/client/go/keybase # -gccgoflags "$CFLAGS $LDFLAGS"
+  go build -a -tags production -gccgoflags "$CFLAGS $LDFLAGS" github.com/keybase/client/go/keybase
 }
 
 package() {



More information about the arch-commits mailing list