dev-php/pecl-event: Revbump for php 7.2; fix tests

Package-Manager: Portage-2.3.28, Repoman-2.3.9
This commit is contained in:
Brian Evans
2018-04-06 15:05:02 -04:00
parent 856720e8b9
commit 76ae1cf799

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -8,7 +8,7 @@ PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS=( README.md )
USE_PHP="php5-6 php7-0 php7-1"
USE_PHP="php5-6 php7-0 php7-1 php7-2"
inherit php-ext-pecl-r3
@@ -24,7 +24,8 @@ DEPEND="
ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) )
php_targets_php5-6? ( dev-lang/php:5.6[sockets?] )
php_targets_php7-0? ( dev-lang/php:7.0[sockets?] )
php_targets_php7-1? ( dev-lang/php:7.1[sockets?] )"
php_targets_php7-1? ( dev-lang/php:7.1[sockets?] )
php_targets_php7-2? ( dev-lang/php:7.2[sockets?] )"
RDEPEND="${DEPEND} !dev-php/pecl-libevent"
@@ -41,3 +42,11 @@ src_configure() {
)
php-ext-source-r3_src_configure
}
src_test() {
local slot
for slot in $(php_get_slots); do
php_init_slot_env "${slot}"
SKIP_ONLINE_TESTS="yes" NO_INTERACTION="yes" emake test
done
}