(cherry picked from commit 0a1ad37159)
This commit is contained in:
Remi Collet 2024-09-18 15:13:16 +02:00
commit c5942aebda
3 changed files with 8 additions and 4 deletions

View file

@ -15,7 +15,7 @@
%bcond_with tests
%endif
%global gh_commit 4e1b88d21c69391150ace211e9eaf05810858d0b
%global gh_commit 0ed4c8949a32986043e977dbe14776c14d644c45
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner nikic
%global gh_project PHP-Parser
@ -25,7 +25,7 @@
%global major 4
Name: php-%{gh_owner}-%{pk_project}%{major}
Version: 4.19.1
Version: 4.19.2
Release: 1%{?dist}
Summary: A PHP parser written in PHP - version %{major}
@ -126,7 +126,7 @@ AUTOLOAD
FILTER="--filter '^((?!(testLexNewFeatures)).)*$'"
ret=0
for cmdarg in "php %{phpunit}" php81 php82 php83; do
for cmdarg in "php %{phpunit}" php81 php82 php83 php84; do
if which $cmdarg; then
set $cmdarg
$1 -d include_path=%{php_home} \
@ -149,6 +149,9 @@ exit $ret
%changelog
* Wed Sep 18 2024 Remi Collet <remi@remirepo.net> - 4.19.2-1
- update to 4.19.2
* Tue Mar 19 2024 Remi Collet <remi@remirepo.net> - 4.19.1-1
- update to 4.19.1
- raise dependency on PHP 7.1