# remirepo spec file for php-di-invoker, from: # # Fedora spec file for php-di-invoker # # Copyright (c) 2016 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner PHP-DI %global github_name Invoker %global github_version 1.3.3 %global github_commit 1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7 %global composer_vendor php-di %global composer_project invoker # "container-interop/container-interop": "~1.1" %global container_interop_min_ver 1.1 %global container_interop_max_ver 2.0 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} %{!?phpdir: %global phpdir %{_datadir}/php} Name: %{composer_vendor}-%{composer_project} Version: %{github_version} Release: 1%{?github_release}%{?dist} Summary: Generic and extensible callable invoker Group: Development/Libraries License: MIT URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests. # Run php-di-invoker-get-source.sh to create full source. Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch # Tests %if %{with_tests} ## composer.json BuildRequires: php-composer(container-interop/container-interop) >= %{container_interop_min_ver} BuildRequires: php-composer(phpunit/phpunit) ## phpcompatinfo (computed from version 1.3.3) BuildRequires: php(language) >= 5.3.0 BuildRequires: php-reflection ## Autoloader BuildRequires: php-composer(symfony/class-loader) %endif # composer.json Requires: php-composer(container-interop/container-interop) >= %{container_interop_min_ver} Requires: php-composer(container-interop/container-interop) < %{container_interop_max_ver} # phpcompatinfo (computed from version 1.3.3) Requires: php(language) >= 5.3.0 Requires: php-reflection # Autoloader Requires: php-composer(symfony/class-loader) # php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT} Provides: php-%{composer_vendor}-%{composer_project} = %{version}-%{release} # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description %{summary}. Autoloader: %{phpdir}/Invoker/autoload.php %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/autoload.php register(); } $fedoraClassLoader->addPrefix('Invoker\\', dirname(__DIR__)); // Required dependency require_once '%{phpdir}/Interop/Container/autoload.php'; return $fedoraClassLoader; AUTOLOAD %install rm -rf %{buildroot} mkdir -p %{buildroot}%{phpdir}/Invoker cp -rp src/* %{buildroot}%{phpdir}/Invoker/ %check %if %{with_tests} : Make PSR-0 tests mkdir -p tests-psr0/Invoker ln -s ../../tests tests-psr0/Invoker/Test : Create tests bootstrap cat <<'BOOTSTRAP' | tee bootstrap.php addPrefix('Invoker\\Test\\', __DIR__.'/tests-psr0'); BOOTSTRAP : Run tests run=0 ret=0 if which php56; then php56 %{_bindir}/phpunit --bootstrap bootstrap.php || ret=1 run=1 fi if which php71; then php71 %{_bindir}/phpunit --bootstrap bootstrap.php || ret=1 run=1 fi if [ $run -eq 0 ]; then %{_bindir}/phpunit --verbose --bootstrap bootstrap.php fi exit $ret %else : Tests skipped %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md %doc composer.json %{phpdir}/Invoker %changelog * Sat Jul 23 2016 Shawn Iwinski - 1.3.3-1 - Updated to 1.3.3 (RHBZ #1341396) * Sun Mar 27 2016 Shawn Iwinski - 1.3.0-1 - Updated to 1.3.0 (RHBZ #1319537) * Tue Jan 5 2016 Remi Collet - 1.2.0-1 - backport for #remirepo * Sun Jan 03 2016 Shawn Iwinski - 1.2.0-1 - Initial package