From a83c95603003d13c3095911160ad26fed41f3baf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 03:12:40 +0000 Subject: [PATCH 01/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 8d4c32d..3ec714a 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -23,7 +23,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.3 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -140,6 +140,9 @@ exit $ret %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 2.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 78569a8d6a9911af1b2111e807c2785255db3b16 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 4 Nov 2021 08:40:48 +0100 Subject: [PATCH 02/18] v2.2.5 --- .gitignore | 1 + php-sabre-xml2.spec | 35 +++++++++++++++++++++++++---------- sources | 2 +- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index cf7640b..b78259f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /php-sabre-xml2-2.2.0-705f5cb.tgz /php-sabre-xml2-2.2.1-41c6ba1.tgz /php-sabre-xml2-2.2.3-c3b959f.tgz +/php-sabre-xml2-2.2.5-a6af111.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 3ec714a..8bd41c2 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -6,8 +6,11 @@ # # Please, preserve the changelog entries # + +%bcond_without tests + # Github -%global gh_commit c3b959f821c19b36952ec4a595edd695c216bfc6 +%global gh_commit a6af111850e7536d200d9637c34885cd3c77a86c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -18,12 +21,11 @@ %global ns_vendor Sabre %global ns_project Xml %global major 2 -%global with_tests 0%{!?_without_tests:1} Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.3 -Release: 3%{?dist} +Version: 2.2.5 +Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -32,7 +34,7 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -%if %{with_tests} +%if %{with tests} BuildRequires: php(language) >= 7.1 BuildRequires: php-xmlwriter BuildRequires: php-xmlreader @@ -42,9 +44,11 @@ BuildRequires: php-libxml BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { +# "friendsofphp/php-cs-fixer": "~2.17.1", # "phpstan/phpstan": "^0.12", # "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0" -BuildRequires: phpunit8 >= 8.5 +BuildRequires: phpunit9 +%global phpunit %{_bindir}/phpunit9 %endif # Autoloader BuildRequires: php-fedora-autoloader-devel @@ -110,7 +114,14 @@ cp -pr lib %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major} %check -%if %{with_tests} +: Check version +php -r ' +require "%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major}/autoload.php"; +echo Sabre\Xml\Version::VERSION . "\n"; +exit (Sabre\Xml\Version::VERSION === "%{version}" ? 0 : 1); +' + +%if %{with tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 2.2.5-1 +- update to 2.2.5 + * Fri Jul 23 2021 Fedora Release Engineering - 2.2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 7198854..49718ef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.3-c3b959f.tgz) = 3eee3540306f6defdbf0f860a7dc7d40964cca56f28d2c73011ba4c8edc43d272182fdbca16f26e9901d81f269b19d7c46a92b2bf32e04fa44fa3bbbccdb6c7b +SHA512 (php-sabre-xml2-2.2.5-a6af111.tgz) = 2139d9cbeb29f5d42603aff275cfe627eb9b8a73a8510661750278650a97361a47777b4324223aa3f52e8d5a0eea5843fba24bd0a39a85d85577d89fbe6183f2 From fe209eaba1fa5dd280b0c4c961e6c9b4f4a632be Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 4 Nov 2021 08:40:48 +0100 Subject: [PATCH 03/18] v2.2.5 (cherry picked from commit 78569a8d6a9911af1b2111e807c2785255db3b16) --- .gitignore | 1 + php-sabre-xml2.spec | 35 +++++++++++++++++++++++++---------- sources | 2 +- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index cf7640b..b78259f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /php-sabre-xml2-2.2.0-705f5cb.tgz /php-sabre-xml2-2.2.1-41c6ba1.tgz /php-sabre-xml2-2.2.3-c3b959f.tgz +/php-sabre-xml2-2.2.5-a6af111.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 8d4c32d..00a4d1d 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -6,8 +6,11 @@ # # Please, preserve the changelog entries # + +%bcond_without tests + # Github -%global gh_commit c3b959f821c19b36952ec4a595edd695c216bfc6 +%global gh_commit a6af111850e7536d200d9637c34885cd3c77a86c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -18,12 +21,11 @@ %global ns_vendor Sabre %global ns_project Xml %global major 2 -%global with_tests 0%{!?_without_tests:1} Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.3 -Release: 2%{?dist} +Version: 2.2.5 +Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -32,7 +34,7 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -%if %{with_tests} +%if %{with tests} BuildRequires: php(language) >= 7.1 BuildRequires: php-xmlwriter BuildRequires: php-xmlreader @@ -42,9 +44,11 @@ BuildRequires: php-libxml BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { +# "friendsofphp/php-cs-fixer": "~2.17.1", # "phpstan/phpstan": "^0.12", # "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0" -BuildRequires: phpunit8 >= 8.5 +BuildRequires: phpunit9 +%global phpunit %{_bindir}/phpunit9 %endif # Autoloader BuildRequires: php-fedora-autoloader-devel @@ -110,7 +114,14 @@ cp -pr lib %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major} %check -%if %{with_tests} +: Check version +php -r ' +require "%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major}/autoload.php"; +echo Sabre\Xml\Version::VERSION . "\n"; +exit (Sabre\Xml\Version::VERSION === "%{version}" ? 0 : 1); +' + +%if %{with tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 2.2.5-1 +- update to 2.2.5 + * Wed Jan 27 2021 Fedora Release Engineering - 2.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 7198854..49718ef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.3-c3b959f.tgz) = 3eee3540306f6defdbf0f860a7dc7d40964cca56f28d2c73011ba4c8edc43d272182fdbca16f26e9901d81f269b19d7c46a92b2bf32e04fa44fa3bbbccdb6c7b +SHA512 (php-sabre-xml2-2.2.5-a6af111.tgz) = 2139d9cbeb29f5d42603aff275cfe627eb9b8a73a8510661750278650a97361a47777b4324223aa3f52e8d5a0eea5843fba24bd0a39a85d85577d89fbe6183f2 From 777f7d9140864b6ec902274beb26bc4c1c25def2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 08:32:02 +0000 Subject: [PATCH 04/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 8bd41c2..7aef141 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.5 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 2.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Nov 4 2021 Remi Collet - 2.2.5-1 - update to 2.2.5 From d0437e2b061bba54bca64dfd31db9cb2d7384f5f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 14:25:45 +0000 Subject: [PATCH 05/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 7aef141..d8277d1 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.5 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 2.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 2.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 87f5af6d242aa2ede2bb26e1452b39424a72d8cb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 09:20:25 +0000 Subject: [PATCH 06/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index d8277d1..fa06154 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.5 -Release: 3%{?dist} +Release: 4%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 2.2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Jul 22 2022 Fedora Release Engineering - 2.2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From c4ac44211ecff799a5701ef0e71c46a04bf0b991 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Jun 2023 15:50:16 +0200 Subject: [PATCH 07/18] v2.2.6 --- .gitignore | 1 + php-sabre-xml2.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index b78259f..fdf95bb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /php-sabre-xml2-2.2.1-41c6ba1.tgz /php-sabre-xml2-2.2.3-c3b959f.tgz /php-sabre-xml2-2.2.5-a6af111.tgz +/php-sabre-xml2-2.2.6-9cde7cd.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index fa06154..d0da3bf 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit a6af111850e7536d200d9637c34885cd3c77a86c +%global gh_commit 9cde7cdab1e50893cc83b037b40cd47bfde42a2b %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,11 +24,11 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.5 -Release: 4%{?dist} +Version: 2.2.6 +Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} -License: BSD +License: BSD-3-Clause # Git snapshot with tests, because of .gitattributes Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh @@ -132,7 +132,7 @@ cd tests : Run upstream test suite against installed library ret=0 -for cmdarg in "php %{phpunit}" php73 php74 php80 php81; do +for cmdarg in "php %{phpunit}" php80 php81 php82 php83; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} || ret=1 @@ -152,6 +152,9 @@ exit $ret %changelog +* Wed Jun 28 2023 Remi Collet - 2.2.6-1 +- update to 2.2.6 + * Fri Jan 20 2023 Fedora Release Engineering - 2.2.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 49718ef..68a5ae8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.5-a6af111.tgz) = 2139d9cbeb29f5d42603aff275cfe627eb9b8a73a8510661750278650a97361a47777b4324223aa3f52e8d5a0eea5843fba24bd0a39a85d85577d89fbe6183f2 +SHA512 (php-sabre-xml2-2.2.6-9cde7cd.tgz) = 36860e3a3e9b683c3a589308726c83272239c1fcf24b1859bbb8cc4b316d32a2d3ada451011bbd2f92099cf9cf79796d4990081682e119c93041786a7ef7346e From 1b08f884be75e0bac207a169af595685a075393e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 05:08:39 +0000 Subject: [PATCH 08/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index d0da3bf..e846aa3 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 2.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Wed Jun 28 2023 Remi Collet - 2.2.6-1 - update to 2.2.6 From 289a1fcaa199bb8e6a8570e2fb7cc6b6410356e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 21:23:48 +0000 Subject: [PATCH 09/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index e846aa3..d096560 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.6 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 2.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 2.2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From e51bce5d2ab6bc3b864d41118763ed5e82263da4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 23:11:33 +0000 Subject: [PATCH 10/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index d096560..6448a91 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.6 -Release: 3%{?dist} +Release: 4%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 2.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 2.2.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 9401a792ae04c5fce849a03cfcd5155f89eb7e3e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Apr 2024 14:48:03 +0200 Subject: [PATCH 11/18] v2.2.7 --- .gitignore | 1 + php-sabre-xml2.spec | 15 +++++++++------ sources | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index fdf95bb..7291737 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /php-sabre-xml2-2.2.3-c3b959f.tgz /php-sabre-xml2-2.2.5-a6af111.tgz /php-sabre-xml2-2.2.6-9cde7cd.tgz +/php-sabre-xml2-2.2.7-f1d53d5.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 6448a91..b07c871 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -1,7 +1,7 @@ # remirepo/fedora spec file for php-sabre-xml2 # -# Copyright (c) 2016-2020 Remi Collet -# License: CC-BY-SA +# Copyright (c) 2016-2024 Remi Collet +# License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit 9cde7cdab1e50893cc83b037b40cd47bfde42a2b +%global gh_commit f1d53d55976bbd4cf3e640dda6ebc31120c71a4e %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,8 +24,8 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.6 -Release: 4%{?dist} +Version: 2.2.7 +Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -132,7 +132,7 @@ cd tests : Run upstream test suite against installed library ret=0 -for cmdarg in "php %{phpunit}" php80 php81 php82 php83; do +for cmdarg in "php %{phpunit}" php81 php82 php83; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} || ret=1 @@ -152,6 +152,9 @@ exit $ret %changelog +* Thu Apr 18 2024 Remi Collet - 2.2.7-1 +- update to 2.2.7 + * Thu Jan 25 2024 Fedora Release Engineering - 2.2.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index 68a5ae8..5b609f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.6-9cde7cd.tgz) = 36860e3a3e9b683c3a589308726c83272239c1fcf24b1859bbb8cc4b316d32a2d3ada451011bbd2f92099cf9cf79796d4990081682e119c93041786a7ef7346e +SHA512 (php-sabre-xml2-2.2.7-f1d53d5.tgz) = 5292190b25f2a014eeb6dee4e042f6ea98c9b9c2f544fce2d3caeccbcc5d8bcac759d78ecaef8d6cb77c3bea2c4ff9be03dd64ad2240b432a24ff52ff3ec6f76 From 0a4d44fc591de9f5ebc6d253b1d04e23521d2c98 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 07:25:38 +0000 Subject: [PATCH 12/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index b07c871..23cb3ac 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.7 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 2.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Apr 18 2024 Remi Collet - 2.2.7-1 - update to 2.2.7 From 4f8c367f02f6dad023ed500fa4c83e6f1046c4af Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 25 Jul 2024 14:50:50 +0200 Subject: [PATCH 13/18] v2.2.8 --- .gitignore | 1 + php-sabre-xml2.spec | 15 +++++++++------ sources | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 7291737..00b2188 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /php-sabre-xml2-2.2.5-a6af111.tgz /php-sabre-xml2-2.2.6-9cde7cd.tgz /php-sabre-xml2-2.2.7-f1d53d5.tgz +/php-sabre-xml2-2.2.8-1f89d65.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 23cb3ac..8c2e045 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit f1d53d55976bbd4cf3e640dda6ebc31120c71a4e +%global gh_commit 1f89d65f366a8a79630c1f5717c823dc5f5fd673 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,8 +24,8 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.7 -Release: 2%{?dist} +Version: 2.2.8 +Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -46,8 +46,8 @@ BuildRequires: php-spl # From composer.json, "require-dev": { # "friendsofphp/php-cs-fixer": "~2.17.1", # "phpstan/phpstan": "^0.12", -# "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0" -BuildRequires: phpunit9 +# "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6" +BuildRequires: phpunit9 >= 9.6 %global phpunit %{_bindir}/phpunit9 %endif # Autoloader @@ -132,7 +132,7 @@ cd tests : Run upstream test suite against installed library ret=0 -for cmdarg in "php %{phpunit}" php81 php82 php83; do +for cmdarg in "php %{phpunit}" php81 php82 php83 php84; do if which $cmdarg; then set $cmdarg $1 ${2:-%{_bindir}/phpunit9} || ret=1 @@ -152,6 +152,9 @@ exit $ret %changelog +* Thu Jul 25 2024 Remi Collet - 2.2.8-1 +- update to 2.2.8 + * Fri Jul 19 2024 Fedora Release Engineering - 2.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index 5b609f4..fea7cd9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.7-f1d53d5.tgz) = 5292190b25f2a014eeb6dee4e042f6ea98c9b9c2f544fce2d3caeccbcc5d8bcac759d78ecaef8d6cb77c3bea2c4ff9be03dd64ad2240b432a24ff52ff3ec6f76 +SHA512 (php-sabre-xml2-2.2.8-1f89d65.tgz) = b887481332b33d37d7eb0c9c3801c43b52f9b10c6f6ee518cf0f89d67287c1a1b51c0cee36839d92482257f531f41d909a087cfbadcadd512326bc95a3a6dc1b From aec60a5cd2da23b8beeac596e8f2408df5050d1d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 26 Jul 2024 15:59:26 +0200 Subject: [PATCH 14/18] v2.2.9 --- .gitignore | 1 + php-sabre-xml2.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 00b2188..9d6861b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /php-sabre-xml2-2.2.6-9cde7cd.tgz /php-sabre-xml2-2.2.7-f1d53d5.tgz /php-sabre-xml2-2.2.8-1f89d65.tgz +/php-sabre-xml2-2.2.9-8828871.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 8c2e045..91d9b99 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit 1f89d65f366a8a79630c1f5717c823dc5f5fd673 +%global gh_commit 88288712d45f694be3679a0db7dfb3770f08d4f0 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.8 +Version: 2.2.9 Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jul 26 2024 Remi Collet - 2.2.9-1 +- update to 2.2.9 + * Thu Jul 25 2024 Remi Collet - 2.2.8-1 - update to 2.2.8 diff --git a/sources b/sources index fea7cd9..ae8fd6d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.8-1f89d65.tgz) = b887481332b33d37d7eb0c9c3801c43b52f9b10c6f6ee518cf0f89d67287c1a1b51c0cee36839d92482257f531f41d909a087cfbadcadd512326bc95a3a6dc1b +SHA512 (php-sabre-xml2-2.2.9-8828871.tgz) = 63f3ecaae0d08b305a7f1ed38819eb297877d6c52667d70189fb5716c85d6fde77ccaf6c9f26d21f7d9d5928319aac5386811546b6ae5cf238a4dcaae06f8251 From 89e5044105d348cce3594cde97050faa6db23ce1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Aug 2024 11:11:54 +0200 Subject: [PATCH 15/18] update to 2.2.10 (no change, CS only) --- .gitignore | 1 + php-sabre-xml2.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9d6861b..af372ec 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /php-sabre-xml2-2.2.7-f1d53d5.tgz /php-sabre-xml2-2.2.8-1f89d65.tgz /php-sabre-xml2-2.2.9-8828871.tgz +/php-sabre-xml2-2.2.10-0734b7a.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 91d9b99..3f5c4cf 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit 88288712d45f694be3679a0db7dfb3770f08d4f0 +%global gh_commit 0734b7af7f045d9ffb0018929750c492698a1536 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.9 +Version: 2.2.10 Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} @@ -44,7 +44,7 @@ BuildRequires: php-libxml BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { -# "friendsofphp/php-cs-fixer": "~2.17.1", +# "friendsofphp/php-cs-fixer": "~2.17.1||^3.63", # "phpstan/phpstan": "^0.12", # "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6" BuildRequires: phpunit9 >= 9.6 @@ -152,6 +152,9 @@ exit $ret %changelog +* Wed Aug 28 2024 Remi Collet - 2.2.10-1 +- update to 2.2.10 (no change, CS only) + * Fri Jul 26 2024 Remi Collet - 2.2.9-1 - update to 2.2.9 diff --git a/sources b/sources index ae8fd6d..cc7a796 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.9-8828871.tgz) = 63f3ecaae0d08b305a7f1ed38819eb297877d6c52667d70189fb5716c85d6fde77ccaf6c9f26d21f7d9d5928319aac5386811546b6ae5cf238a4dcaae06f8251 +SHA512 (php-sabre-xml2-2.2.10-0734b7a.tgz) = 0400dc6fe124d3444b3a4d79303620ce965a2ec1348f64327b68f72e1a72a0568943e93f6f5c74a7c02a574ae0dbf8def147764e2f83b73d4902959aa119cb2c From d7e6ed72ddef3177d0bc7f507d52f7b5a2f1043d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 6 Sep 2024 10:26:29 +0200 Subject: [PATCH 16/18] v2.2.11 --- .gitignore | 1 + php-sabre-xml2.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index af372ec..6741e09 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /php-sabre-xml2-2.2.8-1f89d65.tgz /php-sabre-xml2-2.2.9-8828871.tgz /php-sabre-xml2-2.2.10-0734b7a.tgz +/php-sabre-xml2-2.2.11-01a7927.tgz diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 3f5c4cf..294cd49 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -10,7 +10,7 @@ %bcond_without tests # Github -%global gh_commit 0734b7af7f045d9ffb0018929750c492698a1536 +%global gh_commit 01a7927842abf3e10df3d9c2d9b0cc9d813a3fcc %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project xml @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate -Version: 2.2.10 +Version: 2.2.11 Release: 1%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} @@ -44,7 +44,7 @@ BuildRequires: php-libxml BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { -# "friendsofphp/php-cs-fixer": "~2.17.1||^3.63", +# "friendsofphp/php-cs-fixer": "~2.17.1||3.63.2", # "phpstan/phpstan": "^0.12", # "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6" BuildRequires: phpunit9 >= 9.6 @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Sep 6 2024 Remi Collet - 2.2.11-1 +- update to 2.2.11 + * Wed Aug 28 2024 Remi Collet - 2.2.10-1 - update to 2.2.10 (no change, CS only) diff --git a/sources b/sources index cc7a796..069f1aa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-sabre-xml2-2.2.10-0734b7a.tgz) = 0400dc6fe124d3444b3a4d79303620ce965a2ec1348f64327b68f72e1a72a0568943e93f6f5c74a7c02a574ae0dbf8def147764e2f83b73d4902959aa119cb2c +SHA512 (php-sabre-xml2-2.2.11-01a7927.tgz) = fa699fba7851bcf430664880f0d89296dd2215a51d65726f06387d37e2fd04b53724f8290a0f3c444e975b9f0f2b696a87e8d59529660ca060264d709a9aab3c From 75a350c1b20fde6528ba761d20b6079cca3eb450 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 09:40:56 +0000 Subject: [PATCH 17/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 294cd49..2f8bafe 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.11 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 2.2.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Sep 6 2024 Remi Collet - 2.2.11-1 - update to 2.2.11 From 496e1665a3e4951ca3414cb30e75a7e0bcad93a6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:30:48 +0000 Subject: [PATCH 18/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-sabre-xml2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-sabre-xml2.spec b/php-sabre-xml2.spec index 2f8bafe..3fd3555 100644 --- a/php-sabre-xml2.spec +++ b/php-sabre-xml2.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: XML library that you may not hate Version: 2.2.11 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://github.com/%{gh_owner}/%{gh_project} License: BSD-3-Clause @@ -152,6 +152,9 @@ exit $ret %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.2.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 2.2.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild