From c1186950d2ed3110e0210ec2e268d65681bc634b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 24 Mar 2021 08:43:58 +0100 Subject: update to 0.6.2 switch to phpunit9 sources from git snapshot --- php-react-child-process.spec | 48 +++++++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 18 deletions(-) (limited to 'php-react-child-process.spec') diff --git a/php-react-child-process.spec b/php-react-child-process.spec index ba69bb7..2c872aa 100644 --- a/php-react-child-process.spec +++ b/php-react-child-process.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-react-child-process # -# Copyright (c) 2017-2019 Shawn Iwinski +# Copyright (c) 2017-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT @@ -12,8 +12,8 @@ %global github_owner reactphp %global github_name child-process -%global github_version 0.6.1 -%global github_commit 6895afa583d51dc10a4b9e93cd3bce17b3b77ac3 +%global github_version 0.6.2 +%global github_commit 70486012c0265264d2afa489ff32e7cdb76000d9 %global composer_vendor react %global composer_project child-process @@ -32,9 +32,9 @@ # "react/stream": "^1.0 || ^0.7.6" %global react_stream_min_ver 0.7.6 %global react_stream_max_ver 2.0 -# "sebastian/environment": "^3.0 || ^2.0 || ^1.0" +# "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" %global sebastian_environment_min_ver 1.0 -%global sebastian_environment_max_ver 4.0 +%global sebastian_environment_max_ver 6 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} @@ -48,14 +48,25 @@ Summary: Library for executing child processes License: MIT URL: https://reactphp.org/child-process/ -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-cache-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: phpunit7 +%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 +# "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" +%global phpunit %{_bindir}/phpunit9 +BuildRequires: phpunit9 >= 9.3 +%else +%global phpunit %{_bindir}/phpunit +BuildRequires: php-phpunit-PHPUnit >= 4.8.35 +%endif %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(evenement/evenement) >= %{evenement_min_ver} with php-composer(evenement/evenement) < %{evenement_max_ver}) BuildRequires: (php-composer(react/event-loop) >= %{react_event_loop_min_ver} with php-composer(react/event-loop) < %{react_event_loop_max_ver}) @@ -143,19 +154,15 @@ cp -rp src %{buildroot}%{phpdir}/React/ChildProcess %check %if %{with_tests} : Create tests bootstrap -cat <<'BOOTSTRAP' | tee bootstrap.php +mkdir vendor +cat <<'BOOTSTRAP' | tee vendor/autoload.php - 0.6.2-1 +- update to 0.6.2 +- switch to phpunit9 +- sources from git snapshot + * Sat Dec 14 2019 Shawn Iwinski - 0.6.1-1 - Update to 0.6.1 (RHBZ #1677881) - Use PHPUnit 7 -- cgit