# remirepo/fedora spec file for php-doctrine-instantiator # # Copyright (c) 2014-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # bootstrap needed when rebuilding PHPUnit for new major version %global bootstrap 0 %global gh_commit ae466f726242e637cebdd526a7d991b9433bacf1 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner doctrine %global gh_project instantiator %if %{bootstrap} %global with_tests 0%{?_with_tests:1} %else %global with_tests 0%{!?_without_tests:1} %endif # remirepo:1 %if 0%{?fedora} >= 26 || 0%{?rhel} >= 8 Name: php-doctrine-instantiator Release: 1%{?dist} %global major %nil # remirepo:6 %else Name: php-doctrine-instantiator11 Release: 1%{?dist} %global major 11 %global with_tests 0 %endif Version: 1.3.0 Summary: Instantiate objects in PHP without invoking their constructors License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: php-%{gh_owner}-%{gh_project}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch BuildRequires: php-fedora-autoloader-devel %if %{with_tests} BuildRequires: php(language) >= 7.1 BuildRequires: php-phar BuildRequires: php-pdo BuildRequires: php-reflection BuildRequires: php-spl BuildRequires: phpunit6 %endif # From composer.json # "php": "^7.1" Requires: php(language) >= 7.1 # From phpcompatinfo report for version 1.1.0 Requires: php-reflection Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # remirepo:1 %if 0%{?fedora} >= 26 || 0%{?rhel} >= 8 Obsoletes: php-doctrine-instantiator11 < %{version}-%{release} Provides: php-doctrine-instantiator11 = %{version}-%{release} Provides: php-composer(doctrine/instantiator) = %{version} # remirepo:3 %else Requires: php-doctrine-instantiator %endif %description This library provides a way of avoiding usage of constructors when instantiating PHP classes. %prep %setup -q -n %{gh_project}-%{gh_commit} %build : Generate a simple autoloader %{_bindir}/phpab \ --output src/Doctrine/Instantiator/autoload.php \ --template fedora \ src/Doctrine/Instantiator %install mkdir -p %{buildroot}%{_datadir}/php/Doctrine cp -pr src/Doctrine/Instantiator %{buildroot}%{_datadir}/php/Doctrine/Instantiator%{major} %check %if %{with_tests} : Generate autoloader mkdir vendor %{_bindir}/phpab \ --output vendor/autoload.php \ --template fedora \ tests cat << 'EOF' | tee -a vendor/autoload.php require "%{buildroot}%{_datadir}/php/Doctrine/Instantiator/autoload.php"; EOF : Run test suite ret=0 for cmd in php php71 php72 php73 php74; do if which $cmd; then $cmd -d include_path=".:%{buildroot}%{_datadir}/php:%{_datadir}/php" \ %{_bindir}/phpunit6 \ --verbose || ret=1 fi done exit $ret %else : Test suite disabled %endif %files # remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md composer.json %dir %{_datadir}/php/Doctrine %{_datadir}/php/Doctrine/Instantiator%{major} %changelog * Wed Nov 13 2019 Remi Collet - 1.3.0-1 - update to 1.3.0 * Mon Mar 25 2019 Remi Collet - 1.2.0-1 - update to 1.2.0 * Fri Aug 4 2017 Remi Collet - 1.1.0-3 - allow parallel installation of 1.0 and 1.1 * Fri Aug 4 2017 Remi Collet - 1.1.0-1 - Update to 1.1.0 - raise dependency on PHP 7.1 - switch to phpunit6 - use git snapshot for sources * Mon Jun 15 2015 Remi Collet - 1.0.5-1 - update to 1.0.5 - improve test suite during the build * Fri Feb 13 2015 Remi Collet - 1.0.4-2 - add autoloader * Mon Oct 13 2014 Remi Collet - 1.0.4-1 - update to 1.0.4 (no change) * Sun Oct 5 2014 Remi Collet - 1.0.3-1 - update to 1.0.3 * Mon Aug 25 2014 Remi Collet - 1.0.2-1 - initial package, version 1.0.2