diff options
| author | Remi Collet <fedora@famillecollet.com> | 2016-07-02 08:40:19 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2016-07-02 08:40:19 +0200 | 
| commit | 19330e790953ba6f4619bcc9b9e7bbb38b76891d (patch) | |
| tree | 2679e316df5a160330dff2776122c73b3ec39fc1 | |
| parent | dddfc6f46a99e154d220eab16adce7e4eaaf1693 (diff) | |
php-horde-imp: 6.2.15
| -rw-r--r-- | php-horde-imp.spec | 24 | 
1 files changed, 19 insertions, 5 deletions
| diff --git a/php-horde-imp.spec b/php-horde-imp.spec index dab4b26..412e120 100644 --- a/php-horde-imp.spec +++ b/php-horde-imp.spec @@ -11,7 +11,7 @@  %global pear_channel pear.horde.org  Name:           php-horde-imp -Version:        6.2.14 +Version:        6.2.15  Release:        1%{?dist}  Summary:        A web based webmail system @@ -213,11 +213,22 @@ cd %{pear_name}-%{version}/test/Imp  # Ignore this one - Need investigation  rm Unit/Mime/Viewer/ItipTest.php -%{_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  %clean @@ -261,6 +272,9 @@ fi  %changelog +* Sat Jul 02 2016 Remi Collet <remi@fedoraproject.org> - 6.2.15-1 +- Update to 6.2.15 +  * Tue Apr 05 2016 Remi Collet <remi@fedoraproject.org> - 6.2.14-1  - Update to 6.2.14 | 
