Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-02-25 Thread Adam D. Barratt
Control: tags -1 + pending

On Fri, 2018-02-23 at 18:02 +, Adam D. Barratt wrote:
> Control: tags -1 + confirmed
> 
> On Wed, 2018-01-10 at 21:27 +0100, Mike Gabriel wrote:
> > We identified a deprecated constructor call in the PHP package
> > gosa-
> > plugin-pwreset.
> > 
> 
> Please go ahead.
> 

Uploaded and flagged for acceptance.

Regards,

Adam



Processed: Re: Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-02-25 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + pending
Bug #886877 [release.debian.org] stretch-pu: package 
gosa-plugin-pwreset/0.99.4-1+deb9u1
Added tag(s) pending.

-- 
886877: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886877
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-02-23 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Wed, 2018-01-10 at 21:27 +0100, Mike Gabriel wrote:
> We identified a deprecated constructor call in the PHP package gosa-
> plugin-pwreset.
> 

Please go ahead.

Regards,

Adam



Processed: Re: Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-02-23 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #886877 [release.debian.org] stretch-pu: package 
gosa-plugin-pwreset/0.99.4-1+deb9u1
Added tag(s) confirmed.

-- 
886877: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886877
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-01-10 Thread Holger Levsen
On Wed, Jan 10, 2018 at 09:27:38PM +0100, Mike Gabriel wrote:
> We identified a deprecated constructor call in the PHP package 
> gosa-plugin-pwreset.

to be clear, this is:

>++ Add 0001_fix-deprecated-constructor-call.patch. (Closes: #886848).

(which is fixed in sid).


-- 
cheers,
Holger (not involved in this at all, except reading d-edu mail)


signature.asc
Description: PGP signature


Bug#886877: stretch-pu: package gosa-plugin-pwreset/0.99.4-1+deb9u1

2018-01-10 Thread Mike Gabriel
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.0 
+0100
+++ gosa-plugin-pwreset-0.99.4/debian/changelog 2018-01-10 21:24:39.0 
+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   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.0 +0100
+++ 
gosa-plugin-pwreset-0.99.4/debian/patches/0001_fix-deprecated-constructor-call.patch
2018-01-10 21:23:13.0 +0100
@@ -0,0 +1,23 @@
+From 314da53ab9316754894eda74d1fa6ed6a10fe199 Mon Sep 17 00:00:00 2001
+From: bzapiec 
+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/README1970-01-01 
01:00:00.0 +0100
+++ gosa-plugin-pwreset-0.99.4/debian/patches/README2016-11-02 
08:38:06.0 +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/series1970-01-01 
01:00:00.0 +0100
+++ gosa-plugin-pwreset-0.99.4/debian/patches/series2018-01-10 
21:23:31.0 +0100
@@ -0,0 +1 @@
+0001_fix-deprecated-constructor-call.patch