[arch-commits] Commit in php-mongo/repos (8 files)

Ike Devolder idevolder at archlinux.org
Fri Jul 3 07:07:51 UTC 2015


    Date: Friday, July 3, 2015 @ 09:07:51
  Author: idevolder
Revision: 136307

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

Added:
  php-mongo/repos/community-i686/PKGBUILD
    (from rev 136306, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-i686/mongo.ini
    (from rev 136306, php-mongo/trunk/mongo.ini)
  php-mongo/repos/community-x86_64/PKGBUILD
    (from rev 136306, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-x86_64/mongo.ini
    (from rev 136306, php-mongo/trunk/mongo.ini)
Deleted:
  php-mongo/repos/community-i686/PKGBUILD
  php-mongo/repos/community-i686/mongo.ini
  php-mongo/repos/community-x86_64/PKGBUILD
  php-mongo/repos/community-x86_64/mongo.ini

----------------------------+
 /PKGBUILD                  |   64 +++++++++++++++++++++++++++++++++++++++++++
 /mongo.ini                 |   56 +++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD    |   32 ---------------------
 community-i686/mongo.ini   |   28 ------------------
 community-x86_64/PKGBUILD  |   32 ---------------------
 community-x86_64/mongo.ini |   28 ------------------
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-07-03 07:07:39 UTC (rev 136306)
+++ community-i686/PKGBUILD	2015-07-03 07:07:51 UTC (rev 136307)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
-
-pkgname=php-mongo
-pkgver=1.6.9
-pkgrel=1
-pkgdesc="Officially supported PHP driver for MongoDB"
-arch=("i686" "x86_64")
-url="http://www.mongodb.org/display/DOCS/PHP+Language+Center"
-license=("APACHE")
-depends=("php")
-backup=("etc/php/conf.d/mongo.ini")
-source=(
-	"http://pecl.php.net/get/mongo-$pkgver.tgz"
-	"mongo.ini"
-)
-
-build() {
-	cd mongo-$pkgver
-	phpize
-	./configure --prefix=/usr --enable-mongo
-}
-
-package() {
-	cd mongo-$pkgver
-	make INSTALL_ROOT="$pkgdir" install
-	install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini"
-}
-sha256sums=('b8213e0f08873f1455b2c7e8bfb5f33405afbcd5ce598d81b5f5c49556114581'
-            'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Copied: php-mongo/repos/community-i686/PKGBUILD (from rev 136306, php-mongo/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-07-03 07:07:51 UTC (rev 136307)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
+
+pkgname=php-mongo
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Officially supported PHP driver for MongoDB"
+arch=("i686" "x86_64")
+url="http://www.mongodb.org/display/DOCS/PHP+Language+Center"
+license=("APACHE")
+depends=("php")
+backup=("etc/php/conf.d/mongo.ini")
+source=(
+	"http://pecl.php.net/get/mongo-$pkgver.tgz"
+	"mongo.ini"
+)
+
+build() {
+	cd mongo-$pkgver
+	phpize
+	./configure --prefix=/usr --enable-mongo
+}
+
+package() {
+	cd mongo-$pkgver
+	make INSTALL_ROOT="$pkgdir" install
+	install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini"
+}
+sha256sums=('02ec2002ebef399261b86e317970b3c89058dd44da6e48b71b51880430d34c63'
+            'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Deleted: community-i686/mongo.ini
===================================================================
--- community-i686/mongo.ini	2015-07-03 07:07:39 UTC (rev 136306)
+++ community-i686/mongo.ini	2015-07-03 07:07:51 UTC (rev 136307)
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)
-mongo.cmd = "$"
-

Copied: php-mongo/repos/community-i686/mongo.ini (from rev 136306, php-mongo/trunk/mongo.ini)
===================================================================
--- community-i686/mongo.ini	                        (rev 0)
+++ community-i686/mongo.ini	2015-07-03 07:07:51 UTC (rev 136307)
@@ -0,0 +1,28 @@
+; Tell PHP to load the Mongo Extension on startup
+extension=mongo.so
+
+[mongo]
+; If the driver should reconnect to mongo
+mongo.auto_reconnect = False
+
+; Whether to allow persistent connections
+mongo.allow_persistent = On
+
+; Maximum number of persistent connections (-1 means unlimited)
+mongo.max_persistent = -1
+
+; Maximum number of links (persistent and non-persistent, -1 means unlimited)
+mongo.max_connections = -1
+
+; Default host for mongo connection
+mongo.default_host = localhost
+
+; Default port for mongo database
+mongo.default_port = 27017
+
+; When saving files to the database, size of chunks to split them into
+mongo.chunk_size = 262400
+
+; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)
+mongo.cmd = "$"
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-07-03 07:07:39 UTC (rev 136306)
+++ community-x86_64/PKGBUILD	2015-07-03 07:07:51 UTC (rev 136307)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
-
-pkgname=php-mongo
-pkgver=1.6.9
-pkgrel=1
-pkgdesc="Officially supported PHP driver for MongoDB"
-arch=("i686" "x86_64")
-url="http://www.mongodb.org/display/DOCS/PHP+Language+Center"
-license=("APACHE")
-depends=("php")
-backup=("etc/php/conf.d/mongo.ini")
-source=(
-	"http://pecl.php.net/get/mongo-$pkgver.tgz"
-	"mongo.ini"
-)
-
-build() {
-	cd mongo-$pkgver
-	phpize
-	./configure --prefix=/usr --enable-mongo
-}
-
-package() {
-	cd mongo-$pkgver
-	make INSTALL_ROOT="$pkgdir" install
-	install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini"
-}
-sha256sums=('b8213e0f08873f1455b2c7e8bfb5f33405afbcd5ce598d81b5f5c49556114581'
-            'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Copied: php-mongo/repos/community-x86_64/PKGBUILD (from rev 136306, php-mongo/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-07-03 07:07:51 UTC (rev 136307)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
+
+pkgname=php-mongo
+pkgver=1.6.10
+pkgrel=1
+pkgdesc="Officially supported PHP driver for MongoDB"
+arch=("i686" "x86_64")
+url="http://www.mongodb.org/display/DOCS/PHP+Language+Center"
+license=("APACHE")
+depends=("php")
+backup=("etc/php/conf.d/mongo.ini")
+source=(
+	"http://pecl.php.net/get/mongo-$pkgver.tgz"
+	"mongo.ini"
+)
+
+build() {
+	cd mongo-$pkgver
+	phpize
+	./configure --prefix=/usr --enable-mongo
+}
+
+package() {
+	cd mongo-$pkgver
+	make INSTALL_ROOT="$pkgdir" install
+	install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini"
+}
+sha256sums=('02ec2002ebef399261b86e317970b3c89058dd44da6e48b71b51880430d34c63'
+            'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Deleted: community-x86_64/mongo.ini
===================================================================
--- community-x86_64/mongo.ini	2015-07-03 07:07:39 UTC (rev 136306)
+++ community-x86_64/mongo.ini	2015-07-03 07:07:51 UTC (rev 136307)
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)
-mongo.cmd = "$"
-

Copied: php-mongo/repos/community-x86_64/mongo.ini (from rev 136306, php-mongo/trunk/mongo.ini)
===================================================================
--- community-x86_64/mongo.ini	                        (rev 0)
+++ community-x86_64/mongo.ini	2015-07-03 07:07:51 UTC (rev 136307)
@@ -0,0 +1,28 @@
+; Tell PHP to load the Mongo Extension on startup
+extension=mongo.so
+
+[mongo]
+; If the driver should reconnect to mongo
+mongo.auto_reconnect = False
+
+; Whether to allow persistent connections
+mongo.allow_persistent = On
+
+; Maximum number of persistent connections (-1 means unlimited)
+mongo.max_persistent = -1
+
+; Maximum number of links (persistent and non-persistent, -1 means unlimited)
+mongo.max_connections = -1
+
+; Default host for mongo connection
+mongo.default_host = localhost
+
+; Default port for mongo database
+mongo.default_port = 27017
+
+; When saving files to the database, size of chunks to split them into
+mongo.chunk_size = 262400
+
+; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)
+mongo.cmd = "$"
+



More information about the arch-commits mailing list