Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afa9e97f46 | ||
|
|
47a6680bd1 | ||
|
|
c36ac9be7b | ||
|
|
52f2336083 | ||
|
|
0a1ad37159 | ||
|
|
3d98c1fdc7 |
3 changed files with 30 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -28,3 +28,6 @@ clog
|
||||||
/php-nikic-php-parser4-4.17.1-a6303e5.tgz
|
/php-nikic-php-parser4-4.17.1-a6303e5.tgz
|
||||||
/php-nikic-php-parser4-4.18.0-1bcbb21.tgz
|
/php-nikic-php-parser4-4.18.0-1bcbb21.tgz
|
||||||
/php-nikic-php-parser4-4.19.1-4e1b88d.tgz
|
/php-nikic-php-parser4-4.19.1-4e1b88d.tgz
|
||||||
|
/php-nikic-php-parser4-4.19.2-0ed4c89.tgz
|
||||||
|
/php-nikic-php-parser4-4.19.4-715f4d2.tgz
|
||||||
|
/php-nikic-php-parser4-4.19.5-51bd93c.tgz
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# remirepo/fedora spec file for php-nikic-php-parser4
|
# remirepo/fedora spec file for php-nikic-php-parser4
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2024 Remi Collet
|
# SPDX-FileCopyrightText: Copyright 2016-2025 Remi Collet
|
||||||
# License: CC-BY-SA-4.0
|
# SPDX-License-Identifier: CECILL-2.1
|
||||||
# http://creativecommons.org/licenses/by-sa/4.0/
|
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
|
||||||
#
|
#
|
||||||
# Please, preserve the changelog entries
|
# Please, preserve the changelog entries
|
||||||
#
|
#
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%global gh_commit 4e1b88d21c69391150ace211e9eaf05810858d0b
|
%global gh_commit 51bd93cc741b7fc3d63d20b6bdcd99fdaa359837
|
||||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||||
%global gh_owner nikic
|
%global gh_owner nikic
|
||||||
%global gh_project PHP-Parser
|
%global gh_project PHP-Parser
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
%global major 4
|
%global major 4
|
||||||
|
|
||||||
Name: php-%{gh_owner}-%{pk_project}%{major}
|
Name: php-%{gh_owner}-%{pk_project}%{major}
|
||||||
Version: 4.19.1
|
Version: 4.19.5
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A PHP parser written in PHP - version %{major}
|
Summary: A PHP parser written in PHP - version %{major}
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@ BuildRequires: php-json
|
||||||
BuildRequires: php-pcre
|
BuildRequires: php-pcre
|
||||||
BuildRequires: php-spl
|
BuildRequires: php-spl
|
||||||
# From composer.json, "require-dev": {
|
# From composer.json, "require-dev": {
|
||||||
# "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0",
|
# "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
|
||||||
# "ircmaxell/php-yacc": "0.0.7"
|
# "ircmaxell/php-yacc": "0.0.7"
|
||||||
%global phpunit %{_bindir}/phpunit9
|
%global phpunit %{_bindir}/phpunit9
|
||||||
BuildRequires: phpunit9
|
BuildRequires: phpunit9
|
||||||
|
|
@ -126,7 +126,7 @@ AUTOLOAD
|
||||||
FILTER="--filter '^((?!(testLexNewFeatures)).)*$'"
|
FILTER="--filter '^((?!(testLexNewFeatures)).)*$'"
|
||||||
|
|
||||||
ret=0
|
ret=0
|
||||||
for cmdarg in "php %{phpunit}" php81 php82 php83; do
|
for cmdarg in "php %{phpunit}" php81 php82 php83 php84 php85; do
|
||||||
if which $cmdarg; then
|
if which $cmdarg; then
|
||||||
set $cmdarg
|
set $cmdarg
|
||||||
$1 -d include_path=%{php_home} \
|
$1 -d include_path=%{php_home} \
|
||||||
|
|
@ -149,6 +149,25 @@ exit $ret
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 9 2025 Remi Collet <remi@remirepo.net> - 4.19.5-1
|
||||||
|
- update to 4.19.5
|
||||||
|
- re-license spec file to CECILL-2.1
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Sep 30 2024 Remi Collet <remi@remirepo.net> - 4.19.4-1
|
||||||
|
- update to 4.19.4
|
||||||
|
|
||||||
|
* Wed Sep 18 2024 Remi Collet <remi@remirepo.net> - 4.19.2-1
|
||||||
|
- update to 4.19.2
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Mar 19 2024 Remi Collet <remi@remirepo.net> - 4.19.1-1
|
* Tue Mar 19 2024 Remi Collet <remi@remirepo.net> - 4.19.1-1
|
||||||
- update to 4.19.1
|
- update to 4.19.1
|
||||||
- raise dependency on PHP 7.1
|
- raise dependency on PHP 7.1
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (php-nikic-php-parser4-4.19.1-4e1b88d.tgz) = 42b7a4c9cb67221a4803e1e61bfbc2fb4b37e07b06df551b818e9166bb941fea2939461f50a2bff2a552e83427fb199d61209b41ba6f9eaf928aa3e832f84131
|
SHA512 (php-nikic-php-parser4-4.19.5-51bd93c.tgz) = 739cb8134ca83bfaeb8189dc40ef7603e2c7c7813d28841b279306f6e2d3f77910eb5033aae0c2bad0f38d0dc6490953cc3518bf433c4f99cecf2007c10d17cc
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue