# remirepo/fedora spec file for php-myclabs-deep-copy # # Copyright (c) 2015-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner myclabs %global gh_project DeepCopy %global c_project deep-copy %global major %nil %global php_home %{_datadir}/php %global with_tests 0%{!?_without_tests:1} # remirepo:4 %if 0%{?fedora} < 26 && 0%{?rhel} < 8 %global major 19 %global with_tests 0 %endif Name: php-myclabs-deep-copy%{major} Version: 1.9.1 Release: 1%{?dist} Summary: Create deep copies (clones) of your objects License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} # git snashop to get upstream test suite Source0: php-myclabs-deep-copy-%{version}-%{gh_short}.tgz Source1: makesrc.sh Source2: php-myclabs-deep-copy-autoload.php BuildArch: noarch %if %{with_tests} # For tests BuildRequires: php(language) >= 7.1 BuildRequires: php-reflection BuildRequires: php-spl # From composer.json, "require-dev": { # "doctrine/collections": "^1.0", # "doctrine/common": "^2.6", # "phpunit/phpunit": "^7.1" # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(doctrine/collections) >= 1.0 with php-composer(doctrine/collections) < 2) BuildRequires: (php-composer(doctrine/common) >= 2.6 with php-composer(doctrine/common) < 3) # remirepo:6 %else BuildRequires: php-composer(doctrine/collections) < 2 BuildRequires: php-composer(doctrine/collections) >= 1.0 BuildRequires: php-composer(doctrine/common) < 3 BuildRequires: php-composer(doctrine/common) >= 2.6 %endif BuildRequires: phpunit7 >= 7.1 # Required by autoloader BuildRequires: php-composer(fedora/autoloader) %endif # From composer.json, "require": { # "php": "^7.1" Requires: php(language) >= 7.1 # From phpcompatinfo report for version 1.8.0 Requires: php-reflection Requires: php-date Requires: php-spl # Required by autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{gh_owner}/%{c_project}) = %{version} %description DeepCopy helps you create deep copies (clones) of your objects. It is designed to handle cycles in the association graph. %prep %setup -q -n %{gh_project}-%{gh_commit} cp %{SOURCE2} src/%{gh_project}/autoload.php %build # Empty build section, most likely nothing required. %install : Library mkdir -p %{buildroot}%{php_home} cp -pr src/%{gh_project} %{buildroot}%{php_home}/%{gh_project}%{major} %check %if %{with_tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 1.9.1-1 - php-myclabs-deep-copy19 for EL 6 and 7 * Mon Apr 15 2019 Remi Collet - 1.9.1-1 - update to 1.9.1 * Tue Jun 12 2018 Remi Collet - 1.8.1-1 - update to 1.8.1 * Wed May 30 2018 Remi Collet - 1.8.0-1 - update to 1.8.0 (no change) - raise dependency on PHP 7.1 - use phpunit7 * Wed May 30 2018 Remi Collet - 1.8.0-0 - update to 1.8.0 (no change) - boostrap build using phpunit6 (rely on include_path) - fix autoloader to avoid duplicate definition * Fri Oct 20 2017 Remi Collet - 1.7.0-1 - Update to 1.7.0 - raise dependency on PHP 5.6 * Thu Apr 13 2017 Remi Collet - 1.6.1-1 - Update to 1.6.1 * Fri Jan 27 2017 Remi Collet - 1.6.0-1 - update to 1.6.0 * Tue Nov 1 2016 Remi Collet - 1.5.5-1 - update to 1.5.5 - switch to fedora/autoloader * Mon Sep 19 2016 Remi Collet - 1.5.4-1 - update to 1.5.4 * Tue Sep 13 2016 Remi Collet - 1.5.3-1 - update to 1.5.3 * Wed Sep 7 2016 Remi Collet - 1.5.2-1 - update to 1.5.2 * Mon May 2 2016 Remi Collet - 1.5.1-1 - update to 1.5.1 - run test suite with both PHP 5 and 7 when available * Sun Nov 8 2015 Remi Collet - 1.5.0-1 - update to 1.5.0 * Mon Oct 5 2015 Remi Collet - 1.4.0-1 - update to 1.4.0 * Mon Jul 20 2015 Remi Collet - 1.3.1-1 - update to 1.3.1 (no change, pr #14 merged) * Sat Jul 4 2015 Remi Collet - 1.3.0-1 - initial package, version 1.3.0 - open https://github.com/myclabs/DeepCopy/pull/14 - fix perms