# remirepo/fedora spec file for php-seld-phar-utils # # Copyright (c) 2015-2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 8674b1d84ffb47cc59a101f5d5a3b61e87d23796 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner Seldaek %global gh_project phar-utils Name: php-seld-phar-utils Version: 1.1.1 Release: 1%{?dist} Summary: PHAR file format utilities License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz # Autoloader Source1: %{gh_project}-autoload.php BuildArch: noarch BuildRequires: php(language) >= 5.3 # For test BuildRequires: php-cli # Autoloader BuildRequires: php-composer(fedora/autoloader) # From composer.json # "php": ">=5.3.0", Requires: php(language) >= 5.3.0 # From phpcompatifo report for 1.0.1 Requires: php-date Requires: php-hash Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(seld/phar-utils) = %{version} %description PHAR file format utilities, for when PHP phars you up. To use this library, you just have to add, in your project: require_once '%{_datadir}/php/Seld/PharUtils/autoload.php'; %prep %setup -q -n %{gh_project}-%{gh_commit} cp %{SOURCE1} src/autoload.php %build # Nothing %install # Restore PSR-0 tree mkdir -p %{buildroot}%{_datadir}/php/Seld/PharUtils/ cp -pr src/* %{buildroot}%{_datadir}/php/Seld/PharUtils/ %check : Check if our autoloader works php -r ' require "%{buildroot}%{_datadir}/php/Seld/PharUtils/autoload.php"; $a = new \Seld\PharUtils\Timestamps("%{SOURCE1}"); echo "Ok\n"; exit(0); ' %files %{!?_licensedir:%global license %%doc} %license LICENSE %doc README.md %doc composer.json %{_datadir}/php/Seld %changelog * Wed Jul 8 2020 Remi Collet - 1.1.1-1 - update to 1.1.1 * Mon Feb 17 2020 Remi Collet - 1.1.0-1 - update to 1.1.0 * Tue Jan 14 2020 Remi Collet - 1.0.2-1 - update to 1.0.2 * Fri Oct 21 2016 Remi Collet - 1.0.1-2 - switch from symfony/class-loader to fedora/autoloader * Wed Oct 14 2015 Remi Collet - 1.0.1-1 - update to 1.0.1 - add autoloader * Mon May 4 2015 Remi Collet - 1.0.0-1 - initial package