[arch-commits] Commit in mongodb-tools/repos (6 files)

Felix Yan fyan at archlinux.org
Fri Apr 10 05:59:18 UTC 2015


    Date: Friday, April 10, 2015 @ 07:59:18
  Author: fyan
Revision: 131083

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

Added:
  mongodb-tools/repos/community-i686/PKGBUILD
    (from rev 131082, mongodb-tools/trunk/PKGBUILD)
  mongodb-tools/repos/community-x86_64/PKGBUILD
    (from rev 131082, mongodb-tools/trunk/PKGBUILD)
Deleted:
  mongodb-tools/repos/community-i686/PKGBUILD
  mongodb-tools/repos/community-i686/i686.patch
  mongodb-tools/repos/community-x86_64/PKGBUILD
  mongodb-tools/repos/community-x86_64/i686.patch

-----------------------------+
 /PKGBUILD                   |   70 ++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD     |   39 -----------------------
 community-i686/i686.patch   |   11 ------
 community-x86_64/PKGBUILD   |   39 -----------------------
 community-x86_64/i686.patch |   11 ------
 5 files changed, 70 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-04-10 05:58:44 UTC (rev 131082)
+++ community-i686/PKGBUILD	2015-04-10 05:59:18 UTC (rev 131083)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=mongodb-tools
-pkgver=3.1.0
-pkgrel=2
-pkgdesc="The MongoDB tools provide import, export, and diagnostic capabilities."
-arch=('i686' 'x86_64')
-url="https://github.com/mongodb/mongo-tools"
-license=('Apache')
-depends=('libsasl')
-makedepends=('git' 'go')
-source=("git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver"
-        i686.patch)
-md5sums=('SKIP'
-         '1e77521c9040575ab1e7ed91ac6e410c')
-
-prepare() {
-  cd mongo-tools
-  # https://github.com/mongodb/mongo-tools/issues/13
-  patch -p0 -i ../i686.patch
-}
-
-build() {
-  cd mongo-tools
-  . ./set_gopath.sh
-
-  mkdir bin
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
-    go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
-  done
-}
-
-package() {
-  cd mongo-tools
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
-    install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
-  done
-}

Copied: mongodb-tools/repos/community-i686/PKGBUILD (from rev 131082, mongodb-tools/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-04-10 05:59:18 UTC (rev 131083)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=mongodb-tools
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="The MongoDB tools provide import, export, and diagnostic capabilities."
+arch=('i686' 'x86_64')
+url="https://github.com/mongodb/mongo-tools"
+license=('Apache')
+depends=('libsasl')
+makedepends=('git' 'go')
+source=("git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd mongo-tools
+}
+
+build() {
+  cd mongo-tools
+  . ./set_gopath.sh
+
+  mkdir bin
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
+    go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
+  done
+}
+
+package() {
+  cd mongo-tools
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
+    install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
+  done
+}

Deleted: community-i686/i686.patch
===================================================================
--- community-i686/i686.patch	2015-04-10 05:58:44 UTC (rev 131082)
+++ community-i686/i686.patch	2015-04-10 05:59:18 UTC (rev 131083)
@@ -1,11 +0,0 @@
---- vendor/src/github.com/spacemonkeygo/openssl/ctx.go.orig	2015-03-09 23:14:45.000000000 +0100
-+++ vendor/src/github.com/spacemonkeygo/openssl/ctx.go	2015-03-26 13:41:39.730177906 +0100
-@@ -533,7 +533,7 @@
- 	return nil
- }
- 
--type Options int
-+type Options int64
- 
- const (
- 	// NoCompression is only valid if you are using OpenSSL 1.0.1 or newer

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-04-10 05:58:44 UTC (rev 131082)
+++ community-x86_64/PKGBUILD	2015-04-10 05:59:18 UTC (rev 131083)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=mongodb-tools
-pkgver=3.1.0
-pkgrel=2
-pkgdesc="The MongoDB tools provide import, export, and diagnostic capabilities."
-arch=('i686' 'x86_64')
-url="https://github.com/mongodb/mongo-tools"
-license=('Apache')
-depends=('libsasl')
-makedepends=('git' 'go')
-source=("git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver"
-        i686.patch)
-md5sums=('SKIP'
-         '1e77521c9040575ab1e7ed91ac6e410c')
-
-prepare() {
-  cd mongo-tools
-  # https://github.com/mongodb/mongo-tools/issues/13
-  patch -p0 -i ../i686.patch
-}
-
-build() {
-  cd mongo-tools
-  . ./set_gopath.sh
-
-  mkdir bin
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
-    go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
-  done
-}
-
-package() {
-  cd mongo-tools
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
-    install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
-  done
-}

Copied: mongodb-tools/repos/community-x86_64/PKGBUILD (from rev 131082, mongodb-tools/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-04-10 05:59:18 UTC (rev 131083)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=mongodb-tools
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="The MongoDB tools provide import, export, and diagnostic capabilities."
+arch=('i686' 'x86_64')
+url="https://github.com/mongodb/mongo-tools"
+license=('Apache')
+depends=('libsasl')
+makedepends=('git' 'go')
+source=("git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd mongo-tools
+}
+
+build() {
+  cd mongo-tools
+  . ./set_gopath.sh
+
+  mkdir bin
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
+    go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
+  done
+}
+
+package() {
+  cd mongo-tools
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
+    install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
+  done
+}

Deleted: community-x86_64/i686.patch
===================================================================
--- community-x86_64/i686.patch	2015-04-10 05:58:44 UTC (rev 131082)
+++ community-x86_64/i686.patch	2015-04-10 05:59:18 UTC (rev 131083)
@@ -1,11 +0,0 @@
---- vendor/src/github.com/spacemonkeygo/openssl/ctx.go.orig	2015-03-09 23:14:45.000000000 +0100
-+++ vendor/src/github.com/spacemonkeygo/openssl/ctx.go	2015-03-26 13:41:39.730177906 +0100
-@@ -533,7 +533,7 @@
- 	return nil
- }
- 
--type Options int
-+type Options int64
- 
- const (
- 	// NoCompression is only valid if you are using OpenSSL 1.0.1 or newer



More information about the arch-commits mailing list