From dd3b356ce41e0aebb9f9677881d362d7bd5f2989 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 05:03:05 +0000 Subject: [PATCH 1/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index 2e6d80f..211bf50 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -101,6 +101,9 @@ exit $ret %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 3.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Feb 3 2023 Remi Collet - 3.0.0-1 - update to 3.0.0 - raise dependency on PHP 8.1 From 8c5b7d9d4f5787e53e7e0bfdcf7e2c9fb2f02f77 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 23 Aug 2023 12:00:45 +0200 Subject: [PATCH 2/9] enable test suite --- php-phpunit-php-text-template3.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index 211bf50..70c7405 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -7,8 +7,7 @@ # Please, preserve the changelog entries # -# disabled until phpunit10 available -%bcond_with tests +%bcond_without tests %global gh_commit 9f3d3709577a527025f55bcf0f7ab8052c8bb37d %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) @@ -25,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -82,7 +81,7 @@ mkdir vendor : Run upstream test suite ret=0 -for cmd in php php81 php82; do +for cmd in php php81 php82 php83; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{ver_major}/autoload.php \ %{_bindir}/phpunit10 || ret=1 @@ -101,6 +100,9 @@ exit $ret %changelog +* Wed Aug 23 2023 Remi Collet - 3.0.0-3 +- Enable test suite + * Fri Jul 21 2023 Fedora Release Engineering - 3.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 8857e37c244c8079ee0916336a3043f475c2ac63 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Sep 2023 08:22:56 +0200 Subject: [PATCH 3/9] v3.0.1 --- .gitignore | 1 + php-phpunit-php-text-template3.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 8023e25..90ea8bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /php-phpunit-php-text-template3-3.0.0-9f3d370.tgz +/php-phpunit-php-text-template3-3.0.1-0c7b06f.tgz diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index 70c7405..8db9251 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -9,7 +9,7 @@ %bcond_without tests -%global gh_commit 9f3d3709577a527025f55bcf0f7ab8052c8bb37d +%global gh_commit 0c7b06ff49e3d5072f057eb1fa59258bf287a748 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project php-text-template @@ -23,8 +23,8 @@ %global ver_major 3 Name: php-%{pk_vendor}-%{pk_project}%{ver_major} -Version: 3.0.0 -Release: 3%{?dist} +Version: 3.0.1 +Release: 1%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Fri Sep 1 2023 Remi Collet - 3.0.1-1 +- update to 3.0.1 + * Wed Aug 23 2023 Remi Collet - 3.0.0-3 - Enable test suite diff --git a/sources b/sources index 816727b..a4e35c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-phpunit-php-text-template3-3.0.0-9f3d370.tgz) = f2ee02cbd30d8c2d871ed9bc4670b3b62ca803fce9cb900753395bc5caf4c737632742a08cd39089cef27f7018f0908d47d6672ffbf0931f2c51936d3f13f9ce +SHA512 (php-phpunit-php-text-template3-3.0.1-0c7b06f.tgz) = 5803f1ea3d48cf22582a6a15ce7b51011d7194d13eedb287b5ddc6d962c27765630ec7332e3dc6a00b32074c9eba4ee61dc73e6a74d5f8a03807999b9676f366 From 3e21909b4c9e24518f58aaaf578b7230d1c88677 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 23 Aug 2023 12:00:45 +0200 Subject: [PATCH 4/9] v3.0.1 enable test suite (cherry picked from commit f39b395c5b13310dd5a0b60d4be79786d6917f07) --- .gitignore | 1 + php-phpunit-php-text-template3.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 8023e25..90ea8bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /php-phpunit-php-text-template3-3.0.0-9f3d370.tgz +/php-phpunit-php-text-template3-3.0.1-0c7b06f.tgz diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index 2e6d80f..929c0e7 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -7,10 +7,9 @@ # Please, preserve the changelog entries # -# disabled until phpunit10 available -%bcond_with tests +%bcond_without tests -%global gh_commit 9f3d3709577a527025f55bcf0f7ab8052c8bb37d +%global gh_commit 0c7b06ff49e3d5072f057eb1fa59258bf287a748 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project php-text-template @@ -24,7 +23,7 @@ %global ver_major 3 Name: php-%{pk_vendor}-%{pk_project}%{ver_major} -Version: 3.0.0 +Version: 3.0.1 Release: 1%{?dist} Summary: Simple template engine, version %{ver_major} @@ -82,7 +81,7 @@ mkdir vendor : Run upstream test suite ret=0 -for cmd in php php81 php82; do +for cmd in php php81 php82 php83; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{ver_major}/autoload.php \ %{_bindir}/phpunit10 || ret=1 @@ -101,6 +100,10 @@ exit $ret %changelog +* Fri Sep 1 2023 Remi Collet - 3.0.1-1 +- update to 3.0.1 +- Enable test suite + * Fri Feb 3 2023 Remi Collet - 3.0.0-1 - update to 3.0.0 - raise dependency on PHP 8.1 diff --git a/sources b/sources index 816727b..a4e35c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-phpunit-php-text-template3-3.0.0-9f3d370.tgz) = f2ee02cbd30d8c2d871ed9bc4670b3b62ca803fce9cb900753395bc5caf4c737632742a08cd39089cef27f7018f0908d47d6672ffbf0931f2c51936d3f13f9ce +SHA512 (php-phpunit-php-text-template3-3.0.1-0c7b06f.tgz) = 5803f1ea3d48cf22582a6a15ce7b51011d7194d13eedb287b5ddc6d962c27765630ec7332e3dc6a00b32074c9eba4ee61dc73e6a74d5f8a03807999b9676f366 From 1ee5ccd920dd49b2074721b05cda51e572609405 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 21:19:22 +0000 Subject: [PATCH 5/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index 8db9251..de2ded9 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 3.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Sep 1 2023 Remi Collet - 3.0.1-1 - update to 3.0.1 From f2024d34acab54738170da86b1ba58c219e1a155 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 23:06:51 +0000 Subject: [PATCH 6/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index de2ded9..ee15ea5 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 3.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 5e905a143b1fe085d57db2f6ec84e334defe2e1b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 07:21:01 +0000 Subject: [PATCH 7/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index ee15ea5..af1c83d 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 3.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 3.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 4133d3feb7158fc74594e0d05bdbf039e75eea9f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 09:35:37 +0000 Subject: [PATCH 8/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index af1c83d..af5e303 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 3.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 3.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 9dd3cd45c7ce5ab9e86e63d5ca68f167c2361683 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:28:14 +0000 Subject: [PATCH 9/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-phpunit-php-text-template3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-phpunit-php-text-template3.spec b/php-phpunit-php-text-template3.spec index af5e303..2b1968f 100644 --- a/php-phpunit-php-text-template3.spec +++ b/php-phpunit-php-text-template3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause @@ -100,6 +100,9 @@ exit $ret %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 3.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 3.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild