From a4f0a315ce789ea4294fb2f19538af5653595ef3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 6 Aug 2017 09:30:31 +0200 Subject: v2.3.3 --- php-nette-safe-stream.spec | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) (limited to 'php-nette-safe-stream.spec') diff --git a/php-nette-safe-stream.spec b/php-nette-safe-stream.spec index 8482d1f..1549110 100644 --- a/php-nette-safe-stream.spec +++ b/php-nette-safe-stream.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 4b9bb3266a537e59b10a2932f05dca47333420fc +%global gh_commit 0fcd45ae82be5817f4b3ad25bc8955968f355412 #global gh_date 20150728 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner nette @@ -17,9 +17,9 @@ %global with_tests 0%{!?_without_tests:1} Name: php-%{gh_owner}-%{gh_project} -Version: 2.3.2 +Version: 2.3.3 %global specrel 1 -Release: %{?gh_date:0.%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist} +Release: %{?gh_date:1%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist} Summary: Nette SafeStream: Atomic Operations Group: Development/Libraries @@ -29,7 +29,6 @@ Source0: %{name}-%{version}-%{gh_short}.tgz # pull a git snapshot to get test suite Source1: makesrc.sh -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-composer(theseer/autoload) %if %{with_tests} @@ -75,7 +74,6 @@ EOF %install -rm -rf %{buildroot} mkdir -p %{buildroot}%{php_home}/%{ns_vendor} cp -pr src/* %{buildroot}%{php_home}/%{ns_vendor}/ rm %{buildroot}%{php_home}/%{ns_vendor}/loader.php @@ -96,33 +94,22 @@ require_once '%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}/autoload.php'; EOF : Run test suite in sources tree -# remirepo:11 ret=0 -run=0 -if which php56; then - php56 %{_bindir}/nette-tester --colors 0 -p php56 -C tests -s || ret=1 - run=1 -fi -if which php71; then - php71 %{_bindir}/nette-tester --colors 0 -p php71 -C tests -s || ret=1 - run=1 -fi -if [ $run -eq 0 ]; then -%{_bindir}/nette-tester --colors 0 -p php -c ./php.ini tests -s -# remirepo:2 -fi +for cmd in php56 php70 php71 php72; do + if which $cmd; then + $cmd %{_bindir}/nette-tester --colors 0 -p $cmd -C tests -d serialize_precision=14 -s || ret=1 + fi +done + +# for old version without -C option +%{_bindir}/nette-tester --colors 0 -p php -c ./php.ini tests -s || ret=1 exit $ret %else : Test suite disabled %endif -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license license.md %doc readme.md contributing.md @@ -132,6 +119,9 @@ rm -rf %{buildroot} %changelog +* Sun Aug 6 2017 Remi Collet - 2.3.3-1 +- Update to 2.3.3 + * Sat Apr 2 2016 Remi Collet - 2.3.2-1 - update to 2.3.2 - run test suite with both php 5 and 7 when available -- cgit