diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-28 07:22:05 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-28 07:22:05 +0200 |
commit | c2f3551466aac66174cd666dc8eececd13d98c14 (patch) | |
tree | e9ff2dc866ca0c2673ea23862a9b0a81c914abb7 /php-composer-ca-bundle.spec | |
parent | 8fb20aaa171f01cc2e42098e5ae6e60a7ae4d308 (diff) |
fix system certificates path rhbz#2383719
Diffstat (limited to 'php-composer-ca-bundle.spec')
-rw-r--r-- | php-composer-ca-bundle.spec | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index b4499bc..132bd4c 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.5.7 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -44,7 +44,7 @@ BuildRequires: phpunit10 # Autoloader BuildRequires: php-composer(fedora/autoloader) # ca-certificates -BuildRequires: %{_sysconfdir}/pki/tls/certs/ca-bundle.crt +BuildRequires: %{_sysconfdir}/pki/ca-trust/extracted/pem/tls-ca-bundle.pem %endif # From composer.json, "require": { @@ -107,7 +107,7 @@ EOF ret=0 %{_bindir}/phpunit10 --migrate-configuration -for cmd in php php81 php82 php83 php84; do +for cmd in php php81 php82 php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit10 --no-coverage || ret=1 fi @@ -127,6 +127,9 @@ exit $ret %changelog +* Mon Jul 28 2025 Remi Collet <remi@remirepo.net> - 1.5.7-3 +- fix system certificates path rhbz#2383719 + * Tue May 27 2025 Remi Collet <remi@remirepo.net> - 1.5.7-1 - update to 1.5.7 (no change) |