# # Fedora spec file for php-guzzlehttp-psr7 # # Copyright (c) 2015-2017 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner guzzle %global github_name psr7 %global github_version 1.4.2 %global github_commit f5b8a8512e2b58b0071a7280e39f14f72e05d87c %global composer_vendor guzzlehttp %global composer_project psr7 # "php": ">=5.4.0" %global php_min_ver 5.4.0 # "psr/http-message": "~1.0" %global psr_http_message_min_ver 1.0 %global psr_http_message_max_ver 2.0 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} Release: 3%{?github_release}%{?dist} Summary: PSR-7 message implementation Group: Development/Libraries License: MIT URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests. # Run php-guzzlehttp-psr7-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: php-composer(phpunit/phpunit) BuildRequires: php-composer(psr/http-message) < %{psr_http_message_max_ver} BuildRequires: php-composer(psr/http-message) >= %{psr_http_message_min_ver} ## phpcompatinfo (computed from version 1.4.2) BuildRequires: php-hash BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl BuildRequires: php-zlib ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} Requires: php-composer(psr/http-message) < %{psr_http_message_max_ver} Requires: php-composer(psr/http-message) >= %{psr_http_message_min_ver} # phpcompatinfo (computed from version 1.4.2) Requires: php-hash Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} Provides: php-composer(psr/http-message-implementation) = 1.0 %description PSR-7 message implementation, several stream decorators, and some helpful functionality like query string parsing. %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/autoload.php - 1.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 1.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Sat Apr 08 2017 Shawn Iwinski - 1.4.2-1 - Updated to 1.4.2 (RHBZ #1434198) - Don't use autoloader to load functions include * Sat Mar 04 2017 Shawn Iwinski - 1.4.1-1 - Updated to 1.4.1 (RHBZ #1425429) - Switch autoloader to php-composer(fedora/autoloader) - Test with SCLs if available * Sat Feb 11 2017 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Sun Jul 03 2016 Shawn Iwinski - 1.3.1-1 - Updated to 1.3.1 (RHBZ #1352354) * Sun May 29 2016 Shawn Iwinski - 1.3.0-1 - Updated to 1.3.0 (RHBZ #1326975) * Fri Mar 11 2016 Shawn Iwinski - 1.2.3-1 - Updated to 1.2.3 (RHBZ #1301276) * Thu Feb 04 2016 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Nov 04 2015 Shawn Iwinski - 1.2.1-1 - Updated to 1.2.1 (RHBZ #1277467) * Sun Aug 16 2015 Shawn Iwinski - 1.2.0-1 - Updated to 1.2.0 (RHBZ #1253997) - Updated autoloader to load dependencies after self registration * Sun Jul 19 2015 Shawn Iwinski - 1.1.0-3 - Use full paths in autoloader * Wed Jul 08 2015 Shawn Iwinski - 1.1.0-2 - Add autoloader dependencies - Modify autoloader * Mon Jul 06 2015 Shawn Iwinski - 1.1.0-1 - Initial package