# remirepo/Fedora spec file for php-laminas-mvc-middleware # # Copyright (c) 2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global bootstrap 0 %global gh_commit f2d31a99dea5f564e5a4135c9e469d5800a92540 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner laminas %global gh_project laminas-mvc-middleware %global php_home %{_datadir}/php %global namespace Laminas %global library Mvc %global subproj Middleware %if %{bootstrap} %global with_tests 0%{?_with_tests:1} %else %global with_tests 0%{!?_without_tests:1} %endif ######## TODO : not compatible with http-interop/http-middleware 0.5 Name: php-%{gh_project} Version: 1.1.0 Release: 1%{?dist} Summary: %{namespace} Framework %{library}/%{subproj} component License: BSD URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{gh_commit}/%{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch # Tests %if %{with_tests} BuildRequires: php(language) >= 5.6 # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(http-interop/http-middleware) >= 0.4.1 with php-composer(http-interop/http-middleware) < 2) BuildRequires: (php-autoloader(%{gh_owner}/laminas-mvc) >= 3.1 with php-autoloader(%{gh_owner}/laminas-mvc) < 4) BuildRequires: (php-autoloader(%{gh_owner}/laminas-psr7bridge) >= 1.2.2 with php-autoloader(%{gh_owner}/laminas-psr7bridge) < 2) BuildRequires: (php-autoloader(%{gh_owner}/laminas-servicemanager) >= 3.3 with php-autoloader(%{gh_owner}/laminas-servicemanager) < 4) BuildRequires: (php-autoloader(%{gh_owner}/laminas-stratigility) >= 2.2 with php-autoloader(%{gh_owner}/laminas-stratigility) < 3) # From composer, "require-dev": { # "container-interop/container-interop": "^1.2", # "laminas/laminas-coding-standard": "~1.0.0", # "laminas/laminas-diactoros": "^1.8 || ^2.1", # "laminas/laminas-router": "^3.3", # "phpunit/phpunit": "^7.5.20 || ^6.4.4 || ^5.7.14" BuildRequires: (php-composer(container-interop/container-interop) >= 1.1 with php-composer(container-interop/container-interop) < 2) BuildRequires: (php-autoloader(%{gh_owner}/laminas-diactoros) >= 1.8 with php-autoloader(%{gh_owner}/laminas-diactoros) < 3) BuildRequires: (php-autoloader(%{gh_owner}/laminas-router) >= 3.3 with php-autoloader(%{gh_owner}/laminas-router) < 4) # remirepo:14 %else BuildRequires: php-http-interop-http-middleware BuildRequires: php-laminas-mvc BuildRequires: php-laminas-psr7bridge BuildRequires: php-laminas-servicemanager BuildRequires: php-laminas-stratigility BuildRequires: php-container-interop BuildRequires: php-laminas-diactoros BuildRequires: php-laminas-router %endif %global phpunit %{_bindir}/phpunit7 BuildRequires: phpunit7 >= 7.5.20 %endif # Autoloader BuildRequires: php-fedora-autoloader-devel # From composer, "require": { # "php": "^5.6 || ^7.0", # "http-interop/http-middleware": "^0.4.1", # "laminas/laminas-mvc": "^3.1", # "laminas/laminas-psr7bridge": "^1.2.2", # "laminas/laminas-servicemanager": "^3.3", # "laminas/laminas-stratigility": "^2.2.2p2" Requires: php(language) >= 5.6 # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-composer(http-interop/http-middleware) >= 0.4.1 with php-composer(http-interop/http-middleware) < 2) Requires: (php-autoloader(%{gh_owner}/laminas-mvc) >= 3.1 with php-autoloader(%{gh_owner}/laminas-mvc) < 4) Requires: (php-autoloader(%{gh_owner}/laminas-psr7bridge) >= 1.2.2 with php-autoloader(%{gh_owner}/laminas-psr7bridge) < 2) Requires: (php-autoloader(%{gh_owner}/laminas-servicemanager) >= 3.3 with php-autoloader(%{gh_owner}/laminas-servicemanager) < 4) Requires: (php-autoloader(%{gh_owner}/laminas-stratigility) >= 2.2.2 with php-autoloader(%{gh_owner}/laminas-stratigility) < 3) # remirepo:7 %else Requires: php-http-interop-http-middleware Requires: php-laminas-mvc Requires: php-laminas-psr7bridge Requires: php-laminas-servicemanager Requires: php-laminas-stratigility %endif # Autoloader Requires: php-composer(fedora/autoloader) # From phpcompatinfo report for version 1.1.0 # only core and standard # Compatibily ensure by the bridge Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} Provides: php-autoloader(%{gh_owner}/%{gh_project}) = %{version} %description %{gh_project} provides integration between: * laminas-console * laminas-mvc * laminas-router * laminas-view and replaces the console functionality found in the v2 releases of the latter three components. Documentation: https://docs.laminas.dev/%{gh_project}/ %prep %setup -q -n %{gh_project}-%{gh_commit} mv LICENSE.md LICENSE %build : Create autoloader phpab --template fedora --output src/autoload.php src cat << 'EOF' | tee -a src/autoload.php \Fedora\Autoloader\Dependencies::required([ '%{php_home}/Interop/Http/Middleware/autoload.php', '%{php_home}/%{namespace}/Mvc/autoload.php', '%{php_home}/%{namespace}/Psr7Bridge/autoload.php', '%{php_home}/%{namespace}/ServiceManager/autoload.php', '%{php_home}/%{namespace}/Stratigility/autoload.php', ]); EOF %install : Laminas library mkdir -p %{buildroot}%{php_home}/%{namespace}/%{library}/ cp -pr src %{buildroot}%{php_home}/%{namespace}/%{library}/%{subproj} %check %if %{with_tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 1.1.0-1 - initial package