diff options
author | Remi Collet <remi@remirepo.net> | 2017-05-03 17:38:14 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-05-03 17:38:14 +0200 |
commit | f372355c1afd1567f13a04bb9829f8a954f78ca5 (patch) | |
tree | 8a3d8f40ba1a316b7697830c4d20eddabefe3b55 /php-horde-kronolith.spec | |
parent | 7f2fa57d717f0fb8e189800331401d4dabc8b4b0 (diff) |
v4.2.21
Diffstat (limited to 'php-horde-kronolith.spec')
-rw-r--r-- | php-horde-kronolith.spec | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/php-horde-kronolith.spec b/php-horde-kronolith.spec index a7a27c0..84f4bc9 100644 --- a/php-horde-kronolith.spec +++ b/php-horde-kronolith.spec @@ -11,7 +11,7 @@ %global pear_channel pear.horde.org Name: php-horde-kronolith -Version: 4.2.20 +Version: 4.2.21 Release: 1%{?dist} Summary: A web based calendar @@ -20,7 +20,6 @@ License: GPLv2 URL: http://www.horde.org/apps/kronolith Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: gettext BuildRequires: php(language) >= 5.3.0 @@ -208,25 +207,12 @@ done | tee ../%{pear_name}.lang %check cd %{pear_name}-%{version}/test/Kronolith -# Timezone issue (need investigation, fail in mock only) -rm Integration/ToIcalendarTest.php -rm Integration/FromIcalendarTest.php - -# 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 +for cmd in php php56 php70 php71 php72; do + if which $cmd; then + $cmd %{_bindir}/phpunit --verbose . || ret=1 + fi +done exit $ret @@ -242,7 +228,6 @@ fi %files -f %{pear_name}.lang -%defattr(-,root,root,-) %doc %{pear_docdir}/%{pear_name} %{pear_xmldir}/%{name}.xml %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf @@ -273,6 +258,9 @@ fi %changelog +* Wed May 3 2017 Remi Collet <remi@remirepo.net> - 4.2.21-1 +- Update to 4.2.21 + * Mon Mar 20 2017 Remi Collet <remi@remirepo.net> - 4.2.20-1 - Update to 4.2.20 |