From ca459e252077bb85e2897136e0678edeb5dcc63a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 08:48:09 +0000 Subject: [PATCH 01/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 9e9d454..feac3df 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -15,7 +15,7 @@ Name: php-composer-ca-bundle Version: 1.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -142,6 +142,9 @@ exit $ret %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 2a16bf5ae25c6996e7b40bc6746c534dac82b366 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 19 Aug 2019 14:40:15 +0200 Subject: [PATCH 02/49] v1.2.3 --- .gitignore | 1 + php-composer-ca-bundle-rpm.patch | 12 ++++++++++++ php-composer-ca-bundle.spec | 19 +++++++++++-------- sources | 2 +- 4 files changed, 25 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 9b03e0b..177416f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /php-composer-ca-bundle-1.1.2-46afded.tgz /php-composer-ca-bundle-1.1.3-8afa52c.tgz /php-composer-ca-bundle-1.1.4-558f321.tgz +/php-composer-ca-bundle-1.2.3-f26a67e.tgz diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 54f656d..7ae8760 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -10,3 +10,15 @@ diff -up src/CaBundle.php.rpm src/CaBundle.php // cURL does not understand 'phar://' paths // see https://github.com/composer/ca-bundle/issues/10 +diff -up tests/CaBundleTest.php.rpm tests/CaBundleTest.php +--- tests/CaBundleTest.php.rpm 2019-08-01 11:14:21.577672699 +0200 ++++ tests/CaBundleTest.php 2019-08-01 11:14:31.322744408 +0200 +@@ -104,7 +104,7 @@ class CaBundleTest extends TestCase + public function testOpenBaseDir() + { + $oldValue = ini_get('open_basedir'); +- ini_set('open_basedir', realpath(__DIR__ . '/../')); ++ ini_set('open_basedir', '/usr/share/php:' . realpath(__DIR__ . '/../')); + $certFilePath = CaBundle::getSystemCaRootBundlePath(); + $validResult = CaBundle::validateCaFile($certFilePath, null); + $this->assertTrue($validResult); diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index feac3df..765703a 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 558f321c52faeb4828c03e7dc0cfe39a09e09a2d +%global gh_commit f26a67e397be0e5c00d7c52ec7b5010098e15ce5 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,8 +14,8 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.1.4 -Release: 3%{?dist} +Version: 1.2.3 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -34,12 +34,12 @@ BuildRequires: php-openssl BuildRequires: php-pcre BuildRequires: php-cli # From composer.json, "require": { -# "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5", +# "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8", # "psr/log": "^1.0", # "symfony/process": "^2.5 || ^3.0 || ^4.0" %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: phpunit6 -%global phpunit %{_bindir}/phpunit6 +%global phpunit %{_bindir}/phpunit8 BuildRequires: (php-composer(psr/log) >= 1.0 with php-composer(psr/log) < 2) BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 5) %else @@ -57,7 +57,7 @@ BuildRequires: %{_sysconfdir}/pki/tls/certs/ca-bundle.crt # From composer.json, "require": { # "ext-openssl": "*", # "ext-pcre": "*", -# "php": "^5.3.2 || ^7.0" +# "php": "^5.3.2 || ^7.0 || ^8.0" Requires: php(language) >= 5.3.2 Requires: php-openssl Requires: php-pcre @@ -120,10 +120,10 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" "php56 %{_bindir}/phpunit" php70 php71 php72 php73; do +for cmdarg in "php %{phpunit}" "php56 %{_bindir}/phpunit" "php70 %{_bindir}/phpunit6" "php71 %{_bindir}/phpunit7" php72 php73 php74; do if which $cmdarg; then set $cmdarg - $1 ${2:-%{_bindir}/phpunit6} --verbose || ret=1 + $1 ${2:-%{_bindir}/phpunit8} --verbose || ret=1 fi done exit $ret @@ -142,6 +142,9 @@ exit $ret %changelog +* Sat Aug 3 2019 Remi Collet - 1.2.3-1 +- update to 1.2.3 + * Fri Jul 26 2019 Fedora Release Engineering - 1.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index b3f1e03..ea1c002 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.1.4-558f321.tgz) = 6192f3940105930bc6876f1b212684d47185816dcc328cf96c7d43cca68dfafad6a2c02fdea2c70334a571e690469d1f6a964096c68772512ed8639fbdde44f1 +SHA512 (php-composer-ca-bundle-1.2.3-f26a67e.tgz) = 39da8b9fa1605b64a14c553b6310147954f46b38985ab9ff908cd7171c2d6b633253083fefeb0d5fe50dcc7f13176c47004b21d2c44bf1ede6fa63b541248cb7 From c71bcffea6f8b95484d18a281180d76fd2f1610f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 2 Sep 2019 08:19:50 +0200 Subject: [PATCH 03/49] update to 1.2.4 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 177416f..d8f5384 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /php-composer-ca-bundle-1.1.3-8afa52c.tgz /php-composer-ca-bundle-1.1.4-558f321.tgz /php-composer-ca-bundle-1.2.3-f26a67e.tgz +/php-composer-ca-bundle-1.2.4-10bb965.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 765703a..404b75c 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit f26a67e397be0e5c00d7c52ec7b5010098e15ce5 +%global gh_commit 10bb96592168a0f8e8f6dcde3532d9fa50b0b527 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,7 +14,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.2.3 +Version: 1.2.4 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -142,6 +142,9 @@ exit $ret %changelog +* Sun Sep 1 2019 Remi Collet - 1.2.4-1 +- update to 1.2.4 (no change) + * Sat Aug 3 2019 Remi Collet - 1.2.3-1 - update to 1.2.3 diff --git a/sources b/sources index ea1c002..968dc51 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.3-f26a67e.tgz) = 39da8b9fa1605b64a14c553b6310147954f46b38985ab9ff908cd7171c2d6b633253083fefeb0d5fe50dcc7f13176c47004b21d2c44bf1ede6fa63b541248cb7 +SHA512 (php-composer-ca-bundle-1.2.4-10bb965.tgz) = 13f52248dc063470d6bf065599a0466fd88a91f92c99467098892212d314c52a420b93e9e26dc552d57c07fdfabbe1836ea19f6c90ea02b3ab02f643c26665b0 From 3d027dfe5043427421b954eca003cc0623a9d901 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 12 Dec 2019 09:54:00 +0100 Subject: [PATCH 04/49] v1.2.5 --- .gitignore | 1 + php-composer-ca-bundle.spec | 12 ++++++++---- sources | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d8f5384..f49f90f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /php-composer-ca-bundle-1.1.4-558f321.tgz /php-composer-ca-bundle-1.2.3-f26a67e.tgz /php-composer-ca-bundle-1.2.4-10bb965.tgz +/php-composer-ca-bundle-1.2.5-62e8fc2.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 404b75c..3c8f141 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 10bb96592168a0f8e8f6dcde3532d9fa50b0b527 +%global gh_commit 62e8fc2dc550e5d6d8c9360c7721662670f58149 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,7 +14,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.2.4 +Version: 1.2.5 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -36,12 +36,12 @@ BuildRequires: php-cli # From composer.json, "require": { # "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8", # "psr/log": "^1.0", -# "symfony/process": "^2.5 || ^3.0 || ^4.0" +# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: phpunit6 %global phpunit %{_bindir}/phpunit8 BuildRequires: (php-composer(psr/log) >= 1.0 with php-composer(psr/log) < 2) -BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 5) +BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 6) %else BuildRequires: phpunit %global phpunit %{_bindir}/phpunit @@ -111,6 +111,7 @@ cat << 'EOF' | tee vendor/autoload.php require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; \Fedora\Autoloader\Dependencies::required(array( array( + '%{php_home}/Symfony5/Component/Process/autoload.php', '%{php_home}/Symfony4/Component/Process/autoload.php', '%{php_home}/Symfony3/Component/Process/autoload.php', '%{php_home}/Symfony/Component/Process/autoload.php', @@ -142,6 +143,9 @@ exit $ret %changelog +* Thu Dec 12 2019 Remi Collet - 1.2.5-1 +- update to 1.2.5 + * Sun Sep 1 2019 Remi Collet - 1.2.4-1 - update to 1.2.4 (no change) diff --git a/sources b/sources index 968dc51..7b13f5e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.4-10bb965.tgz) = 13f52248dc063470d6bf065599a0466fd88a91f92c99467098892212d314c52a420b93e9e26dc552d57c07fdfabbe1836ea19f6c90ea02b3ab02f643c26665b0 +SHA512 (php-composer-ca-bundle-1.2.5-62e8fc2.tgz) = 3de2531143360ec6313a707e597dae90b7d7d856edad4e3707331df377db92515f5efb00f75759be6006bedbe1bb601f11b5b3ba5f0d4a1942f2cdf29c0bf182 From 64fdb9f5da2e878ec93b5ddb5d42a0594af12e1a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 14 Jan 2020 09:45:31 +0100 Subject: [PATCH 05/49] v1.2.6 --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f49f90f..72fbd38 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /php-composer-ca-bundle-1.2.3-f26a67e.tgz /php-composer-ca-bundle-1.2.4-10bb965.tgz /php-composer-ca-bundle-1.2.5-62e8fc2.tgz +/php-composer-ca-bundle-1.2.6-47fe531.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 3c8f141..086c0cd 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 62e8fc2dc550e5d6d8c9360c7721662670f58149 +%global gh_commit 47fe531de31fca4a1b997f87308e7d7804348f7e %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,7 +14,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.2.5 +Version: 1.2.6 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -143,6 +143,9 @@ exit $ret %changelog +* Tue Jan 14 2020 Remi Collet - 1.2.6-1 +- update to 1.2.6 + * Thu Dec 12 2019 Remi Collet - 1.2.5-1 - update to 1.2.5 diff --git a/sources b/sources index 7b13f5e..be50ef4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.5-62e8fc2.tgz) = 3de2531143360ec6313a707e597dae90b7d7d856edad4e3707331df377db92515f5efb00f75759be6006bedbe1bb601f11b5b3ba5f0d4a1942f2cdf29c0bf182 +SHA512 (php-composer-ca-bundle-1.2.6-47fe531.tgz) = 3e371796558a812ad38c26dea59ac881bd539495143d342f8a6a7139443d5d43d171b11cc364c0c2fd694617ad293056526421afc19d7277de91f7ff30a4d520 From 1352fc411de71ce148fde189d84254278b72e4e7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 06:57:11 +0000 Subject: [PATCH 06/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 086c0cd..4b5ae63 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -15,7 +15,7 @@ Name: php-composer-ca-bundle Version: 1.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -143,6 +143,9 @@ exit $ret %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 14 2020 Remi Collet - 1.2.6-1 - update to 1.2.6 From 89778a7db15a055f255131e6dc1a066af17e28e5 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Apr 2020 10:52:56 +0200 Subject: [PATCH 07/49] v1.2.7 --- .gitignore | 1 + php-composer-ca-bundle.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 72fbd38..6418f8b 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /php-composer-ca-bundle-1.2.4-10bb965.tgz /php-composer-ca-bundle-1.2.5-62e8fc2.tgz /php-composer-ca-bundle-1.2.6-47fe531.tgz +/php-composer-ca-bundle-1.2.7-95c63ab.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 4b5ae63..72676e0 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 47fe531de31fca4a1b997f87308e7d7804348f7e +%global gh_commit 95c63ab2117a72f48f5a55da9740a3273d45b7fd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,8 +14,8 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.2.6 -Release: 2%{?dist} +Version: 1.2.7 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -143,6 +143,9 @@ exit $ret %changelog +* Wed Apr 8 2020 Remi Collet - 1.2.7-1 +- update to 1.2.7 + * Thu Jan 30 2020 Fedora Release Engineering - 1.2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index be50ef4..1524e67 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.6-47fe531.tgz) = 3e371796558a812ad38c26dea59ac881bd539495143d342f8a6a7139443d5d43d171b11cc364c0c2fd694617ad293056526421afc19d7277de91f7ff30a4d520 +SHA512 (php-composer-ca-bundle-1.2.7-95c63ab.tgz) = 13d6de73d3a9370e8b5b478b1ab7dbfafc29ef2f2d1a0e705d74cdf6af3f979288805b0a98136db84c8131c993bf3baca91d875cb0d0c5a6181d548ee48ac3a9 From 978249cdfbec693706c382bad91442bee0352251 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 20:45:30 +0000 Subject: [PATCH 08/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 72676e0..9152282 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -15,7 +15,7 @@ Name: php-composer-ca-bundle Version: 1.2.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -143,6 +143,9 @@ exit $ret %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Apr 8 2020 Remi Collet - 1.2.7-1 - update to 1.2.7 From 7e4dd8b3f6eebe83c0b330b71310d283430a608c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Aug 2020 08:29:14 +0200 Subject: [PATCH 09/49] update to 1.2.8 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 19 ++++++++++++------- sources | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 6418f8b..f33ebad 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /php-composer-ca-bundle-1.2.5-62e8fc2.tgz /php-composer-ca-bundle-1.2.6-47fe531.tgz /php-composer-ca-bundle-1.2.7-95c63ab.tgz +/php-composer-ca-bundle-1.2.8-8a7ecad.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 9152282..79ff753 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,16 +6,18 @@ # # Please, preserve the changelog entries # -%global gh_commit 95c63ab2117a72f48f5a55da9740a3273d45b7fd + +%bcond_without tests + +%global gh_commit 8a7ecad675253e4654ea05505233285377405215 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php -%global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.2.7 -Release: 2%{?dist} +Version: 1.2.8 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -28,7 +30,7 @@ Source1: makesrc.sh Patch0: %{name}-rpm.patch BuildArch: noarch -%if %{with_tests} +%if %{with tests} BuildRequires: php(language) >= 5.3.2 BuildRequires: php-openssl BuildRequires: php-pcre @@ -104,7 +106,7 @@ cp -pr src %{buildroot}%{php_home}/Composer/CaBundle %check -%if %{with_tests} +%if %{with tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 1.2.8-1 +- update to 1.2.8 (no change) + * Tue Jul 28 2020 Fedora Release Engineering - 1.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 1524e67..d565ae8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.7-95c63ab.tgz) = 13d6de73d3a9370e8b5b478b1ab7dbfafc29ef2f2d1a0e705d74cdf6af3f979288805b0a98136db84c8131c993bf3baca91d875cb0d0c5a6181d548ee48ac3a9 +SHA512 (php-composer-ca-bundle-1.2.8-8a7ecad.tgz) = e8fc25dabff81c91b761664518b76378856801c0cd755abd02ce7e4c221bbc3bffa4e50cf5922364e29a009f4d49d2bbee1f113916c91a34657b2eb963431f11 From 5d1def45ec34d32300d97e0e0f46f66c68a9c2a2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 12 Jan 2021 14:04:38 +0100 Subject: [PATCH 10/49] v1.2.9 --- .gitignore | 20 ++------------------ php-composer-ca-bundle.spec | 16 ++++++++++------ sources | 2 +- 3 files changed, 13 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index f33ebad..3e738e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,3 @@ -/php-composer-ca-bundle-1.0.2-a2995e5.tgz -/php-composer-ca-bundle-1.0.3-5df9ed0.tgz -/php-composer-ca-bundle-1.0.4-ec21a59.tgz -/php-composer-ca-bundle-1.0.5-b698f6e.tgz -/php-composer-ca-bundle-1.0.6-a795611.tgz -/php-composer-ca-bundle-1.0.7-b17e615.tgz -/php-composer-ca-bundle-1.0.8-9dd73a0.tgz -/php-composer-ca-bundle-1.0.9-36344ae.tgz -/php-composer-ca-bundle-1.1.0-943b2c4.tgz -/php-composer-ca-bundle-1.1.1-d2c0a83.tgz -/php-composer-ca-bundle-1.1.2-46afded.tgz -/php-composer-ca-bundle-1.1.3-8afa52c.tgz -/php-composer-ca-bundle-1.1.4-558f321.tgz -/php-composer-ca-bundle-1.2.3-f26a67e.tgz -/php-composer-ca-bundle-1.2.4-10bb965.tgz -/php-composer-ca-bundle-1.2.5-62e8fc2.tgz -/php-composer-ca-bundle-1.2.6-47fe531.tgz -/php-composer-ca-bundle-1.2.7-95c63ab.tgz +clog /php-composer-ca-bundle-1.2.8-8a7ecad.tgz +/php-composer-ca-bundle-1.2.9-78a0e28.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 79ff753..4f8f8f1 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 8a7ecad675253e4654ea05505233285377405215 +%global gh_commit 78a0e288fdcebf92aa2318a8d3656168da6ac1a5 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.2.8 +Version: 1.2.9 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -36,11 +36,12 @@ BuildRequires: php-openssl BuildRequires: php-pcre BuildRequires: php-cli # From composer.json, "require": { -# "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8", +# "symfony/phpunit-bridge": "^4.2 || ^5", +# "phpstan/phpstan": "^0.12.55", # "psr/log": "^1.0", # "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -BuildRequires: phpunit6 +BuildRequires: phpunit8 %global phpunit %{_bindir}/phpunit8 BuildRequires: (php-composer(psr/log) >= 1.0 with php-composer(psr/log) < 2) BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 6) @@ -123,10 +124,10 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" php72 php73 "php74 %{_bindir}/phpunit8"; do +for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80; do if which $cmdarg; then set $cmdarg - $1 ${2:-%{_bindir}/phpunit8} --verbose || ret=1 + $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 fi done exit $ret @@ -145,6 +146,9 @@ exit $ret %changelog +* Tue Jan 12 2021 Remi Collet - 1.2.9-1 +- update to 1.2.9 + * Mon Aug 24 2020 Remi Collet - 1.2.8-1 - update to 1.2.8 (no change) diff --git a/sources b/sources index d565ae8..472a60d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.8-8a7ecad.tgz) = e8fc25dabff81c91b761664518b76378856801c0cd755abd02ce7e4c221bbc3bffa4e50cf5922364e29a009f4d49d2bbee1f113916c91a34657b2eb963431f11 +SHA512 (php-composer-ca-bundle-1.2.9-78a0e28.tgz) = 5caa252b07d3f3c591907ffee65b15f06574dee40a7fb7e2516394bb77b8d9484c55d8dcc272ab45a84b0f4f97fe0f9f02cf95a809646184747161ef176eb8f0 From 7c5cfca42b7bdf9ee3f3d160d235fd21ab4a30d1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 12 Jan 2021 14:05:46 +0100 Subject: [PATCH 11/49] refresh patch --- php-composer-ca-bundle-rpm.patch | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 7ae8760..9ff37d0 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -1,7 +1,7 @@ -diff -up src/CaBundle.php.rpm src/CaBundle.php ---- src/CaBundle.php.rpm 2017-11-30 07:12:46.773928987 +0100 -+++ src/CaBundle.php 2017-11-30 07:15:28.549820032 +0100 -@@ -130,7 +130,7 @@ class CaBundle +diff -up ./src/CaBundle.php.rpm ./src/CaBundle.php +--- ./src/CaBundle.php.rpm 2021-01-12 13:54:38.000000000 +0100 ++++ ./src/CaBundle.php 2021-01-12 13:55:35.957422992 +0100 +@@ -125,7 +125,7 @@ class CaBundle */ public static function getBundledCaBundlePath() { @@ -10,15 +10,15 @@ diff -up src/CaBundle.php.rpm src/CaBundle.php // cURL does not understand 'phar://' paths // see https://github.com/composer/ca-bundle/issues/10 -diff -up tests/CaBundleTest.php.rpm tests/CaBundleTest.php ---- tests/CaBundleTest.php.rpm 2019-08-01 11:14:21.577672699 +0200 -+++ tests/CaBundleTest.php 2019-08-01 11:14:31.322744408 +0200 -@@ -104,7 +104,7 @@ class CaBundleTest extends TestCase +diff -up ./tests/CaBundleTest.php.rpm ./tests/CaBundleTest.php +--- ./tests/CaBundleTest.php.rpm 2021-01-12 13:55:35.957422992 +0100 ++++ ./tests/CaBundleTest.php 2021-01-12 13:56:54.872069486 +0100 +@@ -124,7 +124,7 @@ class CaBundleTest extends TestCase public function testOpenBaseDir() { - $oldValue = ini_get('open_basedir'); -- ini_set('open_basedir', realpath(__DIR__ . '/../')); -+ ini_set('open_basedir', '/usr/share/php:' . realpath(__DIR__ . '/../')); + $oldValue = ini_get('open_basedir') ?: ''; +- ini_set('open_basedir', dirname(__DIR__)); ++ ini_set('open_basedir', '/usr/share/php:' . dirname(__DIR__)); $certFilePath = CaBundle::getSystemCaRootBundlePath(); $validResult = CaBundle::validateCaFile($certFilePath, null); $this->assertTrue($validResult); From 4b8a1ac1acbea15e99376b0a52c6936cc38236e6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 06:28:13 +0000 Subject: [PATCH 12/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 4f8f8f1..f94ff0f 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.2.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -146,6 +146,9 @@ exit $ret %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.2.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jan 12 2021 Remi Collet - 1.2.9-1 - update to 1.2.9 From e8ee86ac5a63ae6ae405e9582da50eff290aba29 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 8 Jun 2021 06:46:50 +0200 Subject: [PATCH 13/49] update to 1.2.10 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 3e738e1..63fe3e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ clog /php-composer-ca-bundle-1.2.8-8a7ecad.tgz /php-composer-ca-bundle-1.2.9-78a0e28.tgz +/php-composer-ca-bundle-1.2.10-9fdb22c.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index f94ff0f..d541a44 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-composer-ca-bundle # -# Copyright (c) 2016-2019 Remi Collet +# Copyright (c) 2016-2021 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 78a0e288fdcebf92aa2318a8d3656168da6ac1a5 +%global gh_commit 9fdb22c2e97a614657716178093cd1da90a64aa8 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.2.9 -Release: 2%{?dist} +Version: 1.2.10 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -124,7 +124,7 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80; do +for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80 php81; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 @@ -146,6 +146,9 @@ exit $ret %changelog +* Tue Jun 8 2021 Remi Collet - 1.2.10-1 +- update to 1.2.10 (no change) + * Wed Jan 27 2021 Fedora Release Engineering - 1.2.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 472a60d..660bd1c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.9-78a0e28.tgz) = 5caa252b07d3f3c591907ffee65b15f06574dee40a7fb7e2516394bb77b8d9484c55d8dcc272ab45a84b0f4f97fe0f9f02cf95a809646184747161ef176eb8f0 +SHA512 (php-composer-ca-bundle-1.2.10-9fdb22c.tgz) = 3d8cb9c396afbcfcca4fb13a23da1eb5d2c6c61126a8af0e066af301bd01c6a95473b359991d9ef8e46695cefc0264f4a52e220e8fe29e480da7879a22ecd51c From c8decc5d1cf3d023755bb40332dbbee8e2934383 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 01:40:53 +0000 Subject: [PATCH 14/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index d541a44..de293c7 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.2.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -146,6 +146,9 @@ exit $ret %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jun 8 2021 Remi Collet - 1.2.10-1 - update to 1.2.10 (no change) From 6dfb97e709757a32805bc6582f756621b0fd1366 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Oct 2021 08:37:20 +0200 Subject: [PATCH 15/49] update to 1.2.11 (no change) allow Symfony 6 --- .gitignore | 1 + php-composer-ca-bundle.spec | 17 +++++++++++------ sources | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 63fe3e7..863b2c3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ clog /php-composer-ca-bundle-1.2.8-8a7ecad.tgz /php-composer-ca-bundle-1.2.9-78a0e28.tgz /php-composer-ca-bundle-1.2.10-9fdb22c.tgz +/php-composer-ca-bundle-1.2.11-0b072d5.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index de293c7..faa816b 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 9fdb22c2e97a614657716178093cd1da90a64aa8 +%global gh_commit 0b072d51c5a9c6f3412f7ea3ab043d6603cb2582 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.2.10 -Release: 2%{?dist} +Version: 1.2.11 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -39,12 +39,12 @@ BuildRequires: php-cli # "symfony/phpunit-bridge": "^4.2 || ^5", # "phpstan/phpstan": "^0.12.55", # "psr/log": "^1.0", -# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" +# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: phpunit8 %global phpunit %{_bindir}/phpunit8 BuildRequires: (php-composer(psr/log) >= 1.0 with php-composer(psr/log) < 2) -BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 6) +BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 7) %else BuildRequires: phpunit %global phpunit %{_bindir}/phpunit @@ -114,6 +114,7 @@ cat << 'EOF' | tee vendor/autoload.php require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; \Fedora\Autoloader\Dependencies::required(array( array( + '%{php_home}/Symfony6/Component/Process/autoload.php', '%{php_home}/Symfony5/Component/Process/autoload.php', '%{php_home}/Symfony4/Component/Process/autoload.php', '%{php_home}/Symfony3/Component/Process/autoload.php', @@ -124,7 +125,7 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80 php81; do +for cmdarg in "php %{phpunit}" php73 php74 php80 php81; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 @@ -146,6 +147,10 @@ exit $ret %changelog +* Fri Oct 1 2021 Remi Collet - 1.2.11-1 +- update to 1.2.11 (no change) +- allow Symfony 6 + * Fri Jul 23 2021 Fedora Release Engineering - 1.2.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 660bd1c..4c9877b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.10-9fdb22c.tgz) = 3d8cb9c396afbcfcca4fb13a23da1eb5d2c6c61126a8af0e066af301bd01c6a95473b359991d9ef8e46695cefc0264f4a52e220e8fe29e480da7879a22ecd51c +SHA512 (php-composer-ca-bundle-1.2.11-0b072d5.tgz) = f6f6e72267a8b48eeb72bb2fdf6f21631d14c84e440aa8aa70b79b71f751a87c4983b14954fb901f2cf9ef3b7dbc6d85d05291369d1247072acd45e96550b76e From 248967d2b3e948dffea4410a3977965b777dddae Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 27 Oct 2021 10:43:45 +0200 Subject: [PATCH 16/49] v1.3.0 --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 863b2c3..1ed47a2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ clog /php-composer-ca-bundle-1.2.9-78a0e28.tgz /php-composer-ca-bundle-1.2.10-9fdb22c.tgz /php-composer-ca-bundle-1.2.11-0b072d5.tgz +/php-composer-ca-bundle-1.3.0-6793336.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index faa816b..3bc7ded 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 0b072d51c5a9c6f3412f7ea3ab043d6603cb2582 +%global gh_commit 679333688725c7dd043ff35c547100ccf512f051 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.2.11 +Version: 1.3.0 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -147,6 +147,9 @@ exit $ret %changelog +* Wed Oct 27 2021 Remi Collet - 1.3.0-1 +- update to 1.3.0 + * Fri Oct 1 2021 Remi Collet - 1.2.11-1 - update to 1.2.11 (no change) - allow Symfony 6 diff --git a/sources b/sources index 4c9877b..7e04830 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.2.11-0b072d5.tgz) = f6f6e72267a8b48eeb72bb2fdf6f21631d14c84e440aa8aa70b79b71f751a87c4983b14954fb901f2cf9ef3b7dbc6d85d05291369d1247072acd45e96550b76e +SHA512 (php-composer-ca-bundle-1.3.0-6793336.tgz) = 1ad30c8a6619240ae1b567cd4f5b75d685282d991788fb1adca8e799d1f3a08f435a87e900f2377fd9db5d82750ff1f87a673373bb52b3a928260e1dc3070b7a From 1b544ef7cc9bdbdfd02565df80087a6ec615ecea Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 2 Nov 2021 08:21:07 +0100 Subject: [PATCH 17/49] v1.3.1 --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1ed47a2..250dc93 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ clog /php-composer-ca-bundle-1.2.10-9fdb22c.tgz /php-composer-ca-bundle-1.2.11-0b072d5.tgz /php-composer-ca-bundle-1.3.0-6793336.tgz +/php-composer-ca-bundle-1.3.1-4c67918.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 3bc7ded..eec9cf5 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 679333688725c7dd043ff35c547100ccf512f051 +%global gh_commit 4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.0 +Version: 1.3.1 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -147,6 +147,9 @@ exit $ret %changelog +* Sat Oct 30 2021 Remi Collet - 1.3.1-1 +- update to 1.3.1 + * Wed Oct 27 2021 Remi Collet - 1.3.0-1 - update to 1.3.0 diff --git a/sources b/sources index 7e04830..b08ea62 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.0-6793336.tgz) = 1ad30c8a6619240ae1b567cd4f5b75d685282d991788fb1adca8e799d1f3a08f435a87e900f2377fd9db5d82750ff1f87a673373bb52b3a928260e1dc3070b7a +SHA512 (php-composer-ca-bundle-1.3.1-4c67918.tgz) = d4e66c86d08b2f02d43e4b7a268852be5dd69de8c42558d63159dedc5b038825941db0f50ad804017ea631166cd8f6d6a963fdd1344a47396594ad6747587062 From 0c11f8b1b9eca4660122f1115aa203a55e492463 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 07:22:56 +0000 Subject: [PATCH 18/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index eec9cf5..850050e 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -147,6 +147,9 @@ exit $ret %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sat Oct 30 2021 Remi Collet - 1.3.1-1 - update to 1.3.1 From 31c8426cb98f75b3da35d519419e44e086f4e7b6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 25 May 2022 14:32:15 +0200 Subject: [PATCH 19/49] update to 1.3.2 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 250dc93..1909c78 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ clog /php-composer-ca-bundle-1.2.11-0b072d5.tgz /php-composer-ca-bundle-1.3.0-6793336.tgz /php-composer-ca-bundle-1.3.1-4c67918.tgz +/php-composer-ca-bundle-1.3.2-fd5dd44.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 850050e..4bc2a42 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-composer-ca-bundle # -# Copyright (c) 2016-2021 Remi Collet +# Copyright (c) 2016-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b +%global gh_commit fd5dd441932a7e10ca6e5b490e272d34c8430640 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.1 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -125,7 +125,7 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" php73 php74 php80 php81; do +for cmdarg in "php %{phpunit}" php74 php80 php81 php82; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 @@ -147,6 +147,9 @@ exit $ret %changelog +* Wed May 25 2022 Remi Collet - 1.3.2-1 +- update to 1.3.2 (no change) + * Fri Jan 21 2022 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index b08ea62..1a6e506 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.1-4c67918.tgz) = d4e66c86d08b2f02d43e4b7a268852be5dd69de8c42558d63159dedc5b038825941db0f50ad804017ea631166cd8f6d6a963fdd1344a47396594ad6747587062 +SHA512 (php-composer-ca-bundle-1.3.2-fd5dd44.tgz) = 3917110e73027185f754b8252ba14271bbe1a9b5fa9b91b7759fc7eab758702c12a3de2e1c1ff98d28bbedea369b33cd4701017aef11168b06a1e6f41b9eb58c From 8d2c4e094efb997b632eb28696940b36a6f484f3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 20 Jul 2022 09:57:40 +0200 Subject: [PATCH 20/49] update to 1.3.3 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1909c78..b8fcd39 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ clog /php-composer-ca-bundle-1.3.0-6793336.tgz /php-composer-ca-bundle-1.3.1-4c67918.tgz /php-composer-ca-bundle-1.3.2-fd5dd44.tgz +/php-composer-ca-bundle-1.3.3-30897ed.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 4bc2a42..7045fac 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit fd5dd441932a7e10ca6e5b490e272d34c8430640 +%global gh_commit 30897edbfb15e784fe55587b4f73ceefd3c4d98c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.2 +Version: 1.3.3 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -147,6 +147,9 @@ exit $ret %changelog +* Wed Jul 20 2022 Remi Collet - 1.3.3-1 +- update to 1.3.3 (no change) + * Wed May 25 2022 Remi Collet - 1.3.2-1 - update to 1.3.2 (no change) diff --git a/sources b/sources index 1a6e506..1daff1d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.2-fd5dd44.tgz) = 3917110e73027185f754b8252ba14271bbe1a9b5fa9b91b7759fc7eab758702c12a3de2e1c1ff98d28bbedea369b33cd4701017aef11168b06a1e6f41b9eb58c +SHA512 (php-composer-ca-bundle-1.3.3-30897ed.tgz) = b1f56eeedf3659a1aeda989348b8c5efcf5bff4049219315666ca2acb8b05380591db2e179fd8e9fc5f353b8b43f0c2ffdce6bb86d7e1ae6b8024e0a943b8b1f From 5d0ed5f72350ac940214db42fb8287a3121eb3e5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 13:16:32 +0000 Subject: [PATCH 21/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 7045fac..af6a57b 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -147,6 +147,9 @@ exit $ret %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Jul 20 2022 Remi Collet - 1.3.3-1 - update to 1.3.3 (no change) From 795fdc775e11c1c89945cec3a733eb7c59f52d63 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 12 Oct 2022 14:39:25 +0200 Subject: [PATCH 22/49] update to 1.3.4 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b8fcd39..5f9411c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ clog /php-composer-ca-bundle-1.3.1-4c67918.tgz /php-composer-ca-bundle-1.3.2-fd5dd44.tgz /php-composer-ca-bundle-1.3.3-30897ed.tgz +/php-composer-ca-bundle-1.3.4-69098ec.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index af6a57b..ceaa0da 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 30897edbfb15e784fe55587b4f73ceefd3c4d98c +%global gh_commit 69098eca243998b53eed7a48d82dedd28b447cd5 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.3 -Release: 2%{?dist} +Version: 1.3.4 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -147,6 +147,9 @@ exit $ret %changelog +* Wed Oct 12 2022 Remi Collet - 1.3.4-1 +- update to 1.3.4 (no change) + * Fri Jul 22 2022 Fedora Release Engineering - 1.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 1daff1d..d73074b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.3-30897ed.tgz) = b1f56eeedf3659a1aeda989348b8c5efcf5bff4049219315666ca2acb8b05380591db2e179fd8e9fc5f353b8b43f0c2ffdce6bb86d7e1ae6b8024e0a943b8b1f +SHA512 (php-composer-ca-bundle-1.3.4-69098ec.tgz) = 19f7c02f8ea4d5f841081371541a57bbbd5e51501ca6cdc291c09b8d13e127570e9b0765ac51f2f0f1f173dae7ebbd48e52e24eaa60e95aaad5be4cc7cf983aa From b3b2c38e04cacf2d276a0d8a057ea2912b02bad6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 11 Jan 2023 10:11:38 +0100 Subject: [PATCH 23/49] update to 1.3.5 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5f9411c..5bf2b73 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ clog /php-composer-ca-bundle-1.3.2-fd5dd44.tgz /php-composer-ca-bundle-1.3.3-30897ed.tgz /php-composer-ca-bundle-1.3.4-69098ec.tgz +/php-composer-ca-bundle-1.3.5-74780cc.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index ceaa0da..018e19b 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-composer-ca-bundle # -# Copyright (c) 2016-2022 Remi Collet +# Copyright (c) 2016-2023 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 69098eca243998b53eed7a48d82dedd28b447cd5 +%global gh_commit 74780ccf8c19d6acb8d65c5f39cd72110e132bbd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.4 +Version: 1.3.5 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -147,6 +147,9 @@ exit $ret %changelog +* Wed Jan 11 2023 Remi Collet - 1.3.5-1 +- update to 1.3.5 (no change) + * Wed Oct 12 2022 Remi Collet - 1.3.4-1 - update to 1.3.4 (no change) diff --git a/sources b/sources index d73074b..bb3cc56 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.4-69098ec.tgz) = 19f7c02f8ea4d5f841081371541a57bbbd5e51501ca6cdc291c09b8d13e127570e9b0765ac51f2f0f1f173dae7ebbd48e52e24eaa60e95aaad5be4cc7cf983aa +SHA512 (php-composer-ca-bundle-1.3.5-74780cc.tgz) = 5d87a3389a39a99766e7b4fa607557f8a4d3ea00ef8ea10aa6867cf10b4707060fd12a23e91ce439ba1d958145ffdc9278a26be36075b840df3326baefc1099e From 3f6d3d803a5b54dd5b784abdfb2cfc040ace906c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 08:20:02 +0000 Subject: [PATCH 24/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 018e19b..c0b1075 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -147,6 +147,9 @@ exit $ret %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Jan 11 2023 Remi Collet - 1.3.5-1 - update to 1.3.5 (no change) From 0958a40fe0efce86e93f7df0fc1fd78180b7eac7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 8 Jun 2023 08:32:19 +0200 Subject: [PATCH 25/49] update to 1.3.6 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 5bf2b73..a49c0c9 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ clog /php-composer-ca-bundle-1.3.3-30897ed.tgz /php-composer-ca-bundle-1.3.4-69098ec.tgz /php-composer-ca-bundle-1.3.5-74780cc.tgz +/php-composer-ca-bundle-1.3.6-90d087e.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index c0b1075..bde9af4 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 74780ccf8c19d6acb8d65c5f39cd72110e132bbd +%global gh_commit 90d087e988ff194065333d16bc5cf649872d9cdb %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.5 -Release: 2%{?dist} +Version: 1.3.6 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -83,7 +83,7 @@ Autoloader: %{php_home}/Composer/CaBundle/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} -%patch0 -p0 -b .rpm +%patch -P0 -p0 -b .rpm find src -name \*.rpm -exec rm {} \; cat << 'EOF' | tee src/autoload.php @@ -147,6 +147,9 @@ exit $ret %changelog +* Thu Jun 8 2023 Remi Collet - 1.3.6-1 +- update to 1.3.6 (no change) + * Fri Jan 20 2023 Fedora Release Engineering - 1.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index bb3cc56..58fd055 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.5-74780cc.tgz) = 5d87a3389a39a99766e7b4fa607557f8a4d3ea00ef8ea10aa6867cf10b4707060fd12a23e91ce439ba1d958145ffdc9278a26be36075b840df3326baefc1099e +SHA512 (php-composer-ca-bundle-1.3.6-90d087e.tgz) = 5c45d96606ee5f9fda86928537f48a815cda765a3668980eac39d053cabf5be53f6564d106d2e66e50e6785a13352171ed333104c9548bc59141178b24890d80 From 9aa242a133cdd1c95b362735cb68e338d702679a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 04:07:48 +0000 Subject: [PATCH 26/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index bde9af4..8ebf936 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -147,6 +147,9 @@ exit $ret %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jun 8 2023 Remi Collet - 1.3.6-1 - update to 1.3.6 (no change) From 3978c7751e5a86728cdfdb1452b27fe5575ab99e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 31 Aug 2023 07:58:20 +0200 Subject: [PATCH 27/49] update to 1.3.7 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index a49c0c9..399f93b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ clog /php-composer-ca-bundle-1.3.4-69098ec.tgz /php-composer-ca-bundle-1.3.5-74780cc.tgz /php-composer-ca-bundle-1.3.6-90d087e.tgz +/php-composer-ca-bundle-1.3.7-76e4633.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 8ebf936..fd43b4d 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,7 +1,7 @@ # remirepo/fedora spec file for php-composer-ca-bundle # # Copyright (c) 2016-2023 Remi Collet -# License: CC-BY-SA +# License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 90d087e988ff194065333d16bc5cf649872d9cdb +%global gh_commit 76e46335014860eec1aa5a724799a00a2e47cc85 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.6 -Release: 2%{?dist} +Version: 1.3.7 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -125,7 +125,7 @@ require_once '%{buildroot}%{php_home}/Composer/CaBundle/autoload.php'; EOF ret=0 -for cmdarg in "php %{phpunit}" php74 php80 php81 php82; do +for cmdarg in "php %{phpunit}" php80 php81 php82 php83; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 @@ -147,6 +147,9 @@ exit $ret %changelog +* Thu Aug 31 2023 Remi Collet - 1.3.7-1 +- update to 1.3.7 (no change) + * Fri Jul 21 2023 Fedora Release Engineering - 1.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index 58fd055..601f6c3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.6-90d087e.tgz) = 5c45d96606ee5f9fda86928537f48a815cda765a3668980eac39d053cabf5be53f6564d106d2e66e50e6785a13352171ed333104c9548bc59141178b24890d80 +SHA512 (php-composer-ca-bundle-1.3.7-76e4633.tgz) = 928db2124febe041a23bffcc9d338c0a833cc74f16c3a68a9a92c4f0199520f1e2fb591bd28e3a3f2b821b7202d6ebb41060c11432258a8d5882abf5c6f3d3ad From 3b0a85ca199f1e6f888608bfdeb6004bcd1711e4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 18 Dec 2023 15:24:46 +0100 Subject: [PATCH 28/49] update to 1.4.0 (no change) drop build dependencies on symfony/process and psr/log --- .gitignore | 1 + php-composer-ca-bundle.spec | 41 ++++++++++++------------------------- sources | 2 +- 3 files changed, 15 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 399f93b..4d9a3c1 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ clog /php-composer-ca-bundle-1.3.5-74780cc.tgz /php-composer-ca-bundle-1.3.6-90d087e.tgz /php-composer-ca-bundle-1.3.7-76e4633.tgz +/php-composer-ca-bundle-1.4.0-b66d11b.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index fd43b4d..10b4256 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 76e46335014860eec1aa5a724799a00a2e47cc85 +%global gh_commit b66d11b7479109ab547f9405b97205640b17d385 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.3.7 +Version: 1.4.0 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -39,18 +39,8 @@ BuildRequires: php-cli # "symfony/phpunit-bridge": "^4.2 || ^5", # "phpstan/phpstan": "^0.12.55", # "psr/log": "^1.0", -# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" -%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -BuildRequires: phpunit8 -%global phpunit %{_bindir}/phpunit8 -BuildRequires: (php-composer(psr/log) >= 1.0 with php-composer(psr/log) < 2) -BuildRequires: (php-composer(symfony/process) >= 2.5 with php-composer(symfony/process) < 7) -%else -BuildRequires: phpunit -%global phpunit %{_bindir}/phpunit -BuildRequires: php-PsrLog -BuildRequires: php-symfony-process -%endif +# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" +BuildRequires: phpunit10 # Autoloader BuildRequires: php-composer(fedora/autoloader) # ca-certificates @@ -112,23 +102,14 @@ mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 1.4.0-1 +- update to 1.4.0 (no change) +- drop build dependencies on symfony/process and psr/log + * Thu Aug 31 2023 Remi Collet - 1.3.7-1 - update to 1.3.7 (no change) diff --git a/sources b/sources index 601f6c3..fab2372 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.3.7-76e4633.tgz) = 928db2124febe041a23bffcc9d338c0a833cc74f16c3a68a9a92c4f0199520f1e2fb591bd28e3a3f2b821b7202d6ebb41060c11432258a8d5882abf5c6f3d3ad +SHA512 (php-composer-ca-bundle-1.4.0-b66d11b.tgz) = 000cfcca55220f2e8361f40436e3c00bb8bedbc69e00bfd5911f9ea21d75c63b0d26dfa59979313d983f7f556cfacf91dbfc9a7747c8fb07c79253a3d4e76ba0 From 1c29977e75482c0a5719d2669c95731746c58e55 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 20:44:15 +0000 Subject: [PATCH 29/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 10b4256..a11547b 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -128,6 +128,9 @@ exit $ret %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 1.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Mon Dec 18 2023 Remi Collet - 1.4.0-1 - update to 1.4.0 (no change) - drop build dependencies on symfony/process and psr/log From 314a42d43ce2bdadd765d9fbe9334c0347eb3c21 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 22:30:21 +0000 Subject: [PATCH 30/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index a11547b..b065c39 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -17,7 +17,7 @@ Name: php-composer-ca-bundle Version: 1.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -128,6 +128,9 @@ exit $ret %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 1.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 1.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From ecbc79d3280bc56d9b3e4cb523bb92174a6fc89e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 26 Feb 2024 09:21:38 +0100 Subject: [PATCH 31/49] v1.4.1 --- .gitignore | 1 + php-composer-ca-bundle.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 4d9a3c1..d2c0803 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ clog /php-composer-ca-bundle-1.3.6-90d087e.tgz /php-composer-ca-bundle-1.3.7-76e4633.tgz /php-composer-ca-bundle-1.4.0-b66d11b.tgz +/php-composer-ca-bundle-1.4.1-3ce2401.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index b065c39..9aaae81 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-composer-ca-bundle # -# Copyright (c) 2016-2023 Remi Collet +# Copyright (c) 2016-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit b66d11b7479109ab547f9405b97205640b17d385 +%global gh_commit 3ce240142f6d59b808dd65c1f52f7a1c252e6cfd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.4.0 -Release: 3%{?dist} +Version: 1.4.1 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -128,6 +128,9 @@ exit $ret %changelog +* Mon Feb 26 2024 Remi Collet - 1.4.1-1 +- update to 1.4.1 + * Thu Jan 25 2024 Fedora Release Engineering - 1.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index fab2372..b81c79b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.4.0-b66d11b.tgz) = 000cfcca55220f2e8361f40436e3c00bb8bedbc69e00bfd5911f9ea21d75c63b0d26dfa59979313d983f7f556cfacf91dbfc9a7747c8fb07c79253a3d4e76ba0 +SHA512 (php-composer-ca-bundle-1.4.1-3ce2401.tgz) = 9cb48265e6228c2545229fa46bdd9ace576b84c7e5ce29e3a2f9317ff2fa94a9c507c26b889ea69998caa8df7f20a7d1bb31aeb4bf0df69ba9321f5277a57aac From 7cb6dcbe15aa266d798ec9c6064c207652749ea0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 14 Mar 2024 14:49:03 +0100 Subject: [PATCH 32/49] update to 1.4.2 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d2c0803..c4e8681 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ clog /php-composer-ca-bundle-1.3.7-76e4633.tgz /php-composer-ca-bundle-1.4.0-b66d11b.tgz /php-composer-ca-bundle-1.4.1-3ce2401.tgz +/php-composer-ca-bundle-1.4.2-18fc0ab.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 9aaae81..7a46ef5 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 3ce240142f6d59b808dd65c1f52f7a1c252e6cfd +%global gh_commit 18fc0ab083a48f85bfee31f3786537353b8a8403 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.4.1 +Version: 1.4.2 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -128,6 +128,9 @@ exit $ret %changelog +* Thu Mar 14 2024 Remi Collet - 1.4.2-1 +- update to 1.4.2 (no change) + * Mon Feb 26 2024 Remi Collet - 1.4.1-1 - update to 1.4.1 diff --git a/sources b/sources index b81c79b..f3d9c9a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.4.1-3ce2401.tgz) = 9cb48265e6228c2545229fa46bdd9ace576b84c7e5ce29e3a2f9317ff2fa94a9c507c26b889ea69998caa8df7f20a7d1bb31aeb4bf0df69ba9321f5277a57aac +SHA512 (php-composer-ca-bundle-1.4.2-18fc0ab.tgz) = 62f80f74661eb6df7243d9459d744dc04b273741b7917cbb5bc96534c2b15a43c0ba45ab5e86065b0b87109cd57f28bb7b5548b8aa40854664bf4efd2ce6193f From 4f0e20baa91e66b1268acf86bdb036c3972e6b9e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 15 Mar 2024 15:43:48 +0100 Subject: [PATCH 33/49] update to 1.5.0 raise dependency on PHP 7.2 --- .gitignore | 1 + php-composer-ca-bundle.spec | 18 +++++++++++------- sources | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index c4e8681..b217adb 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ clog /php-composer-ca-bundle-1.4.0-b66d11b.tgz /php-composer-ca-bundle-1.4.1-3ce2401.tgz /php-composer-ca-bundle-1.4.2-18fc0ab.tgz +/php-composer-ca-bundle-1.5.0-0c5ccfc.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 7a46ef5..1397e85 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 18fc0ab083a48f85bfee31f3786537353b8a8403 +%global gh_commit 0c5ccfcfea312b5c5a190a21ac5cef93f74baf99 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.4.2 +Version: 1.5.0 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -31,15 +31,15 @@ Patch0: %{name}-rpm.patch BuildArch: noarch %if %{with tests} -BuildRequires: php(language) >= 5.3.2 +BuildRequires: php(language) >= 7.2 BuildRequires: php-openssl BuildRequires: php-pcre BuildRequires: php-cli # From composer.json, "require": { # "symfony/phpunit-bridge": "^4.2 || ^5", -# "phpstan/phpstan": "^0.12.55", +# "phpstan/phpstan": "^1.10", # "psr/log": "^1.0", -# "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" +# "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" BuildRequires: phpunit10 # Autoloader BuildRequires: php-composer(fedora/autoloader) @@ -50,8 +50,8 @@ BuildRequires: %{_sysconfdir}/pki/tls/certs/ca-bundle.crt # From composer.json, "require": { # "ext-openssl": "*", # "ext-pcre": "*", -# "php": "^5.3.2 || ^7.0 || ^8.0" -Requires: php(language) >= 5.3.2 +# "php": "^7.2 || ^8.0" +Requires: php(language) >= 7.2 Requires: php-openssl Requires: php-pcre # From phpcompatinfo report for version 1.0.3 @@ -128,6 +128,10 @@ exit $ret %changelog +* Fri Mar 15 2024 Remi Collet - 1.5.0-1 +- update to 1.5.0 +- raise dependency on PHP 7.2 + * Thu Mar 14 2024 Remi Collet - 1.4.2-1 - update to 1.4.2 (no change) diff --git a/sources b/sources index f3d9c9a..0b841e0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.4.2-18fc0ab.tgz) = 62f80f74661eb6df7243d9459d744dc04b273741b7917cbb5bc96534c2b15a43c0ba45ab5e86065b0b87109cd57f28bb7b5548b8aa40854664bf4efd2ce6193f +SHA512 (php-composer-ca-bundle-1.5.0-0c5ccfc.tgz) = e5df9626feffee1a3bab6389eb1b202deff4fa409162b26055a3fde31f79016dd2f0e9e4aca462770c496f40560c5cfbd0ae670b9953ce285ee0b9b5c802edad From ff7025431e1a9f045deab7f2186cb91945e0d88d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 15 Mar 2024 15:51:22 +0100 Subject: [PATCH 34/49] refresh patch --- php-composer-ca-bundle-rpm.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 9ff37d0..3dfdc65 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -13,8 +13,8 @@ diff -up ./src/CaBundle.php.rpm ./src/CaBundle.php diff -up ./tests/CaBundleTest.php.rpm ./tests/CaBundleTest.php --- ./tests/CaBundleTest.php.rpm 2021-01-12 13:55:35.957422992 +0100 +++ ./tests/CaBundleTest.php 2021-01-12 13:56:54.872069486 +0100 -@@ -124,7 +124,7 @@ class CaBundleTest extends TestCase - public function testOpenBaseDir() +@@ -97,7 +97,7 @@ class CaBundleTest extends TestCase + public function testOpenBaseDir(): void { $oldValue = ini_get('open_basedir') ?: ''; - ini_set('open_basedir', dirname(__DIR__)); From 35f1420f8ee623ba4b9028913e525f4dde7554bf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 9 Jul 2024 10:35:37 +0200 Subject: [PATCH 35/49] update to 1.5.1 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 10 ++++++---- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b217adb..1df2490 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ clog /php-composer-ca-bundle-1.4.1-3ce2401.tgz /php-composer-ca-bundle-1.4.2-18fc0ab.tgz /php-composer-ca-bundle-1.5.0-0c5ccfc.tgz +/php-composer-ca-bundle-1.5.1-063d9aa.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 1397e85..acec72f 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 0c5ccfcfea312b5c5a190a21ac5cef93f74baf99 +%global gh_commit 063d9aa8696582f5a41dffbbaf3c81024f0a604a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.0 +Version: 1.5.1 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -107,7 +107,7 @@ EOF ret=0 %{_bindir}/phpunit10 --migrate-configuration -for cmd in php php81 php82 php83; do +for cmd in php php81 php82 php83 php84; do if which $cmd; then $cmd %{_bindir}/phpunit10 --no-coverage || ret=1 fi @@ -119,7 +119,6 @@ exit $ret %files -%{!?_licensedir:%global license %%doc} %license LICENSE %doc composer.json %doc *.md @@ -128,6 +127,9 @@ exit $ret %changelog +* Tue Jul 9 2024 Remi Collet - 1.5.1-1 +- update to 1.5.1 (no change) + * Fri Mar 15 2024 Remi Collet - 1.5.0-1 - update to 1.5.0 - raise dependency on PHP 7.2 diff --git a/sources b/sources index 0b841e0..d0569dc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.0-0c5ccfc.tgz) = e5df9626feffee1a3bab6389eb1b202deff4fa409162b26055a3fde31f79016dd2f0e9e4aca462770c496f40560c5cfbd0ae670b9953ce285ee0b9b5c802edad +SHA512 (php-composer-ca-bundle-1.5.1-063d9aa.tgz) = 12ef0cbfaaa83ee64af03aab6b725f5489e90bdf767f1f352acc76dfd70b8c8c3ca60caaafaa8485be1fa547518a02301f529f843a5fade963a0cc0552dc0200 From 2652f15cb1f1021a69fce12d3f7b828eb6e60f72 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 06:46:37 +0000 Subject: [PATCH 36/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index acec72f..c2d683a 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.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -127,6 +127,9 @@ exit $ret %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Tue Jul 9 2024 Remi Collet - 1.5.1-1 - update to 1.5.1 (no change) From 5f59bede120298bb50d7ac93700c1061b10f75f7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 25 Sep 2024 16:49:42 +0200 Subject: [PATCH 37/49] update to 1.5.2 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 1df2490..7b8ea71 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ clog /php-composer-ca-bundle-1.4.2-18fc0ab.tgz /php-composer-ca-bundle-1.5.0-0c5ccfc.tgz /php-composer-ca-bundle-1.5.1-063d9aa.tgz +/php-composer-ca-bundle-1.5.2-48a7928.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index c2d683a..19cddbb 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 063d9aa8696582f5a41dffbbaf3c81024f0a604a +%global gh_commit 48a792895a2b7a6ee65dd5442c299d7b835b6137 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.1 -Release: 2%{?dist} +Version: 1.5.2 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -36,7 +36,7 @@ BuildRequires: php-openssl BuildRequires: php-pcre BuildRequires: php-cli # From composer.json, "require": { -# "symfony/phpunit-bridge": "^4.2 || ^5", +# "symfony/phpunit-bridge": "^8 || ^9", # "phpstan/phpstan": "^1.10", # "psr/log": "^1.0", # "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" @@ -127,6 +127,9 @@ exit $ret %changelog +* Wed Sep 25 2024 Remi Collet - 1.5.2-1 +- update to 1.5.2 (no change) + * Fri Jul 19 2024 Fedora Release Engineering - 1.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index d0569dc..865ce99 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.1-063d9aa.tgz) = 12ef0cbfaaa83ee64af03aab6b725f5489e90bdf767f1f352acc76dfd70b8c8c3ca60caaafaa8485be1fa547518a02301f529f843a5fade963a0cc0552dc0200 +SHA512 (php-composer-ca-bundle-1.5.2-48a7928.tgz) = 02d6459673e52fbabef6999f424588531a5c6a4728ac66d5d7332a1dfffdf083d07469b99ca6f89adac7d3717ed938a1fbccd117e86fec65c665b0767d0a7314 From a3563dc19ba18ed579225b2f114093504842f8e0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Nov 2024 12:49:55 +0100 Subject: [PATCH 38/49] v1.5.3 --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7b8ea71..63d7c88 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ clog /php-composer-ca-bundle-1.5.0-0c5ccfc.tgz /php-composer-ca-bundle-1.5.1-063d9aa.tgz /php-composer-ca-bundle-1.5.2-48a7928.tgz +/php-composer-ca-bundle-1.5.3-3b1fc3f.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 19cddbb..bf5503c 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 48a792895a2b7a6ee65dd5442c299d7b835b6137 +%global gh_commit 3b1fc3f0be055baa7c6258b1467849c3e8204eb2 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.2 +Version: 1.5.3 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,9 @@ exit $ret %changelog +* Mon Nov 4 2024 Remi Collet - 1.5.3-1 +- update to 1.5.3 + * Wed Sep 25 2024 Remi Collet - 1.5.2-1 - update to 1.5.2 (no change) diff --git a/sources b/sources index 865ce99..36b1935 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.2-48a7928.tgz) = 02d6459673e52fbabef6999f424588531a5c6a4728ac66d5d7332a1dfffdf083d07469b99ca6f89adac7d3717ed938a1fbccd117e86fec65c665b0767d0a7314 +SHA512 (php-composer-ca-bundle-1.5.3-3b1fc3f.tgz) = f6c0715d7d017baa5245d25ffba3bf2fb90922ea7a34df64d58cc7d3fe5a40bec7ebea47a50ae335a173e9820265e2e0aa1056edfb186c42741a0dfce07e2fe7 From 6aad7865929775cdb2909bb884809604cbd92805 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 28 Nov 2024 08:35:26 +0100 Subject: [PATCH 39/49] update to 1.5.4 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 63d7c88..0ef960b 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ clog /php-composer-ca-bundle-1.5.1-063d9aa.tgz /php-composer-ca-bundle-1.5.2-48a7928.tgz /php-composer-ca-bundle-1.5.3-3b1fc3f.tgz +/php-composer-ca-bundle-1.5.4-bc05935.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index bf5503c..2295798 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 3b1fc3f0be055baa7c6258b1467849c3e8204eb2 +%global gh_commit bc0593537a463e55cadf45fd938d23b75095b7e1 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.3 +Version: 1.5.4 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,9 @@ exit $ret %changelog +* Thu Nov 28 2024 Remi Collet - 1.5.4-1 +- update to 1.5.4 (no change) + * Mon Nov 4 2024 Remi Collet - 1.5.3-1 - update to 1.5.3 diff --git a/sources b/sources index 36b1935..ab6a353 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.3-3b1fc3f.tgz) = f6c0715d7d017baa5245d25ffba3bf2fb90922ea7a34df64d58cc7d3fe5a40bec7ebea47a50ae335a173e9820265e2e0aa1056edfb186c42741a0dfce07e2fe7 +SHA512 (php-composer-ca-bundle-1.5.4-bc05935.tgz) = 183ef925701edd942afc711f56cff298410f23abaca8e93e34796803cd4005a3da50c05eb4c6272b8ab1325138337de09aa5335b20e984db3935d7ac384a4b90 From 682607eb4c819179a624a3e620da88c1e0bf669f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Jan 2025 08:37:03 +0100 Subject: [PATCH 40/49] update to 1.5.5 (no change) re-license spec file to CECILL-2.1 --- .gitignore | 1 + php-composer-ca-bundle.spec | 14 +++++++++----- sources | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0ef960b..65e4e56 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ clog /php-composer-ca-bundle-1.5.2-48a7928.tgz /php-composer-ca-bundle-1.5.3-3b1fc3f.tgz /php-composer-ca-bundle-1.5.4-bc05935.tgz +/php-composer-ca-bundle-1.5.5-08c50d5.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 2295798..701fedb 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -1,22 +1,22 @@ # remirepo/fedora spec file for php-composer-ca-bundle # -# Copyright (c) 2016-2024 Remi Collet -# License: CC-BY-SA-4.0 -# http://creativecommons.org/licenses/by-sa/4.0/ +# SPDX-FileCopyrightText: Copyright 2016-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 bc0593537a463e55cadf45fd938d23b75095b7e1 +%global gh_commit 08c50d5ec4c6ced7d0271d2862dec8c1033283e6 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.4 +Version: 1.5.5 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,10 @@ exit $ret %changelog +* Thu Jan 9 2025 Remi Collet - 1.5.5-1 +- update to 1.5.5 (no change) +- re-license spec file to CECILL-2.1 + * Thu Nov 28 2024 Remi Collet - 1.5.4-1 - update to 1.5.4 (no change) diff --git a/sources b/sources index ab6a353..7fd56ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.4-bc05935.tgz) = 183ef925701edd942afc711f56cff298410f23abaca8e93e34796803cd4005a3da50c05eb4c6272b8ab1325138337de09aa5335b20e984db3935d7ac384a4b90 +SHA512 (php-composer-ca-bundle-1.5.5-08c50d5.tgz) = 837cbce3bfeaaa9e0a78cc5544a59f570014071785fc4aa12cbbe9ffd4ef4a0efcd53bfe5b9a7568fdd8cca89627ab1ce9ebd0c97204801e83d5ce39d10db36c From 47b96de73ac8d2eb565ae144ae8bdf155d9c29b5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 08:57:29 +0000 Subject: [PATCH 41/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 701fedb..ffd50d1 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.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -127,6 +127,9 @@ exit $ret %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Jan 9 2025 Remi Collet - 1.5.5-1 - update to 1.5.5 (no change) - re-license spec file to CECILL-2.1 From 70e90838b2e88d4c48086f988e68bf94c505432c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 6 Mar 2025 15:51:17 +0100 Subject: [PATCH 42/49] update to 1.5.6 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 65e4e56..95c3211 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ clog /php-composer-ca-bundle-1.5.3-3b1fc3f.tgz /php-composer-ca-bundle-1.5.4-bc05935.tgz /php-composer-ca-bundle-1.5.5-08c50d5.tgz +/php-composer-ca-bundle-1.5.6-f65c239.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index ffd50d1..175990b 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit 08c50d5ec4c6ced7d0271d2862dec8c1033283e6 +%global gh_commit f65c239c970e7f072f067ab78646e9f0b2935175 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.5 -Release: 2%{?dist} +Version: 1.5.6 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -127,6 +127,9 @@ exit $ret %changelog +* Thu Mar 6 2025 Remi Collet - 1.5.6-1 +- update to 1.5.6 (no change) + * Sat Jan 18 2025 Fedora Release Engineering - 1.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild diff --git a/sources b/sources index 7fd56ae..863a26a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.5-08c50d5.tgz) = 837cbce3bfeaaa9e0a78cc5544a59f570014071785fc4aa12cbbe9ffd4ef4a0efcd53bfe5b9a7568fdd8cca89627ab1ce9ebd0c97204801e83d5ce39d10db36c +SHA512 (php-composer-ca-bundle-1.5.6-f65c239.tgz) = 429cbbdb3b22fd003aea2aada641d084b75f1614373a9131c5e3745dca18e76fd8ba23a918fd767b7b8692a82e3d41f28e28df00ac7fbbe608cf1b0c69449c68 From dfb38a43591abec43c9479e916279986748a3650 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 27 May 2025 07:11:29 +0200 Subject: [PATCH 43/49] update to 1.5.7 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 95c3211..ce9c32d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ clog /php-composer-ca-bundle-1.5.4-bc05935.tgz /php-composer-ca-bundle-1.5.5-08c50d5.tgz /php-composer-ca-bundle-1.5.6-f65c239.tgz +/php-composer-ca-bundle-1.5.7-d665d22.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 175990b..6e4972f 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit f65c239c970e7f072f067ab78646e9f0b2935175 +%global gh_commit d665d22c417056996c59019579f1967dfe5c1e82 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.6 +Version: 1.5.7 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,9 @@ exit $ret %changelog +* Tue May 27 2025 Remi Collet - 1.5.7-1 +- update to 1.5.7 (no change) + * Thu Mar 6 2025 Remi Collet - 1.5.6-1 - update to 1.5.6 (no change) diff --git a/sources b/sources index 863a26a..3583146 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.6-f65c239.tgz) = 429cbbdb3b22fd003aea2aada641d084b75f1614373a9131c5e3745dca18e76fd8ba23a918fd767b7b8692a82e3d41f28e28df00ac7fbbe608cf1b0c69449c68 +SHA512 (php-composer-ca-bundle-1.5.7-d665d22.tgz) = 5c88fe802ddf13cfb65615117a8556abc6027ee058d0e37bf288277709fb5760177d04c3b47e80a09447cd5a25585814d281e2a3d22245e55ab94cf5e9e912f4 From 7e38a4d6f5b8862b39ee09147a90d9138639f234 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:09:50 +0000 Subject: [PATCH 44/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-composer-ca-bundle.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 6e4972f..6c0a9b5 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: 2%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -127,6 +127,9 @@ exit $ret %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.5.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue May 27 2025 Remi Collet - 1.5.7-1 - update to 1.5.7 (no change) From f1c83ae164bb3890170f235d5e8f01e9a734b838 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 28 Jul 2025 07:24:56 +0200 Subject: [PATCH 45/49] fix system certificates path rhbz#2383719 --- php-composer-ca-bundle-rpm.patch | 2 +- php-composer-ca-bundle.spec | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 3dfdc65..04bd4c1 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -6,7 +6,7 @@ diff -up ./src/CaBundle.php.rpm ./src/CaBundle.php public static function getBundledCaBundlePath() { - $caBundleFile = __DIR__.'/../res/cacert.pem'; -+ $caBundleFile = '/etc/pki/tls/certs/ca-bundle.crt'; // System CA, always ++ $caBundleFile = '/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem'; // System CA, always // cURL does not understand 'phar://' paths // see https://github.com/composer/ca-bundle/issues/10 diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 6c0a9b5..9275177 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: 2%{?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 - 1.5.7-3 +- fix system certificates path rhbz#2383719 + * Fri Jul 25 2025 Fedora Release Engineering - 1.5.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 641fe9f847bd421e6433cfc90ebe471904393441 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 28 Jul 2025 08:00:10 +0200 Subject: [PATCH 46/49] fix system certificates path rhbz#2383719 --- php-composer-ca-bundle.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 9275177..2c71625 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: 3%{?dist} +Release: 4%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -59,7 +59,7 @@ Requires: php-pcre # Autoloader Requires: php-composer(fedora/autoloader) # ca-certificates -Requires: %{_sysconfdir}/pki/tls/certs/ca-bundle.crt +Requires: %{_sysconfdir}/pki/ca-trust/extracted/pem/tls-ca-bundle.pem Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} @@ -127,6 +127,9 @@ exit $ret %changelog +* Mon Jul 28 2025 Remi Collet - 1.5.7-4 +- fix system certificates path rhbz#2383719 + * Mon Jul 28 2025 Remi Collet - 1.5.7-3 - fix system certificates path rhbz#2383719 From 196918854eae76fa19925dc744e96c5e0f00cf77 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 28 Aug 2025 07:28:11 +0200 Subject: [PATCH 47/49] v1.5.8 --- .gitignore | 1 + php-composer-ca-bundle.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ce9c32d..e4babe5 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ clog /php-composer-ca-bundle-1.5.5-08c50d5.tgz /php-composer-ca-bundle-1.5.6-f65c239.tgz /php-composer-ca-bundle-1.5.7-d665d22.tgz +/php-composer-ca-bundle-1.5.8-719026b.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 2c71625..5365000 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,15 +9,15 @@ %bcond_without tests -%global gh_commit d665d22c417056996c59019579f1967dfe5c1e82 +%global gh_commit 719026bb30813accb68271fee7e39552a58e9f65 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.7 -Release: 4%{?dist} +Version: 1.5.8 +Release: 1%{?dist} Summary: Lets you find a path to the system CA License: MIT @@ -127,6 +127,9 @@ exit $ret %changelog +* Thu Aug 28 2025 Remi Collet - 1.5.8-1 +- update to 1.5.8 + * Mon Jul 28 2025 Remi Collet - 1.5.7-4 - fix system certificates path rhbz#2383719 diff --git a/sources b/sources index 3583146..5d2ee7d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.7-d665d22.tgz) = 5c88fe802ddf13cfb65615117a8556abc6027ee058d0e37bf288277709fb5760177d04c3b47e80a09447cd5a25585814d281e2a3d22245e55ab94cf5e9e912f4 +SHA512 (php-composer-ca-bundle-1.5.8-719026b.tgz) = af702d9c7e8a020da1245553eb0598404ea7c63fc9129649fb4d8e2868cae7726b90ae0427d1d74efa6fd52516c07736d79b2f6b651880d39732d4253cf31df4 From 03d38daf87b5ce648f1cbeacb444b2251523c323 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 6 Nov 2025 14:59:20 +0100 Subject: [PATCH 48/49] update to 1.5.9 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e4babe5..772d333 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ clog /php-composer-ca-bundle-1.5.6-f65c239.tgz /php-composer-ca-bundle-1.5.7-d665d22.tgz /php-composer-ca-bundle-1.5.8-719026b.tgz +/php-composer-ca-bundle-1.5.9-1905981.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index 5365000..d1667e9 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 719026bb30813accb68271fee7e39552a58e9f65 +%global gh_commit 1905981ee626e6f852448b7aaa978f8666c5bc54 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.8 +Version: 1.5.9 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,9 @@ exit $ret %changelog +* Thu Nov 6 2025 Remi Collet - 1.5.9-1 +- update to 1.5.9 (no change) + * Thu Aug 28 2025 Remi Collet - 1.5.8-1 - update to 1.5.8 diff --git a/sources b/sources index 5d2ee7d..0e21e45 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.8-719026b.tgz) = af702d9c7e8a020da1245553eb0598404ea7c63fc9129649fb4d8e2868cae7726b90ae0427d1d74efa6fd52516c07736d79b2f6b651880d39732d4253cf31df4 +SHA512 (php-composer-ca-bundle-1.5.9-1905981.tgz) = e0fe0a7700cf0f03c72c05890aa6803f1c2e12de85f415cc60909a8750940896e5d435de6b3ba14675d1da5cfad17adee73a15555a8625a1374af75f284a82e2 From 7d5346845ab2c2304416016b048af421d17115c4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 9 Dec 2025 10:15:02 +0100 Subject: [PATCH 49/49] update to 1.5.10 (no change) --- .gitignore | 1 + php-composer-ca-bundle.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 772d333..d7f2d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ clog /php-composer-ca-bundle-1.5.7-d665d22.tgz /php-composer-ca-bundle-1.5.8-719026b.tgz /php-composer-ca-bundle-1.5.9-1905981.tgz +/php-composer-ca-bundle-1.5.10-961a5e4.tgz diff --git a/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index d1667e9..0dc850a 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -9,14 +9,14 @@ %bcond_without tests -%global gh_commit 1905981ee626e6f852448b7aaa978f8666c5bc54 +%global gh_commit 961a5e4056dd2e4a2eedcac7576075947c28bf63 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle %global php_home %{_datadir}/php Name: php-composer-ca-bundle -Version: 1.5.9 +Version: 1.5.10 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -127,6 +127,9 @@ exit $ret %changelog +* Tue Dec 9 2025 Remi Collet - 1.5.10-1 +- update to 1.5.10 (no change) + * Thu Nov 6 2025 Remi Collet - 1.5.9-1 - update to 1.5.9 (no change) diff --git a/sources b/sources index 0e21e45..48a494d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-composer-ca-bundle-1.5.9-1905981.tgz) = e0fe0a7700cf0f03c72c05890aa6803f1c2e12de85f415cc60909a8750940896e5d435de6b3ba14675d1da5cfad17adee73a15555a8625a1374af75f284a82e2 +SHA512 (php-composer-ca-bundle-1.5.10-961a5e4.tgz) = d92ccbfa70e5902f6e41d6906269515fc70aceb02967e4798774e746b468047aab236513cc3b260eb83b7cac2f2252e4e79b00b89ead52dbe3aaae1d33f4c16b