# remirepo/fedora spec file for php-theseer-tokenizer # # Copyright (c) 2017-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 75a63c33a8577608444246075ea0af0d052e452a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_vendor theseer %global gh_project tokenizer %global ns_vendor TheSeer %global ns_project Tokenizer Name: php-%{gh_vendor}-%{gh_project} Version: 1.2.0 Release: 1%{?dist} Summary: Library for converting tokenized PHP source code into XML License: BSD URL: https://github.com/%{gh_vendor}/%{gh_project} Source0: %{name}-%{version}-%{?gh_short}.tgz Source1: makesrc.sh BuildArch: noarch BuildRequires: php(language) >= 7.0 BuildRequires: php-xmlwriter BuildRequires: php-dom BuildRequires: php-tokenizer BuildRequires: php-pcre BuildRequires: php-spl # Autoloader BuildRequires: php-fedora-autoloader-devel >= 1.0.0 # Tests %global phpunit %{_bindir}/phpunit7 BuildRequires: %{phpunit} # From composer.json, "require": { # "php": "^7.0 || ^8.0", # "ext-xmlwriter": "*", # "ext-dom": "*", # "ext-tokenizer": "*" Requires: php(language) >= 7.0 Requires: php-xmlwriter Requires: php-dom Requires: php-tokenizer # From phpcompatinfo report for version 1.1.0 Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{gh_vendor}/%{gh_project}) = %{version} %description A small library for converting tokenized PHP source code into XML and potentially other formats. Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} %build : Generate a simple classmap autoloader %{_bindir}/phpab --template fedora --output src/autoload.php src %install mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} %check ret=0 for cmdarg in "php %{phpunit}" php72 php73 php74 php80; do if which $cmdarg; then set $cmdarg $1 -d auto_prepend_file=%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php \ ${2:-%{_bindir}/phpunit7} \ --no-coverage --verbose || ret=1 fi done exit $ret %files # remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc README.md composer.json %dir %{_datadir}/php/%{ns_vendor} %{_datadir}/php/%{ns_vendor}/%{ns_project} %changelog * Mon Jul 13 2020 Remi Collet - 1.2.0-1 - update to 1.2.0 - sources from git snapshot * Fri Jun 14 2019 Remi Collet - 1.1.3-1 - update to 1.1.3 * Thu Apr 4 2019 Remi Collet - 1.1.2-1 - update to 1.1.2 (no change) - switch back to phpunit 6 and 7 * Thu Apr 4 2019 Remi Collet - 1.1.1-2 - add patch from https://github.com/theseer/tokenizer/pull/4 and use phpunit7 with 7.1 * Thu Apr 4 2019 Remi Collet - 1.1.1-1 - update to 1.1.1 - use phpunit8 * Fri Apr 21 2017 Remi Collet - 1.1.0-1 - initial package, version 1.1.0