# remirepo/fedora spec file for php-brick-varexporter # # Copyright (c) 2020-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github %global gh_commit 3e263cd718d242594c52963760fee2059fd5833c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner brick %global gh_project varexporter # Packagist %global pk_vendor %{gh_owner} %global pk_name %{gh_project} # Namespace %global ns_vendor Brick %global ns_project VarExporter Name: php-%{pk_vendor}-%{pk_name} Version: 0.3.7 Release: 1%{?dist} Summary: A powerful alternative to var_export License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz # Create git snapshot as tests are excluded from official tarball Source1: makesrc.sh BuildArch: noarch BuildRequires: php(language) >= 7.2 # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(nikic/php-parser) >= 4.0 with php-composer(nikic/php-parser) < 5) # remirepo:3 %else BuildRequires: php-nikic-php-parser4 %endif BuildRequires: php-reflection BuildRequires: php-date BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { # "phpunit/phpunit": "^8.5 || ^9.0", # "php-coveralls/php-coveralls": "^2.2", # "vimeo/psalm": "4.4.1" %if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 BuildRequires: phpunit9 %global phpunit %{_bindir}/phpunit9 %else BuildRequires: phpunit8 >= 8.5 %global phpunit %{_bindir}/phpunit8 %endif # Autoloader BuildRequires: php-fedora-autoloader-devel # From composer.json, "require": { # "php": "^7.2 || ^8.0", # "nikic/php-parser": "^4.0" Requires: php(language) >= 7.2 # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-composer(nikic/php-parser) >= 4.0 with php-composer(nikic/php-parser) < 5) # remirepo:3 %else Requires: php-nikic-php-parser4 %endif # From phpcompatifo report for 0.3.2 Requires: php-reflection Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_name}) = %{version} %description This library aims to provide a prettier, safer, and powerful alternative to var_export(). The output is valid and standalone PHP code, that does not depend on the brick/varexporter library. Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} %build : Create classmap autoloader phpab \ --template fedora \ --output src/autoload.php \ src cat << 'EOF' | tee -a src/autoload.php \Fedora\Autoloader\Dependencies::required([ '/usr/share/php/PhpParser4/autoload.php', ]); EOF %install # Restore PSR-0 tree mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} %check : Generate a simple autoloader mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 0.3.7-1 - update to 0.3.7 * Thu Jun 16 2022 Remi Collet - 0.3.6-1 - update to 0.3.6 * Wed Nov 24 2021 Remi Collet - 0.3.5-3 - add upstream patch to fix test suite with PHP 8.1 * Wed Feb 10 2021 Remi Collet - 0.3.5-1 - update to 0.3.5 * Mon Feb 8 2021 Remi Collet - 0.3.4-1 - update to 0.3.4 * Mon Jan 4 2021 Remi Collet - 0.3.3-1 - update to 0.3.3 - switch to phpunit9 * Tue Aug 25 2020 Remi Collet - 0.3.2-1 - initial package