diff options
| -rw-r--r-- | php-horde-Horde-Mime.spec | 24 | 
1 files changed, 19 insertions, 5 deletions
diff --git a/php-horde-Horde-Mime.spec b/php-horde-Horde-Mime.spec index 904be13..3f7f242 100644 --- a/php-horde-Horde-Mime.spec +++ b/php-horde-Horde-Mime.spec @@ -19,7 +19,7 @@  %endif  Name:           php-horde-Horde-Mime -Version:        2.9.5 +Version:        2.10.0  Release:        1%{?dist}  Summary:        Horde MIME Library @@ -135,11 +135,22 @@ cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g)  rm MdnTest.php  %endif -%{_bindir}/phpunit -d xdebug.max_nesting_level=1000 . - -if which php70; then -   php70 %{_bindir}/phpunit . +# remirepo:11 +run=0 +ret=0 +if which php56; then +   php56 %{_bindir}/phpunit . || ret=1 +   run=1 +fi +if which php71; then +   php71 %{_bindir}/phpunit . || ret=1 +   run=1  fi +if [ $run -eq 0 ]; then +%{_bindir}/phpunit --verbose . +# remirepo:2 +fi +exit $ret  %else  : bootstrap build with test suite disabled  %endif @@ -169,6 +180,9 @@ fi  %changelog +* Sat Jul 02 2016 Remi Collet <remi@fedoraproject.org> - 2.10.0-1 +- Update to 2.10.0 +  * Thu Jun 02 2016 Remi Collet <remi@fedoraproject.org> - 2.9.5-1  - Update to 2.9.5  | 
