# remirepo spec file for php-opis-closure, from # # Fedora spec file for php-opis-closure # # Copyright (c) 2020-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner opis %global github_name closure %global github_version 3.6.3 %global github_commit 3d81e4309d2a927abbe66df935f4bb60082805ad %global composer_vendor opis %global composer_project closure %global namespace_vendor Opis %global namespace_project Closure # "php": "^5.4 || ^7.0 || ^8.0" %global php_min_ver 5.4 %global phpunit_require phpunit9 %global phpunit_exec phpunit9 # Build using "--without tests" to disable tests %bcond_without tests # 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}%{?namespace_version} Version: %{github_version} Release: 1%{?github_release}%{?dist} Summary: A library that can be used to serialize closures and arbitrary objects License: MIT URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests # Run php-opis-closure-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} ## phpcompatinfo (computed from version 3.5.6) BuildRequires: php-date BuildRequires: php-hash BuildRequires: php-iconv BuildRequires: php-json BuildRequires: php-reflection BuildRequires: php-spl BuildRequires: php-tokenizer ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} # phpcompatinfo (computed from version 3.5.6) Requires: php-reflection Requires: php-date Requires: php-hash Requires: php-json Requires: php-spl Requires: php-tokenizer # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description Opis Closure is a library that aims to overcome PHP's limitations regarding closure serialization by providing a wrapper that will make all closures serializable. Autoloader: %{phpdir}/%{namespace_vendor}/%{namespace_project}%{?namespace_version}/autoload.php %prep %setup -qn %{github_name}-%{github_commit} cp functions.php src/ %build : Create autoloader cat <<'AUTOLOAD' | tee src/autoload.php - 3.6.3-1 - update to 3.6.3 * Tue Apr 13 2021 Remi Collet - 3.6.2-1 - update to 3.6.2 * Tue Mar 30 2021 Remi Collet - 3.6.1-3 - drop build dependency on jeremeamia/superclosure * Mon Nov 9 2020 Remi Collet - 3.6.1-1 - update to 3.6.1 * Mon Oct 12 2020 Remi Collet - 3.6.0-1 - update to 3.6.0 - switch to phpunit9 * Fri Aug 21 2020 Shawn Iwinski - 3.5.6-2 - Update SCL tests per review (RHBZ #1869433) * Mon Aug 17 2020 Shawn Iwinski - 3.5.6-1 - Initial package