diff options
| author | Remi Collet <fedora@famillecollet.com> | 2016-09-02 18:29:45 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2016-09-02 18:29:45 +0200 | 
| commit | 402ccc69a54e8d8d89b48fe6edc25b3ee9b191ab (patch) | |
| tree | cb9837e410da94f73e1789a9ddcb0350c33f839d | |
| parent | 21baa3d7611057f6208ce2883c9eaf57bcd7e5d6 (diff) | |
php-horde-Horde-Prefs: 2.8.0
| -rw-r--r-- | php-horde-Horde-Prefs.spec | 24 | 
1 files changed, 19 insertions, 5 deletions
diff --git a/php-horde-Horde-Prefs.spec b/php-horde-Horde-Prefs.spec index ce7202f..ee3c484 100644 --- a/php-horde-Horde-Prefs.spec +++ b/php-horde-Horde-Prefs.spec @@ -12,7 +12,7 @@  %global pear_channel pear.horde.org  Name:           php-horde-Horde-Prefs -Version:        2.7.6 +Version:        2.8.0  Release:        1%{?dist}  Summary:        Horde Preferences API @@ -123,11 +123,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 @@ -155,6 +166,9 @@ fi  %changelog +* Fri Sep 02 2016 Remi Collet <remi@fedoraproject.org> - 2.8.0-1 +- Update to 2.8.0 +  * Wed Mar 09 2016 Remi Collet <remi@fedoraproject.org> - 2.7.6-1  - Update to 2.7.6  | 
