diff options
-rw-r--r-- | dev-php/pecl-event/pecl-event-2.3.0-r1.ebuild (renamed from dev-php/pecl-event/pecl-event-2.3.0.ebuild) | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/dev-php/pecl-event/pecl-event-2.3.0.ebuild b/dev-php/pecl-event/pecl-event-2.3.0-r1.ebuild index 47dedd10988..3fbf4fc20ca 100644 --- a/dev-php/pecl-event/pecl-event-2.3.0.ebuild +++ b/dev-php/pecl-event/pecl-event-2.3.0-r1.ebuild @@ -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 +} |