From 70d4ce23c734e0f6a72dcd459510153903b862c7 Mon Sep 17 00:00:00 2001 From: Shawn Iwinski Date: Sat, 8 Apr 2017 15:22:34 -0400 Subject: Updated to 1.4.0 (RHBZ #1440332) (cherry picked from commit 8ca6dedd81dd6c101e63d57ba04063d3e06bb6f3) --- php-zendframework-zend-diactoros.spec | 47 +++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 22 deletions(-) (limited to 'php-zendframework-zend-diactoros.spec') diff --git a/php-zendframework-zend-diactoros.spec b/php-zendframework-zend-diactoros.spec index 1477521..0f4138c 100644 --- a/php-zendframework-zend-diactoros.spec +++ b/php-zendframework-zend-diactoros.spec @@ -12,8 +12,8 @@ %global github_owner zendframework %global github_name zend-diactoros -%global github_version 1.3.10 -%global github_commit 83e8d98b9915de76c659ce27d683c02a0f99fa90 +%global github_version 1.4.0 +%global github_commit b03f285a333f51e58c95cce54109a4a9ed691436 %global composer_vendor zendframework %global composer_project zend-diactoros @@ -43,16 +43,17 @@ URL: https://zendframework.github.io/%{github_name}/ Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch # Tests %if %{with_tests} ## composer.json -BuildRequires: php(language) >= %{php_min_ver} +BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-composer(phpunit/phpunit) BuildRequires: php-composer(psr/http-message) < %{psr_http_message_max_ver} BuildRequires: php-composer(psr/http-message) >= %{psr_http_message_min_ver} -## phpcompatinfo (computed from version 1.3.10) +BuildRequires: php-dom +BuildRequires: php-libxml +## phpcompatinfo (computed from version 1.4.0) ### NOTE: curl, gd, gmp, and shmop are all optional for ### ZendTest\Diactoros\StreamTest::getResourceFor67() ### (test/StreamTest.php) but the first one found wins @@ -70,7 +71,7 @@ BuildRequires: php-composer(fedora/autoloader) Requires: php(language) >= %{php_min_ver} Requires: php-composer(psr/http-message) < %{psr_http_message_max_ver} Requires: php-composer(psr/http-message) >= %{psr_http_message_min_ver} -# phpcompatinfo (computed from version 1.3.10) +# phpcompatinfo (computed from version 1.4.0) Requires: php-json Requires: php-pcre Requires: php-spl @@ -79,7 +80,7 @@ Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} -Provides: php-composer(psr/http-message-implementation) = 1.0.0 +Provides: php-composer(psr/http-message-implementation) = 1.0 %description A PHP package containing implementations of the accepted PSR-7 HTTP message @@ -119,8 +120,6 @@ AUTOLOAD %install -rm -rf %{buildroot} - mkdir -p %{buildroot}%{phpdir}/Zend/Diactoros cp -rp src/* %{buildroot}%{phpdir}/Zend/Diactoros/ @@ -140,28 +139,25 @@ require_once '%{buildroot}%{phpdir}/Zend/Diactoros/autoload.php'; )); BOOTSTRAP -: Upstream tests -%{_bindir}/phpunit --verbose --bootstrap bootstrap.php +: Skip test requiring network access +sed 's/function testReasonPhraseDefaultsAgainstIana/function SKIP_testReasonPhraseDefaultsAgainstIana/' \ + -i test/ResponseTest.php -: Upstream tests with SCLs if available -SCL_RETURN_CODE=0 -for SCL in %{?rhel:php55} php56 php70 php71; do - if which $SCL; then - $SCL %{_bindir}/phpunit --verbose --bootstrap bootstrap.php || SCL_RETURN_CODE=1 +: Upstream tests +RETURN_CODE=0 +for PHP_EXEC in php %{?rhel:php55} php56 php70 php71; do + if [ "php" == "$PHP_EXEC" ] || which $PHP_EXEC; then + $PHP_EXEC %{_bindir}/phpunit --bootstrap bootstrap.php --verbose \ + || RETURN_CODE=1 fi done -exit $SCL_RETURN_CODE +exit $RETURN_CODE %else : Tests skipped %endif -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md @@ -171,6 +167,13 @@ rm -rf %{buildroot} %changelog +* Sat Apr 08 2017 Shawn Iwinski - 1.4.0-1 +- Updated to 1.4.0 (RHBZ #1440332) + +* Sat Mar 11 2017 Remi Collet - 1.3.10-2 +- change URL to documentation site +- simplify documentation + * Sun Mar 05 2017 Shawn Iwinski - 1.3.10-1 - Updated to 1.3.10 (RHBZ #1411062) - Test with SCLs if available -- cgit