# remirepo/fedora spec file for php-doctrine-event-manager # # Copyright (c) 2018-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global bootstrap 0 %global gh_commit 95aa4cb529f1e96576f3fda9f5705ada4056a520 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner doctrine %global gh_project event-manager # packagist %global pk_vendor %{gh_owner} %global pk_project %{gh_project} # Namespace %global ns_vendor Doctrine %global ns_project Common %global ns_subproj EventManager %if %{bootstrap} %global with_tests 0%{?_with_tests:1} %else %global with_tests 0%{!?_without_tests:1} %endif Name: php-%{pk_vendor}-%{pk_project} Version: 1.2.0 Release: 1%{?dist} Summary: Simple PHP event system License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch BuildRequires: php-fedora-autoloader-devel %if %{with_tests} BuildRequires: php(language) >= 7.1 BuildRequires: php-reflection BuildRequires: php-spl # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(doctrine/deprecations) >= 0.5.3 with php-composer(doctrine/deprecations) < 2) # remirepo:4 %else BuildRequires: php-composer(doctrine/deprecations) < 2 BuildRequires: php-composer(doctrine/deprecations) >= 0.5.3 %endif BuildRequires: phpunit9 %endif # From composer.json # "php": "^7.1 || ^8.0" # "doctrine/deprecations": "^0.5.3 || ^1" Requires: php(language) >= 7.1 # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-composer(doctrine/deprecations) >= 0.5.3 with php-composer(doctrine/deprecations) < 2) # remirepo:4 %else Requires: php-composer(doctrine/deprecations) < 2 Requires: php-composer(doctrine/deprecations) >= 0.5.3 %endif # From phpcompatinfo report for version 1.2.0 Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} # Split off doctrine/common Conflicts: php-doctrine-common < 1:2.9 %description The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects. Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/%{ns_subproj}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} %build : Generate a simple autoloader mkdir src/%{ns_subproj} %{_bindir}/phpab \ --output src/%{ns_subproj}/autoload.php \ --template fedora \ src cat << 'AUTOLOAD' | tee -a src/%{ns_subproj}/autoload.php \Fedora\Autoloader\Dependencies::required([ '%{_datadir}/php/Doctrine/Deprecations/autoload.php', ]); AUTOLOAD %install mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} %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/%{ns_vendor}/%{ns_project}/%{ns_subproj}/autoload.php"; EOF : Run test suite ret=0 for cmd in php php74 php80 php81 php82; do if which $cmd; then $cmd %{_bindir}/phpunit9 \ --bootstrap vendor/autoload.php \ --verbose || ret=1 fi done exit $ret %else : Test suite disabled %endif %files # remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md %doc composer.json %dir %{_datadir}/php/%{ns_vendor}/ %{_datadir}/php/%{ns_vendor}/%{ns_project}/ %changelog * Thu Oct 13 2022 Remi Collet - 1.2.0-1 - update to 1.2.0 - add dependency on doctrine/deprecations * Thu Jul 28 2022 Remi Collet - 1.1.2-1 - update to 1.1.2 - switch to phpunit9 * Tue Aug 11 2020 Remi Collet - 1.1.1-1 - update to 1.1.1 (no change) * Tue Nov 12 2019 Remi Collet - 1.1.0-1 - update to 1.1.0 * Thu Nov 22 2018 Remi Collet - 1.0.0-2 - fix conflicts * Thu Oct 18 2018 Remi Collet - 1.0.0-1 - initial package, version 1.0.0