From b2c3b451a9e1f31882555b94ea9cb3343f4dc566 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 11 Feb 2017 20:07:54 +0100 Subject: php-horde-Horde-Timezone: 1.1.0 --- php-horde-Horde-Timezone.spec | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/php-horde-Horde-Timezone.spec b/php-horde-Horde-Timezone.spec index e1c4256..4ca64e4 100644 --- a/php-horde-Horde-Timezone.spec +++ b/php-horde-Horde-Timezone.spec @@ -11,7 +11,7 @@ %global pear_channel pear.horde.org Name: php-horde-Horde-Timezone -Version: 1.0.11 +Version: 1.1.0 Release: 1%{?dist} Summary: Timezone library @@ -78,11 +78,13 @@ install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} %check cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g) -%{_bindir}/phpunit . - -if which php70; then - php70 %{_bindir}/phpunit . -fi +ret=0 +for cmd in php56 php70 php71 php; do + if which $cmd; then + $cmd %{_bindir}/phpunit --verbose . || ret=1 + fi +done +exit $ret %post @@ -106,6 +108,9 @@ fi %changelog +* Sat Feb 11 2017 Remi Collet - 1.1.0-1 +- Update to 1.1.0 + * Mon Mar 21 2016 Remi Collet - 1.0.11-1 - Update to 1.0.11 - raise dependency on Horde_Date >= 2.3.0 -- cgit