Bug#444267: CVE-2007-4985, CVE-2007-4986, CVE-2007-4987, CVE-2007-4988 multiple vulnerabilities

2007-09-29 Thread Nico Golde
Hi,
I intend to NMU this bug on behalf of the testing security 
team.
I ported the patches to 6.2.4.5. The attached patch fixes 
the 4 CVE ids.

It will be also archived on:
http://people.debian.org/~nion/nmu-diff/imagemagick-6.2.4.5.dfsg1-1_6.2.4.5.dfsg1-1.1.patch

Kind regards
Nico

-- 
Nico Golde - http://ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -u imagemagick-6.2.4.5.dfsg1/coders/xwd.c imagemagick-6.2.4.5.dfsg1/coders/xwd.c
--- imagemagick-6.2.4.5.dfsg1/coders/xwd.c
+++ imagemagick-6.2.4.5.dfsg1/coders/xwd.c
@@ -99,6 +99,10 @@
 %
 %
 */
+
+#define CheckOverflowException(length,width,height) \
+(((height) != 0)  ((length)/((size_t) height) != ((size_t) width)))
+
 static MagickBooleanType IsXWD(const unsigned char *magick,const size_t length)
 {
   if (length  8)
@@ -233,7 +237,7 @@
   length=(size_t) header.header_size-sz_XWDheader;
   if (length  ((~0UL)/sizeof(*comment)))
 ThrowReaderException(CorruptImageError,ImproperImageHeader);
-  comment=(char *) AcquireMagickMemory((length+1)*sizeof(*comment));
+  comment=(char *) AcquireQuantumMemory(length+1,sizeof(*comment));
   if (comment == (char *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   count=ReadBlob(image,length,(unsigned char *) comment);
@@ -286,7 +290,8 @@
   length=(size_t) header.ncolors;
   if (length  ((~0UL)/sizeof(*colors)))
 ThrowReaderException(CorruptImageError,ImproperImageHeader);
-  colors=(XColor *) AcquireMagickMemory(length*sizeof(*colors));
+  colors=(XColor *) AcquireQuantumMemory(length,sizeof(*colors));
+
   if (colors == (XColor *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   for (i=0; i  (long) header.ncolors; i++)
@@ -328,7 +333,7 @@
   if (MAGICK_OVERFLOW(length,tmp,ximage-depth))
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
 }
-  ximage-data=(char *) AcquireMagickMemory(length);
+  ximage-data=(char *) AcquireQuantumMemory(length,sizeof(*ximage-data));
   if (ximage-data == (char *) NULL)
 ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
   count=ReadBlob(image,length,(unsigned char *) ximage-data);
@@ -344,6 +349,12 @@
 image-storage_class=DirectClass;
   else
 image-storage_class=PseudoClass;
+  if (SetImageExtent(image,0,0) == MagickFalse)
+  {
+  InheritException(exception,image-exception);
+  return(DestroyImageList(image));
+  }
+
   image-colors=header.ncolors;
   if (image_info-ping == MagickFalse)
 switch (image-storage_class)
@@ -713,8 +724,7 @@
   /*
 Dump colormap to file.
   */
-  colors=(XColor *)
-AcquireMagickMemory((size_t) image-colors*sizeof(*colors));
+  colors=(XColor *) AcquireQuantumMemory((size_t) image-colors,sizeof(*colors));
   if (colors == (XColor *) NULL)
 ThrowWriterException(ResourceLimitError,MemoryAllocationFailed);
   for (i=0; i  (long) image-colors; i++)
@@ -750,7 +760,7 @@
   length=3*bytes_per_line;
   if (image-storage_class == PseudoClass)
 length=bytes_per_line;
-  pixels=(unsigned char *) AcquireMagickMemory(length);
+  pixels=(unsigned char *) AcquireQuantumMemory(length,sizeof(*pixels));
   if (pixels == (unsigned char *) NULL)
 ThrowWriterException(ResourceLimitError,MemoryAllocationFailed);
   ResetMagickMemory(pixels,0,length);
diff -u imagemagick-6.2.4.5.dfsg1/coders/xcf.c imagemagick-6.2.4.5.dfsg1/coders/xcf.c
--- imagemagick-6.2.4.5.dfsg1/coders/xcf.c
+++ imagemagick-6.2.4.5.dfsg1/coders/xcf.c
@@ -305,7 +305,7 @@
   XCFPixelPacket *xcfdata, *xcfodata;
   unsigned char  *graydata;
 
-  xcfdata = xcfodata = (XCFPixelPacket *) AcquireMagickMemory(data_length);
+  xcfdata = xcfodata = (XCFPixelPacket *) AcquireQuantumMemory(data_length,sizeof(*xcfdata));
   graydata = (unsigned char *)xcfdata;  /* used by gray and indexed */
   nmemb_read_successfully = ReadBlob(image, data_length, (unsigned char *) xcfdata);
 
@@ -352,8 +352,7 @@
 
   bpp = (int) inDocInfo-bpp;
 
-  xcfdata = xcfodata = (unsigned char *)
-AcquireMagickMemory((size_t) data_length);
+  xcfdata = xcfodata = (unsigned char *) AcquireQuantumMemory((size_t) data_length,sizeof(*xcfdata));
 
   nmemb_read_successfully = ReadBlob(image, (size_t) data_length, xcfdata);
 
@@ -1149,8 +1148,8 @@
 
 
 /* allocate our array of layer info blocks */
-layer_info=(XCFLayerInfo *)
-  AcquireMagickMemory(number_layers*sizeof(XCFLayerInfo));
+layer_info=(XCFLayerInfo *) AcquireQuantumMemory((size_t) number_layers, sizeof(*layer_info));
+
 if (layer_info == (XCFLayerInfo *) NULL)
   ThrowReaderException(ResourceLimitError,MemoryAllocationFailed);
 (void) ResetMagickMemory(layer_info,0,number_layers*sizeof(XCFLayerInfo));
diff -u imagemagick-6.2.4.5.dfsg1/coders/dcm.c imagemagick-6.2.4.5.dfsg1/coders/dcm.c
--- imagemagick-6.2.4.5.dfsg1/coders/dcm.c
+++ 

Bug#417072: marked as done (depends on non-essential package debconf in postrm)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sun, 30 Sep 2007 00:02:06 +
with message-id [EMAIL PROTECTED]
and subject line Bug#417072: fixed in twig 2.8.3-2.3
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: twig
Version: 2.8.3-2.2
Severity: serious
Tags: etch-ignore
Justification: Policy violation, see section 7.2

hi,

while running archive wide piuparts tests your package failed on purge
because of debconf beeing unavailable during postrm:

  Purging configuration files for twig ...
  /var/lib/dpkg/info/twig.postrm: line 9: /usr/share/debconf/confmodule: No 
such file or directory
  dpkg: error processing twig (--purge):
   subprocess post-removal script returned error exit status 1
  Errors were encountered while processing:
   twig
  
the full log can be found here:

 http://people.debian.org/~abi/piuparts/twig

please be sure to use a conditional call to debconf and its commands (this is
just an example):

--
 if [ -f /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
 fi

 db_get ||:
--

Please also note: Bugs filed on Packages failing in postrm because of debconf
beeing unavailable are not considered RC for etch, so are tagged etch-ignore.

bye,
- michael


---End Message---
---BeginMessage---
Source: twig
Source-Version: 2.8.3-2.3

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

twig_2.8.3-2.3.diff.gz
  to pool/main/t/twig/twig_2.8.3-2.3.diff.gz
twig_2.8.3-2.3.dsc
  to pool/main/t/twig/twig_2.8.3-2.3.dsc
twig_2.8.3-2.3_all.deb
  to pool/main/t/twig/twig_2.8.3-2.3_all.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Arnaud Hocevar [EMAIL PROTECTED] (supplier of updated twig 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 29 Sep 2007 23:31:09 +
Source: twig
Binary: twig
Architecture: source all
Version: 2.8.3-2.3
Distribution: unstable
Urgency: low
Maintainer: Martin Langhoff [EMAIL PROTECTED]
Changed-By: Arnaud Hocevar [EMAIL PROTECTED]
Description: 
 twig   - The Web Information Gateway
Closes: 417072
Changes: 
 twig (2.8.3-2.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * postrm no longer uses debconf if not available.
   (Closes: #417072)
   * Fixed Standards-Version.
Files: 
 60f8426ce7aac034c54f3d40d3b7c566 614 web optional twig_2.8.3-2.3.dsc
 c51ac85274c7bc3f7586a4f292e24687 18816 web optional twig_2.8.3-2.3.diff.gz
 2c82d1e091cb024f40b756f4162eac1a 1488830 web optional twig_2.8.3-2.3_all.deb

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

iD8DBQFG/uPEfPP1rylJn2ERAuOjAKCX+T7UgNSaGACkVU3aOx5jgtxwXgCeKHOy
/2OymYBvswJZfFC2xh5Tg8g=
=eQkt
-END PGP SIGNATURE-


---End Message---


Processed: Patch for wing-0.7.27

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 432993 + patch
Bug#432993: wing: not a binNMU safe package
Tags were: patch
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441696: aptitude: package content changed if build twice or more times in a row

2007-09-29 Thread Cyril Brulebois
tag 441696 patch pending
thanks

Patrick Winnertz [EMAIL PROTECTED] (10/09/2007):
 Lucas Nussbaum has rebuiltthe whole archive three times on i386 and
 the content of your packages builded there differ. This means that the
 package which was generated on the fist build contains or doesn't
 contains several files which are or aren't included in the package
 which build two or three times.

Hi,

see the proposed patch, which resolves this issue, and some others. I've
been planning to upload to DELAYED/7 or so, probably tomorrow (ongoing
BSP in Dijon).

Cheers,

-- 
Cyril Brulebois
diff -u aptitude-0.4.6.1/debian/rules aptitude-0.4.6.1/debian/rules
--- aptitude-0.4.6.1/debian/rules
+++ aptitude-0.4.6.1/debian/rules
@@ -21,7 +21,7 @@
 	rm -f build-stamp
 	rm -fr debian/html-docs
 
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
 
 	dh_clean
 
diff -u aptitude-0.4.6.1/debian/menu aptitude-0.4.6.1/debian/menu
--- aptitude-0.4.6.1/debian/menu
+++ aptitude-0.4.6.1/debian/menu
@@ -1,3 +1,3 @@
-?package(aptitude):needs=text section=Apps/System \
+?package(aptitude):needs=text section=Applications/System/Administration \
   title=Aptitude command=/usr/bin/aptitude hints=apt \
   longtitle=Terminal-based software package manager
diff -u aptitude-0.4.6.1/debian/changelog aptitude-0.4.6.1/debian/changelog
--- aptitude-0.4.6.1/debian/changelog
+++ aptitude-0.4.6.1/debian/changelog
@@ -1,3 +1,14 @@
+aptitude (0.4.6.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Removed “*.gmo” removal from the “distclean” target in po/Makefile.in.in
+to fix package content change on double-build (Closes: #441696).
+  * Moved the menu entry from the “Apps/System” section to the
+“Applications/System/Administration” one.
+  * No longer ignore “make distclean” errors, per lintian.
+
+ -- Cyril Brulebois [EMAIL PROTECTED]  Sun, 30 Sep 2007 00:14:43 +0200
+
 aptitude (0.4.6.1-1) unstable; urgency=low
 
   * New upstream release (includes scripts I missed in the last release).
only in patch2:
unchanged:
--- aptitude-0.4.6.1.orig/po/Makefile.in.in
+++ aptitude-0.4.6.1/po/Makefile.in.in
@@ -292,7 +292,7 @@
 clean: mostlyclean
 
 distclean: clean
-	rm -f Makefile Makefile.in POTFILES *.mo *.gmo
+	rm -f Makefile Makefile.in POTFILES *.mo
 
 maintainer-clean: distclean
 	@echo This command is intended for maintainers to use;


pgpDaUyg1Sup3.pgp
Description: PGP signature


Bug#441730: closed by Cyril Brulebois [EMAIL PROTECTED] (Bug#441730: fixed in vim-latexsuite 20060325-4.1)

2007-09-29 Thread Cyril Brulebois
Debian Bug Tracking System [EMAIL PROTECTED] (29/09/2007):
 It has been closed by Cyril Brulebois [EMAIL PROTECTED].

And here is the patch for my NMU.

Cheers,

-- 
Cyril Brulebois
diff -u vim-latexsuite-20060325/debian/rules vim-latexsuite-20060325/debian/rules
--- vim-latexsuite-20060325/debian/rules
+++ vim-latexsuite-20060325/debian/rules
@@ -88,7 +88,9 @@
 
 install-script:
 	cp -R $(DIRS) $(INSTALLDIR)
-	rm -f $(BORKENFILES)
+	for i in $(BORKENFILES) ; do \
+		rm -f $(INSTALLDIR)/$$i ; \
+	done
 
 gzip-doc: $(DOCFILES)
 
diff -u vim-latexsuite-20060325/debian/changelog vim-latexsuite-20060325/debian/changelog
--- vim-latexsuite-20060325/debian/changelog
+++ vim-latexsuite-20060325/debian/changelog
@@ -1,3 +1,11 @@
+vim-latexsuite (20060325-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Delete the broken files in the installation directory, not in the source
+tree, which fixes the double-build FTBFS (Closes: #441730).
+
+ -- Cyril Brulebois [EMAIL PROTECTED]  Sat, 29 Sep 2007 18:32:11 +0200
+
 vim-latexsuite (20060325-4) unstable; urgency=low
 
   [ Stefano Zacchiroli ]


pgpZbr4codbv2.pgp
Description: PGP signature


Processed: Re: Bug#442308: parted_1.8.7.git.2007.07.30-1(sparc/experimental): FTBFS: C99 inline functions are not supported; using GNU89

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 442308 patch pending
Bug#442308: parted_1.8.7.git.2007.07.30-1(sparc/experimental): FTBFS: C99 
inline functions are not supported; using GNU89
There were no tags set.
Tags added: patch, pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#427199: NMU diff for gxmms2/0.6.4-1.1

2007-09-29 Thread Cyril Brulebois
Hi,

I'm sorry but for some reason, my nmudiff didn't reach the BTS in the
first place. Please find it attached.

Cheers,

-- 
Cyril Brulebois
diff -u gxmms2-0.6.4/gxmms2src/gxmms2.c gxmms2-0.6.4/gxmms2src/gxmms2.c
--- gxmms2-0.6.4/gxmms2src/gxmms2.c
+++ gxmms2-0.6.4/gxmms2src/gxmms2.c
@@ -113,7 +113,7 @@
 	guint32 volume;
 	gchar   buf[64];
 	
-	xmmsc_result_get_dict_entry_uint32(res, left, volume);
+	xmmsc_result_get_dict_entry_uint(res, left, volume);
 	wejpvolume_set_volume(WEJPVOLUME(wv), volume);
 	snprintf(buf, 63, Volume: %d %%, volume);
 	wejpscroller_shortmessage_show(WEJPSCROLLER(scroller), buf, 50);
@@ -123,7 +123,7 @@
 {
 	guint32 volume;
 	
-	xmmsc_result_get_dict_entry_uint32(res, left, volume);
+	xmmsc_result_get_dict_entry_uint(res, left, volume);
 	wejpvolume_set_volume(WEJPVOLUME(wv), volume);
 	change_volume(0, volume);
 	xmmsc_result_unref(res);
@@ -659,7 +659,7 @@
 m = 0;
 /* decode %XX escape sequences to their corresponding chars: */
 uri_conv = decode_string(buffer);
-res = xmmsc_playlist_add(connection, uri_conv);
+res = xmmsc_playlist_add_url(connection, NULL, uri_conv);
 xmmsc_result_unref(res);
 g_free(uri_conv);
 			} else if (((guchar *)data-data)[n]  31) {
diff -u gxmms2-0.6.4/debian/rules gxmms2-0.6.4/debian/rules
--- gxmms2-0.6.4/debian/rules
+++ gxmms2-0.6.4/debian/rules
@@ -17,7 +17,7 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp
-	-$(MAKE) clean
+	[ ! -f Makefile ] || $(MAKE) clean
 	dh_clean 
 
 install:
diff -u gxmms2-0.6.4/debian/changelog gxmms2-0.6.4/debian/changelog
--- gxmms2-0.6.4/debian/changelog
+++ gxmms2-0.6.4/debian/changelog
@@ -1,3 +1,14 @@
+gxmms2 (0.6.4-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Added a patch by Olivier Tétard to fix the FTBFS due to an xmms2 API
+change (Closes: #427199).
+  * That also makes the package installable again, since the dependencies get
+updated (Closes: #441164).
+  * No longer ignore “make clean” errors, per lintian.
+
+ -- Cyril Brulebois [EMAIL PROTECTED]  Fri, 28 Sep 2007 18:07:30 +0200
+
 gxmms2 (0.6.4-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- gxmms2-0.6.4.orig/gmedialib/gmlbrowser.c
+++ gxmms2-0.6.4/gmedialib/gmlbrowser.c
@@ -160,9 +160,9 @@
 	gtk_tree_view_set_model(GTK_TREE_VIEW(gml-browser.list), NULL);
 
 	for (; xmmsc_result_list_valid(res); xmmsc_result_list_next(res)) {
-		xmmsc_result_get_dict_entry_str(res, artist, artist);
-		xmmsc_result_get_dict_entry_str(res, album,  album);
-		xmmsc_result_get_dict_entry_int32(res, id, id);
+		xmmsc_result_get_dict_entry_string(res, artist, artist);
+		xmmsc_result_get_dict_entry_string(res, album,  album);
+		xmmsc_result_get_dict_entry_int(res, id, id);
 		if (!artist)
 			artist = Unknown;
 		if (g_ascii_strcasecmp(artist, artist_tmp) != 0) {
only in patch2:
unchanged:
--- gxmms2-0.6.4.orig/gmedialib/gmlsearch.c
+++ gxmms2-0.6.4/gmedialib/gmlsearch.c
@@ -28,6 +28,7 @@
 	gchar  *category;
 	gchar  *search_str;
 	gbooleanstart;
+	xmmsc_coll_t   *coll_query;
 };
 
 void gml_search_do_search(GMedialib *gml, guint search_for, gchar* search_str)
@@ -56,7 +57,7 @@
 	if (gtk_tree_model_get_iter(model, iter, path)) {
 		gtk_tree_model_get(model, iter, 0, id, -1);
 
-		res = xmmsc_playlist_add_id(connection, id);
+		res = xmmsc_playlist_add_id(connection, NULL, id);
 		xmmsc_result_unref(res);
 	}
 }
@@ -71,7 +72,7 @@
 
 	gtk_tree_model_get(model, selected_row, 0, id, -1);
 
-	res = xmmsc_playlist_add_id(connection, id);
+	res = xmmsc_playlist_add_id(connection, NULL, id);
 	xmmsc_result_unref(res);
 }
 
@@ -97,7 +98,7 @@
 
 	gtk_tree_model_get(model, selected_row, 0, id, -1);
 
-	res = xmmsc_playlist_insert_id(connection, pos + 1, id);
+	res = xmmsc_playlist_insert_id(connection, NULL, pos + 1, id);
 	xmmsc_result_unref(res);
 }
 
@@ -421,23 +422,23 @@
 	static gint   tmp_id = -1;
 	GtkTreeIter   iter;
 
-	xmmsc_result_get_dict_entry_int32(res, id,  id);
-	xmmsc_result_get_dict_entry_int32(res, tracknr, tracknr);
-	xmmsc_result_get_dict_entry_str(  res, title,   title);
-	xmmsc_result_get_dict_entry_int32(res, rating,  rating);
+	xmmsc_result_get_dict_entry_int(res,id,  id);
+	xmmsc_result_get_dict_entry_int(res,tracknr, tracknr);
+	xmmsc_result_get_dict_entry_string(res, title,   title);
+	xmmsc_result_get_dict_entry_int(res,rating,  rating);
 	rating--;
 	if (title) {
-		xmmsc_result_get_dict_entry_str(res, artist, artist);
+		xmmsc_result_get_dict_entry_string(res, artist, artist);
 		if (!artist)
 			artist = [Unknown Artist];
 
-		xmmsc_result_get_dict_entry_str(res, album, album);
+		xmmsc_result_get_dict_entry_string(res, album, album);
 		if (!album)
 			album = [Unknown Album];
 	} else {
 		gchar   *url, *url_utf8;
 		const gchar *url_tmp;
-		xmmsc_result_get_dict_entry_str(res, url, url);
+		xmmsc_result_get_dict_entry_string(res, url, url);
 		if (url) {
 			url_tmp = 

Bug#441420: xarchiver crashes starting

2007-09-29 Thread Cyril Brulebois
tag 441420 patch
thanks

Sjoerd Simons [EMAIL PROTECTED] (22/09/2007):
 The attached patch fixes enough of to get the main window to show :)
 There might be more similar issues

Thanks for the patch, tagging accordingly. An NMU might be considered
during the ongoing BSP (happening this WE).

Cheers,

-- 
Cyril Brulebois


pgp5IM2LLBcZS.pgp
Description: PGP signature


Processed: Re: Bug#444548: listlike: FTBFS: ghc-6.6.1: unknown package: HUnit

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 444548 patch
Bug#444548: listlike: FTBFS: ghc-6.6.1: unknown package: HUnit
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#444551: mailutils: FTBFS: grep: /usr/lib/libntlm.la: No such file or directory

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 444311 grave
Bug#444311: libgsasl7-dev: Missing dependency to libntlm0-dev
Severity set to `grave' from `normal'

 tag 444311 patch
Bug#444311: libgsasl7-dev: Missing dependency to libntlm0-dev
There were no tags set.
Tags added: patch

 block 444551 by 444311
Bug#444311: libgsasl7-dev: Missing dependency to libntlm0-dev
Bug#444551: mailutils: FTBFS: grep: /usr/lib/libntlm.la: No such file or 
directory
Was not blocked by any bugs.
Blocking bugs of 444551 added: 444311

 tag 444551 patch
Bug#444551: mailutils: FTBFS: grep: /usr/lib/libntlm.la: No such file or 
directory
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#444549: libvmime: FTBFS: /bin/sed: can't read /usr/lib/libntlm.la: No such file or directory

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 block 444549 by 444311
Bug#444311: libgsasl7-dev: Missing dependency to libntlm0-dev
Bug#444549: libvmime: FTBFS: /bin/sed: can't read /usr/lib/libntlm.la: No such 
file or directory
Was not blocked by any bugs.
Blocking bugs of 444549 added: 444311

 tag 444549 patch
Bug#444549: libvmime: FTBFS: /bin/sed: can't read /usr/lib/libntlm.la: No such 
file or directory
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444650: cfengine2: cfagent segfaults immediately after startup

2007-09-29 Thread Cyril Brulebois
Stephane Glondu [EMAIL PROTECTED] (30/09/2007):
 Cfagent segfaults, when called locally or remotely via cfrun/cfservd,
 just after reading the first line of cfagent.conf (according to
 strace). This behaviour is observed on 3 servers under my
 responsability, but not on 7 others which have the same configuration.

Hi,

(Tiens, un federeux.)

a backtrace might help (having installed the related -dbg packages, if
any), as well as your precising on which arch(s) you (do not) encounter
this problem.

Cheers,

-- 
Cyril Brulebois


pgpUXsy1b51s9.pgp
Description: PGP signature


Processed: Re: Bug#443036: linux-libertine: FTBFS: Failed to find NameList: LinLibertine-2.6.8

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 443036 important
Bug#443036: linux-libertine: FTBFS: Failed to find NameList: LinLibertine-2.6.8
Severity set to `important' from `serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443036: linux-libertine: FTBFS: Failed to find NameList: LinLibertine-2.6.8

2007-09-29 Thread Daniel Baumann
severity 443036 important
thanks

Jérémy Bobbio wrote:
 I was not really able to reproduce the problem on my own machine.  It
 just seems to me than it takes an amazing amount of resources (both in
 time and space) to build...

yes, that's because the fontforge script is dump; it builds the ttf and
then, converts the postscript fonts from the ttfs instead of building
the postscript fonts from the sources; that convertion takes a lot of time..

so, bottom line: it's not actually a problem, it is just incredible
nasty and needs to be fixed nevertheless. help for updating the
convert.pe script is welcome.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/




Bug#444495: After gnome upgrade amule dies when it try to update server list

2007-09-29 Thread Giovanni Bortolozzo
Package: amule
Version: 2.1.3-4
Severity: grave
Justification: renders package unusable

After the system upgrade to gnome 2.20 amule stop to work.

When it starts it suddendly die when it tries to upgrade server list.

This seem to be a know bug and will be resolved in the next release
(2.2.0 now in CVS) but maybe a patch it's already avaiable.
http://forum.amule.org/index.php?topic=13258.0

This but is reproducible, also with a fresh amule configuration:
I move my .aMule dir to a new dir and the start amule again... same
problem.

I hope you can solve it... or at least make a new amule package from
the cvs (it needs wxgtk 2.8.x)

Regards, 
 Giovanni

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22.6 (SMP w/2 CPU cores; PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages amule depends on:
ii  amule-common2.1.3-4  common files for the rest of aMule
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcrypto++65.5-4General purpose cryptographic shar
ii  libgcc1 1:4.2.1-5GCC support library
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libwxbase2.6-0  2.6.3.2.1.5  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.1.5  wxWidgets Cross-platform C++ GUI t
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages amule recommends:
ii  amule-utils   2.1.3-4utilities for aMule (command-line 

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444494: orpie_1.5.1-2 (hppa/unstable): FTBFS: Architectures with double-word alignment for doubles are not supported

2007-09-29 Thread Steve Langasek
Package: orpie
Version: 1.5.1-2
Severity: serious

Hi Uwe,

orpie is failing to build on hppa and sparc with this error:

[...]
cd gsl  ocamlc -ccopt -I/usr/include  -DHAVE_INLINE -DHAVE_FENV -g -O2 -c 
mlgsl_blas.c
In file included from mlgsl_vector.h:9,
 from mlgsl_vector_double.h:9,
 from mlgsl_blas.c:8:
wrappers.h:13:2: error: #error Architectures with double-word alignment for 
doubles are not supported
make[1]: *** [gsl/mlgsl_blas.o] Error 2
make[1]: Leaving directory `/build/buildd/orpie-1.5.1'
[...]

A full build log can be found at
http://buildd.debian.org/fetch.cgi?pkg=orpiearch=hppaver=1.5.1-2stamp=1191035771file=logas=raw.

This is a regression from previous versions of orpie, which built
successfully on both architectures.

It is also holding up the release-critical gsl update for the long double
ABI transition, so orpie will be removed from testing until this is
resolved.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: RM: bandersnatch -- RoQA; no remedy yet for security bugs (upstream is MIA)

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 442046 RM: bandersnatch -- RoQA; no remedy yet for security bugs 
 (upstream is MIA)
Bug#442046: O: bandersnatch -- Log Jabber conversations to a peer-visible 
database
Changed Bug title to `RM: bandersnatch -- RoQA; no remedy yet for security bugs 
(upstream is MIA)' from `O: bandersnatch -- Log Jabber conversations to a 
peer-visible database'.

 reassign 442046 ftp.debian.org
Bug#442046: RM: bandersnatch -- RoQA; no remedy yet for security bugs (upstream 
is MIA)
Bug reassigned from package `wnpp' to `ftp.debian.org'.

 retitle 435709 multiple security vulnerabilities in bandersnatch
Bug#435709: RM: bandersnatch -- RoQA; no remedy yet for security bugs (upstream 
is MIA)
Changed Bug title to `multiple security vulnerabilities in bandersnatch' from 
`RM: bandersnatch -- RoQA; no remedy yet for security bugs (upstream is MIA)'.

 reassign 435709 bandersnatch
Bug#435709: multiple security vulnerabilities in bandersnatch
Bug reassigned from package `ftp.debian.org' to `bandersnatch'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444503: gabedit: FTBFS: 'gtk_widget_unref' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: gabedit
version: 2.0.11-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
gcc -g -c -Wall -O2 `pkg-config --cflags gtk+-2.0 glib-2.0 gtkgl-2.0 pangox` 
TextEdit.c -o TextEdit.o
TextEdit.c: In function 'find_text_win':
TextEdit.c:196: warning: implicit declaration of function 'gtk_widget_ref'
TextEdit.c: In function 'AjoutePageNotebook':
TextEdit.c:311: error: 'gtk_widget_unref' undeclared (first use in this 
function)
TextEdit.c:311: error: (Each undeclared identifier is reported only once
TextEdit.c:311: error: for each function it appears in.)
TextEdit.c: In function 'cree_text_notebook':
TextEdit.c:363: error: 'gtk_widget_unref' undeclared (first use in this 
function)
make[2]: *** [TextEdit.o] Error 1
make[2]: Leaving directory `/build/user/gabedit-2.0.11/src/Common'
make[1]: *** [src/Common] Error 2
make[1]: Leaving directory `/build/user/gabedit-2.0.11'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444501: xlog: FTBFS: error: 'gtk_widget_unref' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: xlog
version: 1.5-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if i486-linux-gnu-gcc -DPACKAGE_NAME=\xlog\ -DPACKAGE_TARNAME=\xlog\ 
-DPACKAGE_VERSION=\1.5\ -DPACKAGE_STRING=\xlog\ 1.5\ 
-DPACKAGE_BUGREPORT=\[EMAIL PROTECTED] -DPACKAGE=\xlog\ -DVERSION=\1.5\ 
-DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
-DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_IPC_H=1 -DHAVE_SYS_SHM_H=1 
-DHAVE_STRPTIME=1 -DENABLE_NLS=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -I. -I. 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 
-I/usr/include/pango-1.0 -I.. -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED 
-DDATADIR=\/usr/share\ -DXLOG_LOCALEDIR=\/usr/share/locale\ 
-DXLOG_DATADIR=\/usr/share/xlog\ -Wall -g -O2 -Wall -MT gui_b4window.o 
-MD -MP -MF .deps/gui_b4window.Tpo -c -o gui_b4window.o gui_b4window.c; \
then mv -f .deps/gui_b4window.Tpo .deps/gui_b4window.Po; else rm -f 
.deps/gui_b4window.Tpo; exit 1; fi
gui_b4window.c: In function 'create_b4window':
gui_b4window.c:273: warning: implicit declaration of function 'gtk_widget_ref'
gui_b4window.c:273: error: 'gtk_widget_unref' undeclared (first use in this 
function)
gui_b4window.c:273: error: (Each undeclared identifier is reported only once
gui_b4window.c:273: error: for each function it appears in.)
gui_b4window.c:273: warning: passing argument 3 of 'g_object_set_data_full' 
makes pointer from integer without a cast
make[3]: *** [gui_b4window.o] Error 1
make[3]: Leaving directory `/build/user/xlog-1.5/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/xlog-1.5/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/build/user/xlog-1.5'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |




Bug#444504: nsis: FTBFS: undefined reference to `_memcpy'

2007-09-29 Thread Lucas Nussbaum
Package: nsis
version: 2.30-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
Creating library file: build/release/Banner/Banner.lib
i586-mingw32msvc-g++ -o build/release/BgImage/BgImage.o -c -Wall -g -O2 -Os 
-Wall -fno-strict-aliasing Contrib/BgImage/BgImage.cpp
Contrib/BgImage/BgImage.cpp: In function 'void SetBg(HWND__*, int, char*, 
stack_t**)':
Contrib/BgImage/BgImage.cpp:93: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:114: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:133: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:214: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp: In function 'void AddImage(HWND__*, int, char*, 
stack_t**)':
Contrib/BgImage/BgImage.cpp:222: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:254: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp: In function 'void AddText(HWND__*, int, char*, 
stack_t**)':
Contrib/BgImage/BgImage.cpp:264: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:274: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp:292: warning: deprecated conversion from string 
constant to 'char*'
Contrib/BgImage/BgImage.cpp: In function 'HBITMAP__* LoadBitmapFile(long int, 
long int, BITMAP*)':
Contrib/BgImage/BgImage.cpp:563: warning: deprecated conversion from string 
constant to 'char*'
i586-mingw32msvc-g++ -s -mwindows -Wl,--file-alignment,512 
-Wl,-Map,build/release/BgImage/BgImage.map -Wl,[EMAIL PROTECTED] -nostdlib 
-Wl,--exclude-libs,msvcrt.a -shared -o build/release/BgImage/BgImage.dll 
build/release/BgImage/BgImage.o -lkernel32 -luser32 -lgdi32 -lwinmm 
-Wl,--out-implib,build/release/BgImage/BgImage.lib 
-Wl,--output-def,build/release/BgImage/BgImage.def
Creating library file: 
build/release/BgImage/BgImage.libbuild/release/BgImage/BgImage.o: In function 
`SetBg':
/build/user/nsis-2.30/Contrib/BgImage/BgImage.cpp:155: undefined reference to 
`_memcpy'
/build/user/nsis-2.30/Contrib/BgImage/BgImage.cpp:156: undefined reference to 
`_memcpy'
/build/user/nsis-2.30/Contrib/BgImage/BgImage.cpp:157: undefined reference to 
`_memcpy'
collect2: ld returned 1 exit status

scons: *** [build/release/BgImage/BgImage.dll] Error 1
scons: building terminated because of errors.
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444502: jack-rack: FTBFS: undefined reference to `GTK_FILE_SELECTION'

2007-09-29 Thread Lucas Nussbaum
Package: jack-rack
version: 1.4.4-3
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
plugin_slot_callbacks.c:63: warning: unused variable 'ctrlmsg'
plugin_slot_callbacks.c: In function 'slot_lock_all_cb':
plugin_slot_callbacks.c:164: warning: unused variable 'i'
cc -DLOCALEDIR=\/usr/share/locale\ -DHAVE_CONFIG_H -I. -I. -I.
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
-I/usr/include/libxml2   -DPKGDATADIR=\/usr/share/jack-rack\ 
-DPIXMAPDIR=\/usr/share/pixmaps\ -DDTDDIR=\/usr/share/dtds\ 
-DG_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 
-DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1 -g -Wall -O2 -c 
-o jack_rack-control_callbacks.o `test -f 'control_callbacks.c' || echo 
'./'`control_callbacks.c
cc -DLOCALEDIR=\/usr/share/locale\ -DHAVE_CONFIG_H -I. -I. -I.
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
-I/usr/include/libxml2   -DPKGDATADIR=\/usr/share/jack-rack\ 
-DPIXMAPDIR=\/usr/share/pixmaps\ -DDTDDIR=\/usr/share/dtds\ 
-DG_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 
-DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1 -g -Wall -O2 -c 
-o jack_rack-main.o `test -f 'main.c' || echo './'`main.c
main.c: In function 'main':
main.c:141: warning: implicit declaration of function 'strcmp'
/bin/sh ../libtool --tag=CC --mode=link cc  -g -Wall -O2   -o jack-rack -ljack 
-lpthread -lrt   -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm 
-lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr 
-lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -llrdf  -lxml2   
jack_rack-midi_window.o jack_rack-midi_control.o jack_rack-wet_dry_controls.o 
jack_rack-file.o jack_rack-midi.o jack_rack-plugin_settings.o 
jack_rack-process.o jack_rack-plugin_desc.o jack_rack-plugin_mgr.o 
jack_rack-ui.o jack_rack-plugin.o jack_rack-port_controls.o 
jack_rack-plugin_slot.o jack_rack-jack_rack.o jack_rack-lock_free_fifo.o 
jack_rack-ui_callbacks.o jack_rack-plugin_slot_callbacks.o 
jack_rack-control_callbacks.o jack_rack-main.o  
mkdir .libs
cc -g -Wall -O2 -o jack-rack jack_rack-midi_window.o jack_rack-midi_control.o 
jack_rack-wet_dry_controls.o jack_rack-file.o jack_rack-midi.o 
jack_rack-plugin_settings.o jack_rack-process.o jack_rack-plugin_desc.o 
jack_rack-plugin_mgr.o jack_rack-ui.o jack_rack-plugin.o 
jack_rack-port_controls.o jack_rack-plugin_slot.o jack_rack-jack_rack.o 
jack_rack-lock_free_fifo.o jack_rack-ui_callbacks.o 
jack_rack-plugin_slot_callbacks.o jack_rack-control_callbacks.o 
jack_rack-main.o  /usr/lib/libjack.so -lpthread -lrt /usr/lib/libgtk-x11-2.0.so 
/usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so /usr/lib/libgdk_pixbuf-2.0.so 
/usr/lib/libpangocairo-1.0.so -lXext -lXinerama -lXi -lXrandr -lXcursor 
-lXcomposite -lXdamage /usr/lib/libpango-1.0.so /usr/lib/libcairo.so 
/usr/lib/libfreetype.so -lz -lfontconfig -lpng12 -lXrender -lm -lX11 -lXfixes 
/usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -llrdf /usr/lib/libxml2.so
jack_rack-ui_callbacks.o: In function `get_filename':
/build/user/jack-rack-1.4.4/build-tree/jack-rack-1.4.4/src/ui_callbacks.c:142: 
undefined reference to `GTK_FILE_SELECTION'
/build/user/jack-rack-1.4.4/build-tree/jack-rack-1.4.4/src/ui_callbacks.c:152: 
undefined reference to `GTK_FILE_SELECTION'
collect2: ld returned 1 exit status
make[3]: *** [jack-rack] Error 1
make[3]: Leaving directory 
`/build/user/jack-rack-1.4.4/build-tree/jack-rack-1.4.4/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory 
`/build/user/jack-rack-1.4.4/build-tree/jack-rack-1.4.4/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory 
`/build/user/jack-rack-1.4.4/build-tree/jack-rack-1.4.4'
make: *** [debian/stamp-makefile-build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL 

Bug#444505: infon: FTBFS: undef reference to clock_gettime

2007-09-29 Thread Lucas Nussbaum
Package: infon
version: 0~r198-2
Severity: serious
User: [EMAIL PROTECTED]
Tags: patch
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
ranlib liblua.a
cc -O2 -Wall -DLUA_USE_POSIX -ggdb -DLUA_USE_APICHECK   -c -o lua.o lua.c
cc -o lua  lua.o liblua.a -lm -Wl,-E -ldl -lreadline -lhistory -lncurses
cc -O2 -Wall -DLUA_USE_POSIX -ggdb -DLUA_USE_APICHECK   -c -o luac.o luac.c
cc -O2 -Wall -DLUA_USE_POSIX -ggdb -DLUA_USE_APICHECK   -c -o print.o print.c
cc -o luac  luac.o print.o liblua.a -lm -Wl,-E -ldl -lreadline -lhistory 
-lncurses
make[4]: Leaving directory `/build/user/infon-0~r198/lua-5.1.2/src'
make[3]: Leaving directory `/build/user/infon-0~r198/lua-5.1.2/src'
make[2]: Leaving directory `/build/user/infon-0~r198/lua-5.1.2'
cc infond.o server.o listener.o map.o path.o misc.o packet.o player.o world.o 
creature.o scroller.o game.o pinger.o lua-5.1.2/src/liblua.a -levent -lz -lm -o 
infond
cc infond.o server.o listener.o map.o path.o misc.o packet.o player.o world.o 
creature.o scroller.o game.o pinger.o lua-5.1.2/src/liblua.a -levent -lz -lm 
-static -o infond-static
infond.o: In function `daemonize':
/build/user/infon-0~r198/daemonize.h:85: warning: Using 'getpwnam' in 
statically linked applications requires at runtime the shared libraries from 
the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.2.1/../../../../lib/libevent.a(event.o): In 
function `gettime':
(.text+0xceb): undefined reference to `clock_gettime'
/usr/lib/gcc/i486-linux-gnu/4.2.1/../../../../lib/libevent.a(event.o): In 
function `event_init':
(.text+0x18d9): undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
make[1]: *** [infond] Error 1
make[1]: Leaving directory `/build/user/infon-0~r198'
make: *** [build-arch-stamp] Error 2

The attached patch fixes the problem.

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
diff -Nru /tmp/rkH0piKjPQ/infon-0~r198/Makefile /tmp/lRJFZCVkqm/infon-0~r198/Makefile
--- /tmp/rkH0piKjPQ/infon-0~r198/Makefile	2007-03-31 01:13:42.0 +0200
+++ /tmp/lRJFZCVkqm/infon-0~r198/Makefile	2007-09-29 10:52:09.0 +0200
@@ -88,7 +88,7 @@
   -lmingw32 -lopengl32 -lglu32 -lstdc++ -lwsock32 -lwinmm -mwindows -Wl,-s
 $(GL_RENDERER)  : infon.res
 else
-$(INFON_EXECUTABLE) : LDFLAGS  += -levent -lz -lm 
+$(INFON_EXECUTABLE) : LDFLAGS  += -levent -lz -lm -lrt
 
 # Example for embedding a renderer
 ifdef NULL_INFON
@@ -106,7 +106,7 @@
 endif
 
 $(INFOND_EXECUTABLE): CFLAGS   += -I$(LUA)/src/ # -DCHEATS
-$(INFOND_EXECUTABLE): LDFLAGS  += -levent -lz -lm
+$(INFOND_EXECUTABLE): LDFLAGS  += -levent -lz -lm -lrt
 
 # Experimental usage of 'all of lua in one file' as seen in lua-5.1.2/etc/all.c
 ifdef OPTIMIZE
diff -Nru /tmp/rkH0piKjPQ/infon-0~r198/debian/changelog /tmp/lRJFZCVkqm/infon-0~r198/debian/changelog
--- /tmp/rkH0piKjPQ/infon-0~r198/debian/changelog	2007-09-29 10:52:08.0 +0200
+++ /tmp/lRJFZCVkqm/infon-0~r198/debian/changelog	2007-09-29 10:52:09.0 +0200
@@ -1,3 +1,10 @@
+infon (0~r198-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Added -lrt to LDFLAGS to get clock_gettime.
+
+ -- Lucas Nussbaum [EMAIL PROTECTED]  Sat, 29 Sep 2007 10:50:10 +0200
+
 infon (0~r198-2) unstable; urgency=low
 
   * Uses metainit for the init script


Bug#444506: libcommons-lang-java: FTBFS: unmet b-dep ecj-bootstrap

2007-09-29 Thread Lucas Nussbaum
Package: libcommons-lang-java
version: 2.3-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
** Using build dependencies supplied by package:
Build-Depends-Indep: debhelper ( 4.0.0), ecj-bootstrap, classpath-common, 
fastjar, junit (= 3.8.1), cdbs, gjdoc
Checking for already installed source dependencies...
debhelper: missing
Using default version 5.0.56
ecj-bootstrap: missing
classpath-common: missing
fastjar: missing
junit: missing
Using default version 3.8.1.1-7
cdbs: missing
gjdoc: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
Package ecj-bootstrap is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libecj-java ecj
E: Package ecj-bootstrap has no installation candidate
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
Source-dependencies not satisfied; skipping libcommons-lang-java

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/17

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: tag gcc report

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 440545 + pending
Bug#440545: [PR33381, fixed in 4.3] miscompilation casting signed long to void*
Tags were: upstream
Bug#443576: [PR33381, fixed in 4.3] gcc-4.2 -O2 generates wrong code
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444507: screem: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: screem
version: 0.16.1-4.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. 
-DG_LOG_DOMAIN=\Gdl\ -DGDL_GLADEDIR=\\ 
-DGDL_IMAGESDIR=\/usr/share/screem/pixmaps\ -I/usr/include -I.. 
-DORBIT2=1 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/libgnome-2.0 -I/usr/include/orbit-2.0 
-I/usr/include/gconf/2 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/libbonobo-2.0 
-I/usr/include/bonobo-activation-2.0 -I/usr/include/libgnomeui-2.0 
-I/usr/include/libart-2.0 -I/usr/include/gnome-keyring-1 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/libxml2 -I/usr/include/gail-1.0 -I/usr/include/libglade-2.0 
-I/usr/include/gtkhtml-2.0 -I/usr/include/libgnomeprint-2.2 
-I/usr/include/libgnomeprintui-2.2 -I/usr/include/gtksourceview-1.0 
-I/usr/include/gnome-menus   -Wall -DGTK_DISABLE_DEPRECATED 
-DGNOME_DISABLE_DEPRECATED -DGNOMEUI_DISABLE_DEPRECATED -g -Wall -O2 -c -o 
gdl-dock-item-grip.lo gdl-dock-item-grip.c
 cc -DHAVE_CONFIG_H -I. -I. -I.. -DG_LOG_DOMAIN=\Gdl\ -DGDL_GLADEDIR=\\ 
-DGDL_IMAGESDIR=\/usr/share/screem/pixmaps\ -I/usr/include -I.. -DORBIT2=1 
-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/libgnome-2.0 -I/usr/include/orbit-2.0 
-I/usr/include/gconf/2 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/libbonobo-2.0 
-I/usr/include/bonobo-activation-2.0 -I/usr/include/libgnomeui-2.0 
-I/usr/include/libart-2.0 -I/usr/include/gnome-keyring-1 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/libxml2 -I/usr/include/gail-1.0 -I/usr/include/libglade-2.0 
-I/usr/include/gtkhtml-2.0 -I/usr/include/libgnomeprint-2.2 
-I/usr/include/libgnomeprintui-2.2 -I/usr/include/gtksourceview-1.0 
-I/usr/include/gnome-menus -Wall -DGTK_DISABLE_DEPRECATED 
-DGNOME_DISABLE_DEPRECATED -DGNOMEUI_DISABLE_DEPRECATED -g -Wall -O2 -c 
gdl-dock-item-grip.c  -fPIC -DPIC -o .libs/gdl-dock-item-grip.o
gdl-dock-item-grip.c:37: error: expected specifier-qualifier-list before 
'GtkTooltips'
gdl-dock-item-grip.c: In function 'gdl_dock_item_grip_get_title_area':
gdl-dock-item-grip.c:60: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c: In function 'ensure_title_and_icon_pixbuf':
gdl-dock-item-grip.c:87: error: 'GdlDockItemGripPrivate' has no member named 
'title'
gdl-dock-item-grip.c:88: error: 'GdlDockItemGripPrivate' has no member named 
'title'
gdl-dock-item-grip.c:89: error: 'GdlDockItemGripPrivate' has no member named 
'title'
gdl-dock-item-grip.c:90: error: 'GdlDockItemGripPrivate' has no member named 
'title'
gdl-dock-item-grip.c:94: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf_valid'
gdl-dock-item-grip.c:98: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:103: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf_valid'
gdl-dock-item-grip.c:107: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c:108: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c:109: error: 'GdlDockItemGripPrivate' has no member named 
'title'
gdl-dock-item-grip.c:110: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c: In function 'gdl_dock_item_grip_expose':
gdl-dock-item-grip.c:130: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:133: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:134: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:152: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:160: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c:172: error: 'GdlDockItemGripPrivate' has no member named 
'title_layout'
gdl-dock-item-grip.c: In function 'gdl_dock_item_grip_item_notify':
gdl-dock-item-grip.c:189: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:190: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:191: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf'
gdl-dock-item-grip.c:193: error: 'GdlDockItemGripPrivate' has no member named 
'icon_pixbuf_valid'
gdl-dock-item-grip.c:197: error: 

Bug#444509: grig: FTBFS: error: 'GtkTooltips' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: grig
version: 0.7.2-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
i486-linux-gnu-gcc: defs: linker input file unused because linking not done
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -pthread 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-I.. -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED 
-DDATADIR=\/usr/share\ -DPACKAGE_DATA_DIR=\/usr/share/grig\ 
-DPACKAGE_PIXMAPS_DIR=\/usr/share/pixmaps/grig\ 
-DPACKAGE_LOCALE_DIR=\/usr/share/locale\-Wall -g -O2 -Wl,-z,defs -Wall  
 -MT grig-debug.o -MD -MP -MF .deps/grig-debug.Tpo -c -o grig-debug.o 
grig-debug.c; \
then mv -f .deps/grig-debug.Tpo .deps/grig-debug.Po; else rm -f 
.deps/grig-debug.Tpo; exit 1; fi
i486-linux-gnu-gcc: -z: linker input file unused because linking not done
i486-linux-gnu-gcc: defs: linker input file unused because linking not done
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -pthread 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-I.. -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED 
-DDATADIR=\/usr/share\ -DPACKAGE_DATA_DIR=\/usr/share/grig\ 
-DPACKAGE_PIXMAPS_DIR=\/usr/share/pixmaps/grig\ 
-DPACKAGE_LOCALE_DIR=\/usr/share/locale\-Wall -g -O2 -Wl,-z,defs -Wall  
 -MT grig-gtk-workarounds.o -MD -MP -MF .deps/grig-gtk-workarounds.Tpo -c -o 
grig-gtk-workarounds.o grig-gtk-workarounds.c; \
then mv -f .deps/grig-gtk-workarounds.Tpo 
.deps/grig-gtk-workarounds.Po; else rm -f .deps/grig-gtk-workarounds.Tpo; 
exit 1; fi
grig-gtk-workarounds.c: In function 'set_combo_tooltip':
grig-gtk-workarounds.c:99: error: 'GtkTooltips' undeclared (first use in this 
function)
grig-gtk-workarounds.c:99: error: (Each undeclared identifier is reported only 
once
grig-gtk-workarounds.c:99: error: for each function it appears in.)
grig-gtk-workarounds.c:99: error: 'tips' undeclared (first use in this function)
grig-gtk-workarounds.c:101: warning: implicit declaration of function 
'gtk_tooltips_new'
grig-gtk-workarounds.c:103: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
make[3]: *** [grig-gtk-workarounds.o] Error 1
make[3]: Leaving directory `/build/user/grig-0.7.2/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/grig-0.7.2'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/grig-0.7.2'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444508: polyxmass-bin: FTBFS: error: 'GtkTooltips' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: polyxmass-bin
version: 0.9.7-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DG_LOG_DOMAIN=\polyxmass\ -I/usr/include 
-I.. -I../libpolyxmass -I../intl -DLOCALEDIR=\/usr/share/locale\ 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 
-I/usr/include/libxml2 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gail-1.0 -I/usr/include/libart-2.0 -I/usr/include/librsvg-2 
-I/usr/include/libglade-2.0  -g -Wall -D_REENTRANT -O2 -MT 
polyxmass-ui-seqed-widget-context-menu.o -MD -MP -MF 
.deps/polyxmass-ui-seqed-widget-context-menu.Tpo -c -o 
polyxmass-ui-seqed-widget-context-menu.o 
polyxmass-ui-seqed-widget-context-menu.c; \
then mv -f .deps/polyxmass-ui-seqed-widget-context-menu.Tpo 
.deps/polyxmass-ui-seqed-widget-context-menu.Po; else rm -f 
.deps/polyxmass-ui-seqed-widget-context-menu.Tpo; exit 1; fi
polyxmass-ui-seqed-widget-context-menu.c: In function 
'polyxmass_seqed_widget_context_menu_setup':
polyxmass-ui-seqed-widget-context-menu.c:78: error: 'GtkTooltips' undeclared 
(first use in this function)
polyxmass-ui-seqed-widget-context-menu.c:78: error: (Each undeclared identifier 
is reported only once
polyxmass-ui-seqed-widget-context-menu.c:78: error: for each function it 
appears in.)
polyxmass-ui-seqed-widget-context-menu.c:78: error: 'tooltips' undeclared 
(first use in this function)
polyxmass-ui-seqed-widget-context-menu.c:80: warning: implicit declaration of 
function 'gtk_tooltips_new'
polyxmass-ui-seqed-widget-context-menu.c:403: warning: implicit declaration of 
function 'gtk_tooltips_set_tip'
make[3]: *** [polyxmass-ui-seqed-widget-context-menu.o] Error 1
make[3]: Leaving directory `/build/user/polyxmass-bin-0.9.7/polyxmass'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/polyxmass-bin-0.9.7'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/polyxmass-bin-0.9.7'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444512: xdx: FTBFS: error: 'GtkTooltips' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: xdx
version: 2.2-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[2]: Entering directory `/build/user/xdx-2.2/src'
if i486-linux-gnu-gcc -DPACKAGE_NAME=\xdx\ -DPACKAGE_TARNAME=\xdx\ 
-DPACKAGE_VERSION=\2.2\ -DPACKAGE_STRING=\xdx\ 2.2\ 
-DPACKAGE_BUGREPORT=\[EMAIL PROTECTED] -DPACKAGE=\xdx\ -DVERSION=\2.2\ 
-DENABLE_NLS=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DHAVE_SYS_WAIT_H=1 
-DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
-DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_ARPA_INET_H=1 -DHAVE_FCNTL_H=1 
-DHAVE_LIBINTL_H=1 -DHAVE_NETDB_H=1 -DHAVE_NETINET_IN_H=1 -DHAVE_STRING_H=1 
-DHAVE_SYS_SOCKET_H=1 -DHAVE_FORK=1 -DHAVE_VFORK=1 -DHAVE_WORKING_VFORK=1 
-DHAVE_WORKING_FORK=1 -DRETSIGTYPE=void -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 
-DHAVE_TZSET=1 -DHAVE_SETLOCALE=1 -DHAVE_PUTENV=1 -DHAVE_ALARM=1 -DHAVE_BZERO=1 
-DHAVE_GETHOSTBYNAME=1 -DHAVE_INET_NTOA=1 -DHAVE_MEMSET=1 -DHAVE_MKDIR=1 
-DHAVE_SOCKET=1 -DHAVE_STRERROR=1 -DHAVE_STRFTIME=1 -I. -I. 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-I.. -DPACKAGE_DATA_DIR=\/usr/share/xdx\ 
-DPACKAGE_LOCALE_DIR=\/usr/share/locale\ -DPACKAGE_SOURCE_DIR=\.\ 
-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED-Wall -g -O2 -Wall -MT gui.o -MD -MP -MF 
.deps/gui.Tpo -c -o gui.o gui.c; \
then mv -f .deps/gui.Tpo .deps/gui.Po; else rm -f .deps/gui.Tpo; 
exit 1; fi
gui.c: In function 'create_mainwindow':
gui.c:175: error: 'GtkTooltips' undeclared (first use in this function)
gui.c:175: error: (Each undeclared identifier is reported only once
gui.c:175: error: for each function it appears in.)
gui.c:175: error: 'tooltips' undeclared (first use in this function)
gui.c:381: warning: implicit declaration of function 'gtk_tooltips_new'
gui.c:383: warning: implicit declaration of function 'gtk_tooltips_set_tip'
make[2]: *** [gui.o] Error 1
make[2]: Leaving directory `/build/user/xdx-2.2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/build/user/xdx-2.2'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |




Bug#444511: lock-keys-applet: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: lock-keys-applet
version: 1.0-8
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[3]: Entering directory `/build/user/lock-keys-applet-1.0/src'
cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/include -DORBIT2=1 -pthread 
-I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
-I/usr/include/gnome-keyring-1 -I/usr/include/libgnome-2.0 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/panel-2.0   
-DGNOMELOCALEDIR=\/usr/share/locale\ -DGNOME_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED 
-DDATADIR=\/usr/share/\ -DPREFIX=\/usr/\ -DLIBDIR=\/usr/lib/\ 
-DSYSCONFDIR=\/etc/\-g -Wall -O2 -c `test -f 'lock-keys-applet.c' || 
echo './'`lock-keys-applet.c
lock-keys-applet.c:65: error: expected specifier-qualifier-list before 
'GtkTooltips'
lock-keys-applet.c: In function 'applet_reorder_icons':
lock-keys-applet.c:107: warning: implicit declaration of function 
'gtk_widget_ref'
lock-keys-applet.c: In function 'about_cb':
lock-keys-applet.c:225: warning: implicit declaration of function 
'gnome_about_new'
lock-keys-applet.c:231: warning: dereferencing type-punned pointer will break 
strict-aliasing rules
lock-keys-applet.c: In function 'ledstates_changed':
lock-keys-applet.c:500: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
lock-keys-applet.c:500: error: 'LedApplet' has no member named 'tooltips'
lock-keys-applet.c: In function 'led_applet_factory':
lock-keys-applet.c:591: error: 'LedApplet' has no member named 'tooltips'
lock-keys-applet.c:591: warning: implicit declaration of function 
'gtk_tooltips_new'
make[3]: *** [lock-keys-applet.o] Error 1
make[3]: Leaving directory `/build/user/lock-keys-applet-1.0/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/lock-keys-applet-1.0'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/lock-keys-applet-1.0'
make: *** [debian/stamp-makefile-build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |




Bug#444513: kazehakase: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: kazehakase
version: 0.4.3-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
fi
mkdir .libs
 i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12 -I../../src/dialogs 
-I../../src/utils -I../../src/net -I../../src/bookmarks -I../../src/widget 
-I../../src/libegg/dropdowntoolbutton -I../../src/libegg/regex -I../../src 
-DSYSCONFDIR=\/etc\ -DKZ_SYSCONFDIR=\/etc/kazehakase\ 
-DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 
-DG_LOG_DOMAIN=\Kazehakase-Actions\ -DG_DISABLE_DEPRECATED=1 -g -O2 
-DDEBIAN_VERSION=\0.4.3-1\ -Wall -Wmissing-declarations -Wmissing-prototypes 
-Wpointer-arith -Wcast-align -MT kz-actions.lo -MD -MP -MF .deps/kz-actions.Tpo 
-c kz-actions.c  -fPIC -DPIC -o .libs/kz-actions.o
In file included from kz-actions.c:32:
../../src/kz-tab-label.h:66: error: expected specifier-qualifier-list before 
'GtkTooltips'
kz-actions.c:301:2: warning: #warning FIXME! we should unify 
act_open_selection().
kz-actions.c:1411:2: warning: #warning these codes about session will be 
obsolete. we need changing session function.
kz-actions.c:2232:2: warning: #warning FIXME!
make[6]: *** [kz-actions.lo] Error 1
make[6]: Leaving directory `/build/user/kazehakase-0.4.3/src/actions'
make[5]: *** [all] Error 2
make[5]: Leaving directory `/build/user/kazehakase-0.4.3/src/actions'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/build/user/kazehakase-0.4.3/src'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/build/user/kazehakase-0.4.3/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/kazehakase-0.4.3'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/kazehakase-0.4.3'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444514: gpredict: FTBFS: error: 'GtkTooltips' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: gpredict
version: 0.8.0-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -pthread -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12   -I.. -I../goocanv4/src 
-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED -DDATADIR=\/usr/share\ 
-DPACKAGE_DATA_DIR=\/usr/share/gpredict\ 
-DPACKAGE_PIXMAPS_DIR=\/usr/share/pixmaps/gpredict\ 
-DPACKAGE_LOCALE_DIR=\/usr/locale\-g -O2 -Wall   -MT gpredict-utils.o 
-MD -MP -MF .deps/gpredict-utils.Tpo -c -o gpredict-utils.o gpredict-utils.c; 
\
then mv -f .deps/gpredict-utils.Tpo .deps/gpredict-utils.Po; else 
rm -f .deps/gpredict-utils.Tpo; exit 1; fi
gpredict-utils.c: In function 'gpredict_hpixmap_button':
gpredict-utils.c:53: error: 'GtkTooltips' undeclared (first use in this 
function)
gpredict-utils.c:53: error: (Each undeclared identifier is reported only once
gpredict-utils.c:53: error: for each function it appears in.)
gpredict-utils.c:53: error: 'tips' undeclared (first use in this function)
gpredict-utils.c:66: warning: implicit declaration of function 
'gtk_tooltips_new'
gpredict-utils.c:67: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
gpredict-utils.c: In function 'gpredict_vpixmap_button':
gpredict-utils.c:88: error: 'GtkTooltips' undeclared (first use in this 
function)
gpredict-utils.c:88: error: 'tips' undeclared (first use in this function)
gpredict-utils.c: In function 'gpredict_hstock_button':
gpredict-utils.c:120: error: 'GtkTooltips' undeclared (first use in this 
function)
gpredict-utils.c:120: error: 'tips' undeclared (first use in this function)
gpredict-utils.c: In function 'gpredict_mini_mod_button':
gpredict-utils.c:183: error: 'GtkTooltips' undeclared (first use in this 
function)
gpredict-utils.c:183: error: 'tips' undeclared (first use in this function)
make[4]: *** [gpredict-utils.o] Error 1
make[4]: Leaving directory `/build/user/gpredict-0.8.0/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/gpredict-0.8.0/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/gpredict-0.8.0'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/gpredict-0.8.0'
make: *** [build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444517: happydigger: FTBFS: error: 'GtkTooltips' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: happydigger
version: 3.1-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if i486-linux-gnu-gcc -DPACKAGE_NAME=\happydigger\ 
-DPACKAGE_TARNAME=\happydigger\ -DPACKAGE_VERSION=\3.1\ 
-DPACKAGE_STRING=\happydigger\ 3.1\ -DPACKAGE_BUGREPORT=\[EMAIL PROTECTED] 
-DPACKAGE=\happydigger\ -DVERSION=\3.1\ -DSTDC_HEADERS=1 -DENABLE_NLS=1 
-DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DPACKAGE_LOCALE_DIR=\/usr/share/locale\ 
-DPACKAGE_DATA_DIR=\/usr/share/happydigger\ -I. -I. -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12 -DG_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED-Wall -g -O2 -MT interface.o -MD -MP -MF 
.deps/interface.Tpo -c -o interface.o interface.c; \
then mv -f .deps/interface.Tpo .deps/interface.Po; else rm -f 
.deps/interface.Tpo; exit 1; fi
interface.c: In function 'create_window':
interface.c:148: error: 'GtkTooltips' undeclared (first use in this function)
interface.c:148: error: (Each undeclared identifier is reported only once
interface.c:148: error: for each function it appears in.)
interface.c:148: error: 'tooltips' undeclared (first use in this function)
interface.c:150: warning: implicit declaration of function 'gtk_tooltips_new'
interface.c:180: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
interface.c:801: warning: implicit declaration of function 'gtk_widget_ref'
interface.c:801: error: 'gtk_widget_unref' undeclared (first use in this 
function)
interface.c:801: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:802: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:803: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:804: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:805: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:806: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:807: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:808: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:809: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:810: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:811: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:812: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:813: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:814: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:815: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:816: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:817: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:818: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:819: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:820: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:821: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:822: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:823: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:824: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:825: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:826: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:827: warning: passing argument 3 of 'g_object_set_data_full' makes 
pointer from integer without a cast
interface.c:828: warning: passing argument 3 of 

Bug#444515: quark: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: quark
version: 3.21-3.2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12   -DORBIT2=1 -pthread 
-I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include   -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include   -DGTK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED 
-DG_LOG_DOMAIN=\strange-quark\ -DPIXMAPDIR=\/usr/share/pixmaps\ 
-DLOCALEDIR=\/usr/share/locale\   -g -fno-inline -Wall -Wsign-compare 
-Waggregate-return -Wcast-qual -Wbad-function-cast -Wpointer-arith -MT applet.o 
-MD -MP -MF .deps/applet.Tpo \
  -c -o applet.o `test -f 'applet.c' || echo './'`applet.c; \
then mv -f .deps/applet.Tpo .deps/applet.Po; \
else rm -f .deps/applet.Tpo; exit 1; \
fi
In file included from applet.c:4:
trayicon.h:34: error: expected specifier-qualifier-list before 'GtkTooltips'
make[3]: *** [applet.o] Error 1
make[3]: Leaving directory `/build/user/quark-3.21/strange-quark'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/quark-3.21'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/quark-3.21'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444519: gnome-randr-applet: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: gnome-randr-applet
version: 0.2-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[3]: Entering directory `/build/user/gnome-randr-applet-0.2/src'
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/include -DORBIT2=1 
-pthread -I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 
-I/usr/include/gconf/2 -I/usr/include/gnome-keyring-1 
-I/usr/include/libgnome-2.0 -I/usr/include/libbonoboui-2.0 
-I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include 
-I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/cairo -I/usr/include/libpng12 -I/usr/include/panel-2.0  
-DGNOMELOCALEDIR=\/usr/share/locale\-DGNOME_DISABLE_DEPRECATED  
  -DGTK_DISABLE_DEPRECATED-DGDK_DISABLE_DEPRECATED
-DG_DISABLE_DEPRECATED-DDATADIR=\/usr/share/\
-DPREFIX=\/usr/\-DLIBDIR=\/usr/lib/\
-DSYSCONFDIR=\/usr/etc/\-g -O2 -c grandr.c
grandr.c:58: error: expected specifier-qualifier-list before 'GtkTooltips'
grandr.c: In function 'grandr_dialog_about':
grandr.c:140: warning: assignment makes pointer from integer without a cast
make[3]: *** [grandr.o] Error 1
make[3]: Leaving directory `/build/user/gnome-randr-applet-0.2/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/gnome-randr-applet-0.2'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/build/user/gnome-randr-applet-0.2'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |




Bug#444510: libquicktime: FTBFS: error: expected specifier-qualifier-list before 'GtkTooltips'

2007-09-29 Thread Lucas Nussbaum
Package: libquicktime
version: 2:1.0.0+debian-4
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[4]: Entering directory `/build/user/libquicktime-1.0.0+debian/utils/gtk'
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include   
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-DGTK_DISABLE_DEPRECATED -DLOCALE_DIR=\/usr/share/locale\ -march=k8 -mtune=k8 
-O3 -funroll-all-loops -fomit-frame-pointer  -finline-functions -Wall -Winline 
-MT lqt_gtk.o -MD -MP -MF .deps/lqt_gtk.Tpo -c -o lqt_gtk.o lqt_gtk.c; \
then mv -f .deps/lqt_gtk.Tpo .deps/lqt_gtk.Po; else rm -f 
.deps/lqt_gtk.Tpo; exit 1; fi
In file included from lqt_gtk.c:2:
lqt_gtk.h:24: error: expected specifier-qualifier-list before 'GtkTooltips'
lqt_gtk.h:28: error: expected declaration specifiers or '...' before 
'GtkTooltips'
lqt_gtk.h:50: error: expected specifier-qualifier-list before 'GtkTooltips'
lqt_gtk.c: In function 'set_combo_tooltip':
lqt_gtk.c:167: warning: implicit declaration of function 'gtk_tooltips_set_tip'
lqt_gtk.c:167: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c: At top level:
lqt_gtk.c:184: error: expected declaration specifiers or '...' before 
'GtkTooltips'
lqt_gtk.c: In function 'lqtgtk_create_parameter_widget':
lqt_gtk.c:188: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:188: error: 'tooltips' undeclared (first use in this function)
lqt_gtk.c:188: error: (Each undeclared identifier is reported only once
lqt_gtk.c:188: error: for each function it appears in.)
lqt_gtk.c:200: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:219: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:236: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:263: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:284: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c:292: error: 'LqtGtkParameterWidget' has no member named 'tooltips'
lqt_gtk.c: At top level:
lqt_gtk.c:346: error: expected declaration specifiers or '...' before 
'GtkTooltips'
lqt_gtk.c: In function 'create_table':
lqt_gtk.c:361: error: 'tooltips' undeclared (first use in this function)
lqt_gtk.c:361: error: too many arguments to function 
'lqtgtk_create_parameter_widget'
lqt_gtk.c: In function 'lqtgtk_create_codec_config_widget':
lqt_gtk.c:394: error: 'LqtGtkCodecConfigWidget' has no member named 'tooltips'
lqt_gtk.c:394: warning: implicit declaration of function 'gtk_tooltips_new'
lqt_gtk.c:395: error: 'LqtGtkCodecConfigWidget' has no member named 'tooltips'
lqt_gtk.c:400: error: 'LqtGtkCodecConfigWidget' has no member named 'tooltips'
lqt_gtk.c:438: error: 'LqtGtkCodecConfigWidget' has no member named 'tooltips'
lqt_gtk.c:438: error: too many arguments to function 'create_table'
lqt_gtk.c:456: error: 'LqtGtkCodecConfigWidget' has no member named 'tooltips'
lqt_gtk.c:456: error: too many arguments to function 'create_table'
make[4]: *** [lqt_gtk.o] Error 1
make[4]: Leaving directory `/build/user/libquicktime-1.0.0+debian/utils/gtk'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/libquicktime-1.0.0+debian/utils'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/libquicktime-1.0.0+debian'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/libquicktime-1.0.0+debian'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444518: ardour: FTBFS: error: 'const struct _GtkToolbar' has no member named 'tooltips'

2007-09-29 Thread Lucas Nussbaum
Package: ardour
version: 1:2.0.5-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
g++ -o libs/gtkmm2/gtk/gtkmm/toolbar.os -c -g -DARCH_X86 -Wall -DHAVE_LIBLO 
-DENABLE_NLS -Woverloaded-virtual -fPIC -I/usr/include/atk-1.0 -Ilibs/sigc++2 
-I/usr/include/glib-2.0 -I/usr/include/gtk-2.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -Ilibs/gtkmm2/atk -I/usr/include/freetype2 
-Ilibs/glibmm2 -I/usr/lib/glib-2.0/include -Ilibs/gtkmm2/pango 
-Ilibs/gtkmm2/gtk -I/usr/lib/gtk-2.0/include -I/usr/include/libpng12 
-Ilibs/gtkmm2/gdk libs/gtkmm2/gtk/gtkmm/toolbar.cc
libs/gtkmm2/gtk/gtkmm/toolbar.cc: In member function 'Gtk::Tooltips* 
Gtk::Toolbar::get_tooltips_object() const':
libs/gtkmm2/gtk/gtkmm/toolbar.cc:522: error: 'const struct _GtkToolbar' has no 
member named 'tooltips'
scons: *** [libs/gtkmm2/gtk/gtkmm/toolbar.os] Error 1
scons: building terminated because of errors.
make: *** [debian/stamp-scons-build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444516: gtkmm2.4: FTBFS: error: 'const struct _GtkToolbar' has no member named 'tooltips'

2007-09-29 Thread Lucas Nussbaum
Package: gtkmm2.4
version: 1:2.10.10-0.2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if /bin/sh ../../libtool --tag=CXX --mode=compile i486-linux-gnu-g++ 
-DHAVE_CONFIG_H -DG_LOG_DOMAIN=\gtkmm\   -I../../gtk -I../../gtk 
-I../../pango -I../../pango -I../../atk -I../../atk -I../../gdk -I../../gdk 
-I../../gtk -I../../gtk -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include 
-I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/cairo 
-I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 
-I/usr/include/gtk-unix-print-2.0 -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include  -Wall -g -O2 -MT toolbar.lo -MD -MP -MF 
.deps/toolbar.Tpo -c -o toolbar.lo toolbar.cc; \
then mv -f .deps/toolbar.Tpo .deps/toolbar.Plo; else rm -f 
.deps/toolbar.Tpo; exit 1; fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\gtkmm\ -I../../gtk 
-I../../gtk -I../../pango -I../../pango -I../../atk -I../../atk -I../../gdk 
-I../../gdk -I../../gtk -I../../gtk -I/usr/include/glibmm-2.4 
-I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 
-I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/cairo 
-I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 
-I/usr/include/gtk-unix-print-2.0 -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -Wall -g -O2 -MT toolbar.lo -MD -MP -MF 
.deps/toolbar.Tpo -c toolbar.cc  -fPIC -DPIC -o .libs/toolbar.o
toolbar.cc: In member function 'Gtk::Tooltips* 
Gtk::Toolbar::get_tooltips_object() const':
toolbar.cc:569: error: 'const struct _GtkToolbar' has no member named 'tooltips'
make[6]: *** [toolbar.lo] Error 1
make[6]: Leaving directory `/build/user/gtkmm2.4-2.10.10/gtk/gtkmm'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/build/user/gtkmm2.4-2.10.10/gtk/gtkmm'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/build/user/gtkmm2.4-2.10.10/gtk'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/build/user/gtkmm2.4-2.10.10/gtk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/gtkmm2.4-2.10.10'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/gtkmm2.4-2.10.10'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444472: does not apply to linux-2.6 2.6.18.dfsg.1-13etch3

2007-09-29 Thread Ola Lundqvist
Hi Marcin

Thanks for the report. I must have missed the latest security update.
I'll correct that and upload a new version.

Best regards,

// Ola

On Fri, Sep 28, 2007 at 10:27:39PM +0100, Marcin Owsiany wrote:
 Package: kernel-patch-openvz
 Version: 028.18.1etch4
 Severity: grave
 Tags: patch
 
 The security updates present in 2.6.18.dfsg.1-13etch3 conflict with two
 hunks of the openvz patch.
 
 The attached patch is sufficient to make it apply, athough the line
 numbers could use some adjustment..
 
 
 -- System Information:
 Debian Release: 4.0
   APT prefers stable
   APT policy: (500, 'stable'), (1, 'experimental')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.18-5-686
 Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
 
 Versions of packages kernel-patch-openvz depends on:
 ii  bash  3.1dfsg-8  The GNU Bourne Again SHell
 ii  grep-dctrl2.9.3  Grep Debian package information 
 - 
 ii  patch 2.5.9-4Apply a diff file to an original
 
 kernel-patch-openvz recommends no packages.
 
 -- no debconf information



-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  http://opalsys.net/ +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444528: hpoj: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'const'

2007-09-29 Thread Lucas Nussbaum
Package: hpoj
version: 0.91-12
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
cc -O -Wall -g  -DHAVE_SNMP -I/build/user/hpoj-0.91/include 
-I/usr/include/ucd-snmp -I/usr/share/qt3/include 
-L/build/user/hpoj-0.91/lib/hpojip -L/build/user/hpoj-0.91/lib/ptal 
-L/build/user/hpoj-0.91/lib/sane -L/usr/share/qt3/lib 
-DVAR_RUN_PREFIX=\/var/run\ -DUCD_COMPATIBLE -fPIC -c -o ptal-mlc.shared.o 
ptal-mlc.c
cc -O -Wall -g  -DHAVE_SNMP -I/build/user/hpoj-0.91/include 
-I/usr/include/ucd-snmp -I/usr/share/qt3/include 
-L/build/user/hpoj-0.91/lib/hpojip -L/build/user/hpoj-0.91/lib/ptal 
-L/build/user/hpoj-0.91/lib/sane -L/usr/share/qt3/lib 
-DVAR_RUN_PREFIX=\/var/run\ -DUCD_COMPATIBLE -fPIC -c -o ptal-hpjd.shared.o 
ptal-hpjd.c
In file included from /usr/include/ucd-snmp/snmp_api.h:3,
 from ptal-hpjd.c:50:
/usr/include/net-snmp/library/snmp_api.h:359: error: expected '=', ',', ';', 
'asm' or '__attribute__' before 'const'
/usr/include/net-snmp/library/snmp_api.h:360: error: expected '=', ',', ';', 
'asm' or '__attribute__' before 'void'
/usr/include/net-snmp/library/snmp_api.h:361: error: expected '=', ',', ';', 
'asm' or '__attribute__' before 'void'
ptal-hpjd.c: In function 'ptalHpjdSnmpOpen':
ptal-hpjd.c:111: warning: pointer targets in assignment differ in signedness
ptal-hpjd.c: In function 'ptalHpjdPmlGet':
ptal-hpjd.c:809: warning: pointer targets in assignment differ in signedness
ptal-hpjd.c: In function 'ptalHpjdPmlSet':
ptal-hpjd.c:909: warning: pointer targets in passing argument 5 of 
'snmp_pdu_add_variable' differ in signedness
make[2]: *** [ptal-hpjd.shared.o] Error 1
make[2]: Leaving directory `/build/user/hpoj-0.91/lib/ptal'
make[1]: *** [just_compile] Error 2
make[1]: Leaving directory `/build/user/hpoj-0.91'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444530: gbdfed: FTBFS: error: 'GtkFileSelection' undeclared

2007-09-29 Thread Lucas Nussbaum
Package: gbdfed
version: 1.3patch1-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
i486-linux-gnu-gcc -DHAVE_FREETYPE -DHAVE_HBF -DHAVE_XLIB 
-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED -Wall -g -O2 -I/usr/include/freetype2   
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12   
-c guipref.c -o guipref.o
guipref.c: In function 'pref_set_filename':
guipref.c:660: warning: implicit declaration of function 
'gtk_file_selection_get_filename'
guipref.c:660: warning: implicit declaration of function 'GTK_FILE_SELECTION'
guipref.c: In function 'pref_show_fsel_dialog':
guipref.c:681: error: 'GtkFileSelection' undeclared (first use in this function)
guipref.c:681: error: (Each undeclared identifier is reported only once
guipref.c:681: error: for each function it appears in.)
guipref.c:681: error: 'fs' undeclared (first use in this function)
guipref.c:686: warning: implicit declaration of function 
'gtk_file_selection_new'
guipref.c:686: warning: assignment makes pointer from integer without a cast
guipref.c:691: warning: implicit declaration of function 
'gtk_file_selection_hide_fileop_buttons'
make[1]: *** [guipref.o] Error 1
make[1]: Leaving directory `/build/user/gbdfed-1.3patch1'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444529: trayer: FTBFS: error: expected ')' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: trayer
version: 1.0-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
gcc -O2 -Wall  -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -I../ -c fixedtip.c
fixedtip.c:40: error: expected ')' before '*' token
fixedtip.c: In function 'fixed_tip_show':
fixedtip.c:84: error: 'expose_handler' undeclared (first use in this function)
fixedtip.c:84: error: (Each undeclared identifier is reported only once
fixedtip.c:84: error: for each function it appears in.)
make[2]: *** [fixedtip.o] Error 1
make[2]: Leaving directory `/build/user/trayer-1.0/systray'
make[1]: *** [systray] Error 2
make[1]: Leaving directory `/build/user/trayer-1.0'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444532: mdk: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: mdk
version: 1.2.3-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -I.. 
-DGLADE_FILE=\/usr/share/mdk/mixgtk.glade\ 
-DLOCAL_GLADE_FILE=\./mixgtk.glade\ -DMAKE_GUILE   -Wall 
-fno-strict-aliasing  -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-DG_DISABLE_DEPRECATED -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/libglade-2.0 -I/usr/include/libxml2   
-DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -g -O2 -MT mixgtk_mixvm.o -MD 
-MP -MF .deps/mixgtk_mixvm.Tpo -c -o mixgtk_mixvm.o mixgtk_mixvm.c; \
then mv -f .deps/mixgtk_mixvm.Tpo .deps/mixgtk_mixvm.Po; else rm -f 
.deps/mixgtk_mixvm.Tpo; exit 1; fi
mixgtk_mixvm.c:36: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
mixgtk_mixvm.c: In function 'mixgtk_mixvm_init':
mixgtk_mixvm.c:73: error: 'tips_' undeclared (first use in this function)
mixgtk_mixvm.c:73: error: (Each undeclared identifier is reported only once
mixgtk_mixvm.c:73: error: for each function it appears in.)
mixgtk_mixvm.c:73: warning: implicit declaration of function 'gtk_tooltips_new'
mixgtk_mixvm.c: In function 'update_register_':
mixgtk_mixvm.c:410: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
mixgtk_mixvm.c:410: error: 'tips_' undeclared (first use in this function)
make[3]: *** [mixgtk_mixvm.o] Error 1
make[3]: Leaving directory `/build/user/mdk-1.2.3/mixgtk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/mdk-1.2.3'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/mdk-1.2.3'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444527: gnome-apt: FTBFS: error: 'GnomeDruidPage' has not been declared

2007-09-29 Thread Lucas Nussbaum
Package: gnome-apt
version: 0.4.9-3
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if g++ -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/include -DORBIT2=1 -pthread 
-I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
-I/usr/include/gnome-keyring-1 -I/usr/include/libgnome-2.0 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/cairo -I/usr/include/libpng12   -I/usr/include/freetype2 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 
-I/usr/include/pango-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/libpng12   -DPREFIX=\/usr\ 
-DSYSCONFDIR=\/etc\ -DDATADIR=\/usr/share\ -DLIBDIR=\/usr/lib\ 
-DGNOMELOCALEDIR=\/usr/share/locale\ -DG_LOG_DOMAIN=\Gnome Apt 
Frontend\ -DGNOME_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED 
-DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGLIB_DISABLE_DEPRECATED  -g -O2 -Wall -Wno-unused  -g -O2 
-DG_DISABLE_CHECKS=1 -MT gnome_apt-sources.o -MD -MP -MF 
.deps/gnome_apt-sources.Tpo \
  -c -o gnome_apt-sources.o `test -f 'sources.cc' || echo 
'./'`sources.cc; \
then mv -f .deps/gnome_apt-sources.Tpo .deps/gnome_apt-sources.Po; \
else rm -f .deps/gnome_apt-sources.Tpo; exit 1; \
fi
In file included from sources.cc:37:
sources-wizard.h:74: error: 'GnomeDruidPage' has not been declared
sources-wizard.h:77: error: 'GnomeDruid' has not been declared
sources-wizard.h:80: error: 'GnomeDruidPage' has not been declared
sources-wizard.h:83: error: 'GnomeDruidPage' has not been declared
sources-wizard.h:86: error: 'GtkToggleButton' has not been declared
sources-wizard.h:87: error: 'GtkToggleButton' has not been declared
sources.cc: In function 'void response_cb(GtkWidget*, gint, void*)':
sources.cc:58: error: 'GTK_RESPONSE_APPLY' was not declared in this scope
sources.cc:60: error: 'GTK_RESPONSE_OK' was not declared in this scope
sources.cc:63: error: 'GTK_RESPONSE_CANCEL' was not declared in this scope
sources.cc:63: error: 'GTK_RESPONSE_DELETE_EVENT' was not declared in this scope
sources.cc: In member function 'void Sources::edit()':
sources.cc:89: error: 'GTK_DIALOG_DESTROY_WITH_PARENT' was not declared in this 
scope
sources.cc:89: error: 'GTK_MESSAGE_ERROR' was not declared in this scope
sources.cc:90: error: 'GTK_BUTTONS_CLOSE' was not declared in this scope
sources.cc:90: error: 'gtk_message_dialog_new' was not declared in this scope
sources.cc:92: error: 'GTK_DIALOG' was not declared in this scope
sources.cc:92: error: 'gtk_dialog_run' was not declared in this scope
sources.cc:102: error: 'GTK_DIALOG_DESTROY_WITH_PARENT' was not declared in 
this scope
sources.cc:102: error: 'GTK_MESSAGE_ERROR' was not declared in this scope
sources.cc:103: error: 'GTK_BUTTONS_CLOSE' was not declared in this scope
sources.cc:103: error: 'gtk_message_dialog_new' was not declared in this scope
sources.cc:105: error: 'GTK_DIALOG' was not declared in this scope
sources.cc:105: error: 'gtk_dialog_run' was not declared in this scope
sources.cc:115: error: 'GTK_DIALOG_DESTROY_WITH_PARENT' was not declared in 
this scope
sources.cc:116: error: 'GTK_STOCK_CANCEL' was not declared in this scope
sources.cc:116: error: 'GTK_RESPONSE_CANCEL' was not declared in this scope
sources.cc:117: error: 'GTK_STOCK_APPLY' was not declared in this scope
sources.cc:117: error: 'GTK_RESPONSE_APPLY' was not declared in this scope
sources.cc:118: error: 'GTK_STOCK_OK' was not declared in this scope
sources.cc:118: error: 'GTK_RESPONSE_OK' was not declared in this scope
sources.cc:118: error: 'gtk_dialog_new_with_buttons' was not declared in this 
scope
sources.cc:119: error: 'GTK_WINDOW' was not declared in this scope
sources.cc:119: error: 'gtk_window_set_default_size' was not declared in this 
scope
sources.cc:123: error: 'gtk_frame_new' was not declared in this scope
sources.cc:125: error: 'gtk_vbox_new' was not declared in this scope
sources.cc:135: warning: deprecated conversion from string constant to 'gchar*'
sources.cc:171: error: 'gtk_cell_renderer_text_new' was not declared in this 
scope
sources.cc:183: error: 'gtk_scrolled_window_new' was not declared in this scope
sources.cc:184: error: 'GTK_SCROLLED_WINDOW' was not declared in this scope
sources.cc:186: error: 'gtk_scrolled_window_set_policy' was not declared in 
this scope
sources.cc:189: error: 'GTK_BOX' was not declared in this scope
sources.cc:191: error: 

Bug#444522: gdmap: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: gdmap
version: 0.7.5-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..
-DGDMAP_LOCALE_DIR=\/usr/share/locale\ 
-DPACKAGE_DATA_DIR=\/usr/share/gdmap\ -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12   -DGTK_DISABLE_DEPRECATED 
-I/usr/include/libxml2   -Wall -g -O2 -Wl,-z,defs -D_GNU_SOURCE 
-Wno-pointer-sign -MT gdmap-gui_support.o -MD -MP -MF 
.deps/gdmap-gui_support.Tpo -c -o gdmap-gui_support.o `test -f 
'gui_support.c' || echo './'`gui_support.c; \
then mv -f .deps/gdmap-gui_support.Tpo .deps/gdmap-gui_support.Po; 
else rm -f .deps/gdmap-gui_support.Tpo; exit 1; fi
gui_support.c: In function 'ui_create_section':
gui_support.c:35: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
gui_support.c:35: error: 'tips' undeclared (first use in this function)
gui_support.c:35: error: (Each undeclared identifier is reported only once
gui_support.c:35: error: for each function it appears in.)
gui_support.c:62: warning: implicit declaration of function 'gtk_tooltips_new'
gui_support.c:63: warning: implicit declaration of function 
'gtk_tooltips_set_tip'
make[3]: *** [gdmap-gui_support.o] Error 1
make[3]: Leaving directory `/build/user/gdmap-0.7.5/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/gdmap-0.7.5'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/gdmap-0.7.5'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444531: galculator: FTBFS: error: conflicting types for 'gdk_color_to_string'

2007-09-29 Thread Lucas Nussbaum
Package: galculator
version: 1.2.5.2-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[3]: Entering directory `/build/user/galculator-1.2.5.2/src'
cc -DHAVE_CONFIG_H -I. -I. -I.. -DPACKAGE_LOCALE_DIR=\/usr/share/locale\ 
-DPACKAGE_GLADE_DIR=\/usr/share/galculator/glade\ -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/libglade-2.0 
-I/usr/include/libxml2  -g -Wall -O2 -c main.c
In file included from main.c:34:
general_functions.h:54: error: conflicting types for 'gdk_color_to_string'
/usr/include/gtk-2.0/gdk/gdkcolor.h:137: error: previous declaration of 
'gdk_color_to_string' was here
make[3]: *** [main.o] Error 1
make[3]: Leaving directory `/build/user/galculator-1.2.5.2/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/galculator-1.2.5.2'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/galculator-1.2.5.2'
make: *** [debian/stamp-makefile-build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444533: gimp-plugin-registry: FTBFS: error: 'gtk_file_selection_new' was not declared in this scope

2007-09-29 Thread Lucas Nussbaum
Package: gimp-plugin-registry
version: 0.3.1-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[2]: Entering directory 
`/build/user/gimp-plugin-registry-0.3.1/DBP/dbp-1.1.7'
g++ -o dbp -Wall -O2 -I. *.cc -I/usr/include/gimp-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/freetype2 -I/usr/include/libpng12  -lgimpui-2.0 
-lgimpwidgets-2.0 -lgimpmodule-2.0 -lgimp-2.0 -lgimpmath-2.0 -lgimpconfig-2.0 
-lgimpcolor-2.0 -lgimpbase-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 
-lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama 
-lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 
-lXfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -DGTK_DISABLE_DEPRECATED 
-Wall -g -O2 
dbp.cc: In function 'void query()':
dbp.cc:85: warning: deprecated conversion from string constant to 'gchar*'
dbp.cc:85: warning: deprecated conversion from string constant to 'gchar*'
gui.cc: In member function 'virtual GtkWidget* Dbp::RenameGui::build()':
gui.cc:875: error: 'gtk_file_selection_new' was not declared in this scope
gui.cc:878: error: 'GtkFileSelection' was not declared in this scope
gui.cc:878: error: 'fs' was not declared in this scope
gui.cc:878: error: 'GTK_FILE_SELECTION' was not declared in this scope
gui.cc:886: error: 'gtk_file_selection_hide_fileop_buttons' was not declared in 
this scope
gui.cc: In member function 'void Dbp::RenameGui::okDirSelector()':
gui.cc:997: error: 'GTK_FILE_SELECTION' was not declared in this scope
gui.cc:997: error: 'gtk_file_selection_get_filename' was not declared in this 
scope
make[2]: *** [dbp] Error 1
make[2]: Leaving directory 
`/build/user/gimp-plugin-registry-0.3.1/DBP/dbp-1.1.7'
make[1]: *** [build-stamp] Error 2
make[1]: Leaving directory `/build/user/gimp-plugin-registry-0.3.1/DBP'
make: *** [build-stamp] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444523: ebview: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: ebview
version: 0.3.6-3
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
if i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/include   
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
  -Wall -g -O2 -MT ebview.o -MD -MP -MF .deps/ebview.Tpo -c -o ebview.o 
ebview.c; \
then mv -f .deps/ebview.Tpo .deps/ebview.Po; else rm -f 
.deps/ebview.Tpo; exit 1; fi
In file included from ebview.c:36:
global.h:24: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' 
token
make[3]: *** [ebview.o] Error 1
make[3]: Leaving directory `/build/user/ebview-0.3.6/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/ebview-0.3.6'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/ebview-0.3.6'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444524: network-manager: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: network-manager
version: 0.6.5-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[4]: Entering directory 
`/build/user/network-manager-0.6.5/gnome/vpn-properties'
cc -DHAVE_CONFIG_H -I. -I. -I../..-I/usr/include/libglade-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -DORBIT2=1 -pthread -I/usr/include/gconf/2 
-I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DORBIT2=1 -pthread 
-I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
-I/usr/include/gnome-keyring-1 -I/usr/include/libgnome-2.0 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/cairo -I/usr/include/libpng12   -DSYSCONFDIR=\/etc\ 
-DICONDIR=\/usr/share/icons\ 
-DGLADEDIR=\/usr/share/gnome-vpn-properties\ -DG_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED 
-DGNOMELOCALEDIR=\/usr/share/locale\ -DVERSION=\0.6.5\  -g -Wall -O2 -c -o 
nm_vpn_properties-nm-vpn-properties.o `test -f 'nm-vpn-properties.c' || echo 
'./'`nm-vpn-properties.c
nm-vpn-properties.c:59: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
nm-vpn-properties.c:60: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
nm-vpn-properties.c: In function 'vpn_druid_vpn_validity_changed':
nm-vpn-properties.c:258: warning: implicit declaration of function 
'gnome_druid_set_buttons_sensitive'
nm-vpn-properties.c:258: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:258: error: (Each undeclared identifier is reported only 
once
nm-vpn-properties.c:258: error: for each function it appears in.)
nm-vpn-properties.c: At top level:
nm-vpn-properties.c:266: error: expected ')' before '*' token
nm-vpn-properties.c:304: error: expected ')' before '*' token
nm-vpn-properties.c:321: error: expected ')' before '*' token
nm-vpn-properties.c:338: error: expected ')' before '*' token
nm-vpn-properties.c:357: error: expected ')' before '*' token
nm-vpn-properties.c:378: error: expected ')' before '*' token
nm-vpn-properties.c: In function 'add_cb':
nm-vpn-properties.c:423: warning: implicit declaration of function 
'gnome_druid_set_page'
nm-vpn-properties.c:423: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:423: warning: implicit declaration of function 
'GNOME_DRUID_PAGE'
nm-vpn-properties.c: In function 'import_settings':
nm-vpn-properties.c:477: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c: In function 'init_app':
nm-vpn-properties.c:1061: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:1061: warning: implicit declaration of function 
'GNOME_DRUID'
nm-vpn-properties.c:1062: error: 'vpn_druid_cancel' undeclared (first use in 
this function)
nm-vpn-properties.c:1063: error: 'druid_confirm_page' undeclared (first use in 
this function)
nm-vpn-properties.c:1063: warning: implicit declaration of function 
'GNOME_DRUID_PAGE_EDGE'
nm-vpn-properties.c:1066: error: 'vpn_druid_vpn_type_page_next' undeclared 
(first use in this function)
nm-vpn-properties.c:1068: error: 'vpn_druid_vpn_details_page_prepare' 
undeclared (first use in this function)
nm-vpn-properties.c:1069: error: 'vpn_druid_vpn_details_page_next' undeclared 
(first use in this function)
nm-vpn-properties.c:1071: error: 'vpn_druid_vpn_confirm_page_prepare' 
undeclared (first use in this function)
nm-vpn-properties.c:1072: error: 'vpn_druid_vpn_confirm_page_finish' undeclared 
(first use in this function)
make[4]: *** [nm_vpn_properties-nm-vpn-properties.o] Error 1
make[4]: Leaving directory 
`/build/user/network-manager-0.6.5/gnome/vpn-properties'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/network-manager-0.6.5/gnome'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/network-manager-0.6.5'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/network-manager-0.6.5'
make: *** 

Bug#444525: rgtk2: FTBFS: cannot access `/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-libra ry/RGtk2/libs/*': No such file or directory

2007-09-29 Thread Lucas Nussbaum
Package: rgtk2
version: 2.11.0-2-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[1]: Entering directory `/build/user/rgtk2-2.11.0-2/src'
make[1]: Leaving directory `/build/user/rgtk2-2.11.0-2/src'
chmod: cannot access 
`/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-library/RGtk2/libs/*':
 No such file or directory
ERROR: compilation failed for package 'RGtk2'
** Removing 
'/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-library/RGtk2'
make: *** [R_any_arch] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444526: gringotts: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token

2007-09-29 Thread Lucas Nussbaum
Package: gringotts
version: 1.2.8+1.2.9pre1-15
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[3]: Entering directory `/build/user/gringotts-1.2.8+1.2.9pre1/src'
cc -DHAVE_CONFIG_H -I. -I. -I.. -DHAVE_CONFIG_H -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2 -I/usr/include/libpng12   -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-DG_LOG_DOMAIN=\gringotts\ -DLOCALEDIR=\/usr/share/locale\ 
-DDOCDIR=\/usr/share/doc/gringotts-1.2.9pre1\ -DG_DISABLE_DEPRECATED 
-DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGTK_DISABLE_DEPRECATED -Wpointer-arith -Werror-implicit-function-declaration 
-Wstrict-prototypes -Wall-g -Wall -O2 -c `test -f 'gringotts.c' || echo 
'./'`gringotts.c
In file included from gringotts.c:39:
grg_widgets.h:69: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
gringotts.c:101: error: expected '=', ',', ';', 'asm' or '__attribute__' before 
'*' token
gringotts.c: In function 'update_saveable':
gringotts.c:249: warning: pointer targets in passing argument 1 of 
'g_filename_to_utf8' differ in signedness
gringotts.c:253: warning: pointer targets in assignment differ in signedness
gringotts.c:257: warning: pointer targets in assignment differ in signedness
gringotts.c:258: warning: pointer targets in passing argument 2 of 
'gtk_window_set_title' differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 'strlen' 
differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 'strlen' 
differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:268: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c: In function 'update':
gringotts.c:398: warning: pointer targets in passing argument 2 of 
'gtk_window_set_title' differ in signedness
gringotts.c: In function 'file_close':
gringotts.c:441: warning: pointer targets in assignment differ in signedness
gringotts.c: In function 'revert':
gringotts.c:481: warning: pointer targets in passing argument 1 of 
'grg_safe_open' differ in signedness
gringotts.c:498: warning: pointer targets in passing argument 4 of 
'grg_load_wrapper' differ in signedness
gringotts.c:511: warning: pointer targets in passing argument 1 of 
'grg_entries_load_from_string' differ in signedness
gringotts.c: In function 'load_file':
gringotts.c:629: warning: pointer targets in passing argument 1 of 'strlen' 
differ in signedness
gringotts.c:629: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:629: warning: pointer targets in passing argument 1 of 'strlen' 
differ in signedness
gringotts.c:629: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:629: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:629: warning: pointer targets in passing argument 1 of 
'__builtin_strcmp' differ in signedness
gringotts.c:630: warning: pointer targets in passing argument 1 of 'lstat' 
differ in signedness
gringotts.c:750: warning: pointer targets in passing argument 1 of 
'grg_entries_load_from_string' differ in signedness
gringotts.c:825: warning: pointer targets in assignment differ in signedness
gringotts.c: In function 'meta_load':
gringotts.c:852: error: implicit declaration of function 
'gtk_file_selection_new'
gringotts.c:852: warning: assignment makes pointer from integer without a cast
gringotts.c:862: error: implicit declaration of function 
'gtk_file_selection_get_filename'
gringotts.c:862: error: implicit declaration of function 'GTK_FILE_SELECTION'
gringotts.c:862: warning: passing argument 1 of 'strlen' makes pointer from 
integer without a cast
gringotts.c:862: warning: passing argument 2 of 'memcpy' makes pointer from 
integer without a cast
gringotts.c:862: warning: passing argument 1 of '__strdup' makes pointer from 
integer without a cast
gringotts.c: In function 'do_new':
gringotts.c:938: warning: pointer targets in assignment differ in signedness
gringotts.c: In function 'save_as':
gringotts.c:992: warning: pointer targets in passing argument 1 of 'strlen' 
differ in signedness
gringotts.c:992: warning: pointer targets in passing argument 2 of 
'__builtin_strcmp' differ in signedness
gringotts.c:992: warning: pointer targets in passing argument 2 of 

Bug#441122: cacao - FTBFS: undefined reference to `__data_start'

2007-09-29 Thread Cyril Brulebois
Bastian Blank [EMAIL PROTECTED] (06/09/2007):
  cc -shared  -Wl,--whole-archive ../../src/fdlibm/.libs/libfdlibm.a 
  ../../src/mm/.libs/libmm.a ../../src/native/.libs/libnative.a 
  ../../src/toolbox/.libs/libtoolbox.a ../../src/vm/.libs/libvm.a 
  ../../src/vmcore/.libs/libvmcore.a ../../src/threads/.libs/libthreads.a 
  -Wl,--no-whole-archive  -ldl /usr/lib/libltdl.so -lz -lpthread  -Wl,-z 
  -Wl,defs -Wl,-soname -Wl,libjvm-0.98.so -o .libs/libjvm-0.98.so
  ../../src/mm/.libs/libmm.a(dyn_load.o): In function 
  `GC_register_dynamic_libraries_dl_iterate_phdr':
  /build/buildd/cacao-0.98/src/mm/boehm-gc/dyn_load.c:441: undefined 
  reference to `__data_start'
  ../../src/mm/.libs/libmm.a(os_dep.o): In function 
  `GC_register_data_segments':
  /build/buildd/cacao-0.98/src/mm/boehm-gc/os_dep.c:1494: undefined reference 
  to `__data_start'
  ../../src/vm/.libs/libvm.a(md-abi.o): In function `md_param_alloc':
  /build/buildd/cacao-0.98/src/vm/jit/s390/md-abi.c:138: undefined reference 
  to `assert'
  collect2: ld returned 1 exit status

Hi,

is this bug still reproducible? I can't on some other archs at least.

Cheers,

-- 
Cyril Brulebois


pgpUFjtVj5dib.pgp
Description: PGP signature


Bug#431201: marked as done (qc-usb-source: Fails to compile on linux 2.6.21.5)

2007-09-29 Thread Emmanuel Bouthenot
more inforations :

 make oldconfig or make config or make menuconfig
 then
 make prepare
and make scripts

i've juste try to build the module with a vanilla kerenl tree and it
works fine :

in /usr/src/modules/qc-usb-source

sudo make install MODULE_DIR=$fake_installdir LINUX_DIR=$linux_vanilla_tree

cheers,


M.

-- 
Emmanuel Bouthenot



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#443574: Several applications crash after migration from 2.10 to 2.12

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 443574
Bug#443574: Several applications crash after migration from 2.10 to 2.12
Bug#443571: libgtk2.0-0 - Icedove crash on startup after upgrading  libgtk2.0-0 
from 2.10.13-1 to 2.12.0-2 
Bug reopened, originator not changed.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443574: Several applications crash after migration from 2.10 to 2.12

2007-09-29 Thread Touko Korpela
reopen 443574
thanks

I think this bug should stay open for couple of days util fixed wxwidgets is
uploaded to prevent many programs from crashing in testing.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444535: gwget2: FTBFS: unmet b-dep epiphany-browser-dev(inst 2.20.0-1 ! wanted 2.19)

2007-09-29 Thread Lucas Nussbaum
Package: gwget2
version: 0.99-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Au boulot ! :-)

Relevant part:
** Using build dependencies supplied by package:
Build-Depends: cdbs (= 0.4.23-1.1), debhelper (= 5), pkg-config, 
libgnomeui-dev, libgtk2.0-dev, libglade2-dev, libxml-parser-perl, 
libgcrypt11-dev, libgnomevfs2-dev, libnotify-dev (= 0.3.2), libbonobo2-dev, 
epiphany-browser-dev (= 2.18), epiphany-browser-dev ( 2.19), gnome-pkg-tools
Checking for already installed source dependencies...
cdbs: missing
Using default version 0.4.49
debhelper: missing
Using default version 5.0.56
pkg-config: missing
libgnomeui-dev: missing
libgtk2.0-dev: missing
libglade2-dev: missing
libxml-parser-perl: missing
libgcrypt11-dev: missing
libgnomevfs2-dev: missing
libnotify-dev: missing
Using default version 0.4.4-3
libbonobo2-dev: missing
epiphany-browser-dev: missing
Using default version 2.20.0-1
epiphany-browser-dev: missing
Default version of epiphany-browser-dev not sufficient, no suitable version 
found. Skipping for now, maybe there are alternatives.
gnome-pkg-tools: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  dbus dbus-x11 defoma epiphany-browser-data epiphany-gecko esound-common file
  fontconfig fontconfig-config gconf2 gconf2-common gettext gettext-base
  gnome-icon-theme gnome-keyring gnome-mime-data hicolor-icon-theme html2text
  intltool-debian iso-codes libart-2.0-2 libart-2.0-dev libaspell15
  libatk1.0-0 libatk1.0-dev libaudiofile-dev libaudiofile0 libavahi-client-dev
  libavahi-client3 libavahi-common-data libavahi-common-dev libavahi-common3
  libavahi-glib-dev libavahi-glib1 libbonobo2-0 libbonobo2-common
  libbonoboui2-0 libbonoboui2-common libbonoboui2-dev libcairo2 libcairo2-dev
  libcroco3 libcupsys2 libdatrie0 libdbus-1-3 libdbus-1-dev libdbus-glib-1-2
  libdbus-glib-1-dev libenchant1c2a libesd0 libesd0-dev libexpat1
  libexpat1-dev libfam0 libffi4 libfontconfig1 libfontconfig1-dev libfreetype6
  libfreetype6-dev libgail-common libgail-dev libgail18 libgconf2-4
  libgconf2-dev libglade2-0 libglib2.0-0 libglib2.0-dev libgnome-desktop-2
  libgnome-keyring-dev libgnome-keyring0 libgnome2-0 libgnome2-common
  libgnome2-dev libgnomecanvas2-0 libgnomecanvas2-common libgnomecanvas2-dev
  libgnomeui-0 libgnomeui-common libgnomevfs2-0 libgnomevfs2-common
  libgnutls-dev libgnutlsxx13 libgpg-error-dev libgsf-1-114 libgsf-1-common
  libgtk2.0-0 libgtk2.0-common libhal-storage1 libhal1 libhtml-parser-perl
  libhtml-tagset-perl libhtml-tree-perl libhunspell-1.1-0 libice-dev libice6
  libidl-dev libidl0 libjpeg62 libjpeg62-dev liblzo2-dev libmagic1 libmozjs0d
  libncursesw5 libnewt0.52 libnotify1 libnspr4-0d libnss3-0d libopencdk10-dev
  liborbit2 liborbit2-dev libpango1.0-0 libpango1.0-common libpango1.0-dev
  libpcre3 libpng12-0 libpng12-dev libpopt-dev libpopt0 librsvg2-2
  librsvg2-common libselinux1-dev libsepol1-dev libsm-dev libsm6 libssl0.9.8
  libstartup-notification0 libtasn1-3-dev libthai-data libthai0 libtiff4
  liburi-perl libwww-perl libx11-6 libx11-data libx11-dev libxau-dev libxau6
  libxcomposite-dev libxcomposite1 libxcursor-dev libxcursor1 libxdamage-dev
  libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev
  libxfixes3 libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1
  libxml2 libxml2-dev libxrandr-dev libxrandr2 libxrender-dev libxrender1
  libxslt1.1 libxt6 libxul-common libxul0d mime-support po-debconf psmisc
  python python-minimal python2.4 python2.4-minimal shared-mime-info
  ttf-dejavu whiptail x11-common x11proto-composite-dev x11proto-core-dev
  x11proto-damage-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
  x11proto-xinerama-dev xtrans-dev xulrunner-gnome-support zlib1g-dev
Suggested packages:
  devscripts doc-base dh-make defoma-doc psfontmgr x-ttcidfont-conf dfontmgr
  mozplugger cvs gettext-doc aspell libcairo2-doc cupsys-common esound
  libgail-doc libgcrypt11-doc glade glade-gnome libglib2.0-doc desktop-base
  libgnome2-doc libgnomecanvas2-doc libgnomeui-doc libgnomevfs2-bin gnutls-doc
  gnutls-bin libgtk2.0-doc ttf-kochi-gothic ttf-kochi-mincho ttf-thryomanes
  ttf-baekmuk ttf-arphic-gbsn00lp ttf-arphic-bsmi00lp ttf-arphic-gkai00mp
  ttf-arphic-bkai00mp libpango1.0-doc imagemagick librsvg2-bin
  libio-socket-ssl-perl python-doc python-tk python-profiler python2.4-doc
Recommended packages:
  autotools-dev libft-perl epiphany-browser yelp epiphany-extensions curl wget
  lynx svn-buildpackage aspell-en aspell-dictionary aspell6a-dictionary
  libatk1.0-data esound-clients fam libglib2.0-data libgnomevfs2-extra
  gnome-mount libgtk2.0-bin libgpmg1 libfribidi0 notification-daemon orbit2
  

Bug#444540: dbishell: FTBFS: Can't locate gnu/stubs-64.ph in @INC (did you run h2ph?)

2007-09-29 Thread Lucas Nussbaum
Package: dbishell
version: 0.8.9-7.2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[1]: Entering directory `/build/user/dbishell-0.8.9'

Looking for supported readline implementation
Can't locate gnu/stubs-64.ph in @INC (did you run h2ph?) (@INC contains: 
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /usr/lib/perl/5.8/gnu/stubs.ph line 10.
Compilation failed in require at /usr/lib/perl/5.8/features.ph line 179.
Compilation failed in require at /usr/lib/perl/5.8/sys/ioctl.ph line 7.
Compilation failed in require at -e line 3.
make[1]: *** [perl-readline] Error 2
make[1]: Leaving directory `/build/user/dbishell-0.8.9'
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443974: marked as done (gnome-applets: package is not installable)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 12:23:52 +0200
with message-id [EMAIL PROTECTED]
and subject line gnome-applets: package is not installable
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gnome-applets
Version: 2.20.0-1
Severity: grave
Justification: renders package unusable

The following packages have unmet dependencies:
  gnome-applets: Depends: libwnck18 (= 2.18.2) but it is not going to 
be installed
E: Broken packages


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-applets depends on:
ii  debconf [debconf-2.0]  1.5.14Debian configuration management sy
ii  gconf2 2.20.0-1  GNOME configuration database syste
ii  gnome-applets-data 2.20.0-1  Various applets for GNOME 2 panel 
ii  gnome-icon-theme   2.20.0-1  GNOME Desktop icon theme
ii  gnome-panel2.20.0.1-1launcher and docking facility for 
ii  gstreamer0.10-alsa 0.10.14-4 GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-good 0.10.6-2  GStreamer plugins from the good 
ii  libapm13.2.2-8.1 Library for interacting with APM d
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonoboui2-0 2.20.0-1  The Bonobo UI library
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libcpufreq0002-5 shared library to deal with the cp
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libgconf2-42.20.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.1-3  The GLib library of C routines
ii  libgnome-desktop-2 2.20.0-2  Utility library for loading .deskt
ii  libgnome2-02.20.0-1  The GNOME 2 library - runtime file
ii  libgnomekbd1   2.20.0-1  GNOME library to manage keyboard c
ii  libgnomekbdui1 2.20.0-1  User interface library for libgnom
ii  libgnomeui-0   2.20.0-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.0-1GNOME Virtual File System (runtime
ii  libgnomevfs2-extra 1:2.20.0-1GNOME Virtual File System (extra m
ii  libgstreamer-plugins-base0 0.10.14-4 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.14-2 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  libgtop2-7 2.20.0-1  gtop system monitoring library
ii  libgucharmap6  1:1.10.1-1Unicode browser widget library (sh
ii  libhal10.5.9.1-5 Hardware Abstraction Layer - share
ii  libnotify1 [libnotify1-gtk 0.4.4-3   sends desktop notifications to a n
ii  liboobs-1-32.18.1-2+b1   GObject based interface to system-
ii  libpanel-applet2-0 2.20.0.1-1library for GNOME Panel applets
ii  libpango1.0-0  1.18.2-1  Layout and rendering of internatio
pn  libwnck18  none(no description available)
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxklavier11  3.3-1 X Keyboard Extension high-level AP
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  python 2.4.4-6   An interactive high-level object-o

Versions of packages gnome-applets recommends:
pn  deskbar-applet none(no description available)
ii  gnome-media2.20.1-1  GNOME media utilities
pn  gnome-netstatus-applet none(no description available)
pn  gnome-system-monitor   none(no description available)
ii  imagemagick7:6.2.4.5.dfsg1-1 Image manipulation programs
ii  python-gnome2  2.20.0-1  Python bindings for the GNOME desk


---End Message---
---BeginMessage---
Package: gnome-applets
Version: 2.20.0-1+b1

Package has been rebuild against libwnck22. Gnome 2.20 is just entering
unstable. Please don't report such dependency 

Bug#444544: gst-plugins-base0.10: FTBFS: /usr/bin/dh_gstscancodecs: gst-inspect-0.10 failed on debian/gstreamer0.10-gnomevfs/usr/lib/gstreamer-0.10/libgstgnomevfs. so: 65280

2007-09-29 Thread Lucas Nussbaum
Package: gst-plugins-base0.10
version: 0.10.14-4
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
dh_fixperms -pgstreamer0.10-gnomevfs  
dh_makeshlibs -pgstreamer0.10-gnomevfs  
dh_strip -pgstreamer0.10-plugins-base  
--dbg-package=gstreamer0.10-plugins-base-dbg 
--dbg-package=gstreamer0.10-plugins-base-dbg
dh_compress -pgstreamer0.10-plugins-base  
dh_fixperms -pgstreamer0.10-plugins-base  
dh_makeshlibs -pgstreamer0.10-plugins-base  
dh_compress -pgstreamer0.10-plugins-base-dbg  
dh_fixperms -pgstreamer0.10-plugins-base-dbg  
dh_strip -pgstreamer0.10-x  --dbg-package=gstreamer0.10-plugins-base-dbg 
--dbg-package=gstreamer0.10-plugins-base-dbg
dh_compress -pgstreamer0.10-x  
dh_fixperms -pgstreamer0.10-x  
dh_makeshlibs -pgstreamer0.10-x  
mkdir -p /build/user/gst-plugins-base0.10-0.10.14/fake-home
GST_REGISTRY=/build/user/gst-plugins-base0.10-0.10.14/fake-home/registry.xml \
GNOME_VFS_HOME=/build/user/gst-plugins-base0.10-0.10.14/fake-home \

LD_LIBRARY_PATH=debian/libgstreamer-plugins-base0.10-0/usr/lib:/usr/lib/libfakeroot:/usr/lib64/libfakeroot:/usr/lib32/libfakeroot
 \
dh_gstscancodecs

(gst-inspect-0.10:19662): libgnomevfs-WARNING **: Unable to create ~/.gnome2 
directory: Permission denied
/usr/bin/dh_gstscancodecs: gst-inspect-0.10 failed on 
debian/gstreamer0.10-gnomevfs/usr/lib/gstreamer-0.10/libgstgnomevfs.so: 65280
make: *** [common-binary-fixup-arch] Error 255

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444541: evolution-exchange: FTBFS: checking Evolution version... configure: error: Evolution development libraries not installed

2007-09-29 Thread Lucas Nussbaum
Package: evolution-exchange
version: 2.10.3.dfsg-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
fi ; \
done ; \
fi
if test -e /usr/share/misc/config.sub ; then \
for i in ./config.sub ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination 
/usr/share/misc/config.sub $i ; \
fi ; \
done ; \
fi
touch debian/stamp-autotools-files
chmod a+x /build/user/evolution-exchange-2.10.3.dfsg/./configure
cd .  CC=cc CXX=g++ CFLAGS=-g -Wall -O2 -fPIC CXXFLAGS=-g -Wall -O2 
CPPFLAGS= LDFLAGS= /build/user/evolution-exchange-2.10.3.dfsg/./configure 
--build=i486-linux-gnu --prefix=/usr --includedir=\${prefix}/include 
--mandir=\${prefix}/share/man --infodir=\${prefix}/share/info 
--sysconfdir=/etc --localstatedir=/var 
--libexecdir=\${prefix}/lib/evolution-exchange --disable-maintainer-mode 
--disable-dependency-tracking --srcdir=.   
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking Evolution version... configure: error: Evolution development libraries 
not installed
make: *** [config.status] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444537: supercollider: FTBFS: pkg-config not found.

2007-09-29 Thread Lucas Nussbaum
Package: supercollider
version: 20060416-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
 /usr/bin/fakeroot debian/rules clean
dpatch  deapply-all  
90move_sclang not applied to ./ .
80remove_pragmas not applied to ./ .
70fix_some_warnings not applied to ./ .
50fix_clz_h not applied to ./ .
20virtual_parsenode not applied to ./ .
10fix_emacs_help not applied to ./ .
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp unpack-stamp test-sclang-*
rm -f linux/README.emacs
mkdir -p /build/user/supercollider-20060416/debian/tmp
# Add here commands to clean up after the build process.
scons  'ARCH=-Wall -g -fPIC -O2' 
DESTDIR=/build/user/supercollider-20060416/debian/tmp \
DEBUG=yes CUSTOMCCFLAGS=-Wall -g -fPIC -O2 
CUSTOMCXXFLAGS=-Wall -g -fPIC -O2 PREFIX=/usr RENDEZVOUS=yes LID=yes 
DEVELOPMENT=yes   --clean -j1
scons: Reading SConscript files ...
pkg-config not found.
make: *** [clean] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444542: soundtouch: FTBFS: /bin/sh: @mkdir_p@: command not found

2007-09-29 Thread Lucas Nussbaum
Package: soundtouch
version: 1.3.0-2.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[3]: Entering directory 
`/build/user/soundtouch-1.3.0/build-tree/SoundTouch-1.3.0/include'
make[3]: Nothing to be done for `install-exec-am'.
test -z /usr/include/soundtouch || @mkdir_p@ 
/build/user/soundtouch-1.3.0/debian/tmp//usr/include/soundtouch
/bin/sh: @mkdir_p@: command not found
make[3]: *** [install-pkgincludeHEADERS] Error 127
make[3]: Leaving directory 
`/build/user/soundtouch-1.3.0/build-tree/SoundTouch-1.3.0/include'
make[2]: *** [install-am] Error 2
make[2]: Leaving directory 
`/build/user/soundtouch-1.3.0/build-tree/SoundTouch-1.3.0/include'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory 
`/build/user/soundtouch-1.3.0/build-tree/SoundTouch-1.3.0'
make: *** [common-install-impl] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443971: marked as done (notification-daemon: package not installable)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 12:26:09 +0200
with message-id [EMAIL PROTECTED]
and subject line notification-daemon: package not installable
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: notification-daemon
Version: 0.3.7-1
Severity: grave
Justification: renders package unusable

The following packages have unmet dependencies:
  notification-daemon: Depends: libwnck18 (= 2.14.0) but it is not 
going to be installed
E: Broken packages


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages notification-daemon depends on:
ii  gconf2 2.20.0-1  GNOME configuration database syste
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgconf2-42.20.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.14.1-3  The GLib library of C routines
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.2-1  Layout and rendering of internatio
ii  libsexy2   0.1.11-2  collection of additional GTK+ widg
pn  libwnck18  none(no description available)
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra

notification-daemon recommends no packages.


---End Message---
---BeginMessage---
Package: notification-daemon
Version: 0.3.7-1+b1

Package has been rebuild against libwnck22. Gnome 2.20 is just entering
unstable. Please don't report such dependency problems as bugs. Just be
patient.

Regards,
Amir


---End Message---


Bug#443970: marked as done (gnome-power-manager: package is not installable)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 12:27:44 +0200
with message-id [EMAIL PROTECTED]
and subject line gnome-power-manager: package is not installable
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gnome-power-manager
Version: 2.20.0-1
Severity: grave
Justification: renders package unusable

The following packages have unmet dependencies:
  gnome-power-manager: Depends: libwnck18 (= 2.18.2) but it is not 
going to be installed
   Depends: notification-daemon but it is not going 
to be installed
E: Broken packages


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-power-manager depends on:
ii  gconf2  2.20.0-1 GNOME configuration database syste
ii  hal 0.5.9.1-5Hardware Abstraction Layer
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.20.0-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.0-1 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.1-3 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.20.0-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.0-1 A powerful object-oriented display
ii  libgnomeui-02.20.0-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.0-1   GNOME Virtual File System (runtime
ii  libgstreamer0.10-0  0.10.14-2Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.0-2 The GTK+ graphical user interface 
ii  libhal1 0.5.9.1-5Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0  2.20.0.1-1   library for GNOME Panel applets
ii  libpango1.0-0   1.18.2-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstartup-notification 0.9-1library for program launch feedbac
pn  libwnck18   none   (no description available)
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.3.2-1+b1 X11 Composite extension library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
pn  notification-daemon none   (no description available)
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

gnome-power-manager recommends no packages.


---End 

Bug#444536: blockattack: FTBFS: TypeError: coercing to Unicode: need string or buffer, dict found:

2007-09-29 Thread Lucas Nussbaum
Package: blockattack
version: 1.3.1-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
dh_testdir
QUILT_PATCHES=debian/patches quilt push -a || test $? = 2
Applying patch fix_scons.diff
patching file Game/SConscript

Applying patch fix_spelling.diff
patching file main.cpp

Now at patch fix_spelling.diff
scons prefix=/usr sharedir=/usr/share/games/blockattack
scons: Reading SConscript files ...
TypeError: coercing to Unicode: need string or buffer, dict found:
  File /build/user/blockattack-1.3.1/SConstruct, line 19:
env = Environment(options = opts)
  File /usr/lib/scons/SCons/Environment.py, line 857:
options.Update(self)
  File /usr/lib/scons/SCons/Options/__init__.py, line 160:
if os.path.exists(filename):
  File posixpath.py, line 171:
st = os.stat(path)
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444534: evolution-sharp: FTBFS: Your evolution-data-server is too new for this evolution-sharp

2007-09-29 Thread Lucas Nussbaum
Package: evolution-sharp
version: 0.13.3-3
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for EVOLUTION_DATA_SERVER_1_8... no
no
checking for EVOLUTION_DATA_SERVER_1_9... no
no
checking for EVOLUTION_DATA_SERVER_1_10... no
no
checking for TOO_NEW_EDS... yes
configure: error:

Your evolution-data-server is too new for this evolution-sharp.  Check to see
if there is a newer version than 0.13.3 at:

http://download.gnome.org/sources/evolution-sharp

If not, you'll have to wait to support the newest version.  You may want to
file a bug against evolution-sharp at http://bugzilla.gnome.org.  Patches
welcome!

make: *** [configure-stamp] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444538: evolution-jescs: FTBFS: checking Evolution version... configure: error: Evolution development libraries not installed

2007-09-29 Thread Lucas Nussbaum
Package: evolution-jescs
version: 2.10.0-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
fi ; \
done ; \
fi
if test -e /usr/share/misc/config.sub ; then \
for i in ./config.sub ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination 
/usr/share/misc/config.sub $i ; \
fi ; \
done ; \
fi
touch debian/stamp-autotools-files
chmod a+x /build/user/evolution-jescs-2.10.0/./configure
cd .  CC=cc CXX=g++ CFLAGS=-g -Wall -O2 CXXFLAGS=-g -Wall -O2 
CPPFLAGS= LDFLAGS= /build/user/evolution-jescs-2.10.0/./configure 
--build=i486-linux-gnu --prefix=/usr --includedir=\${prefix}/include 
--mandir=\${prefix}/share/man --infodir=\${prefix}/share/info 
--sysconfdir=/etc --localstatedir=/var 
--libexecdir=\${prefix}/lib/evolution-jescs --disable-maintainer-mode 
--disable-dependency-tracking --srcdir=.   
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking Evolution version... configure: error: Evolution development libraries 
not installed
make: *** [config.status] Error 1

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444539: gaia: FTBFS: TypeError: coercing to Unicode: need string or buffer, dict found:

2007-09-29 Thread Lucas Nussbaum
Package: gaia
version: 0.1.2-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
# That's not an error here (but it's usefull to break loops in crude scripts)
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null push -a || test $? = 2
Applying patch 01_header_deps.patch
patching file programs/gaia/GPSSourceNMEA.h
patching file programs/gaia/Hud.h

Now at patch 01_header_deps.patch
touch debian/stamp-patched
dh_testdir
CCFLAGS=-Wall -g -O2 CXXFLAGS=-Wall -g -O2 scons 
DESTDIR=/build/user/gaia-0.1.2/debian/tmp prefix=/usr gpsd=1 use_env=1
scons: Reading SConscript files ...
TypeError: coercing to Unicode: need string or buffer, dict found:
  File /build/user/gaia-0.1.2/SConstruct, line 28:
env = Environment( options = opts )
  File /usr/lib/scons/SCons/Environment.py, line 857:
options.Update(self)
  File /usr/lib/scons/SCons/Options/__init__.py, line 160:
if os.path.exists(filename):
  File posixpath.py, line 171:
st = os.stat(path)
make: *** [build-stamp] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444543: abakus: FTBFS: __str__ returned non-string (type instance)

2007-09-29 Thread Lucas Nussbaum
Package: abakus
version: 0.91-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
 /usr/bin/fakeroot debian/rules clean
test -x debian/rules
test `id -u` = 0
dh_clean 
scons --no-cache -Q --clean
Checking for kde-config   :  kde-config was found
Checking for kde version  :  3.5.7
Checking for the qt library   :  qt was found as /usr
Checking for uic  :  uic was found as /usr/bin/uic
Checking for moc  :  moc was found as /usr/bin/moc
Checking for the qt includes  :  the qt headers were found in 
/usr/include/qt3/ 
Checking for the kde includes :  the kde headers were found in 
/usr/include/kde/
TypeError: __str__ returned non-string (type instance):
  File /build/user/abakus-0.91/SConstruct, line 12:
env = Environment(tools = tools, toolpath = toolpath)
  File /usr/lib/scons/SCons/Environment.py, line 874:
apply_tools(self, tools, toolpath)
  File /usr/lib/scons/SCons/Environment.py, line 101:
env.Tool(tool)
  File /usr/lib/scons/SCons/Environment.py, line 1491:
tool(self)
  File /usr/lib/scons/SCons/Tool/__init__.py, line 175:
apply(self.generate, ( env, ) + args, kw)
  File /build/user/abakus-0.91/bksys/abakus.py, line 176:
opts.Save(cachefile, env)
  File /usr/lib/scons/SCons/Options/__init__.py, line 225:
value = SCons.Util.to_String(value)
  File /usr/lib/scons/SCons/Util.py, line 128:
return str(s)
make: *** [clean] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |




Bug#444550: libppi-perl: FTBFS: tests failed: Can't locate Test/Object/Test.pm

2007-09-29 Thread Lucas Nussbaum
Package: libppi-perl
version: 1.118-0.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[1]: Entering directory `/build/user/libppi-perl-1.118'
PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 
'inc', 'blib/lib', 'blib/arch') t/*.t
t/01_compile.ok
t/02_api.ok
t/03_empiric.ok
t/04_element.ok
t/05_lexer_practical.Can't locate Test/Object/Test.pm in @INC (@INC 
contains: /build/user/libppi-perl-1.118/inc 
/build/user/libppi-perl-1.118/blib/lib /build/user/libppi-perl-1.118/blib/arch 
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
BEGIN failed--compilation aborted at 
/build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
Compilation failed in require at t/lib/PPI.pm line 5.
BEGIN failed--compilation aborted at t/lib/PPI.pm line 5.
Compilation failed in require at t/05_lexer_practical.t line 24.
BEGIN failed--compilation aborted at t/05_lexer_practical.t line 24.
# Looks like your test died before it could output anything.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-134
Failed 134/134 tests, 0.00% okay
t/06_round_trip..ok
t/07_token...Can't locate Test/Object/Test.pm in @INC (@INC 
contains: /build/user/libppi-perl-1.118/inc 
/build/user/libppi-perl-1.118/blib/lib /build/user/libppi-perl-1.118/blib/arch 
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
BEGIN failed--compilation aborted at 
/build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
Compilation failed in require at t/lib/PPI.pm line 5.
BEGIN failed--compilation aborted at t/lib/PPI.pm line 5.
Compilation failed in require at t/07_token.t line 17.
BEGIN failed--compilation aborted at t/07_token.t line 17.
# Looks like your test died before it could output anything.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-135
Failed 135/135 tests, 0.00% okay
t/08_regression..Can't locate Test/Object/Test.pm in @INC (@INC 
contains: /build/user/libppi-perl-1.118/inc 
/build/user/libppi-perl-1.118/blib/lib /build/user/libppi-perl-1.118/blib/arch 
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
BEGIN failed--compilation aborted at 
/build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
Compilation failed in require at t/08_regression.t line 34.
BEGIN failed--compilation aborted at t/08_regression.t line 34.
# Looks like your test died before it could output anything.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-306
Failed 306/306 tests, 0.00% okay
t/09_normal..ok
t/10_statement...ok
t/11_utilok
t/12_locationok
t/13_dataok
t/14_charsetsok
11/11 skipped: Unicode-incompatible locale in use
t/15_transform...ok
t/16_xml_compatibility...ok
t/17_storableok
t/18_cache...ok
t/19_selftesting.Can't locate Test/Object/Test.pm in @INC (@INC 
contains: /build/user/libppi-perl-1.118/inc 
/build/user/libppi-perl-1.118/blib/lib /build/user/libppi-perl-1.118/blib/arch 
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
BEGIN failed--compilation aborted at 
/build/user/libppi-perl-1.118/inc/Test/Object.pm line 98.
Compilation failed in require at t/19_selftesting.t line 20.
BEGIN failed--compilation aborted at t/19_selftesting.t line 20.
# Looks like your test died before it could output anything.
dubious
Test returned status 255 (wstat 65280, 0xff00)
t/20_tokenizer_regressionok
t/21_exhaustive..ok
t/22_readonlyok
t/23_fileok
t/99_author..skipped
all skipped: Author tests not required for installation
t/99_pod.skipped
all skipped: Test::Pod 1.00 required for testing POD
t/ppi_elementok
t/ppi_node...ok

Bug#444547: libcommons-modeler-java: FTBFS: tests failed

2007-09-29 Thread Lucas Nussbaum
Package: libcommons-modeler-java
version: 2.0.1-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
dpkg-source: building libcommons-modeler-java in 
libcommons-modeler-java_2.0.1-2.dsc
 debian/rules build
test -x debian/rules
mkdir -p .
cd .  /usr/lib/jvm/java-gcj/bin/java -classpath 
/usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/mx4j.jar:/usr/share/java/commons-digester.jar:/usr/share/java/commons-logging.jar:/usr/share/java/junit.jar:/usr/lib/jvm/java-gcj/lib/tools.jar
  -Dant.home=/usr/share/ant org.apache.tools.ant.Main -Dcompile.debug=true 
-Dcompile.optimize=true-propertyfile 
/build/user/libcommons-modeler-java-2.0.1/debian/ant.properties dist
Buildfile: build.xml

init-dist:
[mkdir] Created dir: /build/user/libcommons-modeler-java-2.0.1/dist

init:
 [echo]  modeler 2.0.1 

prepare:
[mkdir] Created dir: /build/user/libcommons-modeler-java-2.0.1/target
[mkdir] Created dir: 
/build/user/libcommons-modeler-java-2.0.1/target/classes
[mkdir] Created dir: /build/user/libcommons-modeler-java-2.0.1/target/conf
[mkdir] Created dir: /build/user/libcommons-modeler-java-2.0.1/target/tests

static:
 [copy] Copying 1 file to 
/build/user/libcommons-modeler-java-2.0.1/target/conf

compile-only:
[javac] Compiling 36 source files to 
/build/user/libcommons-modeler-java-2.0.1/target/classes
[javac] --
[javac] 1. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseAttributeFilter.java
 (at line 39)
[javac] public class BaseAttributeFilter implements NotificationFilter {
[javac]  ^^^
[javac] The serializable class BaseAttributeFilter does not declare a 
static final serialVersionUID field of type long
[javac] --
[javac] --
[javac] 2. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseMode
[javac] lMBean.java (at line 617)
[javac] Object result = null;
[javac]^^
[javac] The local variable result is never read
[javac] --
[javac] 3. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseMode
[javac] lMBean.java (at line 677)
[javac] AttributeList response = new AttributeList();
[javac]   
[javac] The local variable response is never read
[javac] --
[javac] 4. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseModelMBean.java
 (at line 1315)
[javac] registry=Registry.getRegistry();
[javac]  ^^
[javac] The method getRegistry() from the type Registry is deprecated
[javac] --
[javac] --
[javac] 5. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNoti
[javac] fication.java (at line 28)
[javac] public final class BaseNotification extends Notification {
[javac]
[javac] The serializable class BaseNotification does not declare a static 
final serialVersionUID field of type long
[javac] --
[javac] 6. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNotification.java
 (at line 32)
[javac] private String type;
[javac]
[javac] The field BaseNotification.type is never read locally
[javac] --
[javac] 7. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNotification.java
 (at line 33)
[javac] private Object source;
[javac]^^
[javac] The field BaseNotification.source is never read locally
[javac] --
[javac] 8. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNotification.java
 (at line 34)
[javac] private long seq;
[javac]  ^^^
[javac] The field BaseNotification.seq is never read locally
[javac] --
[javac] 9. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNotification.java
 (at line 35)
[javac] private long tstamp;
[javac]  ^^
[javac] The field BaseNotification.tstamp is never read locally
[javac] --
[javac] --
[javac] 10. WARNING in 
/build/user/libcommons-modeler-java-2.0.1/src/java/org/apache/commons/modeler/BaseNotificationBroadcaster.java
 (at line 224)
[javac] private synchronized void registerNotifications( FixedNotif
[javac] icationFilter filter ) {
[javac]   

Bug#444549: libvmime: FTBFS: /bin/sed: can't read /usr/lib/libntlm.la: No such file or directory

2007-09-29 Thread Lucas Nussbaum
Package: libvmime
version: 0.8.1-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -I.. 
-D_REENTRANT=1 -D_THREAD_SAFE=1 -I/usr/include -I/usr/include -fPIC -DPIC -pipe 
-ansi -pedantic -W -Wall -Wpointer-arith -Wold-style-cast -Wconversion -O2 -c 
platforms_posix_posixHandler.cpp -o platforms_posix_posixHandler.o /dev/null 
21
ln -sf platforms/posix/posixSocket.cpp platforms_posix_posixSocket.cpp
/bin/sh ../libtool --tag=CXX --mode=compile i486-linux-gnu-g++ -DHAVE_CONFIG_H 
-I. -I. -I.. -I/usr/include -I..  -D_REENTRANT=1 -D_THREAD_SAFE=1 
-I/usr/include -I/usr/include -fPIC -DPIC -pipe -ansi -pedantic -W -Wall 
-Wpointer-arith -Wold-style-cast -Wconversion  -O2 -c -o 
platforms_posix_posixSocket.lo platforms_posix_posixSocket.cpp
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -I.. 
-D_REENTRANT=1 -D_THREAD_SAFE=1 -I/usr/include -I/usr/include -fPIC -DPIC -pipe 
-ansi -pedantic -W -Wall -Wpointer-arith -Wold-style-cast -Wconversion -O2 -c 
platforms_posix_posixSocket.cpp  -fPIC -DPIC -o 
.libs/platforms_posix_posixSocket.o
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -I.. 
-D_REENTRANT=1 -D_THREAD_SAFE=1 -I/usr/include -I/usr/include -fPIC -DPIC -pipe 
-ansi -pedantic -W -Wall -Wpointer-arith -Wold-style-cast -Wconversion -O2 -c 
platforms_posix_posixSocket.cpp -o platforms_posix_posixSocket.o /dev/null 21
/bin/sh ../libtool --tag=CXX --mode=link i486-linux-gnu-g++  -O2   -o 
libvmime.la -rpath /usr/lib -export-dynamic -version-info 0:0:0  -lgsasl 
-lgnutls address.lo addressList.lo attachmentHelper.lo base.lo body.lo 
bodyPart.lo bodyPartAttachment.lo charset.lo charsetConverter.lo component.lo 
constants.lo contentDisposition.lo contentDispositionField.lo contentHandler.lo 
contentTypeField.lo dateTime.lo defaultAttachment.lo disposition.lo 
emptyContentHandler.lo encoder.lo encoder7bit.lo encoder8bit.lo encoderB64.lo 
encoderBinary.lo encoderDefault.lo encoderFactory.lo encoderQP.lo encoderUUE.lo 
encoding.lo exception.lo fileAttachment.lo generatedMessageAttachment.lo 
header.lo headerFieldFactory.lo headerField.lo htmlTextPart.lo mailbox.lo 
mailboxField.lo mailboxGroup.lo mailboxList.lo mediaType.lo messageBuilder.lo 
message.lo messageId.lo messageIdSequence.lo messageParser.lo object.lo 
options.lo path.lo parameter.lo parameterizedHeaderField.lo 
parsedMessageAttachment.lo plainTextPart.lo platform.lo propertySet.lo relay.lo 
stringContentHandler.lo streamContentHandler.lo text.lo textPartFactory.lo 
word.lo wordEncoder.lo utility_datetimeUtils.lo utility_filteredStream.lo 
utility_path.lo utility_progressListener.lo utility_random.lo 
utility_smartPtr.lo utility_stream.lo utility_stringProxy.lo 
utility_stringUtils.lo utility_url.lo utility_urlUtils.lo mdn_MDNHelper.lo 
mdn_MDNInfos.lo mdn_receivedMDNInfos.lo mdn_sendableMDNInfos.lo 
misc_importanceHelper.lo security_defaultAuthenticator.lo 
security_digest_messageDigest.lo security_digest_messageDigestFactory.lo 
security_digest_md5_md5MessageDigest.lo 
security_digest_sha1_sha1MessageDigest.lo net_defaultConnectionInfos.lo 
net_events.lo net_folder.lo net_message.lo net_service.lo net_serviceFactory.lo 
net_serviceInfos.lo net_session.lo net_transport.lo 
net_pop3_POP3ServiceInfos.lo net_pop3_POP3Store.lo net_pop3_POP3SStore.lo 
net_pop3_POP3Folder.lo net_pop3_POP3Message.lo net_pop3_POP3Utils.lo 
net_smtp_SMTPResponse.lo net_smtp_SMTPServiceInfos.lo net_smtp_SMTPTransport.lo 
net_smtp_SMTPSTransport.lo net_imap_IMAPServiceInfos.lo 
net_imap_IMAPConnection.lo net_imap_IMAPStore.lo net_imap_IMAPSStore.lo 
net_imap_IMAPFolder.lo net_imap_IMAPMessage.lo net_imap_IMAPTag.lo 
net_imap_IMAPUtils.lo net_maildir_maildirServiceInfos.lo 
net_maildir_maildirStore.lo net_maildir_maildirFolder.lo 
net_maildir_maildirMessage.lo net_maildir_maildirUtils.lo 
net_sendmail_sendmailServiceInfos.lo net_sendmail_sendmailTransport.lo 
security_sasl_SASLContext.lo security_sasl_SASLSession.lo 
security_sasl_SASLMechanismFactory.lo security_sasl_SASLSocket.lo 
security_sasl_defaultSASLAuthenticator.lo security_sasl_builtinSASLMechanism.lo 
net_tls_TLSSession.lo net_tls_TLSSocket.lo net_tls_TLSSecuredConnectionInfos.lo 
security_cert_certificateChain.lo security_cert_defaultCertificateVerifier.lo 
security_cert_X509Certificate.lo  platforms_posix_posixChildProcess.lo 
platforms_posix_posixFile.lo platforms_posix_posixHandler.lo 
platforms_posix_posixSocket.lo  
i486-linux-gnu-g++ -shared -nostdlib 
/usr/lib/gcc/i486-linux-gnu/4.2.1/../../../../lib/crti.o 
/usr/lib/gcc/i486-linux-gnu/4.2.1/crtbeginS.o  .libs/address.o 
.libs/addressList.o .libs/attachmentHelper.o .libs/base.o .libs/body.o 
.libs/bodyPart.o .libs/bodyPartAttachment.o .libs/charset.o 
.libs/charsetConverter.o .libs/component.o 

Bug#444285: [Fwd: icon cache problem]

2007-09-29 Thread Vincent Lönngren
Yes, it works! Great, thanks!
-- 
Vincent Lönngren [EMAIL PROTECTED]

---BeginMessage---

Hi,
I've read your post Bug#444285 about the generated cache is invalid 
problem while installing gimp-data. I solved it (by putting together 
different pieces of info): there is an invalid icon in 
/usr/share/icons/hicolor in may casewas the Autopackage installer icon 
autopackage-installer.png as soon as I removed it, the 
gtk-update-icon-cache -f /usr/share/icons/hicolor succeeded and then 
the gimp-data installation worked.

Good luck
Matteo

P.S.
in case the solution works also for you, please post it

---End Message---


Bug#444551: mailutils: FTBFS: grep: /usr/lib/libntlm.la: No such file or directory

2007-09-29 Thread Lucas Nussbaum
Package: mailutils
version: 1:1.1+dfsg1-3.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I../include -I../lib -I.. -I../include 
-I../include/mailutils/gnu -I../mailbox -DSYSCONFDIR=\/etc\ 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2 -c sql.c -o sql.o /dev/null 21
/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I. 
-I../include -I../lib -I.. -I../include -I../include/mailutils/gnu -I../mailbox 
  -DSYSCONFDIR=\/etc\ -DSITE_VIRTUAL_PWDDIR=\/etc/domain\ 
-DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ -g -Wall -O2 -c -o tls.lo tls.c
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I../include -I../lib -I.. -I../include 
-I../include/mailutils/gnu -I../mailbox -DSYSCONFDIR=\/etc\ 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2 -c tls.c  -fPIC -DPIC -o .libs/tls.o
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I../include -I../lib -I.. -I../include 
-I../include/mailutils/gnu -I../mailbox -DSYSCONFDIR=\/etc\ 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2 -c tls.c -o tls.o /dev/null 21
/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I. 
-I../include -I../lib -I.. -I../include -I../include/mailutils/gnu -I../mailbox 
  -DSYSCONFDIR=\/etc\ -DSITE_VIRTUAL_PWDDIR=\/etc/domain\ 
-DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ -g -Wall -O2 -c -o virtual.lo 
virtual.c
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I../include -I../lib -I.. -I../include 
-I../include/mailutils/gnu -I../mailbox -DSYSCONFDIR=\/etc\ 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2 -c virtual.c  -fPIC -DPIC -o .libs/virtual.o
virtual.c: In function 'getpwnam_ip_virtual':
virtual.c:102: warning: pointer targets in passing argument 3 of 'getsockname' 
differ in signedness
 cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I../include -I../lib -I.. -I../include 
-I../include/mailutils/gnu -I../mailbox -DSYSCONFDIR=\/etc\ 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2 -c virtual.c -o virtual.o /dev/null 21
/bin/sh ../libtool --tag=CC --mode=link cc 
-DSITE_VIRTUAL_PWDDIR=\/etc/domain\ -DSITE_CRAM_MD5_PWD=\/etc/cram-md5.pwd\ 
-g -Wall -O2   -o libmuauth.la -rpath /usr/lib -version-info 1:0:0 gsasl.lo 
lbuf.lo pam.lo radius.lo sql.lo tls.lo virtual.lo ../mailbox/libmailutils.la  
-lgsasl -lgnutls -lgcrypt -lpam -ldl ../sql/libsql.la -lm 
-L/usr/local/lib/mysql -lmysqlclient  -lcrypt -lresolv  -lpthread -lgdbm
libtool: link: warning: 
`/usr/lib/gcc/i486-linux-gnu/4.2.1/../../../../lib//libgdbm.la' seems to be 
moved
grep: /usr/lib/libntlm.la: No such file or directory
/bin/sed: can't read /usr/lib/libntlm.la: No such file or directory
libtool: link: `/usr/lib/libntlm.la' is not a valid libtool archive
make[3]: *** [libmuauth.la] Error 1
make[3]: Leaving directory `/build/user/mailutils-1.1+dfsg1/auth'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/mailutils-1.1+dfsg1'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/mailutils-1.1+dfsg1'
make: *** [debian/stamp-makefile-build] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444548: listlike: FTBFS: ghc-6.6.1: unknown package: HUnit

2007-09-29 Thread Lucas Nussbaum
Package: listlike
version: 1.0.0
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[1]: Entering directory `/build/user/listlike-1.0.0'
cd testsrc  ghc -cpp --make -package HUnit -package QuickCheck -package mtl 
-fglasgow-exts -fallow-undecidable-instances -fallow-overlapping-instances -o 
runtests  -i../dist/build:../src runtests.hs
ghc-6.6.1: unknown package: HUnit
make[1]: *** [testsrc/runtests] Error 1
make[1]: Leaving directory `/build/user/listlike-1.0.0'
make: *** [install] Error 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444546: amsn segfault at connection with tcl/tk 8.4.16-1

2007-09-29 Thread Luc Begault
Package: amsn
Version: 0.97~rc1+dfsg1-5
Severity: grave
Justification: renders package unusable

Amsn just segfault at connection after installing tcl/tk 8.4.16-1 packages
Downgrading to 8.4.15-2 solves the problem.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-k7 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages amsn depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-5GCC support library
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsnack2   2.2.10-dfsg1-4   Sound functionality extension to T
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  python  2.4.4-6  An interactive high-level object-o
ii  tcl8.4  8.4.15-2 Tcl (the Tool Command Language) v8
ii  tcltls  1.5.0.dfsg-6 the TLS OpenSSL extension to Tcl
ii  tk8.4   8.4.15-2 Tk toolkit for Tcl and X11, v8.4 -
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

amsn recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443574: Several applications crash after migration from 2.10 to 2.12

2007-09-29 Thread Loïc Minier
On Sat, Sep 29, 2007, Touko Korpela wrote:
 
 I think this bug should stay open for couple of days util fixed wxwidgets is
 uploaded to prevent many programs from crashing in testing.

 I disagree; this bug is too vague and more specific bugs were already
 filed against other packages (vlc, wxwidgets2.6 etc.); having serious
 bugs open would also prevent the migration to testing of this package
 which is not the source of the bug.  I'll probably aim at preventing
 its migration via other means though.

-- 
Loïc Minier




Bug#444472: does not apply to linux-2.6 2.6.18.dfsg.1-13etch3

2007-09-29 Thread Ola Lundqvist
Hi

I have now verified that the version in unstable apply fine. However
that version have an other problem, but it is about to be corrected as well.

Best regards,

// Ola

On Fri, Sep 28, 2007 at 10:27:39PM +0100, Marcin Owsiany wrote:
 Package: kernel-patch-openvz
 Version: 028.18.1etch4
 Severity: grave
 Tags: patch
 
 The security updates present in 2.6.18.dfsg.1-13etch3 conflict with two
 hunks of the openvz patch.
 
 The attached patch is sufficient to make it apply, athough the line
 numbers could use some adjustment..
 
 
 -- System Information:
 Debian Release: 4.0
   APT prefers stable
   APT policy: (500, 'stable'), (1, 'experimental')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.18-5-686
 Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
 
 Versions of packages kernel-patch-openvz depends on:
 ii  bash  3.1dfsg-8  The GNU Bourne Again SHell
 ii  grep-dctrl2.9.3  Grep Debian package information 
 - 
 ii  patch 2.5.9-4Apply a diff file to an original
 
 kernel-patch-openvz recommends no packages.
 
 -- no debconf information



-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  http://opalsys.net/ +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#444503: gabedit: FTBFS: 'gtk_widget_unref' undeclared

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 444503 patch
Bug#444503: gabedit: FTBFS: 'gtk_widget_unref' undeclared
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444525: rgtk2: FTBFS: cannot access `/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-libra ry/RGtk2/libs/*': No such file or directory

2007-09-29 Thread Dirk Eddelbuettel

On 29 September 2007 at 12:01, Lucas Nussbaum wrote:
| Package: rgtk2
| version: 2.11.0-2-1
| Severity: serious
| User: [EMAIL PROTECTED]
| Usertags: qa-ftbfs-20070928 qa-ftbfs
| Justification: FTBFS on i386
| 
| Hi,
| 
| During a rebuild of all packages in sid, your package failed to build on i386.
| 
| Relevant part:
| make[1]: Entering directory `/build/user/rgtk2-2.11.0-2/src'
| make[1]: Leaving directory `/build/user/rgtk2-2.11.0-2/src'
| chmod: cannot access 
`/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-library/RGtk2/libs/*':
 No such file or directory
| ERROR: compilation failed for package 'RGtk2'
| ** Removing 
'/build/user/rgtk2-2.11.0-2/debian/r-cran-rgtk2/usr/lib/R/site-library/RGtk2'
| make: *** [R_any_arch] Error 1

Hm, to me the relevant error appears a few lines above:

gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g -D_R_=1 
-DUSE_R=1 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
-I. -I/usr/lib/R/include  -DHAVE_LIBGLADE -fpic  -g -O2 -c RGtkDataFrame.c -o 
RGtkDataFrame.o
In file included from RGtk2/gtk.h:20,
 from RGtkDataFrame.h:1,
 from RGtkDataFrame.c:1:
./RGtk2/gtkClasses.h:350: error: expected ')' before '*' token

That doesn't seem right.

May be an issue introduced in R 2.6.0. I'll take a look later.

Dirk

| 
| The full build log is available from
| http://people.debian.org/~lucas/logs/2007/09/28
| 
| A list of current common problems and possible solutions is available at 
| http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
| 
| About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
| of the Grid'5000 platform, using a clean chroot containing a sid i386
| environment.  Internet was not accessible from the build systems.
| 
| -- 
| | Lucas Nussbaum
| | [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| | jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
| 
| 

-- 
Three out of two people have difficulties with fractions.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444435: [Pkg-openssl-devel] Bug#444435: Bug#444435: openssl: [CVE-2007-5135] Off-by-one error in the SSL_get_shared_ciphers()

2007-09-29 Thread Kurt Roeckx
 So we have those versions:

Current Fixed
 openssl:  
Oldstable  0.9.7e-3sarge4  0.9.7e-3sarge5
Stable 0.9.8c-40.9.8c-4etch1
Testing0.9.8e-6
Unstable   0.9.8e-80.9.8e-9
 
 openssl097:
Stable 0.9.7k-3.1  0.9.7k-3.1etch1
Testing0.9.7k-3.1
 
 openssl096
Oldstable  0.9.6m-1sarge4  0.9.6m-1sarge5

I've uploaded openssl 0.9.8e-9 to unstable and put the 4 other
versions on:
http://people.debian.org/~kroeckx/openssl


Kurt




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Tag 441701 pending

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 441701 + pending
Bug#441701: dwm: package content changed if build twice or more times in a row
Tags were: patch
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: dwm: diff for NMU version 4.4.1-1.1

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 441701 + patch
Bug#441701: dwm: package content changed if build twice or more times in a row
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: gnarwl: diff for NMU version 3.3-8.3

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 431577 + patch
Bug#431577: missing dependency on ed
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441701: dwm: diff for NMU version 4.4.1-1.1

2007-09-29 Thread Jérémy Bobbio
tags 441701 + patch
thanks

Hi,

Attached is the diff for my dwm 4.4.1-1.1 NMU sent in DELAYED/2.
Upload made as part of the TanneriesBSP [1].

[1] http://wiki.debian.org/TanneriesBSP

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   
diff -u dwm-4.4.1/debian/changelog dwm-4.4.1/debian/changelog
--- dwm-4.4.1/debian/changelog
+++ dwm-4.4.1/debian/changelog
@@ -1,3 +1,10 @@
+dwm (4.4.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove config.h after every extra builds.  (Closes: #441701)
+
+ -- Jérémy Bobbio [EMAIL PROTECTED]  Sat, 29 Sep 2007 12:45:51 +0200
+
 dwm (4.4.1-1) unstable; urgency=low
 
   * New upstream release.
diff -u dwm-4.4.1/debian/rules dwm-4.4.1/debian/rules
--- dwm-4.4.1/debian/rules
+++ dwm-4.4.1/debian/rules
@@ -60,9 +60,9 @@
for ALTERNATIVE in config.arg.h debian/config/*; \
do \
$(MAKE) clean; \
-   rm -f config.h; \
cp $$ALTERNATIVE config.h; \
CFLAGS=$(CFLAGS) $(MAKE) PREFIX=/usr; \
+   rm -f config.h; \
install -m 0755 dwm debian/dwm/usr/bin/dwm.`basename 
$$ALTERNATIVE | sed -e 's/config.//' -e 's/.h//'`; \
ln -s dwm.1.gz debian/dwm/usr/share/man/man1/dwm.`basename 
$$ALTERNATIVE | sed -e 's/config.//' -e 's/.h//'`.1.gz; \
done
@@ -71,9 +71,9 @@
if [ -f config.user.h ]; \
then \
$(MAKE) clean; \
-   rm -f config.h; \
cp config.user.h config.h; \
CFLAGS=$(CFLAGS) $(MAKE) PREFIX=/usr; \
+   rm -f config.h; \
install -m 0755 dwm debian/dwm/usr/bin/dwm.user; \
ln -s dwm.1.gz debian/dwm/usr/share/man/man1/dwm.user.1.gz; \
fi


signature.asc
Description: Digital signature


Bug#442349: bongoproject_0.2.0-3(sparc/experimental): FTBFS: undefined reference to `lucene::document::Field::setBoost(double)'

2007-09-29 Thread Frank Lichtenheld
On Fri, Sep 28, 2007 at 08:07:30PM +0200, Cyril Brulebois wrote:
 Frank Lichtenheld [EMAIL PROTECTED] (15/09/2007):
  | src/agents/store/filters/bongostore-filter.o: In function 
  `FilterAddTextWithBoost(lucene::document::Document*, wchar_t const*, char 
  const*, float, bool)':
  | /build/buildd/bongoproject-0.2.0/src/agents/store/filters/filter.cpp:182: 
  undefined reference to `lucene::document::Field::setBoost(double)'
  | /build/buildd/bongoproject-0.2.0/src/agents/store/filters/filter.cpp:186: 
  undefined reference to `lucene::document::Field::setBoost(double)'
  | collect2: ld returned 1 exit status
 it builds fine from unstable, in an i386 cowbuilder. Can you still
 reproduce it?

As you can see on
http://experimental.debian.net/new/package.php?suite=experimentalp=bongoproject
it failed on some arches with the same error, but built successfully on
others. I have no real idea what the difference is between these two
groups.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444524: marked as done (network-manager: FTBFS: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 13:07:16 +0200
with message-id [EMAIL PROTECTED]
and subject line [Pkg-utopia-maintainers] Bug#444524: network-manager: FTBFS: 
error:expected '=', ',', '; ', 'asm' or '__attribute__' before '*' token
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: network-manager
version: 0.6.5-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
make[4]: Entering directory 
`/build/user/network-manager-0.6.5/gnome/vpn-properties'
cc -DHAVE_CONFIG_H -I. -I. -I../..-I/usr/include/libglade-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 
-I/usr/include/libpng12   -DORBIT2=1 -pthread -I/usr/include/gconf/2 
-I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -DORBIT2=1 -pthread 
-I/usr/include/libgnomeui-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
-I/usr/include/gnome-keyring-1 -I/usr/include/libgnome-2.0 
-I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
-I/usr/include/gtk-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
-I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/gail-1.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/cairo -I/usr/include/libpng12   -DSYSCONFDIR=\/etc\ 
-DICONDIR=\/usr/share/icons\ 
-DGLADEDIR=\/usr/share/gnome-vpn-properties\ -DG_DISABLE_DEPRECATED 
-DGDK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED 
-DGNOMELOCALEDIR=\/usr/share/locale\ -DVERSION=\0.6.5\  -g -Wall -O2 -c -o 
nm_vpn_properties-nm-vpn-properties.o `test -f 'nm-vpn-properties.c' || echo 
'./'`nm-vpn-properties.c
nm-vpn-properties.c:59: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
nm-vpn-properties.c:60: error: expected '=', ',', ';', 'asm' or '__attribute__' 
before '*' token
nm-vpn-properties.c: In function 'vpn_druid_vpn_validity_changed':
nm-vpn-properties.c:258: warning: implicit declaration of function 
'gnome_druid_set_buttons_sensitive'
nm-vpn-properties.c:258: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:258: error: (Each undeclared identifier is reported only 
once
nm-vpn-properties.c:258: error: for each function it appears in.)
nm-vpn-properties.c: At top level:
nm-vpn-properties.c:266: error: expected ')' before '*' token
nm-vpn-properties.c:304: error: expected ')' before '*' token
nm-vpn-properties.c:321: error: expected ')' before '*' token
nm-vpn-properties.c:338: error: expected ')' before '*' token
nm-vpn-properties.c:357: error: expected ')' before '*' token
nm-vpn-properties.c:378: error: expected ')' before '*' token
nm-vpn-properties.c: In function 'add_cb':
nm-vpn-properties.c:423: warning: implicit declaration of function 
'gnome_druid_set_page'
nm-vpn-properties.c:423: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:423: warning: implicit declaration of function 
'GNOME_DRUID_PAGE'
nm-vpn-properties.c: In function 'import_settings':
nm-vpn-properties.c:477: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c: In function 'init_app':
nm-vpn-properties.c:1061: error: 'druid' undeclared (first use in this function)
nm-vpn-properties.c:1061: warning: implicit declaration of function 
'GNOME_DRUID'
nm-vpn-properties.c:1062: error: 'vpn_druid_cancel' undeclared (first use in 
this function)
nm-vpn-properties.c:1063: error: 'druid_confirm_page' undeclared (first use in 
this function)
nm-vpn-properties.c:1063: warning: implicit declaration of function 
'GNOME_DRUID_PAGE_EDGE'
nm-vpn-properties.c:1066: error: 'vpn_druid_vpn_type_page_next' undeclared 
(first use in this function)
nm-vpn-properties.c:1068: error: 'vpn_druid_vpn_details_page_prepare' 
undeclared (first use in this function)
nm-vpn-properties.c:1069: 

Bug#441122: Fwd: Re: Bug#441122: cacao - FTBFS: undefined reference to `__data_start'

2007-09-29 Thread Cyril Brulebois
Forwarding the question to the (hopefully) appropriate persons.

- Forwarded message from Bastian Blank [EMAIL PROTECTED] -

From: Bastian Blank [EMAIL PROTECTED]
To: Cyril Brulebois [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Bug#441122: cacao - FTBFS: undefined reference to `__data_start'
Date: Sat, 29 Sep 2007 13:21:02 +0200
User-Agent: Mutt/1.5.13 (2006-08-11)

On Sat, Sep 29, 2007 at 12:07:52PM +0200, Cyril Brulebois wrote:
 is this bug still reproducible? I can't on some other archs at least.

Yes. Why does it embed boehm-gc instead of using libgc? Does the
security team know that?

Bastian

-- 
Life and death are seldom logical.
But attaining a desired goal always is.
-- McCoy and Spock, The Galileo Seven, stardate 2821.7


- End forwarded message -


pgpMw4Rd0zva5.pgp
Description: PGP signature


Bug#444560: libmasonx-request-withapachesession-perl: FTBFS: Package libapache-request-perl has no installation candidate

2007-09-29 Thread Lucas Nussbaum
Package: libmasonx-request-withapachesession-perl
version: 0.30-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
** Using build dependencies supplied by package:
Build-Depends-Indep: debhelper ( 4.0.0), libtest-pod-perl, 
libapache-request-perl (= 1.1) | perl-modules (= 5.6.0) | 
libapache2-mod-perl2, libapache-session-perl (= 1.54), libhtml-mason-perl (= 
1.16), perl5, libmodule-build-perl, libapache-session-wrapper-perl, 
libfile-find-rule-perl, dpatch
Checking for already installed source dependencies...
debhelper: missing
Using default version 5.0.56
libtest-pod-perl: missing
libapache-request-perl: missing
Default version of libapache-request-perl not sufficient, no suitable version 
found. Skipping for now, maybe there are alternatives.
perl-modules: missing
Using default version 5.8.8-11
libapache2-mod-perl2: missing
libapache-session-perl: missing
Using default version 1.83-1
libhtml-mason-perl: missing
Using default version 1:1.36-2
perl5: missing
libmodule-build-perl: missing
libapache-session-wrapper-perl: missing
libfile-find-rule-perl: missing
dpatch: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
Package libapache-request-perl is not available, but is referred to by another 
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package libapache-request-perl has no installation candidate
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
Source-dependencies not satisfied; skipping 
libmasonx-request-withapachesession-perl

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444558: sdcc: FTBFS: Package lyx-xforms has no installation candidate

2007-09-29 Thread Lucas Nussbaum
Package: sdcc
version: 2.6.0-5
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
** Using build dependencies supplied by package:
Build-Depends: debhelper ( 4.0.0), flex, bison, libncurses5-dev, gputils, 
lyx-xforms | lyx-qt, tetex-bin, tetex-extra, gs-common, gs
Checking for already installed source dependencies...
debhelper: missing
Using default version 5.0.56
flex: missing
bison: missing
libncurses5-dev: missing
gputils: missing
lyx-xforms: missing
lyx-qt: missing
tetex-bin: missing
tetex-extra: missing
gs-common: missing
gs: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
Package lyx-xforms is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package lyx-xforms has no installation candidate
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
Source-dependencies not satisfied; skipping sdcc

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444559: wmnd: FTBFS: unmet b-dep libsnmp10-dev

2007-09-29 Thread Lucas Nussbaum
Package: wmnd
version: 0.4.12-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

you have to build-dep on libsnmp-dev explicitely.

Relevant part:
** Using build dependencies supplied by package:
Build-Depends: debhelper (= 4), autotools-dev, libsnmp10-dev, libx11-dev, 
libxext-dev, libxpm-dev
Checking for already installed source dependencies...
debhelper: missing
Using default version 5.0.56
autotools-dev: missing
libsnmp10-dev: missing
libx11-dev: missing
libxext-dev: missing
libxpm-dev: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
Package libsnmp10-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libsnmp-dev
E: Package libsnmp10-dev has no installation candidate
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
Source-dependencies not satisfied; skipping wmnd

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444557: hplip: FTBFS: libsnmp10-dev

2007-09-29 Thread Lucas Nussbaum
Package: hplip
version: 1.6.10-4.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20070928 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

You need to b-dep on libsnmp-dev explicitely.

Relevant part:
** Using build dependencies supplied by package:
Build-Depends: libcupsys2-dev, libsnmp10-dev, libjpeg62-dev, libusb-dev (= 
0.1.8), python-dev, python-qt3, pyqt-tools, debhelper (= 5.0.37.2), 
autotools-dev, dpatch (= 2), python-support (= 0.3), patch (= 2.5.9-3bpo1), 
findutils (= 4.2.28)
Checking for already installed source dependencies...
libcupsys2-dev: missing
libsnmp10-dev: missing
libjpeg62-dev: missing
libusb-dev: missing
Using default version 2:0.1.12-7
python-dev: missing
python-qt3: missing
pyqt-tools: missing
debhelper: missing
Using default version 5.0.56
autotools-dev: missing
dpatch: missing
Using default version 2.0.27
python-support: missing
Using default version 0.7.3
patch: already installed (2.5.9-4 = 2.5.9-3bpo1 is satisfied)
findutils: already installed (4.2.31-1 = 4.2.28 is satisfied)
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
Package libsnmp10-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libsnmp-dev
E: Package libsnmp10-dev has no installation candidate
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
Source-dependencies not satisfied; skipping hplip

The full build log is available from
http://people.debian.org/~lucas/logs/2007/09/28

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#441161: bibletime - FTBFS: configure: error: Failed to compile the test program to check the Sword version

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 441161 patch
Bug#441161: bibletime - FTBFS: configure: error: Failed to compile the test 
program to check the Sword version
There were no tags set.
Tags added: patch

 clone 441161 -1
Bug#441161: bibletime - FTBFS: configure: error: Failed to compile the test 
program to check the Sword version
Bug 441161 cloned as bug 444562.

 block 441161 by -1
Bug#444562: bibletime - FTBFS: configure: error: Failed to compile the test 
program to check the Sword version
Bug#441161: bibletime - FTBFS: configure: error: Failed to compile the test 
program to check the Sword version
Was not blocked by any bugs.
Blocking bugs of 441161 added: 444562

 retitle -1 libsword-dev: Missing Depends: on libcurl*-dev
Bug#444562: bibletime - FTBFS: configure: error: Failed to compile the test 
program to check the Sword version
Changed Bug title to `libsword-dev: Missing Depends: on libcurl*-dev' from 
`bibletime - FTBFS: configure: error: Failed to compile the test program to 
check the Sword version'.

 reassign -1 libsword-dev
Bug#444562: libsword-dev: Missing Depends: on libcurl*-dev
Bug reassigned from package `bibletime' to `libsword-dev'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441161: bibletime - FTBFS: configure: error: Failed to compile the test program to check the Sword version

2007-09-29 Thread Cyril Brulebois
tag 441161 patch
clone 441161 -1
block 441161 by -1
retitle -1 libsword-dev: Missing Depends: on libcurl*-dev
reassign -1 libsword-dev
thanks

Michael Ablassmeier [EMAIL PROTECTED] (07/09/2007):
   checking for installed Sword version... configure: error: Failed to
   compile the test program to check the Sword version! Please have a
   look at config.log! Report this to the BibleTime developers!  make:
   *** [build-tree/obj-i486-linux-gnu/config.status] Error 1


configure:32801: /bin/sh ./libtool --silent --mode=link g++ -o conftest 
-Wnon-virtual-dtor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 
-D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W 
-Wpointer-arith -Wwrite-strings -DNDEBUG -DNO_DEBUG -O2 -g -Wall -O2 
-Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new 
-fno-common -fexceptions -I$ -I/usr/include/kde -I/usr/share/qt3/include -I.  
-I/usr/include/sword  -DQT_THREAD_SUPPORT  -D_REENTRANT -DQT_NO_ASCII_CAST 
-DQT_NO_COMPAT -DQT_CLEAN_NAMESPACE -Wall -I$(top_srcdir)/ 
-I$(top_srcdir)/bibletime -I$(top_builddir)/bibletime  -L/usr/lib conftest.cpp 
-lsword -lz 15
libtool: link: cannot find the library `/usr/lib/libcurl.la'

Tagging, cloning, et al. accordingly.

Cheers,

-- 
Cyril Brulebois


pgpVaKO42rVlA.pgp
Description: PGP signature


Processed: xfe: diff for NMU version 1.04-1.1

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 413254 + patch
Bug#413254: xfe: purging the package fails (ucf unavailable)
Tags were: patch
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441122: cacao - FTBFS: undefined reference to `__data_start'

2007-09-29 Thread Bastian Blank
On Sat, Sep 29, 2007 at 12:07:52PM +0200, Cyril Brulebois wrote:
 is this bug still reproducible? I can't on some other archs at least.

Yes. Why does it embed boehm-gc instead of using libgc? Does the
security team know that?

Bastian

-- 
Life and death are seldom logical.
But attaining a desired goal always is.
-- McCoy and Spock, The Galileo Seven, stardate 2821.7



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#413254: xfe: diff for NMU version 1.04-1.1

2007-09-29 Thread David Ammouial
tags 413254 + patch
thanks

Hi,

Attached is the diff for my xfe 1.04-1.1 NMU.

Regards.
-- 
David Ammouial
http://da.weeno.net/
diff -Nru /tmp/HzeluqO9ZI/xfe-1.04/debian/changelog /tmp/LnJcPt67KF/xfe-1.04/debian/changelog
--- /tmp/HzeluqO9ZI/xfe-1.04/debian/changelog   2007-09-29 00:25:40.0 +0200
+++ /tmp/LnJcPt67KF/xfe-1.04/debian/changelog   2007-09-29 00:25:40.0 +0200
@@ -1,3 +1,11 @@
+xfe (1.04-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Apply again Andreas Henriksson's patch for conditional ucf call to postrm.
+Closes: #413254
+
+ -- David Ammouial [EMAIL PROTECTED]  Sat, 29 Sep 2007 00:15:15 +0200
+
 xfe (1.04-1) unstable; urgency=low

   * New upstream release
diff -Nru /tmp/HzeluqO9ZI/xfe-1.04/debian/postrm /tmp/LnJcPt67KF/xfe-1.04/debian/postrm
--- /tmp/HzeluqO9ZI/xfe-1.04/debian/postrm  2007-09-29 00:25:40.0 +0200
+++ /tmp/LnJcPt67KF/xfe-1.04/debian/postrm  2007-09-29 00:25:40.0 +0200
@@ -22,7 +22,9 @@
 purge)
   if [ $2 ]  dpkg --compare-versions $2 lt 0.98-1; then
 CONF=/etc/foxrc/XFileExplorer/Xfe
-ucf --purge $CONF
+   if which ucf  dev/null 21; then
+ ucf --purge $CONF
+   fi
 rm -f $CONF
   fi
 ;;


signature.asc
Description: This is a digitally signed message part.


Bug#440670: marked as done (nc6 - FTBFS: Missing build-dep: cdbs)

2007-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2007 14:02:55 +0200
with message-id [EMAIL PROTECTED]
and subject line nc6 - FTBFS: Missing build-dep: cdbs
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: nc6
Version: 1.0-2
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of nc6_1.0-2 on lxdebian.bfinv.de by sbuild/s390 98
[...]
  /usr/bin/fakeroot debian/rules clean
 debian/rules:3: /usr/share/cdbs/1/rules/debhelper.mk: No such file or 
 directory
 debian/rules:4: /usr/share/cdbs/1/class/autotools.mk: No such file or 
 directory
 debian/rules:6: /usr/share/cdbs/1/rules/simple-patchsys.mk: No such file or 
 directory
 make: *** No rule to make target 
 `/usr/share/cdbs/1/rules/simple-patchsys.mk'.  Stop.
 **
 Build finished at 20070831-1951
 FAILED [dpkg-buildpackage died]

---End Message---
---BeginMessage---
[Debian BSP, September 28/29th]

Hello,

Bug fixed in 1.0-3 (missing 'Closes: #440670' in changelog):

---8---
nc6 (1.0-3) unstable; urgency=low

  * Remember to add the build-dependency on cdbs. Ooops...

 -- Peter Makholm [EMAIL PROTECTED]  Wed, 26 Sep 2007 07:44:07 +
---8---

Regards,
-- 
Gregory Colpart [EMAIL PROTECTED]  GnuPG:1024D/C1027A0E
Evolix - Informatique et Logiciels Libres http://www.evolix.fr/

---End Message---


Processed: tagging bugs that are closed by packages in NEW as pending

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # the following bugs are closed by packages in NEW
 #
 tags 378444 pending
Bug#378444: renaming to libfftw3-3
There were no tags set.
Tags added: pending

 tags 385623 pending
Bug#385623: libgmp3-doc: please repackage non-free docs
There were no tags set.
Tags added: pending

 tags 424261 pending
Bug#424261: fftw3: FTBFS if built twice in a row
There were no tags set.
Tags added: pending

 tags 429700 pending
Bug#429700: poppler: Please package new upstream release 0.6
There were no tags set.
Bug#443851: poppler-utils: new upstream version (0.6) available
Tags added: pending

 tags 430238 pending
Bug#430238: ldbl128 transition for alpha, powerpc, sparc, s390
Tags were: sid lenny
Tags added: pending

 tags 441012 pending
Bug#441012: poppler: Watch file is incorrect
Tags were: patch
Tags added: pending

 tags 441737 pending
Bug#441737: Please provide a python-dbus-dbg package
There were no tags set.
Tags added: pending

 tags 442539 pending
Bug#442539: dbus-python: FTBFS if build twice in a row
There were no tags set.
Tags added: pending

 tags 443719 pending
Bug#443719: python-dbus-doc: Where are the examples/example-*.py?
There were no tags set.
Tags added: pending

 tags 443903 pending
Bug#443903: CVE-2007-5049 stack based buffer overflow
Tags were: patch security
Tags added: pending

 tags 443969 pending
Bug#443969: ITP: tk8.5 -- Tk toolkit for Tcl and X11, v8.5
There were no tags set.
Tags added: pending

 tags 443977 pending
Bug#443977: ITP: tcl8.5 -- Tcl (the Tool Command Language) v8.5
There were no tags set.
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441766: patch

2007-09-29 Thread Loïc Minier
Hi Ron,

On Fri, Sep 28, 2007, Ron wrote:
 I plan to roll a new one with this within the next few days,
 there are a few small patches still trickling in and a couple
 of little things for me still to tidy since the shift to git.

 The new gtk+2.0 exposes this bug in wxwidgets2.6, and hence I would
 like to avoid the new gtk entering testing and breaking wxwidgets2.6
 apps in testing; I could for example add a conflict with broken
 versions of wxwidgets2.6 so that wxwidgets2.6 and gtk+2.0 would have to
 enter testing together.
   However, this becomes quite urgent as gtk+2.0 bumped shlibs and hence
 is a pre-requisite for many packages to transition to testing.

 Do you think you could upload wxwidgets2.6 with this particular bug
 fixed over this WE and perhaps push other fixes later on?

 If you're away of your build environment or lack the time over the WE,
 I can offer to NMU wxwidgets 2.6 with a fix for this bug if you like,
 but naturally I wont NMU unless you ask me to.

   Thanks,
-- 
Loïc Minier




Processed (with 5 errors): Re: Bug#444406: VLC does not start in Gnome 2.20

2007-09-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 06 libwxgtk2.6-0
Bug#06: VLC does not start in Gnome 2.20
Bug reassigned from package `vlc' to `libwxgtk2.6-0'.

 severity 06 grave
Bug#06: VLC does not start in Gnome 2.20
Severity set to `grave' from `important'

 tags 06 pending sid
Bug#06: VLC does not start in Gnome 2.20
There were no tags set.
Tags added: pending, sid

 merge 06 441766
Bug#441766: vlc: segfaults with new glib
Bug#06: VLC does not start in Gnome 2.20
Mismatch - only Bugs in same state can be merged:
Values for `blocks' don't match:
 #441766 has `443628 443741 443776 443955 03';
 #06 has `'

 On Fri, Sep 28, 2007 at 12:23:24PM +0200, Jean-Michel Pouré wrote:
Unknown command or malformed arguments to command.

  Description: VLC segfaults on startup when Gnome 2.6.20 is installed.
Unknown command or malformed arguments to command.

 This is a bug in wxWidgets, not VLC; reassigning and merging.
Unknown command or malformed arguments to command.

 /* Steinar */
Unknown command or malformed arguments to command.

 --
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   3   >