# remirepo spec file for php-consolidation-annotated-command, from: # # Fedora spec file for php-consolidation-annotated-command # # Copyright (c) 2016-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner consolidation %global github_name annotated-command %global github_version 4.2.4 %global github_commit ec297e05cb86557671c2d6cbb1bebba6c7ae2c60 %global composer_vendor consolidation %global composer_project annotated-command # "php": ">=7.1.3" %global php_min_ver 7.1.3 # "consolidation/output-formatters": "^4.1.1" %global consolidation_output_formatters_min_ver 4.1.1 %global consolidation_output_formatters_max_ver 5.0 # "psr/log": "^1|^2" # NOTE: Min version not 1.0 because autoloader required # NOTE: Max version not 3.0 because there is no version 2 at this time %global psr_log_min_ver 1.0.1 %global psr_log_max_ver 2.0 # "symfony/console": "^4.4.8|~5.1.0" # "symfony/event-dispatcher": "^4.4.8|^5"" # "symfony/finder": "^4.4.8|^5"" %global symfony_min_ver 4.4.8 %global symfony_max_ver 6.0 # "phpunit/phpunit": ">=7.5.20" %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 2 # 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} Version: %{github_version} Release: 2%{?github_release}%{?dist} Summary: Initialize Symfony Console commands from annotated command class methods License: MIT URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests # Run php-consolidation-annotated-command-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: %{phpunit_require} >= %{phpunit_min_ver} %if %{with_range_dependencies} BuildRequires: (php-composer(consolidation/output-formatters) >= %{consolidation_output_formatters_min_ver} with php-composer(consolidation/output-formatters) < %{consolidation_output_formatters_max_ver}) BuildRequires: (php-composer(psr/log) >= %{psr_log_min_ver} with php-composer(psr/log) < %{psr_log_max_ver}) BuildRequires: (php-composer(symfony/console) >= %{symfony_min_ver} with php-composer(symfony/console) < %{symfony_max_ver}) BuildRequires: (php-composer(symfony/event-dispatcher) >= %{symfony_min_ver} with php-composer(symfony/event-dispatcher) < %{symfony_max_ver}) BuildRequires: (php-composer(symfony/finder) >= %{symfony_min_ver} with php-composer(symfony/finder) < %{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(consolidation/output-formatters) < %{consolidation_output_formatters_max_ver} BuildRequires: php-composer(consolidation/output-formatters) >= %{consolidation_output_formatters_min_ver} BuildRequires: php-composer(phpunit/phpunit) BuildRequires: php-composer(psr/log) < %{psr_log_max_ver} BuildRequires: php-composer(psr/log) >= %{psr_log_min_ver} BuildRequires: php-symfony4-console >= %{symfony_min_ver} BuildRequires: php-symfony4-event-dispatcher >= %{symfony_min_ver} BuildRequires: php-symfony4-finder >= %{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.2.1) BuildRequires: php-dom BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} %if %{with_range_dependencies} Requires: (php-composer(consolidation/output-formatters) >= %{consolidation_output_formatters_min_ver} with php-composer(consolidation/output-formatters) < %{consolidation_output_formatters_max_ver}) Requires: (php-composer(psr/log) >= %{psr_log_min_ver} with php-composer(psr/log) < %{psr_log_max_ver}) Requires: (php-composer(symfony/console) >= %{symfony_min_ver} with php-composer(symfony/console) < %{symfony_max_ver}) Requires: (php-composer(symfony/event-dispatcher) >= %{symfony_min_ver} with php-composer(symfony/event-dispatcher) < %{symfony_max_ver}) Requires: (php-composer(symfony/finder) >= %{symfony_min_ver} with php-composer(symfony/finder) < %{symfony_max_ver}) %else Requires: php-composer(consolidation/output-formatters) < %{consolidation_output_formatters_max_ver} Requires: php-composer(consolidation/output-formatters) >= %{consolidation_output_formatters_min_ver} Requires: php-composer(psr/log) < %{psr_log_max_ver} Requires: php-composer(psr/log) >= %{psr_log_min_ver} Requires: php-symfony4-console >= %{symfony_min_ver} Requires: php-symfony4-event-dispatcher >= %{symfony_min_ver} Requires: php-symfony4-finder >= %{symfony_min_ver} %endif # phpcompatinfo (computed from version 4.2.1) Requires: php-dom Requires: php-pcre Requires: php-reflection Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description %{summary}. Autoloader: %{phpdir}/Consolidation/AnnotatedCommand/autoload.php %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/autoload.php - 4.2.4-2 - allow yoast/phpunit-polyfills version 1 * Tue Mar 23 2021 Remi Collet - 4.2.4-1 - update to 4.2.4 - switch to phpunit9 with yoast/phpunit-polyfills * Mon Sep 07 2020 Shawn Iwinski - 4.2.1-1 - Update to 4.2.1 (RHBZ #1850389) * Sat Jun 01 2019 Shawn Iwinski - 2.12.0-1 - Update to 2.12.0 (RHBZ #1582689) * Fri Mar 30 2018 Shawn Iwinski - 2.8.3-1 - Update to 2.8.3 (RHBZ #1492447) - Add range version dependencies for Fedora >= 27 || RHEL >= 8 * Wed Aug 30 2017 Shawn Iwinski - 2.4.13-1 - Update to 2.4.13 (RHBZ #1485331) * Sat Aug 05 2017 Shawn Iwinski - 2.4.11-1 - Update to 2.4.11 (RHBZ #1473682) * Sat Apr 08 2017 Shawn Iwinski - 2.4.8-1 - Update to 2.4.8 (RHBZ #1433641) - Allow Symfony 3 - Prepare for php-phpdocumentor-reflection-docblock => php-phpdocumentor-reflection-docblock2 dependency rename * Wed Mar 1 2017 Remi Collet - 2.4.5-1 - update to 2.4.5 * Tue Feb 28 2017 Shawn Iwinski - 2.4.4-1 - Update to 2.4.4 (RHBZ #1415385) * Sun Jan 15 2017 Shawn Iwinski - 2.2.2-1 - Update to 2.2.2 (RHBZ #1395001) - Use php-composer(fedora/autoloader) - Run upstream tests with SCLs if they are available * Tue Nov 01 2016 Shawn Iwinski - 2.0.1-2 - Skip test known to fail * Tue Nov 01 2016 Shawn Iwinski - 2.0.1-1 - Updated to 2.0.1 (RHBZ #1370772) * Mon Aug 08 2016 Shawn Iwinski - 1.2.1-1 - Updated to 1.2.1 (RHBZ #1359450) * Thu Jul 21 2016 Remi Collet - 1.0.1-1 - backport for remi repository * Tue Jul 19 2016 Shawn Iwinski - 1.0.1-1 - Initial package