From 706593d00d61e8a3866a284d7ce1c6e8f5e034c9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Jan 2020 14:38:53 +0100 Subject: switch to Laminas --- php-laminas-loader.spec | 115 ++++++++++++++++++++++++++++-------------------- 1 file changed, 67 insertions(+), 48 deletions(-) (limited to 'php-laminas-loader.spec') diff --git a/php-laminas-loader.spec b/php-laminas-loader.spec index a6c87cc..e930948 100644 --- a/php-laminas-loader.spec +++ b/php-laminas-loader.spec @@ -1,4 +1,4 @@ -# remirepo/Fedora spec file for php-zendframework-zend-loader +# remirepo/Fedora spec file for php-laminas-loader # # Copyright (c) 2015-2020 Remi Collet # License: CC-BY-SA @@ -6,68 +6,76 @@ # # Please, preserve the changelog entries # -%global gh_commit 91da574d29b58547385b2298c020b257310898c6 +%global gh_commit 5d01c2c237ae9e68bec262f339947e2ea18979bc %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) -%global gh_owner zendframework -%global gh_project zend-loader +%global gh_owner laminas +%global gh_project laminas-loader +%global zf_name zend-loader %global php_home %{_datadir}/php +%global namespace Laminas %global library Loader %global with_tests 0%{!?_without_tests:1} -Name: php-%{gh_owner}-%{gh_project} +Name: php-%{gh_project} Version: 2.6.1 Release: 1%{?dist} -Summary: Zend Framework %{library} component +Summary: Laminas Framework %{library} component License: BSD -URL: https://zendframework.github.io/%{gh_project}/ +URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{gh_commit}/%{name}-%{version}-%{gh_short}.tgz -Source1: %{name}-autoload.php -Source2: makesrc.sh +Source1: makesrc.sh BuildArch: noarch # Tests %if %{with_tests} BuildRequires: php(language) >= 5.6 -# From composer, "require-dev": { -# "phpbench/phpbench": "^0.13", -# "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4", -# "zendframework/zend-coding-standard": "~1.0.0" # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -%global phpunit %{_bindir}/phpunit7 -BuildRequires: phpunit7 >= 7.1.4 -# remirepo:4 +BuildRequires: (php-autoloader(%{gh_owner}/laminas-zendframework-bridge) >= 1.0 with php-autoloader(%{gh_owner}/laminas-zendframework-bridge) < 2) +# remirepo:3 %else -%global phpunit %{_bindir}/phpunit6 -BuildRequires: phpunit >= 5.7.27 +BuildRequires: php-laminas-zendframework-bridge %endif +# From composer, "require-dev": { +# "laminas/laminas-coding-standard": "~1.0.0", +# "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" +%global phpunit %{_bindir}/phpunit7 +BuildRequires: phpunit7 >= 7.1.4 %endif # Autoloader BuildRequires: php-fedora-autoloader-devel # From composer, "require": { -# "php": "^5.6 || ^7.0" +# "php": "^5.6 || ^7.0", +# "laminas/laminas-zendframework-bridge": "^1.0" Requires: php(language) >= 5.6 +# remirepo:1 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +Requires: (php-autoloader(%{gh_owner}/laminas-zendframework-bridge) >= 1.0 with php-autoloader(%{gh_owner}/laminas-zendframework-bridge) < 2) +# remirepo:3 +%else +Requires: php-laminas-zendframework-bridge +%endif # Autoloader Requires: php-composer(fedora/autoloader) -# From phpcompatinfo report for version 2.5.1 +# From phpcompatinfo report for version 2.6.1 Requires: php-pcre Requires: php-spl -Obsoletes: php-ZendFramework2-%{library} < 2.5 -Provides: php-ZendFramework2-%{library} = %{version} -Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} +# Compatibily ensure by the bridge +Obsoletes: php-zendframework-%{zf_name} < 2.6.1-99 +Provides: php-zendframework-%{zf_name} = %{version}-99 +Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} +Provides: php-composer(zendframework/%{zf_name}) = %{version} Provides: php-autoloader(%{gh_owner}/%{gh_project}) = %{version} +Provides: php-autoloader(zendframework/%{zf_name}) = %{version} %description -Zend\Loader provides different strategies for autoloading PHP classes. - -You can include %{php_home}/Zend/autoload.php from -your application to use the Zend Framework. +%{gh_project} provides different strategies for autoloading PHP classes. -Documentation: https://zendframework.github.io/%{gh_project}/ +Documentation: https://docs.laminas.dev/%{gh_project}/ %prep @@ -80,41 +88,50 @@ mv LICENSE.md LICENSE : Create autoloader phpab --template fedora --output src/autoload.php src +cat << 'EOF' | tee zf.php + - 2.6.1-1 +- switch to Laminas + * Fri Sep 6 2019 Remi Collet - 2.6.1-1 - update to 2.6.1 (no change) -- cgit