diff options
author | Remi Collet <remi@remirepo.net> | 2017-10-09 12:17:14 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-10-09 12:17:14 +0200 |
commit | cd55eba1849a58b6538f827e5540d94bc0876165 (patch) | |
tree | b85b59608985adbed75aa78dc00f3ebd2c1421d7 | |
parent | 8707dd828c63a77aced9ad281795c18a1b42f0b6 (diff) |
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | php-horde-Horde-Prefs.spec | 28 |
2 files changed, 18 insertions, 18 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/php-horde-Horde-Prefs.spec b/php-horde-Horde-Prefs.spec index 18cf158..b079acf 100644 --- a/php-horde-Horde-Prefs.spec +++ b/php-horde-Horde-Prefs.spec @@ -12,7 +12,7 @@ %global pear_channel pear.horde.org Name: php-horde-Horde-Prefs -Version: 2.8.1 +Version: 2.9.0 Release: 1%{?dist} Summary: Horde Preferences API @@ -21,7 +21,6 @@ License: LGPLv2 URL: http://%{pear_channel} Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildArch: noarch BuildRequires: php(language) >= 5.3.0 BuildRequires: php-pear(PEAR) >= 1.7.0 @@ -123,21 +122,12 @@ done | tee ../%{pear_name}.lang %check cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g) -# 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 @@ -153,19 +143,21 @@ fi %files -f %{pear_name}.lang -%defattr(-,root,root,-) %doc %{pear_docdir}/%{pear_name} %{_bindir}/horde-prefs %{pear_xmldir}/%{name}.xml %{pear_phpdir}/Horde/Prefs %{pear_phpdir}/Horde/Prefs.php -%{pear_testdir}/%{pear_name} +%doc %{pear_testdir}/%{pear_name} %dir %{pear_datadir}/%{pear_name} %dir %{pear_datadir}/%{pear_name}/locale %{pear_datadir}/%{pear_name}/migration %changelog +* Mon Oct 9 2017 Remi Collet <remi@remirepo.net> - 2.9.0-1 +- Update to 2.9.0 + * Mon Feb 27 2017 Remi Collet <remi@fedoraproject.org> - 2.8.1-1 - Update to 2.8.1 |