From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87A7B138334 for ; Fri, 29 Nov 2019 12:13:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26838E078A; Fri, 29 Nov 2019 12:13:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D164E078A for ; Fri, 29 Nov 2019 12:13:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB3F634D59B for ; Fri, 29 Nov 2019 12:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71BCF8B8 for ; Fri, 29 Nov 2019 12:13:10 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1575029441.b1411a49d43f2aeea39d83d5e080ad5994b0e07f.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mongodb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild X-VCS-Directories: dev-php/pecl-mongodb/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: b1411a49d43f2aeea39d83d5e080ad5994b0e07f X-VCS-Branch: master Date: Fri, 29 Nov 2019 12:13:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6445d594-d335-4793-a2c4-f6c432b9bdb4 X-Archives-Hash: 53f89cb230f5267a3de825ff629bef3c commit: b1411a49d43f2aeea39d83d5e080ad5994b0e07f Author: Tomas Mozes gmail com> AuthorDate: Fri Nov 29 06:16:35 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Nov 29 12:10:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1411a49 dev-php/pecl-mongodb: add php 7.4 support Closes: https://bugs.gentoo.org/701446 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Tomáš Mózes gmail.com> Closes: https://github.com/gentoo/gentoo/pull/13796 Signed-off-by: Thomas Deutschmann gentoo.org> dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild index 18b9f1a79d6..6dc6dd1ed28 100644 --- a/dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild +++ b/dev-php/pecl-mongodb/pecl-mongodb-1.6.0.ebuild @@ -4,7 +4,7 @@ EAPI=7 PHP_EXT_NAME="mongodb" -USE_PHP="php7-1 php7-2 php7-3" +USE_PHP="php7-1 php7-2 php7-3 php7-4" inherit php-ext-pecl-r3 @@ -18,7 +18,8 @@ IUSE="libressl sasl test" PHP_DEPEND=" 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] )" + php_targets_php7-3? ( dev-lang/php:7.3[json,ssl,zlib] ) + php_targets_php7-4? ( dev-lang/php:7.4[json,ssl,zlib] )" COMMON_DEPEND="${PHP_DEPEND} >=dev-libs/libbson-1.15.1 >=dev-libs/mongo-c-driver-1.15.1[sasl?,ssl] @@ -46,7 +47,6 @@ src_configure() { php-ext-source-r3_src_configure } -# FEATURES="test" emerge dev-php/pecl-mongodb src_test() { local PORT=27017 mongod --port ${PORT} --bind_ip 127.0.0.1 --nounixsocket --fork \