Package: release.debian.org Severity: normal Tags: stretch User: release.debian....@packages.debian.org Usertags: pu
We identified a deprecated constructor call in the PHP package gosa-plugin-pwreset. The attached .debdiff fixes that. Please ACK for upload to stretch-pu. Thanks, Mike -- System Information: Debian Release: 9.3 APT prefers stable APT policy: (990, 'stable'), (500, 'stable-updates') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diff -Nru gosa-plugin-pwreset-0.99.4/debian/changelog gosa-plugin-pwreset-0.99.4/debian/changelog --- gosa-plugin-pwreset-0.99.4/debian/changelog 2017-01-11 20:47:54.000000000 +0100 +++ gosa-plugin-pwreset-0.99.4/debian/changelog 2018-01-10 21:24:39.000000000 +0100 @@ -1,3 +1,10 @@ +gosa-plugin-pwreset (0.99.4-1+deb9u1) stretch; urgency=medium + + * debian/patches: + + Add 0001_fix-deprecated-constructor-call.patch. (Closes: #886848). + + -- Mike Gabriel <mike.gabr...@das-netzwerkteam.de> Wed, 10 Jan 2018 21:24:39 +0100 + gosa-plugin-pwreset (0.99.4-1) unstable; urgency=medium * New upstream release. diff -Nru gosa-plugin-pwreset-0.99.4/debian/patches/0001_fix-deprecated-constructor-call.patch gosa-plugin-pwreset-0.99.4/debian/patches/0001_fix-deprecated-constructor-call.patch --- gosa-plugin-pwreset-0.99.4/debian/patches/0001_fix-deprecated-constructor-call.patch 1970-01-01 01:00:00.000000000 +0100 +++ gosa-plugin-pwreset-0.99.4/debian/patches/0001_fix-deprecated-constructor-call.patch 2018-01-10 21:23:13.000000000 +0100 @@ -0,0 +1,23 @@ +From 314da53ab9316754894eda74d1fa6ed6a10fe199 Mon Sep 17 00:00:00 2001 +From: bzapiec <benjamin.zap...@gonicus.de> +Date: Tue, 28 Nov 2017 10:23:23 +0100 +Subject: [PATCH] fix deprecated constructor call + +--- + addons/pwreset/tabs_pwreset.inc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/addons/pwreset/tabs_pwreset.inc b/addons/pwreset/tabs_pwreset.inc +index bd7f889..f01214c 100644 +--- a/addons/pwreset/tabs_pwreset.inc ++++ b/addons/pwreset/tabs_pwreset.inc +@@ -24,7 +24,7 @@ class pwresettab extends tabs + + function __construct($config, $data, $dn) + { +- tabs::tabs($config, $data, $dn); ++ tabs::__construct($config, $data, $dn); + } + + function save_object($save_current= FALSE) + diff -Nru gosa-plugin-pwreset-0.99.4/debian/patches/README gosa-plugin-pwreset-0.99.4/debian/patches/README --- gosa-plugin-pwreset-0.99.4/debian/patches/README 1970-01-01 01:00:00.000000000 +0100 +++ gosa-plugin-pwreset-0.99.4/debian/patches/README 2016-11-02 08:38:06.000000000 +0100 @@ -0,0 +1,4 @@ +0xxx: Grabbed from upstream development. +1xxx: Possibly relevant for upstream adoption. +2xxx: Only relevant for official Debian release. + diff -Nru gosa-plugin-pwreset-0.99.4/debian/patches/series gosa-plugin-pwreset-0.99.4/debian/patches/series --- gosa-plugin-pwreset-0.99.4/debian/patches/series 1970-01-01 01:00:00.000000000 +0100 +++ gosa-plugin-pwreset-0.99.4/debian/patches/series 2018-01-10 21:23:31.000000000 +0100 @@ -0,0 +1 @@ +0001_fix-deprecated-constructor-call.patch