Your message dated Sat, 02 Apr 2016 14:20:04 +0100 with message-id <1459603204.2441.216.camel@adam-barratt.org.uk> and subject line Fix included in stable has caused the Debian Bug report #812961, regarding jessie-pu: package php-net-ldap2/2.0.12-1+deb8u1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 812961: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812961 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: submit@bugs.debian.org
- Subject: jessie-pu: package php-net-ldap2/2.0.12-1+deb8u1
- From: Prach Pongpanich <prach@debian.org>
- Date: Thu, 28 Jan 2016 11:13:23 +0700
- Message-id: <20160128041323.GA2573@bravo>
Package: release.debian.org Severity: normal Tags: jessie User: release.debian.org@packages.debian.org Usertags: pu Hi, Please accept the fixes for php5/5.6.17+dfsg-0+deb8u1 upgrade break php-net-ldap2 in jessie (#812892). Source debdiff attached. Regards, Prachdiff -Nru php-net-ldap2-2.0.12/debian/changelog php-net-ldap2-2.0.12/debian/changelog --- php-net-ldap2-2.0.12/debian/changelog 2013-07-18 22:31:10.000000000 +0700 +++ php-net-ldap2-2.0.12/debian/changelog 2016-01-27 13:07:14.000000000 +0700 @@ -1,3 +1,9 @@ +php-net-ldap2 (2.0.12-1+deb8u1) jessie; urgency=medium + + * Add Fix_Fatal_error_with_PEAR_1.10.0.patch (Closes: #812788) + + -- Prach Pongpanich <prachpub@gmail.com> Wed, 27 Jan 2016 13:05:48 +0700 + php-net-ldap2 (2.0.12-1) unstable; urgency=low [ Prach Pongpanich ] diff -Nru php-net-ldap2-2.0.12/debian/gbp.conf php-net-ldap2-2.0.12/debian/gbp.conf --- php-net-ldap2-2.0.12/debian/gbp.conf 2013-07-18 22:31:10.000000000 +0700 +++ php-net-ldap2-2.0.12/debian/gbp.conf 2016-01-27 10:02:20.000000000 +0700 @@ -1,6 +1,6 @@ [DEFAULT] upstream-branch = upstream-sid -debian-branch = debian-sid +debian-branch = debian/jessie pristine-tar = True [git-buildpackage] diff -Nru php-net-ldap2-2.0.12/debian/patches/Fix_Fatal_error_with_PEAR_1.10.0.patch php-net-ldap2-2.0.12/debian/patches/Fix_Fatal_error_with_PEAR_1.10.0.patch --- php-net-ldap2-2.0.12/debian/patches/Fix_Fatal_error_with_PEAR_1.10.0.patch 1970-01-01 07:00:00.000000000 +0700 +++ php-net-ldap2-2.0.12/debian/patches/Fix_Fatal_error_with_PEAR_1.10.0.patch 2016-01-27 11:24:30.000000000 +0700 @@ -0,0 +1,55 @@ +From df99b63de9b2459b5e0cd94bd26f38f3010f992e Mon Sep 17 00:00:00 2001 +From: Christian Weiske <cweiske@cweiske.de> +Date: Mon, 26 Oct 2015 22:55:20 +0100 +Subject: [PATCH] Fix #20969: Fatal error with PEAR 1.10.0 / constructor + visiblity + +PEAR's constructor is public, so the constructor of PEAR-extending classes +also needs to be public + +See http://pear.php.net/bugs/20969 +--- + Net_LDAP2-2.0.12/Net/LDAP2/Entry.php | 2 +- + Net_LDAP2-2.0.12/Net/LDAP2/RootDSE.php | 2 +- + Net_LDAP2-2.0.12/Net/LDAP2/Schema.php | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/Net_LDAP2-2.0.12/Net/LDAP2/Entry.php b/Net_LDAP2-2.0.12/Net/LDAP2/Entry.php +index aedb3f6..9b9d67c 100644 +--- a/Net_LDAP2-2.0.12/Net/LDAP2/Entry.php ++++ b/Net_LDAP2-2.0.12/Net/LDAP2/Entry.php +@@ -146,7 +146,7 @@ class Net_LDAP2_Entry extends PEAR + * @access protected + * @return none + */ +- protected function __construct(&$ldap, $entry = null) ++ public function __construct(&$ldap, $entry = null) + { + $this->PEAR('Net_LDAP2_Error'); + +diff --git a/Net_LDAP2-2.0.12/Net/LDAP2/RootDSE.php b/Net_LDAP2-2.0.12/Net/LDAP2/RootDSE.php +index dd30eef..0693d95 100644 +--- a/Net_LDAP2-2.0.12/Net/LDAP2/RootDSE.php ++++ b/Net_LDAP2-2.0.12/Net/LDAP2/RootDSE.php +@@ -41,7 +41,7 @@ class Net_LDAP2_RootDSE extends PEAR + * + * @param Net_LDAP2_Entry &$entry Net_LDAP2_Entry object of the RootDSE + */ +- protected function __construct(&$entry) ++ public function __construct(&$entry) + { + $this->_entry = $entry; + } +diff --git a/Net_LDAP2-2.0.12/Net/LDAP2/Schema.php b/Net_LDAP2-2.0.12/Net/LDAP2/Schema.php +index ecc3b69..c5e298a 100644 +--- a/Net_LDAP2-2.0.12/Net/LDAP2/Schema.php ++++ b/Net_LDAP2-2.0.12/Net/LDAP2/Schema.php +@@ -109,7 +109,7 @@ class Net_LDAP2_Schema extends PEAR + * + * @access protected + */ +- protected function __construct() ++ public function __construct() + { + $this->PEAR('Net_LDAP2_Error'); // default error class + } diff -Nru php-net-ldap2-2.0.12/debian/patches/series php-net-ldap2-2.0.12/debian/patches/series --- php-net-ldap2-2.0.12/debian/patches/series 1970-01-01 07:00:00.000000000 +0700 +++ php-net-ldap2-2.0.12/debian/patches/series 2016-01-27 10:04:15.000000000 +0700 @@ -0,0 +1 @@ +Fix_Fatal_error_with_PEAR_1.10.0.patchAttachment: signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
- To: 784679-done@bugs.debian.org, 784915-done@bugs.debian.org, 785047-done@bugs.debian.org, 785053-done@bugs.debian.org, 796947-done@bugs.debian.org, 797769-done@bugs.debian.org, 797906-done@bugs.debian.org, 798404-done@bugs.debian.org, 798949-done@bugs.debian.org, 801551-done@bugs.debian.org, 803199-done@bugs.debian.org, 804385-done@bugs.debian.org, 807969-done@bugs.debian.org, 810882-done@bugs.debian.org, 811024-done@bugs.debian.org, 811395-done@bugs.debian.org, 811425-done@bugs.debian.org, 812362-done@bugs.debian.org, 812500-done@bugs.debian.org, 812961-done@bugs.debian.org, 812990-done@bugs.debian.org, 813004-done@bugs.debian.org, 813071-done@bugs.debian.org, 813622-done@bugs.debian.org, 813645-done@bugs.debian.org, 814266-done@bugs.debian.org, 814269-done@bugs.debian.org, 814442-done@bugs.debian.org, 814651-done@bugs.debian.org, 815356-done@bugs.debian.org, 815469-done@bugs.debian.org, 815517-done@bugs.debian.org, 815520-done@bugs.debian.org, 815561-done@bugs.debian.org, 815598-done@bugs.debian.org, 815730-done@bugs.debian.org, 815788-done@bugs.debian.org, 816023-done@bugs.debian.org, 816033-done@bugs.debian.org, 816198-done@bugs.debian.org, 816243-done@bugs.debian.org, 816686-done@bugs.debian.org, 816697-done@bugs.debian.org, 816891-done@bugs.debian.org, 817015-done@bugs.debian.org, 817897-done@bugs.debian.org, 817970-done@bugs.debian.org, 817992-done@bugs.debian.org, 818006-done@bugs.debian.org, 818150-done@bugs.debian.org, 818532-done@bugs.debian.org, 818615-done@bugs.debian.org, 818620-done@bugs.debian.org, 818672-done@bugs.debian.org, 818679-done@bugs.debian.org, 818689-done@bugs.debian.org, 818801-done@bugs.debian.org, 819000-done@bugs.debian.org, 819031-done@bugs.debian.org, 819119-done@bugs.debian.org, 819201-done@bugs.debian.org, 819227-done@bugs.debian.org, 819243-done@bugs.debian.org, 819292-done@bugs.debian.org, 819326-done@bugs.debian.org, 819409-done@bugs.debian.org
- Subject: Fix included in stable
- From: "Adam D. Barratt" <adam@adam-barratt.org.uk>
- Date: Sat, 02 Apr 2016 14:20:04 +0100
- Message-id: <1459603204.2441.216.camel@adam-barratt.org.uk>
Version: 8.4 Hi, The packages referenced by these bugs were included in today's stable point release. Regards, Adam
--- End Message ---