diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-07-31 00:30:54 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-07-31 00:31:54 +0200 |
commit | 73654fff6fcc8795542d56e544dbb2b15a3ec306 (patch) | |
tree | d0f6888180f2a095a284c9d3e1b05a93f7b0b96e /dev-php/pecl-mongodb | |
parent | dev-php/PEAR-HTML_Common2: v2.1.2 (diff) | |
download | gentoo-73654fff6fcc8795542d56e544dbb2b15a3ec306.tar.gz gentoo-73654fff6fcc8795542d56e544dbb2b15a3ec306.tar.bz2 gentoo-73654fff6fcc8795542d56e544dbb2b15a3ec306.zip |
dev-php/pecl-mongodb: bump to v1.5.5
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php/pecl-mongodb')
-rw-r--r-- | dev-php/pecl-mongodb/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-mongodb/pecl-mongodb-1.5.5.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-php/pecl-mongodb/Manifest b/dev-php/pecl-mongodb/Manifest index 7b5103688173..4f129ed93d44 100644 --- a/dev-php/pecl-mongodb/Manifest +++ b/dev-php/pecl-mongodb/Manifest @@ -1,2 +1,3 @@ DIST mongodb-1.3.3.tgz 925476 BLAKE2B 845abd4c7cf5dbb1fb3b04c5fc4070f0a360874ac566f1988025701258141a89afaa0e60c3d7166484fa37eda4ef08d94deeabdcc2ebe2a4f221dcf83aff20df SHA512 16c82ada278eac6996065d3c594237fbb8c1a7fe4e21828aa8af9ef98033cf6dfaf0fee90095e8116e946e620b551a6122238f85865a6c47d4d087f784cd54ea DIST mongodb-1.5.3.tgz 1059580 BLAKE2B 23bd5f6b0f218cf55bd5713a770f3990d5c1492925623712583356d8aee42a1b47519b93ba64036aaf98f97ab4b1b30de9d8aa39659f2575c4f4dba3892d574d SHA512 35704e75bd7867a436d953c00c7560c9a08a4fa8f3555d7cc00aeda34e87c6c7aa7ecc1d7f674747e34f4f8dac35d320f6317e60229528ea9782bbe669bafec0 +DIST mongodb-1.5.5.tgz 1060017 BLAKE2B 475ca0f6a1cbd5270c9bde0f195d6092ef25441e0cee0a45ed378a868bd1ad27c7a77c4f4702b6f82004433805563cdaa728cbc11bb5beff83b982122cad339b SHA512 1eefc8f8e359a979082dc7808e89ff5418cd2dc73d4250638e33dc32cce40ef42502e9dbbb07303381e0062b84818568034f4e4cda8c8bf905513d00bf008392 diff --git a/dev-php/pecl-mongodb/pecl-mongodb-1.5.5.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-1.5.5.ebuild new file mode 100644 index 000000000000..62a5bf128339 --- /dev/null +++ b/dev-php/pecl-mongodb/pecl-mongodb-1.5.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PHP_EXT_NAME="mongodb" +USE_PHP="php5-6 php7-1 php7-2 php7-3" + +inherit php-ext-pecl-r3 + +DESCRIPTION="MongoDB database driver for PHP" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libressl sasl" + +COMMON_DEPEND=" + php_targets_php5-6? ( dev-lang/php:5.6[json,ssl,zlib] ) + php_targets_php7-1? ( dev-lang/php:7.1[json,ssl,zlib] ) + php_targets_php7-2? ( dev-lang/php:7.2[json,ssl,zlib] ) + php_targets_php7-3? ( dev-lang/php:7.3[json,ssl,zlib] )" +DEPEND="${COMMON_DEPEND} + >=dev-libs/libbson-1.13.0 + >=dev-libs/mongo-c-driver-1.13.0[sasl?,ssl] + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + sasl? ( dev-libs/cyrus-sasl )" +RDEPEND="${DEPEND}" +BDEPEND="${COMMON_DEPEND} + virtual/pkgconfig" + +src_configure() { + local PHP_EXT_ECONF_ARGS=( + --enable-mongodb + --with-libbson + --with-libmongoc + --with-mongodb-sasl=$(usex sasl) + ) + php-ext-source-r3_src_configure +} |