[arch-commits] Commit in glide/repos (4 files)

Alexander Rødseth arodseth at archlinux.org
Sat Oct 21 22:37:34 UTC 2017


    Date: Saturday, October 21, 2017 @ 22:37:33
  Author: arodseth
Revision: 263903

archrelease: copy trunk to community-x86_64, community-i686

Added:
  glide/repos/community-i686/PKGBUILD
    (from rev 263902, glide/trunk/PKGBUILD)
  glide/repos/community-x86_64/PKGBUILD
    (from rev 263902, glide/trunk/PKGBUILD)
Deleted:
  glide/repos/community-i686/PKGBUILD
  glide/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |   94 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   43 --------------------
 community-x86_64/PKGBUILD |   43 --------------------
 3 files changed, 94 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-10-21 22:18:26 UTC (rev 263902)
+++ community-i686/PKGBUILD	2017-10-21 22:37:33 UTC (rev 263903)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: fanningert <thomas at fanninger.at>
-
-pkgname=glide
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='Dependency management and vendoring for Go projects'
-arch=('x86_64' 'i686')
-_gourl="github.com/Masterminds"
-url='https://github.com/Masterminds/glide'
-license=('MIT')
-makedepends=('git' 'go')
-depends=('glibc')
-provides=('glide')
-options=('!strip' '!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://$_gourl/glide/archive/v${pkgver}.tar.gz")
-sha256sums=('ebbfa28e547db921add3557317c810f87d4ece983213d8e9899783b3e3b43ae7')
-
-prepare() {
-  mkdir -p build/go; cd build/go
-  for f in "/usr/lib/go/"*; do ln -s "$f"; done
-  rm pkg; mkdir pkg; cd pkg
-  for f in "/usr/lib/go/pkg/"*; do ln -s "$f"; done
-  export GOROOT="$srcdir/build/go"
-  export GOPATH="$srcdir/build"
-  mkdir -p "$GOPATH/src/$_gourl"
-  mv "$srcdir/$pkgname-$pkgver" "$GOPATH/src/$_gourl/$pkgname"
-}
-
-build() {
-  cd "$GOPATH/src/${_gourl}/${pkgname}"
-
-  go fix && go build -o glide -ldflags "-X main.version=$pkgver" glide.go
-}
-
-package() {
-  install -Dm755 "build/src/$_gourl/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "build/src/$_gourl/$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: https://github.com/Masterminds/glide
-# vim:set ts=2 sw=2 et:

Copied: glide/repos/community-i686/PKGBUILD (from rev 263902, glide/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-10-21 22:37:33 UTC (rev 263903)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: fanningert <thomas at fanninger.at>
+
+pkgname=glide
+pkgver=0.13.0
+pkgrel=2
+pkgdesc='Dependency management and vendoring for Go projects'
+arch=('x86_64' 'i686')
+_gourl="github.com/Masterminds"
+url="https://$_gourl/glide"
+license=('MIT')
+makedepends=('git' 'go-pie')
+depends=('glibc')
+provides=('glide')
+options=('!strip' '!emptydirs')
+source=("git+$url#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  mkdir -p build/go && cd build/go
+  for f in "/usr/lib/go/"*; do ln -s "$f"; done
+  rm pkg && mkdir pkg && cd pkg
+  for f in "/usr/lib/go/pkg/"*; do ln -s "$f"; done
+
+  export GOPATH="$srcdir/build"
+  export GOROOT="$GOPATH/go"
+
+  mkdir -p "$GOPATH/src/$_gourl"
+  mv "$srcdir/$pkgname" "$GOPATH/src/$_gourl/$pkgname"
+}
+
+build() {
+  cd "$GOPATH/src/${_gourl}/${pkgname}"
+
+  go fix && go build -o glide -ldflags "-X main.version=$pkgver" glide.go
+}
+
+package() {
+  cd "build/src/$_gourl/$pkgname"
+
+  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/Masterminds/glide
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-10-21 22:18:26 UTC (rev 263902)
+++ community-x86_64/PKGBUILD	2017-10-21 22:37:33 UTC (rev 263903)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: fanningert <thomas at fanninger.at>
-
-pkgname=glide
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='Dependency management and vendoring for Go projects'
-arch=('x86_64' 'i686')
-_gourl="github.com/Masterminds"
-url='https://github.com/Masterminds/glide'
-license=('MIT')
-makedepends=('git' 'go')
-depends=('glibc')
-provides=('glide')
-options=('!strip' '!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://$_gourl/glide/archive/v${pkgver}.tar.gz")
-sha256sums=('ebbfa28e547db921add3557317c810f87d4ece983213d8e9899783b3e3b43ae7')
-
-prepare() {
-  mkdir -p build/go; cd build/go
-  for f in "/usr/lib/go/"*; do ln -s "$f"; done
-  rm pkg; mkdir pkg; cd pkg
-  for f in "/usr/lib/go/pkg/"*; do ln -s "$f"; done
-  export GOROOT="$srcdir/build/go"
-  export GOPATH="$srcdir/build"
-  mkdir -p "$GOPATH/src/$_gourl"
-  mv "$srcdir/$pkgname-$pkgver" "$GOPATH/src/$_gourl/$pkgname"
-}
-
-build() {
-  cd "$GOPATH/src/${_gourl}/${pkgname}"
-
-  go fix && go build -o glide -ldflags "-X main.version=$pkgver" glide.go
-}
-
-package() {
-  install -Dm755 "build/src/$_gourl/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "build/src/$_gourl/$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: https://github.com/Masterminds/glide
-# vim:set ts=2 sw=2 et:

Copied: glide/repos/community-x86_64/PKGBUILD (from rev 263902, glide/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-10-21 22:37:33 UTC (rev 263903)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: fanningert <thomas at fanninger.at>
+
+pkgname=glide
+pkgver=0.13.0
+pkgrel=2
+pkgdesc='Dependency management and vendoring for Go projects'
+arch=('x86_64' 'i686')
+_gourl="github.com/Masterminds"
+url="https://$_gourl/glide"
+license=('MIT')
+makedepends=('git' 'go-pie')
+depends=('glibc')
+provides=('glide')
+options=('!strip' '!emptydirs')
+source=("git+$url#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  mkdir -p build/go && cd build/go
+  for f in "/usr/lib/go/"*; do ln -s "$f"; done
+  rm pkg && mkdir pkg && cd pkg
+  for f in "/usr/lib/go/pkg/"*; do ln -s "$f"; done
+
+  export GOPATH="$srcdir/build"
+  export GOROOT="$GOPATH/go"
+
+  mkdir -p "$GOPATH/src/$_gourl"
+  mv "$srcdir/$pkgname" "$GOPATH/src/$_gourl/$pkgname"
+}
+
+build() {
+  cd "$GOPATH/src/${_gourl}/${pkgname}"
+
+  go fix && go build -o glide -ldflags "-X main.version=$pkgver" glide.go
+}
+
+package() {
+  cd "build/src/$_gourl/$pkgname"
+
+  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/Masterminds/glide
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list