dev-php/pecl-mongodb: Bump to 1.16.2

Closes: https://bugs.gentoo.org/913158
Closes: https://github.com/gentoo/gentoo/pull/24478
Closes: https://github.com/gentoo/gentoo/pull/32683
Co-authored-by: EJ Agas <agas.ej09@gmail.com>
Signed-off-by: EJ Agas <agas.ej09@gmail.com>
Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
EJ Agas
2022-03-10 22:22:11 +08:00
committed by Sam James
parent 7dc497f5f5
commit 558cfb1a6b
2 changed files with 55 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST mongodb-1.10.0.tgz 1331177 BLAKE2B 8593392d50fce99059888e25d6400d2e7a35e93a1e4b74abf9b427ff43dbd2484380ecdbd7b7ce6abec643351a9c3bba572e2e0b551a88b18efbcf4c2b133767 SHA512 72527087dc3d1e1d48d6236592c1fbafa68354e2b8e070e85180d79ffcaa82740641450808a235bb711ded16ff65ec0cbd53fb66f0da18837351a3d402c3976f
DIST mongodb-1.16.2.tgz 1907341 BLAKE2B 273ca2a5d92a195938cea103d12e9279c4a6aae43107f9b04d6e74752f82af5c258a3eff259ffc6a8381275be214bcc6cd577050ba1a908e202dda54ed31dae9 SHA512 3c81882c609b09cde534315aa4b1fe3c47e18e4ed26a940bf60a6bdbf4e53b2204d8e4e113a9b0a3469b60793ead9f8dff703920b86280e78448e07d6535a277

View File

@@ -0,0 +1,54 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PHP_EXT_NAME="mongodb"
USE_PHP="php8-0 php8-1 php8-2"
inherit php-ext-pecl-r3
DESCRIPTION="MongoDB database driver for PHP"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sasl test"
PHP_DEPEND="
php_targets_php8-0? ( dev-lang/php:8.0[ssl,zlib] )
php_targets_php8-1? ( dev-lang/php:8.1[ssl,zlib] )
php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] )"
COMMON_DEPEND="${PHP_DEPEND}
>=dev-libs/libbson-1.18.0
>=dev-libs/mongo-c-driver-1.18.0[sasl?,ssl]
dev-libs/openssl:=
sasl? ( dev-libs/cyrus-sasl )"
DEPEND="${COMMON_DEPEND}
test? ( dev-db/mongodb )"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="${PHP_DEPEND}
virtual/pkgconfig"
# No tests on x86 because tests require dev-db/mongodb which don't support
# x86 anymore (bug #645994)
RESTRICT="x86? ( test )
!test? ( test )"
src_configure() {
local PHP_EXT_ECONF_ARGS=(
--enable-mongodb
--with-libbson
--with-libmongoc
--with-mongodb-sasl=$(usex sasl)
)
php-ext-source-r3_src_configure
}
src_test() {
local PORT=27017
mongod --port ${PORT} --bind_ip 127.0.0.1 --nounixsocket --fork \
--dbpath="${T}" --logpath="${T}/mongod.log" || die
php-ext-pecl-r3_src_test
kill $(<"${T}/mongod.lock")
}