diff -Nru baconqrcode-2.0.8/debian/changelog baconqrcode-2.0.8/debian/changelog --- baconqrcode-2.0.8/debian/changelog 2022-12-07 18:59:40.000000000 +0000 +++ baconqrcode-2.0.8/debian/changelog 2023-06-26 18:36:23.000000000 +0000 @@ -1,3 +1,15 @@ +baconqrcode (2.0.8-2) unstable; urgency=medium + + [ Athos Ribeiro ] + * Add a patch to support phpunit 10 (Closes: #1038985) + * Update d/copyright year + + [ William Desportes ] + * Add Uploaders to the PHP team + * Bump Standards-Version to 4.6.2 + + -- William Desportes Mon, 26 Jun 2023 20:36:23 +0200 + baconqrcode (2.0.8-1) unstable; urgency=medium * Bump Standards-Version to 4.6.1 diff -Nru baconqrcode-2.0.8/debian/control baconqrcode-2.0.8/debian/control --- baconqrcode-2.0.8/debian/control 2022-11-24 13:19:22.000000000 +0000 +++ baconqrcode-2.0.8/debian/control 2023-06-26 18:35:54.000000000 +0000 @@ -1,5 +1,6 @@ Source: baconqrcode Maintainer: William Desportes +Uploaders: Debian PHP PEAR Maintainers Section: php Priority: optional Build-Depends: debhelper-compat (= 13), @@ -9,7 +10,7 @@ phpab, phpunit, pkg-php-tools (>= 1.41~) -Standards-Version: 4.6.1 +Standards-Version: 4.6.2 Vcs-Browser: https://salsa.debian.org/php-team/pear/php-bacon-baconqrcode Vcs-Git: https://salsa.debian.org/php-team/pear/php-bacon-baconqrcode.git -b debian/latest Homepage: https://github.com/Bacon/BaconQrCode/ diff -Nru baconqrcode-2.0.8/debian/copyright baconqrcode-2.0.8/debian/copyright --- baconqrcode-2.0.8/debian/copyright 2022-02-04 22:41:10.000000000 +0000 +++ baconqrcode-2.0.8/debian/copyright 2023-06-26 18:19:28.000000000 +0000 @@ -8,7 +8,7 @@ Files: debian/* Copyright: 2017 Gijs Molenaar - 2020-2022 William Desportes + 2020-2023 William Desportes License: Expat License: BSD-2-clause diff -Nru baconqrcode-2.0.8/debian/patches/Rename-test-class-to-match-filename.patch baconqrcode-2.0.8/debian/patches/Rename-test-class-to-match-filename.patch --- baconqrcode-2.0.8/debian/patches/Rename-test-class-to-match-filename.patch 1970-01-01 00:00:00.000000000 +0000 +++ baconqrcode-2.0.8/debian/patches/Rename-test-class-to-match-filename.patch 2023-06-26 18:36:23.000000000 +0000 @@ -0,0 +1,33 @@ +From: Athos Ribeiro +Date: Fri, 23 Jun 2023 23:20:30 -0300 +Subject: Rename test class to match filename + +Having phpunit test classes not matching their file names has been +deprecated since phpunit 9 and was removed in phpunit 10. + +- https://github.com/sebastianbergmann/phpunit/issues/4105 +- https://github.com/sebastianbergmann/phpunit/issues/4621#issuecomment-797604984 +- https://github.com/Bacon/BaconQrCode/issues/97 + +Origin: vendor +Last-Update: 2023-06-23 +Bug-Debian: https://bugs.debian.org/1038985 +Reviewed-by: William Desportes +Forwarded: https://github.com/Bacon/BaconQrCode/pull/135 +--- + test/Common/ReedSolomonCodecTest.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/test/Common/ReedSolomonCodecTest.php b/test/Common/ReedSolomonCodecTest.php +index 47975b5..bc7c33c 100644 +--- a/test/Common/ReedSolomonCodecTest.php ++++ b/test/Common/ReedSolomonCodecTest.php +@@ -7,7 +7,7 @@ use BaconQrCode\Common\ReedSolomonCodec; + use PHPUnit\Framework\TestCase; + use SplFixedArray; + +-class ReedSolomonTest extends TestCase ++class ReedSolomonCodecTest extends TestCase + { + public function tabs() : array + { diff -Nru baconqrcode-2.0.8/debian/patches/series baconqrcode-2.0.8/debian/patches/series --- baconqrcode-2.0.8/debian/patches/series 2022-12-07 18:57:24.000000000 +0000 +++ baconqrcode-2.0.8/debian/patches/series 2023-06-26 18:36:23.000000000 +0000 @@ -1 +1,2 @@ Disable-ImagickRenderingTest-missing-debian-testing-lib.patch +Rename-test-class-to-match-filename.patch