Your message dated Sun, 25 Dec 2011 15:02:29 +0000
with message-id <e1repan-0005rn...@franck.debian.org>
and subject line Bug#630638: fixed in pidgin-sipe 1.11.2-1.1
has caused the Debian Bug report #630638,
regarding pidgin-sipe: FTBFS with pdigin 2.8.0-1 in unstable
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 ow...@bugs.debian.org
immediately.)
--
630638: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630638
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: pidgin-sipe
Version: 1.11.2-1
Severity: serious
Tags: patch
Justification: fails to build from source
I was trying to rebuild pidgin-sipe against the latest pidgin in unstable and
it failed with the following error :
.....
mv -f .deps/libsipe_backend_la-purple-debug.Tpo .deps/libsipe_backend_la-
purple-debug.Plo
/bin/bash ../../libtool --tag=CC --mode=compile x86_64-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I../.. -Werror -Wall -Wextra -Werror=declaration-
after-statement -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
-I/usr/include/libpurple -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
-I./../api -DLOCALEDIR=\"/usr/share/locale\" -Wall -g -O2 -MT
libsipe_backend_la-purple-dnsquery.lo -MD -MP -MF .deps/libsipe_backend_la-
purple-dnsquery.Tpo -c -o libsipe_backend_la-purple-dnsquery.lo `test -f
'purple-dnsquery.c' || echo './'`purple-dnsquery.c
libtool: compile: x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -Werror
-Wall -Wextra -Werror=declaration-after-statement -I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include -I/usr/include/libpurple -I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include -I./../api -DLOCALEDIR=\"/usr/share/locale\" -Wall
-g -O2 -MT libsipe_backend_la-purple-dnsquery.lo -MD -MP -MF .deps
/libsipe_backend_la-purple-dnsquery.Tpo -c purple-dnsquery.c -fPIC -DPIC -o
..libs/libsipe_backend_la-purple-dnsquery.o
In file included from purple-dnsquery.c:25:0:
/usr/include/libpurple/dnssrv.h:115:51: error: unknown type name
'PurpleAccount'
In file included from purple-dnsquery.c:25:0:
/usr/include/libpurple/dnssrv.h:150:51: error: unknown type name
'PurpleAccount'
purple-dnsquery.c: In function 'sipe_backend_dns_query':
purple-dnsquery.c:60:28: error: assignment from incompatible pointer type
[-Werror]
cc1: all warnings being treated as errors
make[4]: *** [libsipe_backend_la-purple-dnsquery.lo] Error 1
make[4]: Leaving directory `/home/iamer/tmp/pidgin-sipe-1.11.2/src/purple'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/iamer/tmp/pidgin-sipe-1.11.2/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/iamer/tmp/pidgin-sipe-1.11.2'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/iamer/tmp/pidgin-sipe-1.11.2'
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Using a patch from archlinux I found at
http://aur.archlinux.org/packages.php?ID=16170&comments=all&detail=0 it was
able to build
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (200,
'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.39-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages pidgin-sipe depends on:
ii libc6 2.13-7 Embedded GNU C Library: Shared lib
ii libcomerr2 1.41.12-4 common error description library
ii libglib2.0-0 2.28.6-2 GLib library of C routines
ii libgmime-2.4-2 2.4.25-1 MIME message parser and creator li
ii libgssapi-krb5-2 1.9.1+dfsg-1+b1 MIT Kerberos runtime libraries - k
ii libk5crypto3 1.9.1+dfsg-1+b1 MIT Kerberos runtime libraries - C
ii libkrb5-3 1.9.1+dfsg-1+b1 MIT Kerberos runtime libraries
ii libnspr4-0d 4.8.8-1 NetScape Portable Runtime Library
ii libnss3-1d 3.12.10-1 Network Security Service libraries
ii libpurple0 2.8.0-1 multi-protocol instant messaging l
ii libxml2 2.7.8.dfsg-3 GNOME XML library
pidgin-sipe recommends no packages.
pidgin-sipe suggests no packages.
-- no debconf information
diff -drupN pidgin-sipe-1.11.2/src/purple/purple-dnsquery.c pidgin-sipe-1.11.2-new/src/purple/purple-dnsquery.c
--- pidgin-sipe-1.11.2/src/purple/purple-dnsquery.c 2010-11-03 05:13:51.000000000 +0100
+++ pidgin-sipe-1.11.2-new/src/purple/purple-dnsquery.c 2011-06-11 00:14:57.000000000 +0200
@@ -22,6 +22,10 @@
#include "glib.h"
+#include "version.h"
+#if PURPLE_VERSION_CHECK(2,8,0)
+#include "account.h"
+#endif
#include "dnssrv.h"
#include "sipe-backend.h"
diff -drupN pidgin-sipe-1.11.2/src/purple/purple-plugin.c pidgin-sipe-1.11.2-new/src/purple/purple-plugin.c
--- pidgin-sipe-1.11.2/src/purple/purple-plugin.c 2010-11-03 05:13:51.000000000 +0100
+++ pidgin-sipe-1.11.2-new/src/purple/purple-plugin.c 2011-06-10 23:58:20.000000000 +0200
@@ -506,6 +506,10 @@ static PurplePluginProtocolInfo prpl_inf
NULL, /* get_moods */
NULL, /* set_public_alias */
NULL, /* get_public_alias */
+#if PURPLE_VERSION_CHECK(2,8,0)
+ NULL, /* add_buddy_with_invite */
+ NULL, /* add_buddies_with_invite */
+#endif
#endif
#endif
#endif
diff -drupN pidgin-sipe-1.11.2/src/purple/purple-private.h pidgin-sipe-1.11.2-new/src/purple/purple-private.h
--- pidgin-sipe-1.11.2/src/purple/purple-private.h 2010-11-03 05:13:51.000000000 +0100
+++ pidgin-sipe-1.11.2-new/src/purple/purple-private.h 2011-06-11 00:14:49.000000000 +0200
@@ -20,18 +20,28 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include "version.h"
+
/* Forward declarations */
struct sipe_core_public;
struct _PurpleAccount;
struct _PurpleConnection;
+#if PURPLE_VERSION_CHECK(2,8,0)
+struct _PurpleSrvTxtQueryData;
+#else
struct _PurpleSrvQueryData;
+#endif
struct _PurpleXfer;
struct sipe_backend_private {
struct sipe_core_public *public;
struct _PurpleConnection *gc;
struct _PurpleAccount *account;
+#if PURPLE_VERSION_CHECK(2,8,0)
+ struct _PurpleSrvTxtQueryData *dns_query;
+#else
struct _PurpleSrvQueryData *dns_query;
+#endif
time_t last_keepalive;
};
--- End Message ---
--- Begin Message ---
Source: pidgin-sipe
Source-Version: 1.11.2-1.1
We believe that the bug you reported is fixed in the latest version of
pidgin-sipe, which is due to be installed in the Debian FTP archive:
pidgin-sipe_1.11.2-1.1.debian.tar.gz
to main/p/pidgin-sipe/pidgin-sipe_1.11.2-1.1.debian.tar.gz
pidgin-sipe_1.11.2-1.1.dsc
to main/p/pidgin-sipe/pidgin-sipe_1.11.2-1.1.dsc
pidgin-sipe_1.11.2-1.1_i386.deb
to main/p/pidgin-sipe/pidgin-sipe_1.11.2-1.1_i386.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 630...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
gregor herrmann <gre...@debian.org> (supplier of updated pidgin-sipe 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 ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Fri, 23 Dec 2011 15:31:52 +0100
Source: pidgin-sipe
Binary: pidgin-sipe
Architecture: source i386
Version: 1.11.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Anibal Avelar <aave...@cofradia.org>
Changed-By: gregor herrmann <gre...@debian.org>
Description:
pidgin-sipe - Pidgin protocol plugin to connect to MS Office Communicator
Closes: 625404 630638
Changes:
pidgin-sipe (1.11.2-1.1) unstable; urgency=low
.
* Non-maintainer upload.
* Fix "FTBFS with pdigin 2.8.0-1 in unstable":
add patch sipe-purple-2.8.0.patch from archlinux, forwarded to the BTS
by Islam Amer.
(Closes: #630638)
* Fix "ftbfs with gcc-4.6 -Werror":
add patch fix-werror.patch from peter green.
(Closes: #625404) (LP: #832881)
Checksums-Sha1:
4ffd33bb7935e818f48d404150ed88439fffb155 1903 pidgin-sipe_1.11.2-1.1.dsc
688831620bc8f9c22ccb120d8fe556eabd6caa26 8763
pidgin-sipe_1.11.2-1.1.debian.tar.gz
866c37b2eba5990eaf5c99aa66358743bd3ae127 221550 pidgin-sipe_1.11.2-1.1_i386.deb
Checksums-Sha256:
36f1433145b6c91268afecbe618b9f2cab830f2711318128b68e85ee47085e18 1903
pidgin-sipe_1.11.2-1.1.dsc
4f4b8253c613617792cff0a172fc8f557532c05eecae88b8596fc8c6fc991730 8763
pidgin-sipe_1.11.2-1.1.debian.tar.gz
7da7e931b6bd49c3deee1095b7d73c5433046f7d8e373c3a20301d29c5988b85 221550
pidgin-sipe_1.11.2-1.1_i386.deb
Files:
6bc38acc843b3459f4056edf083da909 1903 misc optional pidgin-sipe_1.11.2-1.1.dsc
d2fd4f7836054be8525ba9b6cde2e7af 8763 misc optional
pidgin-sipe_1.11.2-1.1.debian.tar.gz
b68dd271c5fdf74caa838994c96a5d7b 221550 net optional
pidgin-sipe_1.11.2-1.1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBCAAGBQJO9JLiAAoJELs6aAGGSaoGILgQAKlzDFshEVCKDRQPoG2PMK4G
tseYF6xz7+lvzCB2rgiXGiJQiagqZhpGustvgfa1RVn+e2zubPkZfk8YEqJriXOh
Xi1+fxraRyvI1DCh1vG6MwWPx1PVF66+HOc/cmmgre5RSSFbj3XF85iahW2L7T+P
zTEUDOeA5oV1rti/UdWb0Me0KT91JltSYnmXJbxTmJINfKRK3gPcEfLuASJg1uRl
4fQoeacT2p9OAWsNPl1H9W/TxjYDTpbl/SCkk44fmIaKqkY/wcspq86RV89Ux1aP
oCq9cchpSbm+uE8h1vVcm+HozB6/EnVX5L5WkCzfdXM1U5YuC+g5yEKAl8V8JkdU
fhj7/cChrMw1H5sf8clU3ZdINEdsqsV6zpnw8aVm/PPzB1dr/+5dzd3swH5AibyJ
IrzN3O0Iu2/0Yr9X4JW4uJDClwYnBX/ujpB3nmaLmsUhF1k+cTuWemvQuul1k9/B
EwHDJZNfI2E3ACJ2U1AIgglV7VgU1I8H+xt3AypGj11rvpVJbcJmBQ4PQFq1W20l
cKD7d6MAvzJS4h/jnDPpIQMfwbd+7luLEOgSU9rz04AhR3DSV9uhhytHuVBWxor4
MVdn3Ewkh1Br5Crv7zh4I6q3MVbosnIRwGLKcY9gvmIykanQqYmA+nzGDEqU35UZ
ekNo/3d1JnjGKjeA6MlD
=aOGY
-----END PGP SIGNATURE-----
--- End Message ---