diff options
-rw-r--r-- | composer.json | 6 | ||||
-rw-r--r-- | php-sebastian-recursion-context5.spec | 22 |
2 files changed, 17 insertions, 11 deletions
diff --git a/composer.json b/composer.json index 3a00b68..b3a827f 100644 --- a/composer.json +++ b/composer.json @@ -17,6 +17,10 @@ "email": "aharvey@php.net" } ], + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy" + }, "prefer-stable": true, "config": { "platform": { @@ -29,7 +33,7 @@ "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "autoload": { "classmap": [ diff --git a/php-sebastian-recursion-context5.spec b/php-sebastian-recursion-context5.spec index 3022933..dd655e4 100644 --- a/php-sebastian-recursion-context5.spec +++ b/php-sebastian-recursion-context5.spec @@ -1,15 +1,15 @@ # remirepo/fedora spec file for php-sebastian-recursion-context5 # -# Copyright (c) 2015-2023 Remi Collet -# License: CC-BY-SA-4.0 -# http://creativecommons.org/licenses/by-sa/4.0/ +# SPDX-FileCopyrightText: Copyright 2015-2025 Remi Collet +# SPDX-License-Identifier: CECILL-2.1 +# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt # # Please, preserve the changelog entries # %bcond_without tests -%global gh_commit 05909fb5bc7df4c52992396d0116aed689f93712 +%global gh_commit 47e34210757a2f37a97dcd207d032e1b01e64c7a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project recursion-context @@ -23,8 +23,8 @@ %global php_home %{_datadir}/php Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 5.0.0 -Release: 3%{?dist} +Version: 5.0.1 +Release: 1%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause @@ -37,15 +37,14 @@ BuildRequires: php(language) >= 8.1 BuildRequires: php-fedora-autoloader-devel %if %{with tests} # from composer.json, "require-dev": { -# "phpunit/phpunit": "^10.0" -BuildRequires: phpunit10 +# "phpunit/phpunit": "^10.5" +BuildRequires: phpunit10 >= 10.5 %endif # from composer.json # "php": ">=8.1" Requires: php(language) >= 8.1 # from phpcompatinfo report for version 5.0.0 -Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) @@ -81,7 +80,7 @@ touch vendor/autoload.php : Run upstream test suite ret=0 -for cmd in php php81 php82 php83; do +for cmd in php php81 php82 php83 php84 php85; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ %{_bindir}/phpunit10 || ret=1 @@ -103,6 +102,9 @@ exit $ret %changelog +* Mon Aug 11 2025 Remi Collet <remi@remirepo.net> - 5.0.1-1 +- update to 5.0.1 + * Wed Aug 23 2023 Remi Collet <remi@remirepo.net> - 5.0.0-3 - Enable test suite |