diff options
| -rw-r--r-- | php-horde-Horde-Alarm.spec | 24 | 
1 files changed, 19 insertions, 5 deletions
diff --git a/php-horde-Horde-Alarm.spec b/php-horde-Horde-Alarm.spec index 95cac1b..2771ca4 100644 --- a/php-horde-Horde-Alarm.spec +++ b/php-horde-Horde-Alarm.spec @@ -12,7 +12,7 @@  %global pear_channel pear.horde.org  Name:           php-horde-Horde-Alarm -Version:        2.2.7 +Version:        2.2.8  Release:        1%{?dist}  Summary:        Horde Alarm Libraries @@ -111,11 +111,22 @@ done | tee ../%{pear_name}.lang  %check  cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g) -%{_bindir}/phpunit . - -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  %post @@ -142,6 +153,9 @@ fi  %changelog +* Thu Sep 01 2016 Remi Collet <remi@fedoraproject.org> - 2.2.8-1 +- Update to 2.2.8 +  * Mon Mar 21 2016 Remi Collet <remi@fedoraproject.org> - 2.2.7-1  - Update to 2.2.7  | 
