[arch-commits] Commit in php-mongo/repos (6 files)
Pierre Schmitz
pierre at archlinux.org
Thu Aug 28 11:15:56 UTC 2014
Date: Thursday, August 28, 2014 @ 13:15:55
Author: pierre
Revision: 118014
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
php-mongo/repos/community-staging-i686/
php-mongo/repos/community-staging-i686/PKGBUILD
(from rev 118013, php-mongo/trunk/PKGBUILD)
php-mongo/repos/community-staging-i686/mongo.ini
(from rev 118013, php-mongo/trunk/mongo.ini)
php-mongo/repos/community-staging-x86_64/
php-mongo/repos/community-staging-x86_64/PKGBUILD
(from rev 118013, php-mongo/trunk/PKGBUILD)
php-mongo/repos/community-staging-x86_64/mongo.ini
(from rev 118013, php-mongo/trunk/mongo.ini)
------------------------------------+
community-staging-i686/PKGBUILD | 30 ++++++++++++++++++++++++++++++
community-staging-i686/mongo.ini | 28 ++++++++++++++++++++++++++++
community-staging-x86_64/PKGBUILD | 30 ++++++++++++++++++++++++++++++
community-staging-x86_64/mongo.ini | 28 ++++++++++++++++++++++++++++
4 files changed, 116 insertions(+)
Copied: php-mongo/repos/community-staging-i686/PKGBUILD (from rev 118013, php-mongo/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-08-28 11:15:55 UTC (rev 118014)
@@ -0,0 +1,30 @@
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
+
+pkgname=php-mongo
+pkgver=1.5.4
+pkgrel=2
+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=('19d01417f0c96c10fb9149fc6cb5cc9c1f096e9c6fa31ee4c454f229e33dbd30'
+ 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')
Copied: php-mongo/repos/community-staging-i686/mongo.ini (from rev 118013, php-mongo/trunk/mongo.ini)
===================================================================
--- community-staging-i686/mongo.ini (rev 0)
+++ community-staging-i686/mongo.ini 2014-08-28 11:15:55 UTC (rev 118014)
@@ -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 = "$"
+
Copied: php-mongo/repos/community-staging-x86_64/PKGBUILD (from rev 118013, php-mongo/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2014-08-28 11:15:55 UTC (rev 118014)
@@ -0,0 +1,30 @@
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
+
+pkgname=php-mongo
+pkgver=1.5.4
+pkgrel=2
+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=('19d01417f0c96c10fb9149fc6cb5cc9c1f096e9c6fa31ee4c454f229e33dbd30'
+ 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')
Copied: php-mongo/repos/community-staging-x86_64/mongo.ini (from rev 118013, php-mongo/trunk/mongo.ini)
===================================================================
--- community-staging-x86_64/mongo.ini (rev 0)
+++ community-staging-x86_64/mongo.ini 2014-08-28 11:15:55 UTC (rev 118014)
@@ -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