From a7f43b14dca4a4557216a69bf7735b5c7c4a55ea Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 8 Jun 2020 14:11:28 +0200 Subject: v0.8.6 from Fedora --- php-react-http.spec | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) (limited to 'php-react-http.spec') diff --git a/php-react-http.spec b/php-react-http.spec index b9023da..911e649 100644 --- a/php-react-http.spec +++ b/php-react-http.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-react-http # -# Copyright (c) 2017-2019 Shawn Iwinski +# Copyright (c) 2017-2020 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT @@ -12,8 +12,8 @@ %global github_owner reactphp %global github_name http -%global github_version 0.8.5 -%global github_commit 5f2ce4da6d30779ab1e6b95a0afac3e0e5595f64 +%global github_version 0.8.6 +%global github_commit 248202e57195d06a4375f6d2f5c5b9ff9da3ea9e %global composer_vendor react %global composer_project http @@ -45,6 +45,13 @@ # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} +# Range dependencies supported? +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +%global with_range_dependencies 1 +%else +%global with_range_dependencies 0 +%endif + %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-%{composer_vendor}-%{composer_project} @@ -54,15 +61,19 @@ Summary: Library for building an evented http server License: MIT URL: https://reactphp.org/http/ -Source0: https://github.com/%{github_owner}/%{github_name}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz + +# GitHub export does not include tests +# Run php-react-http-get-source.sh to create full source +Source0: %{name}-%{github_version}-%{github_commit}.tar.gz +Source1: %{name}-get-source.sh BuildArch: noarch # Tests %if %{with_tests} ## composer.json BuildRequires: php(language) >= %{php_min_ver} -BuildRequires: phpunit6 -%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +BuildRequires: phpunit7 +%if %{with_range_dependencies} BuildRequires: (php-composer(clue/block-react) >= %{clue_block_react_min_ver} with php-composer(clue/block-react) < %{clue_block_react_max_ver}) BuildRequires: (php-composer(evenement/evenement) >= %{evenement_min_ver} with php-composer(evenement/evenement) < %{evenement_max_ver}) BuildRequires: (php-composer(react/promise-stream) >= %{react_promise_stream_min_ver} with php-composer(react/promise-stream) < %{react_promise_stream_max_ver}) @@ -86,7 +97,7 @@ BuildRequires: php-composer(react/stream) >= %{react_stream_min_ver} BuildRequires: php-composer(ringcentral/psr7) < %{ringcentral_psr7_max_ver} BuildRequires: php-composer(ringcentral/psr7) >= %{ringcentral_psr7_min_ver} %endif -## phpcompatinfo (computed from version 0.8.5) +## phpcompatinfo (computed from version 0.8.6) BuildRequires: php-date BuildRequires: php-json BuildRequires: php-pcre @@ -97,7 +108,7 @@ BuildRequires: php-composer(fedora/autoloader) # composer.json Requires: php(language) >= %{php_min_ver} -%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +%if %{with_range_dependencies} Requires: (php-composer(evenement/evenement) >= %{evenement_min_ver} with php-composer(evenement/evenement) < %{evenement_max_ver}) Requires: (php-composer(react/promise-stream) >= %{react_promise_stream_min_ver} with php-composer(react/promise-stream) < %{react_promise_stream_max_ver}) Requires: (php-composer(react/promise) >= %{react_promise_min_ver} with php-composer(react/promise) < %{react_promise_max_ver}) @@ -118,7 +129,7 @@ Requires: php-composer(react/stream) >= %{react_stream_min_ver} Requires: php-composer(ringcentral/psr7) < %{ringcentral_psr7_max_ver} Requires: php-composer(ringcentral/psr7) >= %{ringcentral_psr7_min_ver} %endif -# phpcompatinfo (computed from version 0.8.5) +# phpcompatinfo (computed from version 0.8.6) Requires: php-date Requires: php-pcre Requires: php-spl @@ -192,8 +203,8 @@ BOOTSTRAP : Upstream tests RETURN_CODE=0 -PHPUNIT=$(which phpunit6) -for PHP_EXEC in "" php71 php72 php73 php74; do +PHPUNIT=$(which phpunit7) +for PHP_EXEC in "" php72 php73 php74; do if [ -z "$PHP_EXEC" ] || which $PHP_EXEC; then $PHP_EXEC $PHPUNIT --verbose --bootstrap bootstrap.php \ || RETURN_CODE=1 @@ -214,6 +225,10 @@ exit $RETURN_CODE %changelog +* Sat Jun 06 2020 Shawn Iwinski - 0.8.6-1 +- Update to 0.8.6 (RHBZ #1790302) +- Use PHPUnit 7 + * Sat Dec 14 2019 Shawn Iwinski - 0.8.5-1 - Update to 0.8.5 (RHBZ #1767189) - Use PHPUnit 6 -- cgit