diff options
| author | Remi Collet <fedora@famillecollet.com> | 2016-12-20 07:08:18 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2016-12-20 07:08:18 +0100 | 
| commit | d42b0d4fb2989c03b7d5c6392ac5b17755bdc636 (patch) | |
| tree | 53cc516cda9865b544e1271111c820742a326c95 | |
| parent | 0683e400a92896657993c3275f2b6766d04ba358 (diff) | |
php-horde-Horde-Compress: 2.1.6
| -rw-r--r-- | php-horde-Horde-Compress.spec | 23 | 
1 files changed, 19 insertions, 4 deletions
| diff --git a/php-horde-Horde-Compress.spec b/php-horde-Horde-Compress.spec index a2b4c73..ff99ab9 100644 --- a/php-horde-Horde-Compress.spec +++ b/php-horde-Horde-Compress.spec @@ -12,7 +12,7 @@  %global pear_channel pear.horde.org  Name:           php-horde-Horde-Compress -Version:        2.1.5 +Version:        2.1.6  Release:        1%{?dist}  Summary:        Horde Compression API @@ -105,11 +105,23 @@ 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 @@ -134,6 +146,9 @@ fi  %changelog +* Tue Dec 20 2016 Remi Collet <remi@fedoraproject.org> - 2.1.6-1 +- Update to 2.1.6 +  * Mon Mar 21 2016 Remi Collet <remi@fedoraproject.org> - 2.1.5-1  - Update to 2.1.5 | 
