From c970b733f569e2371a2919f2161674f37ebf72f1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 07:26:56 +0000 Subject: [PATCH 01/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 4cf21d0..6f34f13 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -27,7 +27,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 1%{?github_release}%{?dist} +Release: 2%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -129,6 +129,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.6.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Aug 11 2021 Remi Collet - 1.6.8-1 - update to 1.6.8 From 8761d5e7c2dc66b8ab6cdc27c5671062a8e8e864 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 13:20:24 +0000 Subject: [PATCH 02/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 6f34f13..c9c0492 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -27,7 +27,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 2%{?github_release}%{?dist} +Release: 3%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -129,6 +129,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1.6.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1.6.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 6901b1f2641d1e1d27095eab69f7e16e8664d1fb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 9 Sep 2022 08:40:06 +0200 Subject: [PATCH 03/14] v1.6.9 (cherry picked from commit a3e6238b4e714726e59c59536150f78e003b2756) --- .gitignore | 1 + composer.json | 47 ++++++++++++++++++++++++++--------- php-doctrine-collections.spec | 7 ++++-- sources | 2 +- 4 files changed, 42 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index a38f8d3..bb49c87 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /php-doctrine-collections-1.6.6-5f0470363ff042d0057006ae7acabc5d7b5252d5.tar.gz /php-doctrine-collections-1.6.7-55f8b799269a1a472457bd1a41b4f379d4cfba4a.tar.gz /php-doctrine-collections-1.6.8-1958a744696c6bb3bb0d28db2611dc11610e78af.tar.gz +/php-doctrine-collections-1.6.9-1269d42c03f8a1cc9b56a1b727568423268a191b.tar.gz diff --git a/composer.json b/composer.json index 9a6494e..4409f10 100644 --- a/composer.json +++ b/composer.json @@ -1,37 +1,60 @@ { "name": "doctrine/collections", - "type": "library", "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "license": "MIT", + "type": "library", "keywords": [ "php", "collections", "array", "iterators" ], - "homepage": "https://www.doctrine-project.org/projects/collections.html", - "license": "MIT", "authors": [ - {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, - {"name": "Roman Borschel", "email": "roman@code-factory.org"}, - {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}, - {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}, - {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"} + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } ], + "homepage": "https://www.doctrine-project.org/projects/collections.html", "require": { "php": "^7.1.3 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^0.12", - "vimeo/psalm": "^4.2.1" + "phpstan/phpstan": "^1.4.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.22" }, "autoload": { - "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } }, "autoload-dev": { "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" } + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } } } diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 4cf21d0..0d47ac9 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -11,8 +11,8 @@ %global github_owner doctrine %global github_name collections -%global github_version 1.6.8 -%global github_commit 1958a744696c6bb3bb0d28db2611dc11610e78af +%global github_version 1.6.9 +%global github_commit 1269d42c03f8a1cc9b56a1b727568423268a191b %global composer_vendor doctrine %global composer_project collections @@ -129,6 +129,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Sep 9 2022 Remi Collet - 1.6.9-1 +- update to 1.6.9 + * Wed Aug 11 2021 Remi Collet - 1.6.8-1 - update to 1.6.8 diff --git a/sources b/sources index c8081c4..3cd427d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-doctrine-collections-1.6.8-1958a744696c6bb3bb0d28db2611dc11610e78af.tar.gz) = a4b3e4bc7103c1e5ea91e03b7b2164d6d2bc91e24145e3d23c71115b0ee15833b0ecb7ede43558901af5c99c42d1cc76da14440b94faff877141c1ebe3e895b8 +SHA512 (php-doctrine-collections-1.6.9-1269d42c03f8a1cc9b56a1b727568423268a191b.tar.gz) = 0afd09226627192f976460b732cb6f1dcca8c7c6abf3cba1708df588d74c09c5724c084ded24c025379514f5aeb53a673f81cbb94bad0b471a06bfdbab39f8fc From 34ef0456c01d457cce1af69c82e97d18c4680e4c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 9 Sep 2022 08:52:45 +0200 Subject: [PATCH 04/14] update to 1.7.2 switch to classmap autoloader add dependency on doctrine/deprecations --- .gitignore | 1 + composer.json | 50 ++++++++++++++++++++++++++--------- php-doctrine-collections.spec | 39 ++++++++++++++++----------- sources | 2 +- 4 files changed, 63 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index a38f8d3..f590304 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /php-doctrine-collections-1.6.6-5f0470363ff042d0057006ae7acabc5d7b5252d5.tar.gz /php-doctrine-collections-1.6.7-55f8b799269a1a472457bd1a41b4f379d4cfba4a.tar.gz /php-doctrine-collections-1.6.8-1958a744696c6bb3bb0d28db2611dc11610e78af.tar.gz +/php-doctrine-collections-1.7.2-3fe77330f5591108bbf1315da7377a7e704ed8a0.tar.gz diff --git a/composer.json b/composer.json index 9a6494e..d9422dd 100644 --- a/composer.json +++ b/composer.json @@ -1,37 +1,61 @@ { "name": "doctrine/collections", - "type": "library", "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "license": "MIT", + "type": "library", "keywords": [ "php", "collections", "array", "iterators" ], - "homepage": "https://www.doctrine-project.org/projects/collections.html", - "license": "MIT", "authors": [ - {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, - {"name": "Roman Borschel", "email": "roman@code-factory.org"}, - {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}, - {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}, - {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"} + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } ], + "homepage": "https://www.doctrine-project.org/projects/collections.html", "require": { - "php": "^7.1.3 || ^8.0" + "php": "^7.1.3 || ^8.0", + "doctrine/deprecations": "^0.5.3 || ^1" }, "require-dev": { + "doctrine/coding-standard": "^9.0 || ^10.0", + "phpstan/phpstan": "^1.4.8", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", - "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^0.12", - "vimeo/psalm": "^4.2.1" + "vimeo/psalm": "^4.22" }, "autoload": { - "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } }, "autoload-dev": { "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" } + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } } } diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index c9c0492..e58bee9 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -1,7 +1,7 @@ # # Fedora spec file for php-doctrine-collections # -# Copyright (c) 2013-2020 Shawn Iwinski +# Copyright (c) 2013-2022 Shawn Iwinski, Remi Collet # # License: MIT # http://opensource.org/licenses/MIT @@ -11,14 +11,17 @@ %global github_owner doctrine %global github_name collections -%global github_version 1.6.8 -%global github_commit 1958a744696c6bb3bb0d28db2611dc11610e78af +%global github_version 1.7.2 +%global github_commit 3fe77330f5591108bbf1315da7377a7e704ed8a0 %global composer_vendor doctrine %global composer_project collections # "php": "^7.1.3 || ^8.0" %global php_min_ver 7.1.3 +# "doctrine/deprecations": "^0.5.3 || ^1" +%global doctrine_depr_min_ver 1 +%global doctrine_depr_max_ver 2 # Build using "--without tests" to disable tests %bcond_without tests @@ -27,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 3%{?github_release}%{?dist} +Release: 1%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -45,15 +48,17 @@ BuildArch: noarch %global phpunit %{_bindir}/phpunit9 BuildRequires: %{phpunit} BuildRequires: php(language) >= %{php_min_ver} +BuildRequires: (php-composer(doctrine/deprecations) >= %{doctrine_depr_min_ver} with php-composer(doctrine/deprecations) < %{doctrine_depr_max_ver}) ## phpcompatinfo (computed from version 1.6.0) BuildRequires: php-pcre BuildRequires: php-spl -# Autoloader -BuildRequires: php-composer(fedora/autoloader) %endif +# Autoloader +BuildRequires: php-fedora-autoloader-devel # composer.json Requires: php(language) >= %{php_min_ver} +Requires: (php-composer(doctrine/deprecations) >= %{doctrine_depr_min_ver} with php-composer(doctrine/deprecations) < %{doctrine_depr_max_ver}) # phpcompatinfo (computed from version 1.6.0) Requires: php-pcre Requires: php-spl @@ -78,15 +83,14 @@ Autoloader: %{phpdir}/Doctrine/Common/Collections/autoload.php %build : Create autoloader -cat <<'AUTOLOAD' | tee lib/Doctrine/Common/Collections/autoload.php - - 1.7.2-1 +- update to 1.7.2 +- switch to classmap autoloader +- add dependency on doctrine/deprecations + * Fri Jul 22 2022 Fedora Release Engineering - 1.6.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index c8081c4..5b8c517 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-doctrine-collections-1.6.8-1958a744696c6bb3bb0d28db2611dc11610e78af.tar.gz) = a4b3e4bc7103c1e5ea91e03b7b2164d6d2bc91e24145e3d23c71115b0ee15833b0ecb7ede43558901af5c99c42d1cc76da14440b94faff877141c1ebe3e895b8 +SHA512 (php-doctrine-collections-1.7.2-3fe77330f5591108bbf1315da7377a7e704ed8a0.tar.gz) = 266f651c04f52995cfc20d2c608edc781ef0091784fd6e2ab158b070f2f11cb57f4226e55fefc723bc4d1e2af0fae8b8712fd1b65fb4ce5ea6968832d39614aa From 888d21eec3bb8b0f2852939b80f31a1cf2169e22 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 26 Sep 2022 16:12:04 +0200 Subject: [PATCH 05/14] v1.7.3 --- .gitignore | 15 ++------------- php-doctrine-collections.spec | 7 +++++-- sources | 2 +- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index f590304..7b09478 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,3 @@ -/php-doctrine-collections-1.1-819871759a4d41dab244d358507bd27d0e8b1e33.tar.gz -/php-doctrine-collections-1.2-b99c5c46c87126201899afe88ec490a25eedd6a2.tar.gz -/php-doctrine-collections-1.3.0-6c1e4eef75f310ea1b3e30945e9f06e652128b8a.tar.gz -/php-doctrine-collections-1.4.0-1a4fb7e902202c33cce8c55989b945612943c2ba.tar.gz -/php-doctrine-collections-1.5.0-a01ee38fcd999f34d9bfbcee59dbda5105449cbf.tar.gz -/php-doctrine-collections-1.6.0-acc35813077be497dc7f658af76729fa456444e3.tar.gz -/php-doctrine-collections-1.6.1-d2ae4ef05e25197343b6a39bae1d3c427a2f6956.tar.gz -/php-doctrine-collections-1.6.2-c5e0bc17b1620e97c968ac409acbff28b8b850be.tar.gz -/php-doctrine-collections-1.6.4-6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7.tar.gz -/php-doctrine-collections-1.6.5-fc0206348e17e530d09463fef07ba8968406cd6d.tar.gz -/php-doctrine-collections-1.6.6-5f0470363ff042d0057006ae7acabc5d7b5252d5.tar.gz -/php-doctrine-collections-1.6.7-55f8b799269a1a472457bd1a41b4f379d4cfba4a.tar.gz -/php-doctrine-collections-1.6.8-1958a744696c6bb3bb0d28db2611dc11610e78af.tar.gz +clog /php-doctrine-collections-1.7.2-3fe77330f5591108bbf1315da7377a7e704ed8a0.tar.gz +/php-doctrine-collections-1.7.3-09dde3eb237756190f2de738d3c97cff10a8407b.tar.gz diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index e58bee9..2b22f51 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -11,8 +11,8 @@ %global github_owner doctrine %global github_name collections -%global github_version 1.7.2 -%global github_commit 3fe77330f5591108bbf1315da7377a7e704ed8a0 +%global github_version 1.7.3 +%global github_commit 09dde3eb237756190f2de738d3c97cff10a8407b %global composer_vendor doctrine %global composer_project collections @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Mon Sep 26 2022 Remi Collet - 1.7.3-1 +- update to 1.7.3 + * Fri Sep 9 2022 Remi Collet - 1.7.2-1 - update to 1.7.2 - switch to classmap autoloader diff --git a/sources b/sources index 5b8c517..3b766cb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-doctrine-collections-1.7.2-3fe77330f5591108bbf1315da7377a7e704ed8a0.tar.gz) = 266f651c04f52995cfc20d2c608edc781ef0091784fd6e2ab158b070f2f11cb57f4226e55fefc723bc4d1e2af0fae8b8712fd1b65fb4ce5ea6968832d39614aa +SHA512 (php-doctrine-collections-1.7.3-09dde3eb237756190f2de738d3c97cff10a8407b.tar.gz) = 276d514d74169e6449a7d0c642ace0eeb9484799718acd5368176d73ac7eb7f6ee36e93ac8ed572e7e455d686d86924e4aff30c8c2f8073cfc076be2a6c4efee From 9745b13fd04d08155cc4dc684fe6bd216d1484ee Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 30 Sep 2022 12:03:52 +0200 Subject: [PATCH 06/14] v1.8.0 --- php-doctrine-collections.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 2b22f51..dafac00 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -11,8 +11,8 @@ %global github_owner doctrine %global github_name collections -%global github_version 1.7.3 -%global github_commit 09dde3eb237756190f2de738d3c97cff10a8407b +%global github_version 1.8.0 +%global github_commit 2b44dd4cbca8b5744327de78bafef5945c7e7b5e %global composer_vendor doctrine %global composer_project collections @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Sep 30 2022 Remi Collet - 1.8.0-1 +- update to 1.8.0 + * Mon Sep 26 2022 Remi Collet - 1.7.3-1 - update to 1.7.3 From d75ec911d2c2b7d388ec56567338faf26189f07d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 30 Sep 2022 12:08:58 +0200 Subject: [PATCH 07/14] v1.8.0 sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7b09478..769b661 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ clog /php-doctrine-collections-1.7.2-3fe77330f5591108bbf1315da7377a7e704ed8a0.tar.gz /php-doctrine-collections-1.7.3-09dde3eb237756190f2de738d3c97cff10a8407b.tar.gz +/php-doctrine-collections-1.8.0-2b44dd4cbca8b5744327de78bafef5945c7e7b5e.tar.gz diff --git a/sources b/sources index 3b766cb..dd219f5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-doctrine-collections-1.7.3-09dde3eb237756190f2de738d3c97cff10a8407b.tar.gz) = 276d514d74169e6449a7d0c642ace0eeb9484799718acd5368176d73ac7eb7f6ee36e93ac8ed572e7e455d686d86924e4aff30c8c2f8073cfc076be2a6c4efee +SHA512 (php-doctrine-collections-1.8.0-2b44dd4cbca8b5744327de78bafef5945c7e7b5e.tar.gz) = c3595152e9e52ba66b280cb775f8ec5171cbd6f83de8abf1a8fe7efefa5d4fb31ea1aba18de5a99e9f14c0af7642ada89434a147db169205a124271de44ec582 From 16ba75f195e681b24b4d3c74014b7b27f8e738f7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 08:22:52 +0000 Subject: [PATCH 08/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index dafac00..c2c2d43 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 1%{?github_release}%{?dist} +Release: 2%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Sep 30 2022 Remi Collet - 1.8.0-1 - update to 1.8.0 From c11c94eaaac08f95326d9a23d9f1df9935153282 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 04:11:12 +0000 Subject: [PATCH 09/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index c2c2d43..433248b 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 2%{?github_release}%{?dist} +Release: 3%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jan 20 2023 Fedora Release Engineering - 1.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 328c6e6379a6415f3033cc1e9bf20a25f5405633 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 20:46:20 +0000 Subject: [PATCH 10/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 433248b..29654c3 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 3%{?github_release}%{?dist} +Release: 4%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 1.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 6006cb068ef6f3b44fde15520696b89286ab971f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 22:32:28 +0000 Subject: [PATCH 11/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 29654c3..f922585 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 4%{?github_release}%{?dist} +Release: 5%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 1.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 1.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 2ae538bd7917a2aa720d8144c3e548069905e89f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 06:48:41 +0000 Subject: [PATCH 12/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index f922585..db2bc15 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 5%{?github_release}%{?dist} +Release: 6%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.8.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 1.8.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 5f1543fe85bb5e205896bf9fcd82bc747a58e9a0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 08:59:23 +0000 Subject: [PATCH 13/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index db2bc15..d2f0051 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 6%{?github_release}%{?dist} +Release: 7%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.8.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 1.8.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 6664fe384592e896e8186f0b7b0f949d37fa76aa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:10:41 +0000 Subject: [PATCH 14/14] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-doctrine-collections.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index d2f0051..748b4e0 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -30,7 +30,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 7%{?github_release}%{?dist} +Release: 8%{?github_release}%{?dist} Summary: Collections abstraction library License: MIT @@ -133,6 +133,9 @@ exit $SCL_RETURN_CODE %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.8.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 1.8.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild