Debian Bug report logs - #569118
php-imlib: FTBFS with php 5.3

version graph

Package: src:php-imlib; Maintainer for src:php-imlib is Steve Langasek <vorlon@debian.org>;

Reported by: Raphael Geissert <geissert@debian.org>

Date: Wed, 10 Feb 2010 07:00:02 UTC

Severity: serious

Tags: sid

Merged with 571389

Found in version php-imlib/0.7-1

Fixed in version php-imlib/0.7-2

Done: Steve Langasek <vorlon@debian.org>

Bug is archived. No further changes may be made.

Toggle useless messages

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to debian-bugs-dist@lists.debian.org, Steve Langasek <vorlon@debian.org>:
Bug#569118; Package src:php-imlib. (Wed, 10 Feb 2010 07:00:04 GMT) (full text, mbox, link).


Message #3 received at submit@bugs.debian.org (full text, mbox, reply):

From: Raphael Geissert <geissert@debian.org>
To: submit@bugs.debian.org
Subject: php-imlib: FTBFS with php 5.3
Date: Wed, 10 Feb 2010 00:39:21 -0600
Source: php-imlib
Version: 0.7-1
Severity: serious
Tags: sid 

Hi,

Your package FTBFS with PHP 5.3 which is now in unstable.

Part of the build log follows:
> libtool: compile:  i486-linux-gnu-gcc -I. -I/tmp/buildd/php-imlib-0.7
> -DPHP_ATOM_INC -I/tmp/buildd/php-imlib-0.7/include
> -I/tmp/buildd/php-imlib-0.7/main -I/tmp/buildd/php-imlib-0.7
> -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM
> -I/usr/include/php5/Zend -I/usr/include/php5/ext
> -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
> -DHAVE_CONFIG_H -g -O2 -c /tmp/buildd/php-imlib-0.7/imlib.c  -fPIC -DPIC -o
> .libs/imlib.o
> /tmp/buildd/php-imlib-0.7/imlib.c:46: error: duplicate 'static'
> /tmp/buildd/php-imlib-0.7/imlib.c:54: error: duplicate 'static'
> /tmp/buildd/php-imlib-0.7/imlib.c:77: error: 'second_arg_force_ref'
> undeclared here (not in a function)
> /tmp/buildd/php-imlib-0.7/imlib.c:114:
> error: 'third_arg_force_ref' undeclared here (not in a function)

There are some other warnings about deprecated functions.

Cheers,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net




Forcibly Merged 569118 571389. Request was from Steve Langasek <vorlon@debian.org> to control@bugs.debian.org. (Thu, 25 Feb 2010 11:13:28 GMT) (full text, mbox, link).


Information forwarded to debian-bugs-dist@lists.debian.org, Steve Langasek <vorlon@debian.org>:
Bug#569118; Package src:php-imlib. (Fri, 05 Mar 2010 13:12:02 GMT) (full text, mbox, link).


Acknowledgement sent to "Michael Bienia" <michael@bienia.de>:
Extra info received and forwarded to list. Copy sent to Steve Langasek <vorlon@debian.org>. (Fri, 05 Mar 2010 13:12:03 GMT) (full text, mbox, link).


Message #10 received at 569118@bugs.debian.org (full text, mbox, reply):

From: "Michael Bienia" <michael@bienia.de>
To: 569118@bugs.debian.org
Subject: Re: Bug#569118: php-imlib: FTBFS with php 5.3
Date: 5 Mar 2010 14:09:23 +0100
On 2010-02-10 00:39:21 -0600, Raphael Geissert wrote:
> > /tmp/buildd/php-imlib-0.7/imlib.c:46: error: duplicate 'static'
> > /tmp/buildd/php-imlib-0.7/imlib.c:54: error: duplicate 'static'
> > /tmp/buildd/php-imlib-0.7/imlib.c:77: error: 'second_arg_force_ref'
> > undeclared here (not in a function)
> > /tmp/buildd/php-imlib-0.7/imlib.c:114:
> > error: 'third_arg_force_ref' undeclared here (not in a function)

After googling a little bit I found the commit which removed those
declarations from zend_modules.h:
http://github.com/php/php-src/commit/d09789e53096b5afe625240172ee397e60198289

Copying the needed declarations into imlib.c lets it build again.
Attached is a patch to fix the FTBFS (the deprecation warnings are still
there). It would be good if an user of it could confirm that is still
works as expected (didn't had time to test it yet).

Michael

--- php-imlib-0.7/imlib.c
+++ php-imlib-0.7/imlib.c
@@ -42,7 +42,17 @@
 
 ZEND_DECLARE_MODULE_GLOBALS(imlib);
 
-static
+	ZEND_BEGIN_ARG_INFO(second_arg_force_ref, 0)
+		ZEND_ARG_PASS_INFO(0)
+		ZEND_ARG_PASS_INFO(1)
+	ZEND_END_ARG_INFO();
+
+	ZEND_BEGIN_ARG_INFO(third_arg_force_ref, 0)
+		ZEND_ARG_PASS_INFO(0)
+		ZEND_ARG_PASS_INFO(0)
+		ZEND_ARG_PASS_INFO(1)
+	ZEND_END_ARG_INFO();
+
 	ZEND_BEGIN_ARG_INFO(third_and_fourth_arg_force_ref, 0)
 		ZEND_ARG_PASS_INFO(0)
 		ZEND_ARG_PASS_INFO(0)
@@ -50,7 +60,6 @@
 		ZEND_ARG_PASS_INFO(1)
 	ZEND_END_ARG_INFO();
 
-static
 	ZEND_BEGIN_ARG_INFO(second_through_fifth_arg_force_ref, 0)
 		ZEND_ARG_PASS_INFO(0)
 		ZEND_ARG_PASS_INFO(1)




Information forwarded to debian-bugs-dist@lists.debian.org, Steve Langasek <vorlon@debian.org>:
Bug#569118; Package src:php-imlib. (Wed, 27 Apr 2011 17:27:03 GMT) (full text, mbox, link).


Acknowledgement sent to Bryan R <bungholio@shagz.net>:
Extra info received and forwarded to list. Copy sent to Steve Langasek <vorlon@debian.org>. (Wed, 27 Apr 2011 17:27:03 GMT) (full text, mbox, link).


Message #15 received at 569118@bugs.debian.org (full text, mbox, reply):

From: Bryan R <bungholio@shagz.net>
To: 569118@bugs.debian.org
Subject: Re: Bug#569118: php-imlib: FTBFS with php 5.3
Date: Wed, 27 Apr 2011 12:16:41 -0500
On Fri, Mar 05, 2010 at 02:09:23PM +0100, Michael Bienia wrote:
> It would be good if an user of it could confirm that is still works as
> expected (didn't had time to test it yet).

It does appear to work as expected, so far as I've been able to tell.
Deprecation warnings are also still happening during compilation.

Full build log follows:

/bin/bash /tmp/build/php-imlib-0.7/libtool --mode=compile cc  -I. -I/tmp/build/php-imlib-0.7 -DPHP_ATOM_INC -I/tmp/build/php-imlib-0.7/include -I/tmp/build/php-imlib-0.7/main -I/tmp/build/php-imlib-0.7 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -c /tmp/build/php-imlib-0.7/imlib.c -o imlib.lo 
libtool: compile:  cc -I. -I/tmp/build/php-imlib-0.7 -DPHP_ATOM_INC -I/tmp/build/php-imlib-0.7/include -I/tmp/build/php-imlib-0.7/main -I/tmp/build/php-imlib-0.7 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -c /tmp/build/php-imlib-0.7/imlib.c  -fPIC -DPIC -o .libs/imlib.o
/tmp/build/php-imlib-0.7/imlib.c: In function ‘_php_imlib_draw_something’:
/tmp/build/php-imlib-0.7/imlib.c:501: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘_php_imlib_single_arg’:
/tmp/build/php-imlib-0.7/imlib.c:533: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_add_color_to_color_range’:
/tmp/build/php-imlib-0.7/imlib.c:560: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_blend_image_onto_image’:
/tmp/build/php-imlib-0.7/imlib.c:586: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_clone_image’:
/tmp/build/php-imlib-0.7/imlib.c:622: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_create_cropped_image’:
/tmp/build/php-imlib-0.7/imlib.c:661: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_create_cropped_scaled_image’:
/tmp/build/php-imlib-0.7/imlib.c:685: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_create_image’:
/tmp/build/php-imlib-0.7/imlib.c:714: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_create_rotated_image’:
/tmp/build/php-imlib-0.7/imlib.c:743: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_create_scaled_image’:
/tmp/build/php-imlib-0.7/imlib.c:777: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_dump_image’:
/tmp/build/php-imlib-0.7/imlib.c:820: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_free_color_range’:
/tmp/build/php-imlib-0.7/imlib.c:913: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_free_font’:
/tmp/build/php-imlib-0.7/imlib.c:930: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_free_image’:
/tmp/build/php-imlib-0.7/imlib.c:947: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_get_text_size’:
/tmp/build/php-imlib-0.7/imlib.c:966: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_blur’:
/tmp/build/php-imlib-0.7/imlib.c:1002: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_draw_polygon’:
/tmp/build/php-imlib-0.7/imlib.c:1048: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_fill_color_range_rectangle’:
/tmp/build/php-imlib-0.7/imlib.c:1097: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_fill_polygon’:
/tmp/build/php-imlib-0.7/imlib.c:1145: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_format’:
/tmp/build/php-imlib-0.7/imlib.c:1216: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_get_filename’:
/tmp/build/php-imlib-0.7/imlib.c:1240: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_get_height’:
/tmp/build/php-imlib-0.7/imlib.c:1264: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_get_width’:
/tmp/build/php-imlib-0.7/imlib.c:1286: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_has_alpha’:
/tmp/build/php-imlib-0.7/imlib.c:1307: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_modify_alpha’:
/tmp/build/php-imlib-0.7/imlib.c:1337: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_set_format’:
/tmp/build/php-imlib-0.7/imlib.c:1377: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_image_sharpen’:
/tmp/build/php-imlib-0.7/imlib.c:1405: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_load_font’:
/tmp/build/php-imlib-0.7/imlib.c:1480: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_load_image’:
/tmp/build/php-imlib-0.7/imlib.c:1506: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_polygon_add_point’:
/tmp/build/php-imlib-0.7/imlib.c:1543: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_polygon_contains_point’:
/tmp/build/php-imlib-0.7/imlib.c:1567: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_polygon_free’:
/tmp/build/php-imlib-0.7/imlib.c:1599: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_polygon_get_bounds’:
/tmp/build/php-imlib-0.7/imlib.c:1617: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_save_image’:
/tmp/build/php-imlib-0.7/imlib.c:1664: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_text_draw’:
/tmp/build/php-imlib-0.7/imlib.c:1713: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/tmp/build/php-imlib-0.7/imlib.c: In function ‘zif_imlib_set_cache_size’:
/tmp/build/php-imlib-0.7/imlib.c:1754: warning: ‘zend_get_parameters_ex’ is deprecated (declared at /usr/include/php5/Zend/zend_API.h:222)
/bin/bash /tmp/build/php-imlib-0.7/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/build/php-imlib-0.7/include -I/tmp/build/php-imlib-0.7/main -I/tmp/build/php-imlib-0.7 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -o imlib.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/build/php-imlib-0.7/modules  imlib.lo -lImlib2
libtool: link: cc -shared  .libs/imlib.o   /usr/lib/libImlib2.so    -Wl,-soname -Wl,imlib.so -o .libs/imlib.so
libtool: link: ( cd ".libs" && rm -f "imlib.la" && ln -s "../imlib.la" "imlib.la" )
/bin/bash /tmp/build/php-imlib-0.7/libtool --mode=install cp ./imlib.la /tmp/build/php-imlib-0.7/modules
libtool: install: cp ./.libs/imlib.so /tmp/build/php-imlib-0.7/modules/imlib.so
libtool: install: cp ./.libs/imlib.lai /tmp/build/php-imlib-0.7/modules/imlib.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /tmp/build/php-imlib-0.7/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /tmp/build/php-imlib-0.7/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------

Build complete.





Reply sent to Steve Langasek <vorlon@debian.org>:
You have taken responsibility. (Wed, 27 Apr 2011 22:06:05 GMT) (full text, mbox, link).


Notification sent to Raphael Geissert <geissert@debian.org>:
Bug acknowledged by developer. (Wed, 27 Apr 2011 22:06:05 GMT) (full text, mbox, link).


Message #20 received at 569118-close@bugs.debian.org (full text, mbox, reply):

From: Steve Langasek <vorlon@debian.org>
To: 569118-close@bugs.debian.org
Subject: Bug#569118: fixed in php-imlib 0.7-2
Date: Wed, 27 Apr 2011 22:04:09 +0000
Source: php-imlib
Source-Version: 0.7-2

We believe that the bug you reported is fixed in the latest version of
php-imlib, which is due to be installed in the Debian FTP archive:

php-imlib_0.7-2.diff.gz
  to main/p/php-imlib/php-imlib_0.7-2.diff.gz
php-imlib_0.7-2.dsc
  to main/p/php-imlib/php-imlib_0.7-2.dsc
php-imlib_0.7-2_amd64.deb
  to main/p/php-imlib/php-imlib_0.7-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 569118@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steve Langasek <vorlon@debian.org> (supplier of updated php-imlib package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 27 Apr 2011 17:33:55 +0000
Source: php-imlib
Binary: php-imlib
Architecture: source amd64
Version: 0.7-2
Distribution: unstable
Urgency: low
Maintainer: Steve Langasek <vorlon@debian.org>
Changed-By: Steve Langasek <vorlon@debian.org>
Description: 
 php-imlib  - PHP Imlib2 Extension
Closes: 490036 569118 591530 619722
Changes: 
 php-imlib (0.7-2) unstable; urgency=low
 .
   * imlib.c: update for compatibility with php 5.3; thanks to Michael Bienia
     <michael@bienia.de> for the patch.  Closes: #569118, #591530, LP: #555567.
   * debian/rules: don't ignore errors from make distclean.
   * update package section from web to php.
   * drop postinst script for migration from php4, no longer a concern.
   * Standards-Version: 3.9.2.
   * update suggested font packages to match what's currently available in
     the archive.  Closes: #490036, #619722.
   * fix /usr/share/common-licenses reference in debian/copyright.
   * jump to dh.
Checksums-Sha1: 
 20821d345369829d11c645a27ccae3d75c1f94fe 1608 php-imlib_0.7-2.dsc
 3e8b7bbb6a54e2eb6144e97bb7b2ddf302df0b4a 5309 php-imlib_0.7-2.diff.gz
 75fdbb925ae0a2e9705814d3f541b183756d22a4 33920 php-imlib_0.7-2_amd64.deb
Checksums-Sha256: 
 8c1eed70921c7fb89ef36d03aedce4eb1a3bd9f64c0d55ee7d260afb270b22be 1608 php-imlib_0.7-2.dsc
 3892768540f5ccc16ab3e1b7076866b802d5f7bd5c4580220b814790651f21a1 5309 php-imlib_0.7-2.diff.gz
 862caa7410faf71fcf9416f77916734c1ff72e70064c6be0be86f98f65641063 33920 php-imlib_0.7-2_amd64.deb
Files: 
 70646fc90986512a26d1f93cf64cd03c 1608 php optional php-imlib_0.7-2.dsc
 cb6ecd3fe3a1f3678189bdbd96b9c292 5309 php optional php-imlib_0.7-2.diff.gz
 cbb5b7a95bf729e7b8b6b3995942e3a8 33920 php optional php-imlib_0.7-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIVAwUBTbiOXlaNMPMhshM9AQhOiA/8C35glwK6ru+STRWHK5/uSkE6ZAylFVo2
qthmb3XVcmyI5mo0AwCiY1lPy/y2g8/OUhxWVP2Q+osvtKk2GqdZjYVe5QBqdK0J
4Mkq1Pd9guN8HWx0O+vqflcM7dwimYwWLJdUYuBei+WpJ42/SdTQyCuEMkxPs++C
QSqXO6Jy8r3nmfnHtp6qBboC2Sxh6EravDsj4GXUBAfJy9y3MTDl+s2aEd4zGdxz
Q718TAcWAq3eoU0qrHjfe0cUtB2f/Mbnr4OU7BnzBx+9AhmMXQrl9qvF21I1d3P5
6gXoOLpOIpVEx0XAa/6b2PBqZzlc5d3KjEmUJUXQENCmNoWyNGDfDq51tLN8GCWG
x1SxxKEj3BVm/+lPc4oHf0dPT0bOxRmsbRw+OyTbDqr1a5k8XuJSiSLlva980eqM
ytsjMq6fedcyn1CFEa1QEaICr65lKXXCW72zoECDfCJQmlEDWVWPnHcsZsz/13XI
qvjkP7a8uHlWRKrbwMtxnR6Ao29AlDXu7BeN9GWL/AX5nXDT5qsH7IjjJuT82H3S
+BjL9T3Da0Br5nk39WKWyDlSiDPxBJY+JX0bWg9zRaBoB7n6AKWnngvPBkWSxdyE
LSi5vgNB2hTkKVHFzDnOzCYuOR3piS/nxEUwwoI2vi6c4J/RSzCshm9hRJygNz+A
FIXk3NpD4Lw=
=2b9X
-----END PGP SIGNATURE-----





Reply sent to Steve Langasek <vorlon@debian.org>:
You have taken responsibility. (Wed, 27 Apr 2011 22:06:06 GMT) (full text, mbox, link).


Notification sent to Lucas Nussbaum <lucas@lucas-nussbaum.net>:
Bug acknowledged by developer. (Wed, 27 Apr 2011 22:06:06 GMT) (full text, mbox, link).


Bug archived. Request was from Debbugs Internal Request <owner@bugs.debian.org> to internal_control@bugs.debian.org. (Tue, 14 Jun 2011 07:35:23 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


Debian bug tracking system administrator <owner@bugs.debian.org>. Last modified: Sun Jan 7 04:10:50 2018; Machine Name: buxtehude

Debian Bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.