Version in base suite: 2.11.4-2 Base version: icingaweb2_2.11.4-2 Target version: icingaweb2_2.11.4-2+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/i/icingaweb2/icingaweb2_2.11.4-2.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/i/icingaweb2/icingaweb2_2.11.4-2+deb12u1.dsc changelog | 9 +++++++++ control | 2 +- gbp.conf | 2 +- patches/error_reporting.patch | 27 +++++++++++++++++++++++++++ patches/series | 1 + 5 files changed, 39 insertions(+), 2 deletions(-) diff -Nru icingaweb2-2.11.4/debian/changelog icingaweb2-2.11.4/debian/changelog --- icingaweb2-2.11.4/debian/changelog 2023-01-28 06:18:34.000000000 +0000 +++ icingaweb2-2.11.4/debian/changelog 2023-08-09 17:45:18.000000000 +0000 @@ -1,3 +1,12 @@ +icingaweb2 (2.11.4-2+deb12u1) bookworm; urgency=medium + + * Team upload. + * Update branch in gbp.conf & Vcs-Git URL. + * Add patch to suppress Deprecated notices. + (closes: #1037925) + + -- Bas Couwenberg Wed, 09 Aug 2023 19:45:18 +0200 + icingaweb2 (2.11.4-2) unstable; urgency=medium * Team upload. diff -Nru icingaweb2-2.11.4/debian/control icingaweb2-2.11.4/debian/control --- icingaweb2-2.11.4/debian/control 2023-01-18 16:28:15.000000000 +0000 +++ icingaweb2-2.11.4/debian/control 2023-08-09 17:45:18.000000000 +0000 @@ -8,7 +8,7 @@ php-cli Standards-Version: 4.6.2 Vcs-Browser: https://salsa.debian.org/nagios-team/icingaweb2 -Vcs-Git: https://salsa.debian.org/nagios-team/icingaweb2.git +Vcs-Git: https://salsa.debian.org/nagios-team/icingaweb2.git -b bookworm Homepage: https://icinga.com Rules-Requires-Root: no diff -Nru icingaweb2-2.11.4/debian/gbp.conf icingaweb2-2.11.4/debian/gbp.conf --- icingaweb2-2.11.4/debian/gbp.conf 2022-07-01 18:21:56.000000000 +0000 +++ icingaweb2-2.11.4/debian/gbp.conf 2023-08-09 17:45:18.000000000 +0000 @@ -6,7 +6,7 @@ # The default name for the Debian branch is "master". # Change it if the name is different (for instance, "debian/unstable"). -debian-branch = master +debian-branch = bookworm # git-import-orig uses the following names for the upstream tags. # Change the value if you are not using git-import-orig diff -Nru icingaweb2-2.11.4/debian/patches/error_reporting.patch icingaweb2-2.11.4/debian/patches/error_reporting.patch --- icingaweb2-2.11.4/debian/patches/error_reporting.patch 1970-01-01 00:00:00.000000000 +0000 +++ icingaweb2-2.11.4/debian/patches/error_reporting.patch 2023-08-09 17:45:18.000000000 +0000 @@ -0,0 +1,27 @@ +Description: Suppress Deprecated notices, upstream doesn't support PHP 8.2 yet. +Author: Bas Couwenberg +Bug: https://github.com/Icinga/icingaweb2/issues/4918 +Bug-Debian: https://bugs.debian.org/1037925 + +--- a/library/Icinga/Application/ApplicationBootstrap.php ++++ b/library/Icinga/Application/ApplicationBootstrap.php +@@ -591,7 +591,7 @@ abstract class ApplicationBootstrap + */ + protected function setupErrorHandling() + { +- error_reporting(E_ALL | E_STRICT); ++ error_reporting(E_ALL & ~E_DEPRECATED | E_STRICT); + ini_set('display_startup_errors', 1); + ini_set('display_errors', 1); + set_error_handler(function ($errno, $errstr, $errfile, $errline) { +--- a/library/Icinga/Application/webrouter.php ++++ b/library/Icinga/Application/webrouter.php +@@ -8,7 +8,7 @@ use Icinga\Web\Controller\StaticControll + use Icinga\Web\JavaScript; + use Icinga\Web\StyleSheet; + +-error_reporting(E_ALL | E_STRICT); ++error_reporting(E_ALL & ~E_DEPRECATED | E_STRICT); + + if (isset($_SERVER['REQUEST_URI'])) { + $ruri = $_SERVER['REQUEST_URI']; diff -Nru icingaweb2-2.11.4/debian/patches/series icingaweb2-2.11.4/debian/patches/series --- icingaweb2-2.11.4/debian/patches/series 2022-12-05 08:30:57.000000000 +0000 +++ icingaweb2-2.11.4/debian/patches/series 2023-08-09 17:45:18.000000000 +0000 @@ -1 +1,2 @@ php8.2.patch +error_reporting.patch