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

Pierre Schmitz pierre at archlinux.org
Sun Dec 3 14:07:01 UTC 2017


    Date: Sunday, December 3, 2017 @ 14:07:00
  Author: pierre
Revision: 271985

archrelease: copy trunk to community-staging-x86_64

Added:
  php-mongodb/repos/community-staging-x86_64/
  php-mongodb/repos/community-staging-x86_64/PKGBUILD
    (from rev 271984, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-staging-x86_64/mongodb.ini
    (from rev 271984, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-staging-x86_64/php-mongodb.install
    (from rev 271984, php-mongodb/trunk/php-mongodb.install)

---------------------+
 PKGBUILD            |   37 +++++++++++++++++++++++++++++++++++++
 mongodb.ini         |    2 ++
 php-mongodb.install |   12 ++++++++++++
 3 files changed, 51 insertions(+)

Copied: php-mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 271984, php-mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-12-03 14:07:00 UTC (rev 271985)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek <jareksedlacek at gmail.com>
+
+pkgname=php-mongodb
+pkgver=1.3.4
+pkgrel=2
+pkgdesc="MongoDB driver for PHP"
+arch=("x86_64")
+url="http://mongodb.github.io/mongo-php-driver"
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+	"https://pecl.php.net/get/mongodb-$pkgver.tgz"
+	"mongodb.ini"
+)
+sha256sums=('c78190115c0d51a440d66c75b6c12192f6d97873d141b34c5c2406a816fe1bb2'
+            '242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+	cd mongodb-$pkgver
+	phpize
+	#./configure --prefix=/usr --with-libbson --with-libmongoc
+	./configure --prefix=/usr
+}
+
+package() {
+	cd mongodb-$pkgver
+	make INSTALL_ROOT="$pkgdir" install
+	install -Dm644 "$srcdir/mongodb.ini" "$pkgdir/etc/php/conf.d/mongodb.ini"
+}

Copied: php-mongodb/repos/community-staging-x86_64/mongodb.ini (from rev 271984, php-mongodb/trunk/mongodb.ini)
===================================================================
--- community-staging-x86_64/mongodb.ini	                        (rev 0)
+++ community-staging-x86_64/mongodb.ini	2017-12-03 14:07:00 UTC (rev 271985)
@@ -0,0 +1,2 @@
+; Tell PHP to load the MongoDB Extension on startup
+extension=mongodb.so

Copied: php-mongodb/repos/community-staging-x86_64/php-mongodb.install (from rev 271984, php-mongodb/trunk/php-mongodb.install)
===================================================================
--- community-staging-x86_64/php-mongodb.install	                        (rev 0)
+++ community-staging-x86_64/php-mongodb.install	2017-12-03 14:07:00 UTC (rev 271985)
@@ -0,0 +1,12 @@
+post_install() {
+  warning
+}
+
+post_upgrade() {
+  warning
+}
+
+warning() {
+  printf "WARNING:\nWhen moving from 'php-mongo' to 'php-mongodb' keep into mind the extension's api is not compatible\n\n"
+  return 0
+}



More information about the arch-commits mailing list