From ffaa9d788ca58ec3a00c0d5a153d073e03cc758d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 23 Mar 2021 09:57:22 +0100 Subject: update to 4.1.2 switch to phpunit9 with yoast/phpunit-polyfills --- php-consolidation-output-formatters.spec | 38 ++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 12 deletions(-) (limited to 'php-consolidation-output-formatters.spec') diff --git a/php-consolidation-output-formatters.spec b/php-consolidation-output-formatters.spec index fdc985c..ad3f3f5 100644 --- a/php-consolidation-output-formatters.spec +++ b/php-consolidation-output-formatters.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-consolidation-output-formatters # -# Copyright (c) 2016-2020 Shawn Iwinski +# Copyright (c) 2016-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT @@ -12,8 +12,8 @@ %global github_owner consolidation %global github_name output-formatters -%global github_version 4.1.1 -%global github_commit 9deeddd6a916d0a756b216a8b40ce1016e17c0b9 +%global github_version 4.1.2 +%global github_commit 5821e6ae076bf690058a4de6c94dce97398a69c9 %global composer_vendor consolidation %global composer_project output-formatters @@ -28,12 +28,17 @@ # "symfony/var-dumper": "^4" # "symfony/yaml": "^4" %global symfony_min_ver 4.0 -%global symfony_max_ver 6.0 +# v6 not suported for all components +%global symfony_max_ver 5 -# "phpunit/phpunit": "^6" -%global phpunit_require phpunit6 -%global phpunit_min_ver 6 -%global phpunit_exec phpunit6 +# "phpunit/phpunit": ">=7" +%global phpunit_require phpunit9 +%global phpunit_min_ver 9 +%global phpunit_exec phpunit9 + +# "yoast/phpunit-polyfills": "^0.2.0" +%global polyfills_min_ver 0.2 +%global polyfills_max_ver 1 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} @@ -72,6 +77,7 @@ BuildRequires: (php-composer(symfony/console) >= %{symfony_min_ver} with php-com BuildRequires: (php-composer(symfony/finder) >= %{symfony_min_ver} with php-composer(symfony/finder) < %{symfony_max_ver}) BuildRequires: (php-composer(symfony/var-dumper) >= %{symfony_min_ver} with php-composer(symfony/var-dumper) < %{symfony_max_ver}) BuildRequires: (php-composer(symfony/yaml) >= %{symfony_min_ver} with php-composer(symfony/yaml) < %{symfony_max_ver}) +BuildRequires: (php-composer(yoast/phpunit-polyfills) >= %{polyfills_min_ver} with php-composer(yoast/phpunit-polyfills) < %{polyfills_max_ver}) %else BuildRequires: php-composer(dflydev/dot-access-data) < %{dflydev_dot_access_data_max_ver} BuildRequires: php-composer(dflydev/dot-access-data) >= %{dflydev_dot_access_data_min_ver} @@ -79,6 +85,8 @@ BuildRequires: php-symfony4-console >= %{symfony_min_ver} BuildRequires: php-symfony4-finder >= %{symfony_min_ver} BuildRequires: php-symfony4-var-dumper >= %{symfony_min_ver} BuildRequires: php-symfony4-yaml >= %{symfony_min_ver} +BuildRequires: php-composer(yoast/phpunit-polyfills) < %{polyfills_max_ver} +BuildRequires: php-composer(yoast/phpunit-polyfills) >= %{polyfills_min_ver} %endif ## phpcompatinfo (computed from version 4.1.1) BuildRequires: php-dom @@ -170,26 +178,28 @@ cp -rp src %{buildroot}%{phpdir}/Consolidation/OutputFormatters %check %if %{with_tests} : Create tests bootstrap -cat <<'BOOTSTRAP' | tee bootstrap.php +mkdir vendor +cat <<'BOOTSTRAP' | tee vendor/autoload.php - 4.1.2-1 +- update to 4.1.2 +- switch to phpunit9 with yoast/phpunit-polyfills + * Mon Sep 07 2020 Shawn Iwinski - 4.1.1-1 - Update to 4.1.1 (RHBZ #1851299) -- cgit