diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-12-04 19:21:33 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-12-04 19:21:33 +0100 |
commit | 402a7dbe1a9bdc538eda95ce2a1c3e6bcb805cc6 (patch) | |
tree | cf36ef3cb2479e10b59fece9d91f1eb72dc2de0a | |
parent | a6b95ab10f0bcf4fee36a034e797edf79c2675a8 (diff) |
php-horde-Horde-Crypt: 2.7.4
-rw-r--r-- | php-horde-Horde-Crypt.spec | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/php-horde-Horde-Crypt.spec b/php-horde-Horde-Crypt.spec index 9c13934..d9d4806 100644 --- a/php-horde-Horde-Crypt.spec +++ b/php-horde-Horde-Crypt.spec @@ -12,7 +12,7 @@ %global pear_channel pear.horde.org Name: php-horde-Horde-Crypt -Version: 2.7.3 +Version: 2.7.4 Release: 1%{?dist} Summary: Horde Cryptography API @@ -115,11 +115,22 @@ cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g) : Skip online test rm PgpKeyserverTest.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 %post @@ -145,6 +156,9 @@ fi %changelog +* Sun Dec 04 2016 Remi Collet <remi@fedoraproject.org> - 2.7.4-1 +- Update to 2.7.4 + * Tue Apr 05 2016 Remi Collet <remi@fedoraproject.org> - 2.7.3-1 - Update to 2.7.3 |