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

Evangelos Foutras foutrelis at archlinux.org
Tue Nov 12 01:20:37 UTC 2019


    Date: Tuesday, November 12, 2019 @ 01:20:37
  Author: foutrelis
Revision: 526884

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 526883, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-staging-x86_64/mongodb.ini
    (from rev 526883, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-staging-x86_64/php-mongodb.install
    (from rev 526883, php-mongodb/trunk/php-mongodb.install)

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

Copied: php-mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 526883, php-mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-11-12 01:20:37 UTC (rev 526884)
@@ -0,0 +1,36 @@
+# 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.6.0
+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=('8686639a5172a8bef01f3991c99eb8e62f4e256fa82da9ac5fc6ec60b474cb2f'
+            '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 526883, php-mongodb/trunk/mongodb.ini)
===================================================================
--- community-staging-x86_64/mongodb.ini	                        (rev 0)
+++ community-staging-x86_64/mongodb.ini	2019-11-12 01:20:37 UTC (rev 526884)
@@ -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 526883, php-mongodb/trunk/php-mongodb.install)
===================================================================
--- community-staging-x86_64/php-mongodb.install	                        (rev 0)
+++ community-staging-x86_64/php-mongodb.install	2019-11-12 01:20:37 UTC (rev 526884)
@@ -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