Bug#571403: glassfish: FTBFS: package javax.management.j2ee.statistics does not exist

2010-02-27 Thread Lucas Nussbaum
On 26/02/10 at 16:00 -0500, Varun Hiremath wrote:
 Hi Lucas,
 
 On Thu, 25 Feb, 2010 at 11:18:12AM +0100, Lucas Nussbaum wrote:
  Source: glassfish
  Version: 1:2ur2-b04-4
  Severity: serious
  User: debian...@lists.debian.org
  Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
  Justification: FTBFS on amd64
  
  Hi,
  
  During a rebuild of all packages in sid, your package failed to build on
  amd64.
 
 I can't reproduce this bug. Full build log is available here:
 http://people.debian.org/~varun/build-logs/glassfish_2ur2-b04-4_amd64.build

I tried again, and I can still reproduce it, sorry.
Where does javax.management.j2ee.statistics come from?
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#502853: Bug in fixed in revision 53369

2010-02-27 Thread pkg-perl-maintainers
tag 502853 + pending
thanks

Some bugs are closed in revision 53369
by Damyan Ivanov (dmn)

Commit message:

add libuniversal-require-perl to dependencies.
Closes: #502853



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Bug in fixed in revision 53369

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 502853 + pending
Bug #502853 {Done: gregor herrmann gre...@debian.org} [liblog-handler-perl] 
liblog-handler-perl: Missing dependency libuniversal-require-perl
Bug #571236 {Done: gregor herrmann gre...@debian.org} [liblog-handler-perl] 
liblog-handler-perl: missing dependency, needs UNIVERSAL/require.pm
Added tag(s) pending.
Added tag(s) 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 debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550258: marked as done (doesn't build with gcc-4.4 / newer eglibc)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 10:31:07 +0100
with message-id 8b2d7b4d1002270131jd352132q8c3b5fb1c805a...@mail.gmail.com
and subject line Package removed from Debian unstable
has caused the Debian Bug report #550258,
regarding doesn't build with gcc-4.4 / newer eglibc
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
550258: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550258
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: bayonne
Version: 2.3.2-3
Severity: normal
Tags: patch

Hi,

thanks for maintaining bayonne.

During Ubuntu's rebuild test, bayonne failed to build with gcc-4.4 in
conjunction with a newer eglibc [1].

Attached is a patch to fix the build failure, would be great if you could
included it in the package.

Cheers,
   Stefan.

[1]:
http://launchpadlibrarian.net/31573099/buildlog_ubuntu-karmic-amd64.bayonne_2.3.2-3build1_FAILEDTOBUILD.txt.gz

-- System Information:
Debian Release: squeeze/sid
  APT prefers karmic-updates
  APT policy: (500, 'karmic-updates'), (500, 'karmic-security'), (500, 'karmic')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-11-generic (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
#! /bin/sh /usr/share/dpatch/dpatch-run
## gcc-4.4.dpatch by  Stefan Potyra sistp...@ubuntu.com
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.

@DPATCH@
diff -urNad bayonne-2.3.2~/binders/bayonnexml/image.cpp bayonne-2.3.2/binders/bayonnexml/image.cpp
--- bayonne-2.3.2~/binders/bayonnexml/image.cpp	2006-11-30 20:17:26.0 +0100
+++ bayonne-2.3.2/binders/bayonnexml/image.cpp	2009-10-08 16:03:47.0 +0200
@@ -88,11 +88,11 @@
 	return count;
 }
 
-const char *ParseImage::dupString(const char *text)
+char *ParseImage::dupString(const char *text)
 {
 	char *str = (char *)alloc(strlen(text) + 1);
 	strcpy(str, text);
-	return (const char *)str;
+	return str;
 }
 
 void ParseImage::postCompile(Compile *cc, unsigned long mask)
diff -urNad bayonne-2.3.2~/binders/bayonnexml/module.h bayonne-2.3.2/binders/bayonnexml/module.h
--- bayonne-2.3.2~/binders/bayonnexml/module.h	2006-12-14 16:01:28.0 +0100
+++ bayonne-2.3.2/binders/bayonnexml/module.h	2009-10-08 16:03:47.0 +0200
@@ -57,7 +57,7 @@
 public:
 	ParseImage();
 
-	const char *dupString(const char *str);
+	char *dupString(const char *str);
 	unsigned getList(const char **args, const char *text, unsigned len, unsigned max);
 	void getCompile(Compile *cc, const char *name = 1);
 	void postCompile(Compile *cc, unsigned long mask = 0);
diff -urNad bayonne-2.3.2~/binders/bayonnexml/parse.cpp bayonne-2.3.2/binders/bayonnexml/parse.cpp
--- bayonne-2.3.2~/binders/bayonnexml/parse.cpp	2006-11-30 20:17:27.0 +0100
+++ bayonne-2.3.2/binders/bayonnexml/parse.cpp	2009-10-08 16:03:47.0 +0200
@@ -151,7 +151,7 @@
 void ParseThread::startDocument(const char **attrib)
 {
 	const char *vargs[3];
-	const char *voicelib = NULL;
+	char *voicelib = NULL;
 	char *p;
 
 	memset(vargs, 0, sizeof(vargs));
@@ -628,8 +628,8 @@
 void ParseThread::doGoto(const char **attrib)
 {
 	const char *submit = NULL;
-	const char *value = NULL;
-	const char *label = NULL;
+	char *value = NULL;
+	char *label = NULL;
 	const char *args[10];
 	unsigned argc = 0;
 	char *p, *q;
@@ -787,7 +787,7 @@
 void ParseThread::endBlock(void)
 {
 	char *p, *q;
-	const char *label;
+	char *label;
 	const char *args[10];
 
 	current-trap = 0;
@@ -807,7 +807,7 @@
 		else
 		{
 			label = NULL;
-			p = strchr(bnext, '#');
+			p = const_castchar *(strchr(bnext, '#'));
 			if(p)
 			{
 *p = 0;
diff -urNad bayonne-2.3.2~/binders/ivrscript/binder.cpp bayonne-2.3.2/binders/ivrscript/binder.cpp
--- bayonne-2.3.2~/binders/ivrscript/binder.cpp	2007-01-16 13:02:12.0 +0100
+++ bayonne-2.3.2/binders/ivrscript/binder.cpp	2009-10-08 16:03:47.0 +0200
@@ -427,7 +427,7 @@
 	char *p;
 
 	setString(vbuf, sizeof(vbuf), v);
-	p = strchr(v, ':');
+	p = const_castchar *(strchr(v, ':'));
 	if(p)
 	{
 		*p = 0;
@@ -449,7 +449,7 @@
 	char *p;
 
 	setString(vbuf, sizeof(vbuf), v);
-	p = strchr(v, ':');
+	p = const_castchar *(strchr(v, ':'));
 	if(p)
 	{
 		*p = 0;
@@ -471,7 +471,7 @@
 	char *p;
 
 	setString(vbuf, sizeof(vbuf), v);
-	p = strchr(v, ':');
+	p = const_castchar *(strchr(v, ':'));
 	if(p)
 	{
 		*p = 0;
@@ -505,7 +505,7 @@
 	char *p;
 
 	setString(vbuf, sizeof(vbuf), v);
-	p = strchr(v, ':');
+	p = const_castchar *(strchr(v, ':'));
 	if(p)
 	{
 		*p = 0;
diff -urNad bayonne-2.3.2~/engine/sysexec.cpp 

Bug#534021: marked as done (asterisk-oh323: FTBFS: asteriskaudio.cxx:35:19: error: oh323.h: No such file or directory)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 10:28:45 +0100
with message-id 8b2d7b4d1002270128x6fe5f922n7e51496ad170f...@mail.gmail.com
and subject line Package removed from Debian unstable
has caused the Debian Bug report #534021,
regarding asterisk-oh323: FTBFS: asteriskaudio.cxx:35:19: error: oh323.h: No 
such file or directory
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
534021: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534021
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: asterisk-oh323
Version: 0.7.3+cvs20070811-4
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20090620 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[2]: Entering directory 
 `/build/user-asterisk-oh323_0.7.3+cvs20070811-4-amd64-OjEMVm/asterisk-oh323-0.7.3+cvs20070811/asterisk-driver'
 gcc -Wall -O2 -pipe -Wstrict-prototypes -Wmissing-prototypes 
 -Wmissing-declarations -D_REENTRANT -D_GNU_SOURCE -fPIC -g -O2 
 -fomit-frame-pointer -DAST_MODULE=\chan_oh323.so\ 
 -I/root/src/asterisk-oh323/debian-420641/slash/include -I../wrapper -c -o 
 chan_oh323.o chan_oh323.c
 chan_oh323.c:1314: warning: initialization from incompatible pointer type
 chan_oh323.c:1315: warning: initialization from incompatible pointer type
 chan_oh323.c:1317: warning: initialization from incompatible pointer type
 chan_oh323.c:1318: warning: initialization from incompatible pointer type
 chan_oh323.c:1320: warning: initialization from incompatible pointer type
 chan_oh323.c:1321: warning: initialization from incompatible pointer type
 chan_oh323.c:1323: warning: initialization from incompatible pointer type
 chan_oh323.c:1324: warning: initialization from incompatible pointer type
 chan_oh323.c:1326: warning: initialization from incompatible pointer type
 chan_oh323.c:1327: warning: initialization from incompatible pointer type
 chan_oh323.c:1329: warning: initialization from incompatible pointer type
 chan_oh323.c:1330: warning: initialization from incompatible pointer type
 chan_oh323.c:1335: warning: initialization from incompatible pointer type
 chan_oh323.c:1336: warning: initialization from incompatible pointer type
 chan_oh323.c: In function 'oh323_exception':
 chan_oh323.c:1548: error: incompatible types in assignment
 chan_oh323.c:1585: error: incompatible types in assignment
 chan_oh323.c:1608: error: 'struct ast_channel' has no member named 'dtmfq'
 chan_oh323.c:1608: error: 'struct ast_channel' has no member named 'dtmfq'
 chan_oh323.c:1609: error: 'struct ast_channel' has no member named 'dtmfq'
 chan_oh323.c: In function 'oh323_indicate':
 chan_oh323.c:1794: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:1794: warning: ignoring return value of 'ast_sched_add', 
 declared with attribute warn_unused_result
 chan_oh323.c: In function 'oh323_digit':
 chan_oh323.c:1825: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:1825: warning: ignoring return value of 'ast_sched_add', 
 declared with attribute warn_unused_result
 chan_oh323.c: In function 'oh323_text':
 chan_oh323.c:1855: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:1855: warning: ignoring return value of 'ast_sched_add', 
 declared with attribute warn_unused_result
 chan_oh323.c: In function 'oh323_call':
 chan_oh323.c:1980: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:1980: warning: ignoring return value of 'ast_sched_add', 
 declared with attribute warn_unused_result
 chan_oh323.c: In function 'oh323_hangup':
 chan_oh323.c:2033: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:2042: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:2042: warning: ignoring return value of 'ast_sched_add', 
 declared with attribute warn_unused_result
 chan_oh323.c: In function 'oh323_read':
 chan_oh323.c:2098: error: incompatible types in assignment
 chan_oh323.c:2359: error: incompatible types in assignment
 chan_oh323.c: In function 'oh323_write':
 chan_oh323.c:2499: error: incompatible type for argument 2 of 'G7231SF_push'
 chan_oh323.c:2542: error: cannot convert to a pointer type
 chan_oh323.c: In function 'oh323_answer':
 chan_oh323.c:2589: warning: passing argument 3 of 'ast_sched_add' from 
 incompatible pointer type
 chan_oh323.c:2589: warning: ignoring return value of 'ast_sched_add', 

Bug#527977: marked as done (jruby1.2 contains non-free material)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 10:32:23 +0100
with message-id 8b2d7b4d1002270132m660f0ba4n28acfe8f2d620...@mail.gmail.com
and subject line Package removed from Debian unstable
has caused the Debian Bug report #527977,
regarding jruby1.2 contains non-free material
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
527977: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527977
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: jruby1.1
Version: 1.1.6-2
Severity: serious
Justification: Policy 2.2.1


This package includes the following files:

/usr/lib/jruby1.1/lib/bsf.jar
/usr/lib/jruby1.1/lib/jruby.jar
/usr/lib/jruby1.1/lib/profile.jar

which correspond to the following files in the source tarball:

build_lib/asm-3.0.jar
build_lib/asm-analysis-3.0.jar
build_lib/asm-commons-3.0.jar
build_lib/asm-tree-3.0.jar
build_lib/asm-util-3.0.jar
build_lib/bnd-0.0.249.jar *
build_lib/bytelist-1.0.1.jar *
build_lib/constantine.jar *
build_lib/dynalang-0.3.jar *
build_lib/invokedynamic.jar *
build_lib/jcodings.jar *
build_lib/jline-0.9.93.jar
build_lib/jna.jar
build_lib/jna-posix.jar
build_lib/joda-time-1.5.1.jar
build_lib/joni.jar *
build_lib/jvyamlb-0.2.5.jar *
lib/bsf.jar

Also the following files in the source tarball are used during the
build process:

build_lib/backport-util-concurrent.jar *
build_lib/emma_ant.jar
build_lib/emma.jar
build_lib/jarjar-1.0rc8.jar
build_lib/junit.jar
build_lib/retroweaver-2.0.5.jar *
build_lib/retroweaver-rt-2.0.5.jar *

The source package does not include their source code.  This goes
against the DFSG requirement that the program must include source
code therefore the package at present should not be in main.
To solve this problem I recommend Depending (or a weaker dependency
if appropriate) and Build-Depending on the following packages:

libasm3-java
libjline-java
libjna-java
libjoda-time-java
libbsf-java

and Build-Depending only on the following:

junit
libemma-java
libjarjar-java

Some of the jar files (marked with *) do not have a package in the
Debian archive; for this package to remain in main the relevant source
code should be found and packaged for Debian and the new packages
should be added to Depends and/or Build-Depends.  Once this process
is complete the package's source tarball should be repackaged not to
include the above listed jar files.

bnd-0.0.249.jar does in fact include source code however as there is
no assurance that the class files were built from this source code,
this jar file should be treated in the same way.

-- System Information:
Debian Release: 5.0.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.29-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
Version: 1.2.0-4+rm

Package removed from Debian unstable: http://bugs.debian.org/570521

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

---End Message---


Bug#556835: marked as done (haskell-filepath: FTBFS: make: dh_haskell: Command not found)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 10:39:29 +0100
with message-id 8b2d7b4d1002270139x389b3e50taf37d6b9145ad...@mail.gmail.com
and subject line Package removed from Debian unstable
has caused the Debian Bug report #556835,
regarding haskell-filepath: FTBFS: make: dh_haskell: Command not found
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
556835: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=556835
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: haskell-filepath
Version: 1.1.0.0-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091117 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  /usr/bin/fakeroot debian/rules binary
 dh_testdir
 dh_testroot
 dh_clean -k -i
 dh_installdirs -i
 dh_haskell -i --no-package=haskell-filepath-doc
 make: dh_haskell: Command not found
 make: *** [install-indep] Error 127

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/11/17/haskell-filepath_1.1.0.0-1_lsid64.buildlog

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.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Version: 1.1.0.0-1+rm

Package removed from Debian unstable: http://bugs.debian.org/570667

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

---End Message---


Bug#571671: dpkg-checkbuilddeps: Unmet build dependencies: build-essential

2010-02-27 Thread Raphael Hertzog
forcemerge 480638 571671
thanks

On Sat, 27 Feb 2010, Kurt Roeckx wrote:
 It seems that for some reason dpkg-checkbuilddeps now adds the
 package build-essential to the Build-Depends, getting me:
 $ dpkg-checkbuilddeps
 dpkg-checkbuilddeps: Unmet build dependencies: build-essential

This is a feature and not a bug, it's also hardly new. It has been there
for quite some time now. Merging with the pre-existing wontfix bug.

 The package build-essential is not Build Essential, nor is it
 in my control file, nor do you Depend on it.

We recommend it. Not all dpkg-* tools require this to be installed.

Cheers,
-- 
Raphaël Hertzog

Like what I do? Sponsor me: http://ouaza.com/wp/2010/01/05/5-years-of-freexian/
My Debian goals: http://ouaza.com/wp/2010/01/09/debian-related-goals-for-2010/



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#571671: dpkg-checkbuilddeps: Unmet build dependencies: build-essential

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 480638 571671
Bug#480638: dpkg-dev: unreasonable dependency on build-essential
Bug#571671: dpkg-checkbuilddeps: Unmet build dependencies: build-essential
Forcibly Merged 480638 571671.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560490: marked as done (d4x: FTBFS: edit.cc:1453: error: invalid conversion from 'const char*' to 'char*')

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 10:38:19 +0100
with message-id 8b2d7b4d1002270138g5400b55p27e5ac6f16d69...@mail.gmail.com
and subject line Package removed from Debian unstable
has caused the Debian Bug report #560490,
regarding d4x: FTBFS: edit.cc:1453: error: invalid conversion from 'const 
char*' to 'char*'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
560490: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560490
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: d4x
Version: 2.5.7.1-6
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091210 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../..   -I/usr/include 
 -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/pixman-1 -I/usr/include/freetype2 
 -I/usr/include/directfb -I/usr/include/libpng12 -include ../../config.h  -O2 
 -Wall -MT edit.o -MD -MP -MF .deps/edit.Tpo -c -o edit.o edit.cc; \
   then mv -f .deps/edit.Tpo .deps/edit.Po; else rm -f 
 .deps/edit.Tpo; exit 1; fi
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc:95: warning: deprecated conversion from string constant to 'char*'
 edit.cc: In function 'void _proxy_port_changed_(GtkEntry*, GtkEntry*)':
 edit.cc:1453: error: invalid conversion from 'const char*' to 'char*'
 make[4]: *** [edit.o] Error 1

The full build log is available from:
   http://people.debian.org/~lucas/logs/2009/12/10/d4x_2.5.7.1-6_lsid64.buildlog

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.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Version: 2.5.7.1-7+rm

Package removed from Debian unstable: http://bugs.debian.org/569648

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: 

Bug#502853: [stable] please approve upload of liblog-handler-perl 0.45-1+lenny1 fixing #502853

2010-02-27 Thread Damyan Ivanov
Dear stable release managers,

Please approve the upload of liblog-handler-perl/0.45-1+lenny1. This 
would fix a grave bug, #502853 in stable.

The addition of myself to Uploaders is for claiming responsibility of 
the upload (I am a member of the Debian Perl Group (in Maintainer))

Thanks in advance.

Interdiff:
-
diff -u liblog-handler-perl-0.45/debian/control 
liblog-handler-perl-0.45/debian/control
--- liblog-handler-perl-0.45/debian/control
+++ liblog-handler-perl-0.45/debian/control
@@ -7,7 +7,7 @@
  libuniversal-require-perl, libdbi-perl
 Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Roberto C. Sanchez robe...@connexer.com,
- gregor herrmann gre...@debian.org
+ gregor herrmann gre...@debian.org, Damyan Ivanov d...@debian.org
 Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Log-Handler/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblog-handler-perl/
@@ -16,7 +16,7 @@
 Package: liblog-handler-perl
 Architecture: all
 Depends: ${perl:Depends}, ${misc:Depends}, libparams-validate-perl,
- libdevel-backtrace-perl
+ libdevel-backtrace-perl, libuniversal-require-perl
 Suggests: libconfig-general-perl, libyaml-perl
 Description: A simple handler to log messages to a log file
  This module is just a simple object oriented log file handler and very easy to
diff -u liblog-handler-perl-0.45/debian/changelog 
liblog-handler-perl-0.45/debian/changelog
--- liblog-handler-perl-0.45/debian/changelog
+++ liblog-handler-perl-0.45/debian/changelog
@@ -1,3 +1,11 @@
+liblog-handler-perl (0.45-1+lenny1) stable; urgency=low
+
+  * add libuniversal-require-perl to dependencies.
+Closes: #502853
+  * add myself to Uploaders
+
+ -- Damyan Ivanov d...@debian.org  Fri, 26 Feb 2010 10:29:40 +0200
+
 liblog-handler-perl (0.45-1) unstable; urgency=low
 
   * New upstream release.
-

Debdiff:
-
File lists identical (after any substitutions)

Control files: lines which differ (wdiff format)

Depends: perl (= 5.6.0-16), libparams-validate-perl, 
[-libdevel-backtrace-perl-] {+libdevel-backtrace-perl, 
libuniversal-require-perl+}
Version: [-0.45-1-] {+0.45-1+lenny1+}
-


signature.asc
Description: Digital signature


Processed: tagging 569103, bug 569103 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=26786

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 569103 upstream
Bug #569103 [xserver-xorg-video-v4l] Uses obsolete V4L1 API
Added tag(s) upstream.
 forwarded 569103 https://bugs.freedesktop.org/show_bug.cgi?id=26786
Bug #569103 [xserver-xorg-video-v4l] Uses obsolete V4L1 API
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=26786'.
 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#502853: [stable] please approve upload of liblog-handler-perl 0.45-1+lenny1 fixing #502853

2010-02-27 Thread Adam D. Barratt
Hi,

On Sat, 2010-02-27 at 11:56 +0200, Damyan Ivanov wrote:
 Dear stable release managers,
 
 Please approve the upload of liblog-handler-perl/0.45-1+lenny1. This 
 would fix a grave bug, #502853 in stable.

Please go ahead.

Regards,

Adam



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571361: marked as done (msmtp: FTBFS: dh: -P was specified, but multiple packages would be acted on (msmtp,msmtp-gnome,msmtp-mta).)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 13:17:11 +
with message-id e1nlmxf-7w...@ries.debian.org
and subject line Bug#571361: fixed in msmtp 1.4.19-2
has caused the Debian Bug report #571361,
regarding msmtp: FTBFS: dh: -P was specified, but multiple packages would be 
acted on (msmtp,msmtp-gnome,msmtp-mta).
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571361: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571361
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: msmtp
Version: 1.4.19-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[3]: Entering directory 
 `/build/user-msmtp_1.4.19-1-amd64-rcN0ZZ/msmtp-1.4.19/build'
 make[3]: Nothing to be done for `install-exec-am'.
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory 
 `/build/user-msmtp_1.4.19-1-amd64-rcN0ZZ/msmtp-1.4.19/build'
 make[2]: Leaving directory 
 `/build/user-msmtp_1.4.19-1-amd64-rcN0ZZ/msmtp-1.4.19/build'
 make[1]: Leaving directory 
 `/build/user-msmtp_1.4.19-1-amd64-rcN0ZZ/msmtp-1.4.19/build'
 dh -N msmtp-gnome install --after dh_auto_install
dh_install -O-Nmsmtp-gnome
dh_installdocs -O-Nmsmtp-gnome
dh_installchangelogs -O-Nmsmtp-gnome
dh_installexamples -O-Nmsmtp-gnome
dh_installman -O-Nmsmtp-gnome
dh_installcatalogs -O-Nmsmtp-gnome
dh_installcron -O-Nmsmtp-gnome
dh_installdebconf -O-Nmsmtp-gnome
dh_installemacsen -O-Nmsmtp-gnome
dh_installifupdown -O-Nmsmtp-gnome
dh_installinfo -O-Nmsmtp-gnome
dh_installinit -O-Nmsmtp-gnome
dh_installmenu -O-Nmsmtp-gnome
dh_installmime -O-Nmsmtp-gnome
dh_installmodules -O-Nmsmtp-gnome
dh_installlogcheck -O-Nmsmtp-gnome
dh_installlogrotate -O-Nmsmtp-gnome
dh_installpam -O-Nmsmtp-gnome
dh_installppp -O-Nmsmtp-gnome
dh_installudev -O-Nmsmtp-gnome
dh_installwm -O-Nmsmtp-gnome
dh_installxfonts -O-Nmsmtp-gnome
dh_bugfiles -O-Nmsmtp-gnome
dh_lintian -O-Nmsmtp-gnome
dh_gconf -O-Nmsmtp-gnome
dh_icons -O-Nmsmtp-gnome
dh_perl -O-Nmsmtp-gnome
dh_usrlocal -O-Nmsmtp-gnome
dh_link -O-Nmsmtp-gnome
dh_compress -O-Nmsmtp-gnome
dh_fixperms -O-Nmsmtp-gnome
 # Install msmtp with gnome keyring support
 # hook to create a symlink between /usr/share/doc/msmtp-gnome
 # and /usr/share/doc/msmtp
 dh -p msmtp-gnome install --before dh_link
 dh: -P was specified, but multiple packages would be acted on 
 (msmtp,msmtp-gnome,msmtp-mta).
 make: *** [install-stamp] Error 9

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010-02-24/msmtp_1.4.19-1_lsid64.buildlog

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.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: msmtp
Source-Version: 1.4.19-2

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

msmtp-gnome_1.4.19-2_amd64.deb
  to main/m/msmtp/msmtp-gnome_1.4.19-2_amd64.deb
msmtp-mta_1.4.19-2_all.deb
  to main/m/msmtp/msmtp-mta_1.4.19-2_all.deb
msmtp_1.4.19-2.diff.gz
  to main/m/msmtp/msmtp_1.4.19-2.diff.gz
msmtp_1.4.19-2.dsc
  to main/m/msmtp/msmtp_1.4.19-2.dsc
msmtp_1.4.19-2_amd64.deb
  to main/m/msmtp/msmtp_1.4.19-2_amd64.deb



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

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

Debian distribution maintenance software
pp.
Emmanuel Bouthenot kol...@debian.org (supplier of updated msmtp package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 25 Feb 2010 21:57:54 +
Source: msmtp
Binary: msmtp msmtp-gnome msmtp-mta
Architecture: source amd64 all
Version: 1.4.19-2
Distribution: 

Processed: your mail

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # another bus error from ant 1.8
 reassign 571336 ant
Bug #571336 [src:axis] axis: FTBFS: java errors
Bug reassigned from package 'src:axis' to 'ant'.
Bug No longer marked as found in versions axis/1.4-6.
 found 571336 1.8.0-2
Bug #571336 [ant] axis: FTBFS: java errors
Bug Marked as found in versions ant/1.8.0-2.
 forcemerge 571336 570889
Bug#571336: axis: FTBFS: java errors
Bug#570889: ant: SIGBUS during Copying files ... in build of several packages 
(on some architectures even ant itself)
Bug#571397: (reproducible) Bus error while building writer2latex
Bug#571542: gij: Bus error when executing ant
Forcibly Merged 570889 571336 571397 571542.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571341: marked as done (aspectj: FTBFS: java errors)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 13:47:14 +
with message-id e1nln0k-0002gi...@ries.debian.org
and subject line Bug#571341: fixed in aspectj 1.6.6+dfsg-2
has caused the Debian Bug report #571341,
regarding aspectj: FTBFS: java errors
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571341: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571341
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: aspectj
Version: 1.6.6+dfsg-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory 
 `/build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg'
 make[1]: Nothing to be done for `reverse-config'.
 make[1]: Leaving directory 
 `/build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg'
 if [ -d . ]; then \
 cd .  
 QUILT_PATCHES=/build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg/debian/patches
  quilt --quiltrc /dev/null pop -a -R || test $? = 2 ; \
   fi
 No patch removed
 rm -rf ./.pc
 rm -f debian/stamp-patch*
 cd org.aspectj/modules/build  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/xalan2.jar:/usr/share/java/ant-junit.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main -Dcompile.debug=true 
 -Dcompile.optimize=true clean
 Buildfile: 
 /build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg/org.aspectj/modules/build/build.xml
 
 init-properties:
 
 BUILD FAILED
 /build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg/org.aspectj/modules/build/build-properties.xml:25:
  The following error occurred while executing this line:
 /build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg/org.aspectj/modules/build/build-properties.xml:480:
  (property local-properties not at 
 /build/user-aspectj_1.6.6+dfsg-1-amd64-34MOIC/aspectj-1.6.6+dfsg/org.aspectj/modules/build/local.properties)
 
 Total time: 0 seconds
 make: [clean] Error 1 (ignored)
 rm -f debian/stamp-ant-build
 rm -Rf org.aspectj/modules/lib/eclipse
 rm -Rf org.aspectj/modules/lib/aspectj/lib/aspectj*.jar
 rm -Rf org.aspectj/modules/lib/asm/asm-3.1.jar
 rm -f org.aspectj/modules/lib/gnu-classpath-tools-gjdoc.jar
 rm -f org.aspectj/modules/build/local.properties debian/ajc.1 debian/ajdoc.1 
 debian/aj.1 debian/ajbrowser.1
 rm -Rf org.aspectj/modules/lib/commons
 rm -Rf org.aspectj/modules/lib/junit
 rm -Rf org.aspectj/modules/lib/ant
 rm -Rf org.aspectj/modules/aj-build
  dpkg-source -b aspectj-1.6.6+dfsg
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building aspectj using existing 
 aspectj_1.6.6+dfsg.orig.tar.gz
 dpkg-source: info: building aspectj in aspectj_1.6.6+dfsg-1.diff.gz
  debian/rules build
 dpkg-source: info: building aspectj in aspectj_1.6.6+dfsg-1.dsc
 test -x debian/rules
 mkdir -p org.aspectj/modules/build
 # Setup symlinks: ant
 mkdir -p org.aspectj/modules/lib/ant/lib
 for f in ant.jar ant-junit.jar ; do \
  ln -sf /usr/share/ant/lib/$f org.aspectj/modules/lib/ant/lib ; \
   done
 for f in xercesImpl.jar xml-apis.jar ; do \
  ln -sf /usr/share/java/$f org.aspectj/modules/lib/ant/lib ; \
   done
 # JUnit
 mkdir -p org.aspectj/modules/lib/junit
 for f in junit.jar ; do \
  ln -sf /usr/share/java/$f org.aspectj/modules/lib/junit ; \
   done
 # commons-logging
 mkdir -p org.aspectj/modules/lib/commons
 ln -sf /usr/share/java/commons-logging.jar 
 org.aspectj/modules/lib/commons/commons.jar
 # Setup our local.properties
 cp debian/local.properties org.aspectj/modules/build
 # Also symlink gjdoc.jar
 ln -sf /usr/share/java/gnu-classpath-tools-gjdoc.jar org.aspectj/modules/lib
 # bootstrap using aspectj itself
 mkdir -p org.aspectj/modules/lib/aspectj
 for f in aspectjlib.jar aspectjrt.jar aspectjtools.jar ; do \
  ln -sf /usr/share/java/$f org.aspectj/modules/lib/aspectj/lib ; \
   done
 # asm3
 mkdir -p org.aspectj/modules/lib/asm
 ln -sf /usr/share/java/asm3.jar org.aspectj/modules/lib/asm/asm-3.1.jar
 # eclipse (JDT)
 mkdir -p org.aspectj/modules/lib/eclipse
 ln -sf /usr/lib/eclipse/plugins/org.eclipse.equinox.common_*.jar 
 org.aspectj/modules/lib/eclipse/org.eclipse.equinox.common.jar
 ln -sf /usr/lib/eclipse/plugins/org.eclipse.equinox.registry_*.jar 
 org.aspectj/modules/lib/eclipse/org.eclipse.equinox.registry.jar
 ln -sf 

Bug#571347: marked as done (mpop: FTBFS: dh: -P was specified, but multiple packages would be acted on (mpop,mpop-gnome).)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 13:47:28 +
with message-id e1nln0y-0002kk...@ries.debian.org
and subject line Bug#571347: fixed in mpop 1.0.19-2
has caused the Debian Bug report #571347,
regarding mpop: FTBFS: dh: -P was specified, but multiple packages would be 
acted on (mpop,mpop-gnome).
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571347: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571347
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: mpop
Version: 1.0.19-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[3]: Entering directory 
 `/build/user-mpop_1.0.19-1-amd64-5m82EU/mpop-1.0.19/build'
 make[3]: Nothing to be done for `install-exec-am'.
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory 
 `/build/user-mpop_1.0.19-1-amd64-5m82EU/mpop-1.0.19/build'
 make[2]: Leaving directory 
 `/build/user-mpop_1.0.19-1-amd64-5m82EU/mpop-1.0.19/build'
 make[1]: Leaving directory 
 `/build/user-mpop_1.0.19-1-amd64-5m82EU/mpop-1.0.19/build'
 dh -N mpop-gnome install --after dh_auto_install
dh_install -O-Nmpop-gnome
dh_installdocs -O-Nmpop-gnome
dh_installchangelogs -O-Nmpop-gnome
dh_installexamples -O-Nmpop-gnome
dh_installman -O-Nmpop-gnome
dh_installcatalogs -O-Nmpop-gnome
dh_installcron -O-Nmpop-gnome
dh_installdebconf -O-Nmpop-gnome
dh_installemacsen -O-Nmpop-gnome
dh_installifupdown -O-Nmpop-gnome
dh_installinfo -O-Nmpop-gnome
dh_installinit -O-Nmpop-gnome
dh_installmenu -O-Nmpop-gnome
dh_installmime -O-Nmpop-gnome
dh_installmodules -O-Nmpop-gnome
dh_installlogcheck -O-Nmpop-gnome
dh_installlogrotate -O-Nmpop-gnome
dh_installpam -O-Nmpop-gnome
dh_installppp -O-Nmpop-gnome
dh_installudev -O-Nmpop-gnome
dh_installwm -O-Nmpop-gnome
dh_installxfonts -O-Nmpop-gnome
dh_bugfiles -O-Nmpop-gnome
dh_lintian -O-Nmpop-gnome
dh_gconf -O-Nmpop-gnome
dh_icons -O-Nmpop-gnome
dh_perl -O-Nmpop-gnome
dh_usrlocal -O-Nmpop-gnome
dh_link -O-Nmpop-gnome
dh_compress -O-Nmpop-gnome
dh_fixperms -O-Nmpop-gnome
 # Install mpop with gnome keyring support
 # hook to create a symlink between /usr/share/doc/mpop-gnome
 # and /usr/share/doc/mpop
 dh -p mpop-gnome install --before dh_link
 dh: -P was specified, but multiple packages would be acted on 
 (mpop,mpop-gnome).
 make: *** [install-stamp] Error 9

The full build log is available from:
   http://people.debian.org/~lucas/logs/2010-02-24/mpop_1.0.19-1_lsid64.buildlog

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.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: mpop
Source-Version: 1.0.19-2

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

mpop-gnome_1.0.19-2_amd64.deb
  to main/m/mpop/mpop-gnome_1.0.19-2_amd64.deb
mpop_1.0.19-2.diff.gz
  to main/m/mpop/mpop_1.0.19-2.diff.gz
mpop_1.0.19-2.dsc
  to main/m/mpop/mpop_1.0.19-2.dsc
mpop_1.0.19-2_amd64.deb
  to main/m/mpop/mpop_1.0.19-2_amd64.deb



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

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

Debian distribution maintenance software
pp.
Emmanuel Bouthenot kol...@debian.org (supplier of updated mpop package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 13:08:49 +
Source: mpop
Binary: mpop mpop-gnome
Architecture: source amd64
Version: 1.0.19-2
Distribution: unstable
Urgency: low
Maintainer: Emmanuel Bouthenot kol...@debian.org
Changed-By: Emmanuel Bouthenot kol...@debian.org
Description: 
 mpop   - POP3 mail retriever
 

Processed: another bus error from ant 1.8

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # another bus error from ant 1.8
 reassign 570886 ant
Bug #570886 [src:libservlet2.4-java] libservlet2.4-java: FTBFS on 
kfreebsd-amd64: Bus error
Bug reassigned from package 'src:libservlet2.4-java' to 'ant'.
Bug No longer marked as found in versions libservlet2.4-java/5.0.30-11.
 found 570886 1.8.0-2
Bug #570886 [ant] libservlet2.4-java: FTBFS on kfreebsd-amd64: Bus error
Bug Marked as found in versions ant/1.8.0-2.
 forcemerge 570886 570889
Bug#570886: libservlet2.4-java: FTBFS on kfreebsd-amd64: Bus error
Bug#570889: ant: SIGBUS during Copying files ... in build of several packages 
(on some architectures even ant itself)
Bug#571336: axis: FTBFS: java errors
Bug#571397: (reproducible) Bus error while building writer2latex
Bug#571542: gij: Bus error when executing ant
Forcibly Merged 570886 570889 571336 571397 571542.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571724: socat: FTBFS on kfreebsd-*: error: 'struct single' has no member named 'fd1'

2010-02-27 Thread Cyril Brulebois
Source: socat
Version: 2.0.0~beta3-1
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| gcc -g -O2 -D_GNU_SOURCE  -Wall -Wno-parentheses -DHAVE_CONFIG_H -I.  -I.   
-c -o xioopts.o xioopts.c
| xioopts.c: In function 'applyopts_single':
| xioopts.c:3998: error: 'struct single' has no member named 'fd1'
| xioopts.c:4000: error: 'struct single' has no member named 'fd1'
| make[1]: *** [xioopts.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=experimentalp=socat

Mraw,
KiBi.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569549: korganizer: Calendar ceased synchronizing with remote iCal file via ftp

2010-02-27 Thread Torsten Crass

Eckhart,


Could you please tell whether your installed mysql version is from unstable?


I guess so -- I generally run a Sid system. My MySQL server's version is 
5.1.44-2.


Regards --

Torsten



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571725: anki: Missing dependency on python-beautifulsoup

2010-02-27 Thread Carsten Kosthorst
Package: anki
Version: 0.9.9.8.6-1
Severity: grave
Justification: renders package unusable

c...@ckone:~$ anki
Traceback (most recent call last):
  File /usr/bin/anki, line 8, in module
ankiqt.run()
  File /usr/share/anki/ankiqt/__init__.py, line 186, in run
ui.importAll()
  File /usr/share/anki/ankiqt/ui/__init__.py, line 14, in importAll
import exporting
  File /usr/share/anki/ankiqt/ui/exporting.py, line 7, in module
from anki.exporting import exporters as exporters_
  File /usr/share/anki/anki/exporting.py, line 20, in module
from BeautifulSoup import BeautifulSoup as BS
ImportError: No module named BeautifulSoup

Installing python-beautifulsoup fixed this.

   Carsten

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31.6 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages anki depends on:
ii  python2.5.4-9An interactive high-level object-o
ii  python-qt44.7-2  Python bindings for Qt4
ii  python-simplejson 2.0.9-2simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.5.8-1SQL toolkit and Object Relational 
ii  python-support1.0.6.1automated rebuilding support for P

Versions of packages anki recommends:
pn  kakasinone (no description available)
ii  python-matplotlib 0.99.1.2-3 Python based plotting system in a 

Versions of packages anki suggests:
ii  dvipng1.12-3 convert DVI files to PNG graphics

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#570033: resizing an image overwrite the original without warning

2010-02-27 Thread Simon Paillard
On Mon, Feb 22, 2010 at 04:14:36PM +, 
bts-link-upstr...@lists.alioth.debian.org wrote:
 # remote status report for #570033 (http://bugs.debian.org/570033)
 #  * http://bugzilla.gnome.org/show_bug.cgi?id=605914
 #  * remote status changed: (?) - RESOLVED
 #  * remote resolution changed: (?) - FIXED
 #  * closed upstream

Upstream bugzilla and git say this bug has been fixed in commit
97905400a6182c65480782fc21b6d7ef9b3237c7 and released first in GTHUMB_2_11_2
http://git.gnome.org/browse/gthumb/log/?id=GTHUMB_2_11_2qt=grepq=605914

To be closed once 2.11.2 is in unstable.

-- 
Simon Paillard



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#552365: marked as done (Package uninstallable)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 15:34:34 +
with message-id e1nlogc-0002jl...@ries.debian.org
and subject line Bug#552365: fixed in epiphany-extensions-more 2.29.90+nmu1
has caused the Debian Bug report #552365,
regarding Package uninstallable
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
552365: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552365
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: epiphany-extensions-more
Version: 2.26.1
Severity: serious

Hi,

epiphany-extensions-more is currently uninstallable on unstable due to
the dependencies

epiphany-extensions (= 2.26), epiphany-extensions ( 2.27)

Regards

Laurent Bigonville


---End Message---
---BeginMessage---
Source: epiphany-extensions-more
Source-Version: 2.29.90+nmu1

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

epiphany-extensions-more_2.29.90+nmu1.dsc
  to main/e/epiphany-extensions-more/epiphany-extensions-more_2.29.90+nmu1.dsc
epiphany-extensions-more_2.29.90+nmu1.tar.gz
  to 
main/e/epiphany-extensions-more/epiphany-extensions-more_2.29.90+nmu1.tar.gz
epiphany-extensions-more_2.29.90+nmu1_all.deb
  to 
main/e/epiphany-extensions-more/epiphany-extensions-more_2.29.90+nmu1_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 552...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guido Günther a...@sigxcpu.org (supplier of updated epiphany-extensions-more 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 15:20:13 +0100
Source: epiphany-extensions-more
Binary: epiphany-extensions-more
Architecture: source all
Version: 2.29.90+nmu1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 epiphany-extensions-more - Collection of third-party extensions for the 
Epiphany web browser
Closes: 552365
Changes: 
 epiphany-extensions-more (2.29.90+nmu1) unstable; urgency=low
 .
   * NMU with maintainers approval
   * Switch from python extensions to JavaScript based ones.
   * Add JavaScript extensions from
 http://live.gnome.org/Epiphany/ThirdPartyExtensions/Epiphany228AndLater
 Closes: #552365
Checksums-Sha1: 
 66b2f2ce67993a7cd5666fc5e504b2c49f26a89e 994 
epiphany-extensions-more_2.29.90+nmu1.dsc
 3581507094a1395fdea4f1f028a0cd8d7bba1e8a 6611 
epiphany-extensions-more_2.29.90+nmu1.tar.gz
 94792ca452c0b77bcaef7d05602fa6fa9e40f606 7294 
epiphany-extensions-more_2.29.90+nmu1_all.deb
Checksums-Sha256: 
 742fd0cc273bd436889049fac15c0e9011ad2a3971aa2eb0c4d020ded0d5bcb4 994 
epiphany-extensions-more_2.29.90+nmu1.dsc
 2fdcf98b61d58f9e32f1bc703cd5ade007d4ed27b4ab4a95004adc3c831dfaf4 6611 
epiphany-extensions-more_2.29.90+nmu1.tar.gz
 9adcfc0bdf24fa76184150c00a4abd8ff73dd98d8e62a3b8e84b566860a9f515 7294 
epiphany-extensions-more_2.29.90+nmu1_all.deb
Files: 
 a8b0b7b96f3f55c5d6294304c9a075ce 994 gnome optional 
epiphany-extensions-more_2.29.90+nmu1.dsc
 30de161a6ecddafcfdec410b7ba1f55d 6611 gnome optional 
epiphany-extensions-more_2.29.90+nmu1.tar.gz
 819e3b63e097e0c2b91f4b50bda543fd 7294 gnome optional 
epiphany-extensions-more_2.29.90+nmu1_all.deb

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

iD8DBQFLiTECn88szT8+ZCYRAublAJwMCNJY42RAgWiIrTfM9qwBR+c+BgCZARcG
Rgd83e43heMzONKx10qwsiQ=
=gm1M
-END PGP SIGNATURE-


---End Message---


Bug#571728: openoffice.org-writer: oowriter doesn't start, tries to recover file, then fails after Java exception

2010-02-27 Thread wzabo...@elektron.elka.pw.edu.pl
Package: openoffice.org-writer
Version: 1:3.1.1-16
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***
After lest upgrade (25.02 or 26.02) OpenOffice stopped to work on all my
systems.
When I try to run e.g. the oowriter, it displays the empty OpenOffice.org
Document Recovery window, and after I press OK it terminates.
In the console the following message is displayed:

terminate called after throwing an instance of
'com::sun::star::deployment::DeploymentException'

I've removed all OO-related directories from the home directory - It
didn't help.
The same happens to oocalc.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (100, 'stable'), (50, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32.9.media (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openoffice.org-writer depends on:
ii  libc6  2.10.2-2  GNU C Library: Shared libraries
ii  libgcc11:4.4.2-9 GCC support library
ii  libicu42   4.2.1-3   International Components
for Unico
ii  libstdc++6 4.4.2-9   The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-7   STLport C++ class library
ii  libwpd8c2a 0.8.14-1  Library for handling
WordPerfect d
ii  libwps-0.1-1   0.1.2-1   Works text file format
import filt
ii  openoffice.org-base-co 1:3.1.1-16full-featured office
productivity
ii  openoffice.org-core1:3.1.1-16full-featured office
productivity
ii  ure1.5.1+OOo3.1.1-16 OpenOffice.org UNO runtime
environ
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages openoffice.org-writer recommends:
ii  default-jre [java5-runtime]   1.6-34 Standard Java or Java
compatible R
ii  openjdk-6-jre [java5-runtime] 6b17-1.7-1 OpenJDK Java runtime, using
Hotspo
ii  openoffice.org-emailmerge 1:3.1.1-16 full-featured office
productivity
ii  openoffice.org-filter-binfilt 1:3.1.1-16 full-featured office
productivity
ii  openoffice.org-java-common1:3.1.1-16 full-featured office
productivity
ii  openoffice.org-math   1:3.1.1-16 full-featured office
productivity
ii  sun-java6-jre [java5-runtime] 6-16-1 Sun Java(TM) Runtime
Environment (

Versions of packages openoffice.org-writer suggests:
ii  openoffice.org-base   1:3.1.1-16 full-featured office
productivity
pn  openoffice.org-gcjnone (no description available)

Versions of packages openoffice.org-core depends on:
ii  fontconfig 2.8.0-2   generic font configuration
library
ii  libc6  2.10.2-2  GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector
graphics libra
ii  libcurl3-gnutls7.19.7-1  Multi-protocol file
transfer libra
ii  libdb4.8   4.8.26-1  Berkeley v4.8 Database
Libraries [
ii  libexpat1  2.0.1-7   XML parsing C library -
runtime li
ii  libfreetype6   2.3.11-1  FreeType 2 font engine,
shared lib
ii  libgcc11:4.4.2-9 GCC support library
ii  libglib2.0-0   2.22.4-1  The GLib library of C routines
ii  libgstreamer-plugins-b 0.10.26-1 GStreamer libraries from
the base
ii  libgstreamer0.10-0 0.10.26-1 Core GStreamer libraries
and eleme
ii  libgtk2.0-02.18.6-1  The GTK+ graphical user
interface
ii  libhunspell-1.2-0  1.2.8-6   spell checker and
morphological an
ii  libhyphen0 2.4-6 ALTLinux hyphenation
library - sha
ii  libice62:1.0.6-1 X11 Inter-Client Exchange
library
ii  libicu42   4.2.1-3   International Components
for Unico
ii  libjpeg62  6b-16.1   The Independent JPEG
Group's JPEG
ii  libldap-2.4-2  2.4.17-2.1OpenLDAP libraries
ii  libneon27-gnutls   0.29.3-1  An HTTP and WebDAV client
library
ii  libnspr4-0d4.8.3-1   NetScape Portable Runtime
Library
ii  libnss3-1d 3.12.5-2  Network Security Service
libraries
ii  librdf01.0.10-1  Redland Resource
Description Frame
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libstdc++6 4.4.2-9   The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-7   STLport C++ class library
ii  libx11-6   2:1.3.3-1 X11 client-side library
ii  libxaw72:1.0.7-1 X11 Athena Widget library
ii  libxext6   2:1.1.1-2 X11 miscellaneous extension
librar
ii  libxinerama1   2:1.1-2   X11 Xinerama extension library
ii  libxml2

Bug#571462: scidavis: Scidavis crashes when adding a column

2010-02-27 Thread Ruben Molina
Hi Enrico,

 Scidavis crashes with a segfault when adding a column. No more
 informations are provided, not even when starting it from console.

Thanks for your report.

I'm afraid I was unable to reproduce this bug. In my tests, adding a
column or a row works properly. 

 scidavis[4494]: segfault at 40 ip 003001b9ab0a sp 7fff79de9a28
 error 6 in libQtCore.so.4.6.0[3001a0+289000]

It seems to be failing in libqtcore4, and you are using version
4:4.6.0-1 (experimental). My test were done using version 4:4.5.3-4
(unstable), so it maybe a incoming issue from 4.6.

Can you please test it under unstable libqtcore4 just to confirm? then
we can contact libqtcore4 maintainers for some help.

Thanks,
 Ruben



signature.asc
Description: Esta parte del mensaje está firmada digitalmente


Bug#571728: Deletion od /var/spool/openoffice helped

2010-02-27 Thread Wojciech Zabolotny CERN
I have found the http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566189
(maybe my bug is just duplicate of this one?)
I have removed the whole /var/spool/openoffice directory, and it helped.




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#554684: marked as done (php5-pgsql: Suhosin alerts about heap overflows)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 17:21:11 +0100
with message-id 201002271721.11226.th...@debian.org
and subject line Re: [php-maint] Bug#554684: Bug#554684: Bug#554684: 
php5-pgsql: Suhosin alerts about heap overflows
has caused the Debian Bug report #554684,
regarding php5-pgsql: Suhosin alerts about heap overflows
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
554684: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554684
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: php5-pgsql
Version: 5.2.6.dfsg.1-1+lenny3
Severity: serious
Tags: security

I am not sure on the impact of this bug, but if the main PHP escaping
function for PostgreSQL is mis-escaping strings, it can
_quite_probably_ be a serious security bug. Feel free to adjust
severity. 

I have been getting the following message on my Apache logs:

[error] [client 132.248.72.141] ALERT - canary mismatch on erealloc() - heap 
overflow detected (attacker '132.248.72.141', file 
'/usr/share/drupal6/includes/database.pgsql.inc', line 364)

Note that 132.248.72.141 is the same server where this is reported,
and lines 363-365 of the reported file is:

function db_escape_string($text) {
  return pg_escape_string($text);
}

I cannot establish what user action is causing this to be triggered,
but -having a very limited dataset to judge from- its frequency has
been slightly increasing since I first detected it (August 18) - From
two weeks between first and second sight to about once a day.

I am looking at log files starting in early August. I am attaching
here (filename: alerts) the output of:

( zcat error.log.{18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2}.gz; cat 
error.log{.1,} ) | grep ALERT

The times of the log messages roughly match comment additions on the
Drupal system in question (which was completely open to spammers and I
have just closed for comments). I am attaching also a comment example
(filename: spammy) where the timestamp is closest to the latest
event - It does not look atypical in any way, but the result might
have not been properly received...

...Hmm, thinking about it over, I found this in the PostgreSQL log at
the right time:

2009-11-04 06:25:29 CST [30578]LOG:  connection received: host=127.0.0.1 
port=39334
2009-11-04 06:25:29 CST [30578]LOG:  connection authorized: user=drupal_obela 
database=drupal_obela
2009-11-04 06:25:29 CST [30578]WARNING:  nonstandard use of \\ in a string 
literal at character 25
2009-11-04 06:25:29 CST [30578]HINT:  Use the escape string syntax for 
backslashes, e.g., E'\\'.
2009-11-04 06:25:29 CST [30578]WARNING:  nonstandard use of \\ in a string 
literal at character 90
2009-11-04 06:25:29 CST [30578]HINT:  Use the escape string syntax for 
backslashes, e.g., E'\\'.

And yes, that would support my theory, that pg_escape_string is
failing to escape _something_.

Thanks,

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (900, 'stable'), (200, 'testing')
Architecture: i386 (i686)

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

Versions of packages php5-pgsql depends on:
ii  libapache2-mod-php 5.2.6.dfsg.1-1+lenny3 server-side, HTML-embedded scripti
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libpq5 8.3.8-0lenny1 PostgreSQL C client library
ii  php5-cgi [phpapi-2 5.2.6.dfsg.1-1+lenny3 server-side, HTML-embedded scripti
ii  php5-cli [phpapi-2 5.2.6.dfsg.1-1+lenny3 command-line interpreter for the p
ii  php5-common5.2.6.dfsg.1-1+lenny3 Common files for packages built fr

php5-pgsql recommends no packages.

php5-pgsql suggests no packages.

-- no debconf information
# SELECT * from comments where timestamp  1257337500 and timestamp  
1257337600;
  cid  | pid | nid | uid | subject  |   

  comment   


   |   hostname   | timestamp  | status | format | thread | 
name | mail | homepage

Bug#571462: will test with libqtcore4 version 4:4.5.3-4

2010-02-27 Thread Enrico Bandiello
Package: scidavis
Version: 0.2.3-1
Severity: normal

Thank you for you answer.
I'll try with the 'unstable' libqtcore4, even if Synaptics wants to remove all 
of KDE and related packages. Please allow a little time for that, because it 
seem that Synaptics wants to remove all my KDE stuff, because of the package 
downgrade.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.33-ck1-ck (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages scidavis depends on:
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libgcc1 1:4.4.2-9GCC support library
ii  libgl1-mesa-glx [libgl1 7.6.1-1  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.6.1-1  The OpenGL utility library (GLU)
ii  libgsl0ldbl 1.13+dfsg-1  GNU Scientific Library (GSL) -- li
ii  libmuparser01.30-1   fast mathematical expressions pars
ii  libqt4-assistant4:4.6.0-1Qt 4 assistant module
ii  libqt4-network  4:4.6.0-1Qt 4 network module
ii  libqt4-opengl   4:4.6.0-1Qt 4 OpenGL module
ii  libqt4-qt3support   4:4.6.0-1Qt 3 compatibility library for Qt 
ii  libqt4-svg  4:4.6.0-1Qt 4 SVG module
ii  libqt4-xml  4:4.6.0-1Qt 4 XML module
ii  libqtcore4  4:4.6.0-1Qt 4 core module
ii  libqtgui4   4:4.6.0-1Qt 4 GUI module
ii  libqwt5-qt4 5.2.0-1  Qt4 widgets library for technical 
ii  libqwtplot3d-qt4-0  0.2.7+svn191-4   3D plotting library based on Qt4/O
ii  libstdc++6  4.4.2-9  The GNU Standard C++ Library v3
ii  python2.5   2.5.5-2  An interactive high-level object-o
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

scidavis recommends no packages.

scidavis suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569436: blas: zgesvd seems to give incorrect results

2010-02-27 Thread Denis Barbier
Hi,

I played with the example provided by Kumar Appaiah, and narrowed the
problem down to zdrot; after copying zdrot.f into the same directory
as zgesvd_ex.f:
  $ gfortran -O2 -c zgesvd_ex.f
  $ gfortran -O2 -c zdrot.f
  $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
  $ ./zgesvd_ex
gives the expected result (with libblas3gf 1.2-4), but
  $ gfortran -O2 -ftree-vectorize -c zdrot.f
  $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
  $ ./zgesvd_ex
gives the wrong result.
This looks like a bug in the gcc vectorizer, and it cannot be
reproduced with gcc 4.5 from experimental.

Denis



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571532: gij: Bus error when executing ant

2010-02-27 Thread Torsten Werner
severity 571532 important
thanks

On Thu, Feb 25, 2010 at 10:43 PM, Matthias Klose d...@debian.org wrote:
 so why does 1.7 work, and not 1.8?

I have no idea why gij fails with bus error. I have uploaded a new
source package ant1.7 that can be used by packages that are arch
dependent. Downgrading the severity because we will have a workaround.

Torsten



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#571532: gij: Bus error when executing ant

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 571532 important
Bug #571532 [gij] gij: Bus error when executing ant
Severity set to 'important' from 'critical'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560527: fix

2010-02-27 Thread Ilya Barygin
tags 560527 patch
thanks

04_shellescape.dpatch creates files in the wrong place. Patch from
Ubuntu follows.

diff -u xdrawchem-1.9.9/debian/patches/04_shellescape.dpatch 
xdrawchem-1.9.9/debian/patches/04_shellescape.dpatch
--- xdrawchem-1.9.9/debian/patches/04_shellescape.dpatch
+++ xdrawchem-1.9.9/debian/patches/04_shellescape.dpatch
@@ -28,7 +28,7 @@
 @DPATCH@
 diff -Nur xdrawchem-1.9.9/xdrawchem/application.cpp 
../xdrawchem-1.9.9/xdrawchem/application.cpp
 --- xdrawchem-1.9.9/xdrawchem/application.cpp  2005-11-16 04:01:55.0 
+0100
-+++ ../xdrawchem-1.9.9/xdrawchem/application.cpp   2006-07-09 
12:45:51.0 +0200
 xdrawchem-1.9.9/xdrawchem/application.cpp  2006-07-09 12:45:51.0 
+0200
 @@ -79,6 +79,7 @@
  #include xruler.h
  #include dyk.h
@@ -126,7 +126,7 @@
  was_saved = tosave.save(ni_savefile, PNG);
 diff -Nur xdrawchem-1.9.9/xdrawchem/escape.cpp 
../xdrawchem-1.9.9/xdrawchem/escape.cpp
 --- xdrawchem-1.9.9/xdrawchem/escape.cpp   1970-01-01 01:00:00.0 
+0100
-+++ ../xdrawchem-1.9.9/xdrawchem/escape.cpp2006-07-09 12:41:42.0 
+0200
 xdrawchem-1.9.9/xdrawchem/escape.cpp   2006-07-09 12:41:42.0 
+0200
 @@ -0,0 +1,9 @@
 +#include escape.h
 +
@@ -139,7 +139,7 @@
 +}
 diff -Nur xdrawchem-1.9.9/xdrawchem/escape.h 
../xdrawchem-1.9.9/xdrawchem/escape.h
 --- xdrawchem-1.9.9/xdrawchem/escape.h 1970-01-01 01:00:00.0 +0100
-+++ ../xdrawchem-1.9.9/xdrawchem/escape.h  2006-07-09 12:41:48.0 
+0200
 xdrawchem-1.9.9/xdrawchem/escape.h 2006-07-09 12:41:48.0 +0200
 @@ -0,0 +1,8 @@
 +#ifndef ESCAPE_H
 +#define ESCAPE_H
@@ -151,7 +151,7 @@
 +#endif
 diff -Nur xdrawchem-1.9.9/xdrawchem/Makefile.am 
../xdrawchem-1.9.9/xdrawchem/Makefile.am
 --- xdrawchem-1.9.9/xdrawchem/Makefile.am  2005-07-20 04:27:54.0 
+0200
-+++ ../xdrawchem-1.9.9/xdrawchem/Makefile.am   2006-07-09 12:38:58.0 
+0200
 xdrawchem-1.9.9/xdrawchem/Makefile.am  2006-07-09 12:38:58.0 
+0200
 @@ -13,7 +13,7 @@
  gobject.moc.cpppeptidebuilder.moc.cpp   xruler.moc.cpp\
  graphdialog.moc.cpppreviewwidget.moc.cppcharsel.moc.cpp\
@@ -163,7 +163,7 @@
  bond.moc.cpp   molecule.moc.cpp symbol.moc.cpp\
 diff -Nur xdrawchem-1.9.9/xdrawchem/molinfodialog.cpp 
../xdrawchem-1.9.9/xdrawchem/molinfodialog.cpp
 --- xdrawchem-1.9.9/xdrawchem/molinfodialog.cpp2005-08-07 
22:00:19.0 +0200
-+++ ../xdrawchem-1.9.9/xdrawchem/molinfodialog.cpp 2006-07-09 
12:46:49.0 +0200
 xdrawchem-1.9.9/xdrawchem/molinfodialog.cpp2006-07-09 
12:46:49.0 +0200
 @@ -4,6 +4,7 @@
  #include molinfodialog.h
  #include helpwindow.h



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: fix

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 560527 patch
Bug #560527 [src:xdrawchem] xdrawchem: FTBFS: application.cpp:82:20: error: 
escape.h: No such file or directory
Added tag(s) 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 debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571542: marked as done (gij: Bus error when executing ant)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 17:47:21 +
with message-id e1nlql7-0002ab...@ries.debian.org
and subject line Bug#570889: fixed in ant 1.8.0-3
has caused the Debian Bug report #570889,
regarding gij: Bus error when executing ant
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570889
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gij
Version: 4:4.4.2-3
Severity: critical
Justification: breaks unrelated software

Hi,

gij fails with bus error when execution ant (1.8) and causes many FTBFS errors.
An example to reproduce the problem will be attached.

Cheers,
Torsten


build.xml
Description: XML document
@
---End Message---
---BeginMessage---
Source: ant
Source-Version: 1.8.0-3

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

ant-doc_1.8.0-3_all.deb
  to main/a/ant/ant-doc_1.8.0-3_all.deb
ant-optional_1.8.0-3_all.deb
  to main/a/ant/ant-optional_1.8.0-3_all.deb
ant_1.8.0-3.diff.gz
  to main/a/ant/ant_1.8.0-3.diff.gz
ant_1.8.0-3.dsc
  to main/a/ant/ant_1.8.0-3.dsc
ant_1.8.0-3_all.deb
  to main/a/ant/ant_1.8.0-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 570...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Torsten Werner twer...@debian.org (supplier of updated ant package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 18:26:35 +0100
Source: ant
Binary: ant ant-optional ant-doc
Architecture: source all
Version: 1.8.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 ant- Java based build tool like make
 ant-doc- Java based build tool like make - API documentation and manual
 ant-optional - Java based build tool like make - optional libraries
Closes: 559058 570889
Changes: 
 ant (1.8.0-3) unstable; urgency=low
 .
   [ Torsten Werner ]
   * Use default-java in $(JAVA_HOME).
   * Do no longer build the -gcj packages because of bus error in gij. Such
 packages are provided by the ant1.7 source package. (Closes: #570889)
   * Remove Arnaud from the Uploaders list.
 .
   [ Ludovic Claude ]
   * Demote ant-optional-gcj from Recommends to Suggests for package 
ant-optional
 (Closes: #559058)
 .
   [ Niels Thykier ]
   * Removed obsolete linda override.
Checksums-Sha1: 
 8a472e34ea3f92afdda2edbff4c3ff36e8e6965d 1670 ant_1.8.0-3.dsc
 63dbae77e9de22b8cea7d2368f87b07d12ec374b 31086 ant_1.8.0-3.diff.gz
 5947065725b7d1acd7090add771e0cf0646e656d 1451244 ant_1.8.0-3_all.deb
 d2794be9480666c97d2e92647224bee0b56b09ea 689776 ant-optional_1.8.0-3_all.deb
 0c21049198082ccba6d474ae123d257923b2d86a 3399730 ant-doc_1.8.0-3_all.deb
Checksums-Sha256: 
 53d223dc32679fbf0a7af25ccced79bdcd1cc9cd01857a4dfca81c448a733700 1670 
ant_1.8.0-3.dsc
 e5b8b3e67cebed20797f6971c052db8a2006b8cf60b2ea77ce1083ee728d19ce 31086 
ant_1.8.0-3.diff.gz
 cde66c30c927afa28e3f2da28d67ed5268252a399ed5a71e51b610ab8b1ee4e9 1451244 
ant_1.8.0-3_all.deb
 691658d8229413b4b0c677afa2408b2c62ad5be4b4b047cfdd88fc47f5d9e8ef 689776 
ant-optional_1.8.0-3_all.deb
 7fe40fcd79de13310e2e3f9218bc0f9c5d83a79fd134672ae690007c637e53e5 3399730 
ant-doc_1.8.0-3_all.deb
Files: 
 2e851c17f15da6de2f03417c804e95b9 1670 java optional ant_1.8.0-3.dsc
 4ec807cc0a5280c6eabd7fd7922d229a 31086 java optional ant_1.8.0-3.diff.gz
 f591e18c6f03ceb85a9dbbcbb8543490 1451244 java optional ant_1.8.0-3_all.deb
 90d3811e4399511a796b0aebaee3e8f4 689776 java optional 
ant-optional_1.8.0-3_all.deb
 b9119f4c1c40b8f1906b6c66eae70d54 3399730 doc optional ant-doc_1.8.0-3_all.deb

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

iEYEARECAAYFAkuJVncACgkQfY3dicTPjsPH6ACcD2zGgUg3c3WriKKvdgC+pCsT
GbYAn39vGOtsM+QK/Fr8AWzuAgxKbawl
=qD6m
-END PGP SIGNATURE-


---End Message---


Bug#571397: marked as done ((reproducible) Bus error while building writer2latex)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 17:47:21 +
with message-id e1nlql7-0002ab...@ries.debian.org
and subject line Bug#570889: fixed in ant 1.8.0-3
has caused the Debian Bug report #570889,
regarding (reproducible) Bus error while building writer2latex
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570889
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: writer2latex
Version: 1.0-8
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 dpatch  deapply-all  
 04_add_shebang not applied to ./ .
 01_dirs not applied to ./ .
 rm -rf patch-stamp patch-stampT debian/patched
 dh_testdir
 dh_testroot
 rm -f build-arch-stamp build-indep-stamp configure-stamp
 ant clean
 Buildfile: 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/build.xml
 
 clean:
 
 BUILD SUCCESSFUL
 Total time: 0 seconds
 dh_clean 
  dpkg-source -b writer2latex-1.0
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building writer2latex using existing 
 writer2latex_1.0.orig.tar.gz
 dpkg-source: info: building writer2latex in writer2latex_1.0-8.diff.gz
 dpkg-source: warning: executable mode 0755 of 
 'debian/patches/04_add_shebang.dpatch' will not be represented in diff
 dpkg-source: warning: executable mode 0755 of 'debian/patches/01_dirs.dpatch' 
 will not be represented in diff
 dpkg-source: info: building writer2latex in writer2latex_1.0-8.dsc
  debian/rules build
 test -d debian/patched || install -d debian/patched
 dpatch  apply-all  
 applying patch 01_dirs to ./ ... ok.
 applying patch 04_add_shebang to ./ ... ok.
 dpatch  cat-all  patch-stampT
 mv -f patch-stampT patch-stamp
 dh_testdir
 touch configure-stamp
 touch build-arch-stamp
 ant -DURE_HOME=/usr/lib/ure -DOFFICE_HOME=/usr/lib/openoffice/basis3.1 jar
 Buildfile: 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/build.xml
 
 compile:
 [mkdir] Created dir: 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/target/classes
 [javac] 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/build.xml:74: 
 warning: 'includeantruntime' was not set, defaulting to 
 build.sysclasspath=last; set to false for repeatable builds
 [javac] Compiling 160 source files to 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/target/classes
 [javac] --
 [javac] 1. WARNING in 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/source/java/writer2latex/office/SVMReader.java
  (at line 181)
 [javac]   for (int i=0; inCount; i++) {
 [javac]   ^^^
 [javac] Dead code
 [javac] --
 [javac] --
 [javac] 2. WARNING in 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/source/java/writer2latex/util/Base64.java
  (at line 574)
 [javac]   int dontBreakLines = (options  DONT_BREAK_LINES);
 [javac]   ^^
 [javac] The local variable dontBreakLines is never read
 [javac] --
 [javac] 3. WARNING in 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/source/java/writer2latex/
 [javac] util/Base64.java (at line 1358)
 [javac]   private byte[]  alphabet;   // Local copies to avoid 
 extra method calls
 [javac]   
 [javac] The field Base64.InputStream.alphabet is never read locally
 [javac] --
 [javac] 4. WARNING in 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/source/java/writer2latex/util/Base64.java
  (at line 1595)
 [javac]   private byte[]  alphabet;   // Local copies to avoid 
 extra method calls
 [javac]   
 [javac] The field Base64.OutputStream.alphabet is never read locally
 [javac] --
 [javac] --
 [javac] 5. WARNING in 
 /build/user-writer2latex_1.0-8-amd64-7Pr9C6/writer2latex-1.0/source/java/writer2latex/
 [javac] xmerge/OfficeDocumentException.java (at line 60)
 [javac]   public final class OfficeDocumentException extends IOException {
 [javac]  ^^^
 [javac] The serializable class OfficeDocumentException does not declare a 
 static final serialVersionUID field of type long
 [javac] --
 [javac] 5 problems (5 warnings)
  [copy] Copying 7 files to 
 

Bug#570889: marked as done (ant: SIGBUS during Copying files ... in build of several packages (on some architectures even ant itself))

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 17:47:21 +
with message-id e1nlql7-0002ab...@ries.debian.org
and subject line Bug#570889: fixed in ant 1.8.0-3
has caused the Debian Bug report #570889,
regarding ant: SIGBUS during Copying files ... in build of several packages 
(on some architectures even ant itself)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570889
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: ant
Version: 1.8.0-2
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| Copying 5 files to 
/build/buildd-ant_1.8.0-2-kfreebsd-i386-RIfTK_/ant-1.8.0/build/classes
| Bus error
| ... Failed Building Ant Distribution !
| make: *** [stamp-build-ant] Error 138

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=ant

It looks like hppa is having issues as well.

Mraw,
KiBi.


---End Message---
---BeginMessage---
Source: ant
Source-Version: 1.8.0-3

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

ant-doc_1.8.0-3_all.deb
  to main/a/ant/ant-doc_1.8.0-3_all.deb
ant-optional_1.8.0-3_all.deb
  to main/a/ant/ant-optional_1.8.0-3_all.deb
ant_1.8.0-3.diff.gz
  to main/a/ant/ant_1.8.0-3.diff.gz
ant_1.8.0-3.dsc
  to main/a/ant/ant_1.8.0-3.dsc
ant_1.8.0-3_all.deb
  to main/a/ant/ant_1.8.0-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 570...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Torsten Werner twer...@debian.org (supplier of updated ant package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 18:26:35 +0100
Source: ant
Binary: ant ant-optional ant-doc
Architecture: source all
Version: 1.8.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 ant- Java based build tool like make
 ant-doc- Java based build tool like make - API documentation and manual
 ant-optional - Java based build tool like make - optional libraries
Closes: 559058 570889
Changes: 
 ant (1.8.0-3) unstable; urgency=low
 .
   [ Torsten Werner ]
   * Use default-java in $(JAVA_HOME).
   * Do no longer build the -gcj packages because of bus error in gij. Such
 packages are provided by the ant1.7 source package. (Closes: #570889)
   * Remove Arnaud from the Uploaders list.
 .
   [ Ludovic Claude ]
   * Demote ant-optional-gcj from Recommends to Suggests for package 
ant-optional
 (Closes: #559058)
 .
   [ Niels Thykier ]
   * Removed obsolete linda override.
Checksums-Sha1: 
 8a472e34ea3f92afdda2edbff4c3ff36e8e6965d 1670 ant_1.8.0-3.dsc
 63dbae77e9de22b8cea7d2368f87b07d12ec374b 31086 ant_1.8.0-3.diff.gz
 5947065725b7d1acd7090add771e0cf0646e656d 1451244 ant_1.8.0-3_all.deb
 d2794be9480666c97d2e92647224bee0b56b09ea 689776 ant-optional_1.8.0-3_all.deb
 0c21049198082ccba6d474ae123d257923b2d86a 3399730 ant-doc_1.8.0-3_all.deb
Checksums-Sha256: 
 53d223dc32679fbf0a7af25ccced79bdcd1cc9cd01857a4dfca81c448a733700 1670 
ant_1.8.0-3.dsc
 e5b8b3e67cebed20797f6971c052db8a2006b8cf60b2ea77ce1083ee728d19ce 31086 
ant_1.8.0-3.diff.gz
 cde66c30c927afa28e3f2da28d67ed5268252a399ed5a71e51b610ab8b1ee4e9 1451244 
ant_1.8.0-3_all.deb
 691658d8229413b4b0c677afa2408b2c62ad5be4b4b047cfdd88fc47f5d9e8ef 689776 
ant-optional_1.8.0-3_all.deb
 7fe40fcd79de13310e2e3f9218bc0f9c5d83a79fd134672ae690007c637e53e5 3399730 
ant-doc_1.8.0-3_all.deb
Files: 
 2e851c17f15da6de2f03417c804e95b9 1670 java optional ant_1.8.0-3.dsc
 4ec807cc0a5280c6eabd7fd7922d229a 31086 java optional ant_1.8.0-3.diff.gz
 f591e18c6f03ceb85a9dbbcbb8543490 1451244 java optional ant_1.8.0-3_all.deb
 90d3811e4399511a796b0aebaee3e8f4 689776 java optional 
ant-optional_1.8.0-3_all.deb
 b9119f4c1c40b8f1906b6c66eae70d54 3399730 doc optional ant-doc_1.8.0-3_all.deb

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

iEYEARECAAYFAkuJVncACgkQfY3dicTPjsPH6ACcD2zGgUg3c3WriKKvdgC+pCsT
GbYAn39vGOtsM+QK/Fr8AWzuAgxKbawl
=qD6m
-END 

Bug#570882: Fwd: [Pkg-haskell-maintainers] Bug#570882: Bug#570882: haskell-hint: FTBFS in various ways

2010-02-27 Thread Joachim Breitner
Hi,

Am Freitag, den 26.02.2010, 17:09 +0100 schrieb Cyril Brulebois:

  gb haskell-hint_0.3.2.1-3 . kfreebsd-amd64 kfreebsd-i386
  dw haskell-hint_0.3.2.1-3 . kfreebsd-amd64 kfreebsd-i386 . -m ghc6 ( 
  6.12.1-10)
 
 -12 is Installed on both architectures, given back.

it seems that recent ghc6 upload broke some internal ABI, and we need
binNMUs (but thankfully the Depends/Provides are in place, so no risk of
FTBFS):

nmu haskell-ghc-mtl_1.0.1.0-2 . kfreebsd-amd64 kfreebsd-i386 . -m Rebuild due 
to changed ghc ABI


I still need to figure out a good way to detect such uninstallable
packages quickly.

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#571462: package works right with 'sid' libqtcore4

2010-02-27 Thread Enrico Bandiello
Package: scidavis
Severity: normal

Well, after a huge libs downgrade from experimental to unstable it seems that 
Scidavis is working right. No more segfault when adding a column. Not a deep 
test, though, just played around a little with tables and menus. So it seems 
that libqtcore4 is to blame for the problem.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.33-ck1-ck (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages scidavis depends on:
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libgcc1 1:4.4.2-9GCC support library
ii  libgl1-mesa-glx [libgl1 7.6.1-1  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.6.1-1  The OpenGL utility library (GLU)
ii  libgsl0ldbl 1.13+dfsg-1  GNU Scientific Library (GSL) -- li
ii  libmuparser01.30-1   fast mathematical expressions pars
ii  libqt4-assistant4:4.5.3-4Qt 4 assistant module
ii  libqt4-network  4:4.5.3-4Qt 4 network module
ii  libqt4-opengl   4:4.5.3-4Qt 4 OpenGL module
ii  libqt4-qt3support   4:4.5.3-4Qt 3 compatibility library for Qt 
ii  libqt4-svg  4:4.5.3-4Qt 4 SVG module
ii  libqt4-xml  4:4.5.3-4Qt 4 XML module
ii  libqtcore4  4:4.5.3-4Qt 4 core module
ii  libqtgui4   4:4.5.3-4Qt 4 GUI module
ii  libqwt5-qt4 5.2.0-1  Qt4 widgets library for technical 
ii  libqwtplot3d-qt4-0  0.2.7+svn191-4   3D plotting library based on Qt4/O
ii  libstdc++6  4.4.2-9  The GNU Standard C++ Library v3
ii  python2.5   2.5.5-2  An interactive high-level object-o
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

scidavis recommends no packages.

scidavis suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#570886: marked as done (libservlet2.4-java: FTBFS on kfreebsd-amd64: Bus error)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 17:47:21 +
with message-id e1nlql7-0002ab...@ries.debian.org
and subject line Bug#570889: fixed in ant 1.8.0-3
has caused the Debian Bug report #570889,
regarding libservlet2.4-java: FTBFS on kfreebsd-amd64: Bus error
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570889
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libservlet2.4-java
Version: 5.0.30-11
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-amd64:
| prepare:
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/build-servlet-api
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/build-servlet-api/classes
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/build-servlet-api/docs
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/build-servlet-api/docs/api
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/build-servlet-api/examples
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api/docs
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api/docs/api
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api/lib
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api/src
| [mkdir] Created dir: 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api/examples
| 
| static:
|  [copy] Copying 3 files to 
/build/buildd-libservlet2.4-java_5.0.30-11-kfreebsd-amd64-c9YvbV/libservlet2.4-java-5.0.30/tmp/dist-servlet-api
| Bus error
| make: *** [debian/stamp-ant-build] Error 138

Full build logs:
  
https://buildd.debian.org/status/package.php?suite=unstablep=libservlet2.4-java

It looks like we have some other packages getting bus errors, apparently
java-related ones. I'm opening a bug for now, we'll see who has some
time to investigate.

Mraw,
KiBi.


---End Message---
---BeginMessage---
Source: ant
Source-Version: 1.8.0-3

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

ant-doc_1.8.0-3_all.deb
  to main/a/ant/ant-doc_1.8.0-3_all.deb
ant-optional_1.8.0-3_all.deb
  to main/a/ant/ant-optional_1.8.0-3_all.deb
ant_1.8.0-3.diff.gz
  to main/a/ant/ant_1.8.0-3.diff.gz
ant_1.8.0-3.dsc
  to main/a/ant/ant_1.8.0-3.dsc
ant_1.8.0-3_all.deb
  to main/a/ant/ant_1.8.0-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 570...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Torsten Werner twer...@debian.org (supplier of updated ant package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 18:26:35 +0100
Source: ant
Binary: ant ant-optional ant-doc
Architecture: source all
Version: 1.8.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 ant- Java based build tool like make
 ant-doc- Java based build tool like make - API documentation and manual
 ant-optional - Java based build tool like make - optional libraries
Closes: 559058 570889
Changes: 
 ant (1.8.0-3) unstable; urgency=low
 .
   [ Torsten Werner ]
   * Use default-java in $(JAVA_HOME).
   * Do no longer build the -gcj packages because of bus error in gij. 

Bug#559978: pandoc FTBFS

2010-02-27 Thread Joachim Breitner
Hi Jonas,

Am Montag, den 22.02.2010, 12:43 -0800 schrieb John MacFarlane:
 +++ Joachim Breitner [Feb 22 10 21:21 ]:
   Template Haskell is a standard language feature. My worry, though,
   was that if we did not support all architectures on which pandoc
   0.46 built, pandoc would never migrate from unstable to testing.
   Am I wrong about this?
  
  If pandoc can not be built on some arches, then the release team will
  probably ok the removal of the pandoc package on the broken arches,
  allowing the transition. But you could retry building pandoc with the
  new ghc6 compiler, maybe it works now.
 
 Note: the next release of pandoc (1.5) will not depend on Template
 Haskell. I plan to release this in the next month or two.

I usually like to avoid having to wait for new upstream versions to get
rid of a issue. Would it be possible that you make sure the pandoc
package builds successfully with ghc6-6.12 and the updated libraries, at
least on the arches with Template Haskell support?

Thanks,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#570882: Fwd: [Pkg-haskell-maintainers] Bug#570882: Bug#570882: haskell-hint: FTBFS in various ways

2010-02-27 Thread Cyril Brulebois
Joachim Breitner nome...@debian.org (27/02/2010):
 it seems that recent ghc6 upload broke some internal ABI, and we
 need binNMUs (but thankfully the Depends/Provides are in place, so
 no risk of FTBFS):
 
 nmu haskell-ghc-mtl_1.0.1.0-2 . kfreebsd-amd64 kfreebsd-i386 . -m Rebuild 
 due to changed ghc ABI
 
 I still need to figure out a good way to detect such uninstallable
 packages quickly.

Is that supposed to take care of the BD-Uninstallable issue at hand
here for haskell-hint?
| (k-a)
| haskell-hint (= 0.3.2.1-3) build-depends on one of:
| - libghc6-ghc-mtl-prof (= 1.0.1.0-2)
| libghc6-ghc-mtl-prof (= 1.0.1.0-2) depends on missing:
| - libghc6-ghc-prof-6.12.1-fa110
| 
| (k-i)
| haskell-hint (= 0.3.2.1-3) build-depends on one of:
| - libghc6-ghc-mtl-prof (= 1.0.1.0-2)
| libghc6-ghc-mtl-prof (= 1.0.1.0-2) depends on missing:
| - libghc6-ghc-prof-6.12.1-df3ea

(Just checking, those bits are strange enough that I'd like some kind
of confirmation.)

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#570882: Fwd: [Pkg-haskell-maintainers] Bug#570882: Bug#570882: haskell-hint: FTBFS in various ways

2010-02-27 Thread Joachim Breitner
Hi,

Am Samstag, den 27.02.2010, 18:56 +0100 schrieb Cyril Brulebois:
 Joachim Breitner nome...@debian.org (27/02/2010):
  it seems that recent ghc6 upload broke some internal ABI, and we
  need binNMUs (but thankfully the Depends/Provides are in place, so
  no risk of FTBFS):
  
  nmu haskell-ghc-mtl_1.0.1.0-2 . kfreebsd-amd64 kfreebsd-i386 . -m Rebuild 
  due to changed ghc ABI
  
  I still need to figure out a good way to detect such uninstallable
  packages quickly.
 
 Is that supposed to take care of the BD-Uninstallable issue at hand
 here for haskell-hint?
 | (k-a)
 | haskell-hint (= 0.3.2.1-3) build-depends on one of:
 | - libghc6-ghc-mtl-prof (= 1.0.1.0-2)
 | libghc6-ghc-mtl-prof (= 1.0.1.0-2) depends on missing:
 | - libghc6-ghc-prof-6.12.1-fa110
 | 
 | (k-i)
 | haskell-hint (= 0.3.2.1-3) build-depends on one of:
 | - libghc6-ghc-mtl-prof (= 1.0.1.0-2)
 | libghc6-ghc-mtl-prof (= 1.0.1.0-2) depends on missing:
 | - libghc6-ghc-prof-6.12.1-df3ea
 
 (Just checking, those bits are strange enough that I'd like some kind
 of confirmation.)

exactly. The package names like libghc6-ghc-prof-6.12.1-df3ea represent
a cabal package with a certain ABI hash (in this case starting with
df3ea). If these don’t match, the packages are broken, therefore we
encoded it in Provides/Depends.

A recent upload of ghc6 seems to have changed the ABI hash of the ghc
package (which is rather internal and only used by compiler-close
stuff). Therefore, libghc6-ghc-mtl-prof is uninstallable. A nmu of
haskell-ghc-mtl will create a package which depends on the changed ABI,
have an uploaded Provides and thus clear the BD-Uninstallable issue.

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Processed: severity 571462 important

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 571462 important
Bug #571462 [scidavis] scidavis: Scidavis crashes when adding a column
Severity set to 'important' from 'grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571748: gromit: Line appears from draw start to upper left corner of screen.

2010-02-27 Thread David Raleigh Arnold
Package: gromit
Version: 20041213-4
Severity: grave
Justification: renders package unusable

That's it. When the mouse moves, drawing a line, a line appears to upper left 
corner.

I compiled the latest stable nvidia module using the script from the nvidia 
site.


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

Kernel: Linux 2.6.32-trunk-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gromit depends on:
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libglib2.0-0  2.22.4-1   The GLib library of C routines
ii  libgtk2.0-0   2.18.6-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.26.2-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.3-1  X11 client-side library

gromit recommends no packages.

gromit suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#570882: Fwd: [Pkg-haskell-maintainers] Bug#570882: Bug#570882: haskell-hint: FTBFS in various ways

2010-02-27 Thread Cyril Brulebois
Joachim Breitner nome...@debian.org (27/02/2010):
 exactly. The package names like libghc6-ghc-prof-6.12.1-df3ea
 represent a cabal package with a certain ABI hash (in this case
 starting with df3ea). If these don’t match, the packages are broken,
 therefore we encoded it in Provides/Depends.

OK. Was just trying to make sure there were no additional issues you
weren't aware of.

 A recent upload of ghc6 seems to have changed the ABI hash of the
 ghc package (which is rather internal and only used by
 compiler-close stuff). Therefore, libghc6-ghc-mtl-prof is
 uninstallable. A nmu of haskell-ghc-mtl will create a package which
 depends on the changed ABI, have an uploaded Provides and thus clear
 the BD-Uninstallable issue.

Thanks for the details. Scheduled.

(My very first binNMU, w00t.)

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed: re: vboxgtk: fails on startup

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 560381 patch
Bug #560381 [vboxgtk] vboxgtk: fails on startup
Added tag(s) 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 debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560381: vboxgtk: fails on startup

2010-02-27 Thread Michael Gilbert
tag 560381 patch
thanks

hi, attached is a patch that solves the RC nature of this issue.  note
that even after this is applied, a lot of the functionality is not
working correctly due to the API change (as mentioned previously), but
at least you can run existing VMs.

i am planning to nmu this after 7 days (of course i will clean it up
and make it a quilt patch since it is currently a direct change in the
diff, which isn't good).

i will look at solving the other problems due to the new API when i find
the time.

mike
diff -u vboxgtk-0.5.0/debian/changelog vboxgtk-0.5.0/debian/changelog
--- vboxgtk-0.5.0/debian/changelog
+++ vboxgtk-0.5.0/debian/changelog
@@ -1,3 +1,9 @@
+vboxgtk (0.5.0-1.1) unstable; urgency=low
+
+  * Fix startup crash (closes: #560381).
+
+ -- Michael Gilbert michael.s.gilb...@gmail.com  Sat, 27 Feb 2010 13:21:28 -0500
+
 vboxgtk (0.5.0-1) unstable; urgency=low
 
   [ Devid Antonio Filoni ]
only in patch2:
unchanged:
--- vboxgtk-0.5.0.orig/vboxgtk/vboxgtk_iface.py
+++ vboxgtk-0.5.0/vboxgtk/vboxgtk_iface.py
@@ -52,7 +52,6 @@
   self.vboxdao.vm_states.Stopping: _(Stopping),
   self.vboxdao.vm_states.Saving: _(Saving),
   self.vboxdao.vm_states.Restoring: _(Restoring),
-  self.vboxdao.vm_states.Discarding: _(Discading),
   self.vboxdao.vm_states.SettingUp: _(Setting Up) }
 self.builder = gtk.Builder()
 xml_files = ['xml/vboxgtk-actions.xml',


Processed: Re: Bug#571532: gij: Bus error when executing ant

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 571532 grave
Bug #571532 [gij] gij: Bus error when executing ant
Severity set to 'grave' from 'important'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#570649: New upstream release

2010-02-27 Thread Guillaume Delacour
Hello,

The version in unstable is quite old and we work on the latest version
upstream (uploaded next few days).

-- 
Guillaume Delacour



signature.asc
Description: OpenPGP digital signature


Bug#559978: pandoc FTBFS

2010-02-27 Thread John MacFarlane
+++ Joachim Breitner [Feb 27 10 18:53 ]:
 Hi Jonas,
 
 Am Montag, den 22.02.2010, 12:43 -0800 schrieb John MacFarlane:
  +++ Joachim Breitner [Feb 22 10 21:21 ]:
Template Haskell is a standard language feature. My worry, though,
was that if we did not support all architectures on which pandoc
0.46 built, pandoc would never migrate from unstable to testing.
Am I wrong about this?
   
   If pandoc can not be built on some arches, then the release team will
   probably ok the removal of the pandoc package on the broken arches,
   allowing the transition. But you could retry building pandoc with the
   new ghc6 compiler, maybe it works now.
  
  Note: the next release of pandoc (1.5) will not depend on Template
  Haskell. I plan to release this in the next month or two.
 
 I usually like to avoid having to wait for new upstream versions to get
 rid of a issue. Would it be possible that you make sure the pandoc
 package builds successfully with ghc6-6.12 and the updated libraries, at
 least on the arches with Template Haskell support?

Joachim and Jonas:

Although pandoc 1.3, the latest packaged for debian, may build with
ghc6-6.12, the resulting executable won't handle UTF-8 correctly,
because of the double-encoding problem one gets when using both
System.IO.UTF8 and GHC6.12. (I posted about this problem earlier to
debian-haskell, since it may affect a few other packages as well.
I also wrote to the author of utf8-string with some suggestions
about how to solve the problem, but as far as I know, no action has been
taken.)

I used CPP to work around this problem in pandoc 1.4, the latest
released version. Since there are a couple other problems with that
release, I asked Jonas to hold off packaging until 1.5 was ready.

I don't want to hold things up too much, so I could expedite work
on 1.5 and try to release it in a week or so, so packaging could
proceed.

John




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#559978: pandoc FTBFS

2010-02-27 Thread Joachim Breitner
Hi,

Am Samstag, den 27.02.2010, 10:35 -0800 schrieb John MacFarlane:
 Although pandoc 1.3, the latest packaged for debian, may build with
 ghc6-6.12, the resulting executable won't handle UTF-8 correctly,
 because of the double-encoding problem one gets when using both
 System.IO.UTF8 and GHC6.12. (I posted about this problem earlier to
 debian-haskell, since it may affect a few other packages as well.
 I also wrote to the author of utf8-string with some suggestions
 about how to solve the problem, but as far as I know, no action has been
 taken.)

Ok, that’s a good point, we don’t want such broken packages :-)

 I used CPP to work around this problem in pandoc 1.4, the latest
 released version. Since there are a couple other problems with that
 release, I asked Jonas to hold off packaging until 1.5 was ready.
 
 I don't want to hold things up too much, so I could expedite work
 on 1.5 and try to release it in a week or so, so packaging could
 proceed.

that sounds good. We are not at the point of a transition yet, and
pandoc is not the only thing waiting, but I’d like to get the TODO list
smaller if possible. I’ll ask again in one or two weeks if I hear
nothing :-)

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#571752: FTBFS: FAILED (failures=2)

2010-02-27 Thread Cyril Brulebois
Source: python-apt
Version: 0.7.93.1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS:
| FAIL: aptsources: Test distribution detection.
| --
| Traceback (most recent call last):
|   File 
/build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
 line 122, in testDistribution
| self.assertTrue(d in dist_templates)
| AssertionError
| 
| ==
| FAIL: aptsources: Test matcher
| --
| Traceback (most recent call last):
|   File 
/build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
 line 105, in testMatcher
| self.fail(source entry '%s' has no matcher % s)
| AssertionError: source entry 'deb http://ubuntu.cs.uaf.edu/ubuntu/ hardy 
main' has no matcher
| 
| --
| Ran 18 tests in 6.082s
| 
| FAILED (failures=2)
| make[1]: *** [override_dh_auto_test] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=python-apt

Mraw,
KiBi.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569436: blas: zgesvd seems to give incorrect results

2010-02-27 Thread Kumar Appaiah
(Also CCing #571572)

Dear Denis,

On Sat, Feb 27, 2010 at 05:44:45PM +0100, Denis Barbier wrote:
 Hi,
 
 I played with the example provided by Kumar Appaiah, and narrowed the
 problem down to zdrot; after copying zdrot.f into the same directory
 as zgesvd_ex.f:
   $ gfortran -O2 -c zgesvd_ex.f
   $ gfortran -O2 -c zdrot.f
   $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
   $ ./zgesvd_ex
 gives the expected result (with libblas3gf 1.2-4), but
   $ gfortran -O2 -ftree-vectorize -c zdrot.f
   $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
   $ ./zgesvd_ex
 gives the wrong result.
 This looks like a bug in the gcc vectorizer, and it cannot be
 reproduced with gcc 4.5 from experimental.

This was fantastic analysis. I actually would like to know how you
zeroed in onto zdrot to find the problem.

I shall now try to play around with zdrot to see if I can create a
test case which reproduces the bug, so that I can file a bug report
with GCC.

Thanks so much!

Kumar
-- 
In this playhouse of infinite forms I have had my play, and here have
I caught sight of him that is formless.
- Rabindranath Tagore (Gitanjali, 1912)


signature.asc
Description: Digital signature


Processed: libglib2.0-0: GTK open dialog crash if folder contain bash script file

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 559427 unreproducible
Bug #559427 [libglib2.0-0] libglib2.0-0: GTK open dialog crash if folder 
contain bash script file
Bug #553149 [libglib2.0-0] _g_local_file_info_get: segmentation fault in each 
application using it
Added tag(s) unreproducible.
Added tag(s) unreproducible.
 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#559427: libglib2.0-0: GTK open dialog crash if folder contain bash script file

2010-02-27 Thread Luca Bruno
tag 559427 unreproducible
thanks

Are you able to reproduce it if you put badmime.cache under
~/.local/share/mime/mime.cache? I'm not able to reproduce it with glib
2.22.3-2.

-- 
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Processed: merging 553149 559427

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 merge 553149 559427
Bug#553149: _g_local_file_info_get: segmentation fault in each application 
using it
Bug#559427: libglib2.0-0: GTK open dialog crash if folder contain bash script 
file
Merged 553149 559427.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571372: marked as done (libjogl-java: FTBFS: Reference antlr.classpath not found.)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 19:47:57 +
with message-id e1nlsdp-0007ga...@ries.debian.org
and subject line Bug#571372: fixed in libjogl-java 1.1.1+dak1-9
has caused the Debian Bug report #571372,
regarding libjogl-java: FTBFS: Reference antlr.classpath not found.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571372: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571372
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libjogl-java
Version: 1.1.1+dak1-8
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory 
 `/build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1'
 make[1]: Nothing to be done for `update-config'.
 make[1]: Leaving directory 
 `/build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1'
 cd jogl/make  /usr/lib/jvm/java-6-openjdk//bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-launcher.jar:/usr/share/java/antlrall.jar:/usr/share/java/ant-antlr.jar:/usr/lib/jvm/java-6-openjdk//lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main -Dcompile.debug=true 
 -Dcompile.optimize=true-propertyfile 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/debian/ant.properties
  all
 Buildfile: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/make/build.xml
 [available] DEPRECATED - available used to override an existing property.
 [available]   Build file should not reuse the same property name for 
 different values.
 
 gluegen.cpptasks.detect.os.1:
  [echo] FreeBSD=${isFreeBSD}
  [echo] HPUX=${isHPUX}
  [echo] IA64=${isIA64}
  [echo] Linux=true
  [echo] Arch=amd64
  [echo] OS X=${isOSX}
  [echo] Solaris=${isSolaris}
  [echo] Solaris32Bit=${isSolaris32Bit}
  [echo] SolarisSparc=${isSolarisSparc}
  [echo] SolarisSparcv9=${isSolarisSparcv9}
  [echo] SolarisAMD64=${isSolarisAMD64}
  [echo] SolarisX86=${isSolarisX86}
  [echo] Unix=true
  [echo] Windows=${isWindows}
  [echo] X11=true
 
 gluegen.cpptasks.detect.os.freebsd:
 
 gluegen.cpptasks.detect.os.hpux:
 
 gluegen.cpptasks.detect.os.linux:
 
 gluegen.cpptasks.detect.os.osx.ppc:
 
 gluegen.cpptasks.detect.os.osx.universal:
 
 gluegen.cpptasks.detect.os.osx:
 
 gluegen.cpptasks.detect.os.solaris.sparc:
 
 gluegen.cpptasks.detect.os.solaris.sparcv9:
 
 gluegen.cpptasks.detect.os.solaris.amd64:
 
 gluegen.cpptasks.detect.os.solaris.x86:
 
 gluegen.cpptasks.detect.os.solaris:
 
 gluegen.cpptasks.detect.os.unix:
 
 gluegen.cpptasks.detect.os.windows.amd64:
 
 gluegen.cpptasks.detect.os.windows.x86:
 
 gluegen.cpptasks.detect.os.windows:
 
 gluegen.cpptasks.detect.os.2:
 
 gluegen.cpptasks.detect.os:
 
 base.init:
 
 base.init.sourcelevel.1:
 
 base.init.sourcelevel.2:
 
 load.user.properties:
 
 setup.java.home.dir.nonmacosx:
 
 setup.java.home.dir.macosx:
 
 setup.java.home.dir:
 
 gluegen.cpptasks.detect.compiler:
  [echo] VC6=${isVC6}
  [echo] VC7=${isVC7}
  [echo] VC8=${isVC8}
  [echo] MingW=${isMingW}
 
 declare.common:
 
 init:
 
 antlr.jar.validate:
 
 java.home.dir.validate:
 
 java.class.path.validate:
 
 validate:
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/gensrc/classes
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/gensrc/native/jogl
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/classes
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/obj
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/obj/jogl
 [mkdir] Created dir: 
 /build/user-libjogl-java_1.1.1+dak1-8-amd64-r_l3AI/libjogl-java-1.1.1+dak1/jogl/build/obj/jogl_cg
 
 declare.win32.vc6:
 
 declare.win32.vc7:
 
 declare.win32.vc8:
 
 declare.win32.vc8_x64:
 
 declare.win32.mingw:
 
 declare.win32:
 
 declare.linux:
  [echo] Linux
 
 declare.x11:
 
 declare.solaris32:
 
 declare.solaris.sparcv9:
 
 declare.solaris.amd64:
 
 declare.macosx:
 
 declare.freebsd:
 
 declare.hpux:
 
 declare:
 
 all:
 [available] DEPRECATED - available used to override an existing property.
 [available]   Build 

Bug#571759: gcc-4.5: contains non-free manpage

2010-02-27 Thread brian m. carlson
Package: gcc-4.5
Version: 4.5-20091226-1
Severity: serious
File: /usr/share/man/man1/gcc-4.5.1.gz

The file listed above claims:

  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.2 or
  any later version published by the Free Software Foundation; with the
  Invariant Sections being GNU General Public License and Funding
  Free Software, the Front-Cover texts being (a) (see below), and with
  the Back-Cover Texts being (b) (see below).  A copy of the license is
  included in the gfdl(7) man page.

Cover Texts and Invariant Sections are not allowed in main.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gcc-4.5 depends on:
ii  binutils2.20-6   The GNU assembler, linker and bina
ii  cpp-4.5 4.5-20091226-1   The GNU C preprocessor
ii  gcc-4.5-base4.5-20091226-1   The GNU Compiler Collection (base 
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcloog-ppl0   0.15.8-1 the Chunky Loop Generator (runtime
ii  libelfg00.8.12-0.1   an ELF object file access library
ii  libgcc1 1:4.5-20091226-1 GCC support library
ii  libgmp3c2   2:4.3.2+dfsg-1   Multiprecision arithmetic library
ii  libgmpxx4ldbl   2:4.3.2+dfsg-1   Multiprecision arithmetic library 
ii  libgomp14.5-20091226-1   GCC OpenMP (GOMP) support library
ii  libmpc2 0.8.1-1  multiple precision complex floatin
ii  libmpfr1ldbl2.4.2-3  multiple precision floating-point 
ii  libppl-c2   0.10.2-4 Parma Polyhedra Library (C interfa
ii  libppl7 0.10.2-4 Parma Polyhedra Library (runtime l
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages gcc-4.5 recommends:
ii  libc6-dev 2.10.2-6   Embedded GNU C Library: Developmen

Versions of packages gcc-4.5 suggests:
pn  gcc-4.5-doc   none (no description available)
pn  gcc-4.5-locales   none (no description available)
ii  gcc-4.5-multilib  4.5-20091226-1 The GNU C compiler (multilib files
pn  libgcc1-dbg   none (no description available)
pn  libgomp1-dbg  none (no description available)
ii  libmudflap0-4.5-dev   4.5-20091226-1 GCC mudflap support libraries (dev
pn  libmudflap0-dbg   none (no description available)

-- no debconf information

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187


signature.asc
Description: Digital signature


Bug#569436: blas: zgesvd seems to give incorrect results

2010-02-27 Thread Denis Barbier
On 2010/2/27 Kumar Appaiah wrote:
 (Also CCing #571572)

 Dear Denis,

 On Sat, Feb 27, 2010 at 05:44:45PM +0100, Denis Barbier wrote:
 Hi,

 I played with the example provided by Kumar Appaiah, and narrowed the
 problem down to zdrot; after copying zdrot.f into the same directory
 as zgesvd_ex.f:
   $ gfortran -O2 -c zgesvd_ex.f
   $ gfortran -O2 -c zdrot.f
   $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
   $ ./zgesvd_ex
 gives the expected result (with libblas3gf 1.2-4), but
   $ gfortran -O2 -ftree-vectorize -c zdrot.f
   $ gfortran -o zgesvd_ex zgesvd_ex.o zdrot.o -llapack
   $ ./zgesvd_ex
 gives the wrong result.
 This looks like a bug in the gcc vectorizer, and it cannot be
 reproduced with gcc 4.5 from experimental.

 This was fantastic analysis. I actually would like to know how you
 zeroed in onto zdrot to find the problem.

Hi,

I used brute force ;)
libblas3gf 1.2-4 is installed on my system, object files from
libblas3gf 1.2-3 have been unpacked into dir1, half files are moved
into dir2.  then I compiled
  gfortran zgesvd_ex.o dir1/*.o -llapack
and by dichotomy found which object file is causing trouble.

 I shall now try to play around with zdrot to see if I can create a
 test case which reproduces the bug, so that I can file a bug report
 with GCC.

I am afraid that this is not easy, and anyway GCC folks will discard
your bugreport since this bug has been fixed in 4.5.  But I am very
interested to know the exact reason, and if there is a way to prevent
this bug by modifying source files.

Denis



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569436: blas: zgesvd seems to give incorrect results

2010-02-27 Thread Kumar Appaiah
Dear Denis,

On Sat, Feb 27, 2010 at 09:22:53PM +0100, Denis Barbier wrote:
  This was fantastic analysis. I actually would like to know how you
  zeroed in onto zdrot to find the problem.
 
 Hi,
 
 I used brute force ;)
 libblas3gf 1.2-4 is installed on my system, object files from
 libblas3gf 1.2-3 have been unpacked into dir1, half files are moved
 into dir2.  then I compiled
   gfortran zgesvd_ex.o dir1/*.o -llapack
 and by dichotomy found which object file is causing trouble.

Thanks for letting me know; I shall try to use this method the next time.

  I shall now try to play around with zdrot to see if I can create a
  test case which reproduces the bug, so that I can file a bug report
  with GCC.
 
 I am afraid that this is not easy, and anyway GCC folks will discard
 your bugreport since this bug has been fixed in 4.5.  But I am very
 interested to know the exact reason, and if there is a way to prevent
 this bug by modifying source files.

I have been trying, but I am unable to produce errors with my analysis
of zdrot individually. In the hope that someone else smarter than me,
can find a non-functional test case, I attach my source
code. Compiling it with make, and then make FFLAGS=-O3 should result
in some difference when the resulting executable is run for some test
cases, but which test case it is, I am unsure.

HTH, and thanks.

Kumar
-- 
Life's errors cry for the merciful beauty
that can modulate their isolation
into a harmony with the whole.
- Rabindranath Tagore (Fireflies, 1928)













CFLAGS ?= -O2
FFLAGS ?= -O2

all: zdrot_test

zdrot_test: zdrot.o zdrot_test.o

zdrot.o: zdrot.f
gfortran -c $(FFLAGS) $ -o $@

zdrot_test.o: zdrot_test.c
$(CC) -c $(CFLAGS) $ -o $@

.PHONY: clean

clean:
$(RM) zdrot_test.o zdrot.o zdrot_test
  SUBROUTINE ZDROT( N, CX, INCX, CY, INCY, C, S )
*
* .. Scalar Arguments ..
  INTEGERINCX, INCY, N
  DOUBLE PRECISION   C, S
* ..
* .. Array Arguments ..
  COMPLEX*16 CX( * ), CY( * )
* ..
*
*  Purpose
*  ===
*
*  Applies a plane rotation, where the cos and sin (c and s) are real
*  and the vectors cx and cy are complex.
*  jack dongarra, linpack, 3/11/78.
*
*  Arguments
*  ==
*
*  N(input) INTEGER
*   On entry, N specifies the order of the vectors cx and cy.
*   N must be at least zero.
*   Unchanged on exit.
*
*  CX   (input) COMPLEX*16 array, dimension at least
*   ( 1 + ( N - 1 )*abs( INCX ) ).
*   Before entry, the incremented array CX must contain the n
*   element vector cx. On exit, CX is overwritten by the updated
*   vector cx.
*
*  INCX (input) INTEGER
*   On entry, INCX specifies the increment for the elements of
*   CX. INCX must not be zero.
*   Unchanged on exit.
*
*  CY   (input) COMPLEX*16 array, dimension at least
*   ( 1 + ( N - 1 )*abs( INCY ) ).
*   Before entry, the incremented array CY must contain the n
*   element vector cy. On exit, CY is overwritten by the updated
*   vector cy.
*
*  INCY (input) INTEGER
*   On entry, INCY specifies the increment for the elements of
*   CY. INCY must not be zero.
*   Unchanged on exit.
*
*  C(input) DOUBLE PRECISION
*   On entry, C specifies the cosine, cos.
*   Unchanged on exit.
*
*  S(input) DOUBLE PRECISION
*   On entry, S specifies the sine, sin.
*   Unchanged on exit.
*
* =
*
* .. Local Scalars ..
  INTEGERI, IX, IY
  COMPLEX*16 CTEMP
* ..
* .. Executable Statements ..
*
  IF( N.LE.0 )
 $   RETURN
  IF( INCX.EQ.1 .AND. INCY.EQ.1 )
 $   GO TO 20
*
*code for unequal increments or equal increments not equal
*  to 1
*
  IX = 1
  IY = 1
  IF( INCX.LT.0 )
 $   IX = ( -N+1 )*INCX + 1
  IF( INCY.LT.0 )
 $   IY = ( -N+1 )*INCY + 1
  DO 10 I = 1, N
 CTEMP = C*CX( IX ) + S*CY( IY )
 CY( IY ) = C*CY( IY ) - S*CX( IX )
 CX( IX ) = CTEMP
 IX = IX + INCX
 IY = IY + INCY
   10 CONTINUE
  RETURN
*
*code for both increments equal to 1
*
   20 CONTINUE
  DO 30 I = 1, N
 CTEMP = C*CX( I ) + S*CY( I )
 CY( I ) = C*CY( I ) - S*CX( I )
 CX( I ) = CTEMP
   30 CONTINUE
  RETURN
  END
#include stdio.h
#include math.h

typedef struct _dcomplex {
  double real;
  double imag;
} dcomplex;

int
zdrot_(int *N, dcomplex *CX, int *INCX, dcomplex *CY,int *INCY, double *C, double *S);

int
main(void)
{
  int i;
  int n = 5;
  dcomplex cx[] = {{1.0, 1.0}, {2.0, 2.0}, {3.0, 3.0}, {4.0, 4.0}, {5.0, 5.0}, {1.0, 1.0}, {2.0, 2.0}, {3.0, 3.0}, {4.0, 4.0}};
  int incx = 2;
  dcomplex cy[] = {{-5.0, 5.0}, {0.0, 0.0}, {-4.0, 4.0}, {0.0, 0.0}, {-3.0, 3.0}, {0.0, 0.0}, {-2.0, 2.0}, {0.0, 0.0}, {-1.0, 

Processed: Re: Bug#569595: korganizer: Calendar ceased synchronizing with remote iCal file via ftp

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 569595 mysql-server-5.1
Bug #569595 [korganizer] korganizer: Calendar ceased synchronizing with remote 
iCal file via ftp
Bug reassigned from package 'korganizer' to 'mysql-server-5.1'.
Bug No longer marked as found in versions kdepim/4:4.3.4-2.
 forcemerge 569549 569595
Bug#569549: init_available_charsets uses double checked locking
Bug#569595: korganizer: Calendar ceased synchronizing with remote iCal file via 
ftp
Forcibly Merged 569549 569595.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549080: strace

2010-02-27 Thread Arno Schuring
Attached is the strace log from 264-2+b1, the version currently in
unstable. The relevant lines all look like:

open(/lib/libnss_ldap.so.2, O_RDONLY) = -1 ENOENT

Which is exactly what the submitter already indicated. The given
workaround still applies:

$ ln -s nss_ldap.so.1 /lib/libnss_ldap.so.2

execve(/usr/bin/id, [id, aschuring], [/* 20 vars */]) = 0
brk(0)  = 0x15000
uname({sys=Linux, node=genie, ...}) = 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001c000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=11524, ...}) = 0
mmap2(NULL, 11524, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001d000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libselinux.so.1, O_RDONLY)  = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\340?\0\0004\0\0\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=96164, ...}) = 0
mmap2(NULL, 129980, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40025000
mprotect(0x4003c000, 28672, PROT_NONE)  = 0
mmap2(0x40043000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16) = 0x40043000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libc.so.6, O_RDONLY)= 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\250U\1\0004\0\0\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1201860, ...}) = 0
mmap2(NULL, 1238260, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40045000
mprotect(0x40167000, 28672, PROT_NONE)  = 0
mmap2(0x4016e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x121) = 0x4016e000
mmap2(0x40171000, 9460, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40171000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libdl.so.2, O_RDONLY)   = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0$\t\0\0004\0\0\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=9808, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4002
mmap2(NULL, 41136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40174000
mprotect(0x40176000, 28672, PROT_NONE)  = 0
mmap2(0x4017d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x4017d000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40021000
set_tls(0x40020bd0, 0x400212f7, 0x400212f8, 0x40020bd0, 0x40024000) = 0
mprotect(0x4017d000, 4096, PROT_READ)   = 0
mprotect(0x4016e000, 8192, PROT_READ)   = 0
mprotect(0x40043000, 4096, PROT_READ)   = 0
mprotect(0x40023000, 4096, PROT_READ)   = 0
munmap(0x4001d000, 11524)   = 0
statfs64(/selinux, 88, {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=655130, f_bfree=615432, f_bavail=582152, f_files=166656, f_ffree=162836, f_fsid={-350053291, -1454721900}, f_namelen=255, f_frsize=4096}) = 0
brk(0)  = 0x15000
brk(0x36000)= 0x36000
open(/proc/filesystems, O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001d000
read(3, nodev\tsysfs\nnodev\trootfs\nnodev\tb..., 1024) = 284
read(3, , 1024)   = 0
close(3)= 0
munmap(0x4001d000, 4096)= 0
open(/proc/filesystems, O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001d000
read(3, nodev\tsysfs\nnodev\trootfs\nnodev\tb..., 1024) = 284
read(3, , 1024)   = 0
close(3)= 0
munmap(0x4001d000, 4096)= 0
open(/usr/lib/locale/locale-archive, O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=1330784, ...}) = 0
mmap2(NULL, 1330784, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4017f000
close(3)= 0
socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
connect(3, {sa_family=AF_FILE, path=/var/run/nscd/socket}, 110) = -1 ENOENT (No such file or directory)
close(3)= 0
socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
connect(3, {sa_family=AF_FILE, path=/var/run/nscd/socket}, 110) = -1 ENOENT (No such file or directory)
close(3)= 0
open(/etc/nsswitch.conf, O_RDONLY)= 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=523, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, 

Bug#569715: marked as done (php5-xdebug: Is not installable with latest version of PHP5)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 16:00:13 -0500
with message-id 201002271600.13341.chea...@gmail.com
and subject line Done
has caused the Debian Bug report #569715,
regarding php5-xdebug: Is not installable with latest version of PHP5
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
569715: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569715
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: php5-xdebug
Version: 2.0.5-1
Severity: grave
Justification: renders package unusable

The package depends on an unavailable package - PHP5 is at version 5.3

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'oldstable'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages php5-xdebug depends on:
ii  libapache2-mod-php5 [php 5.2.12.dfsg.1-2 server-side, HTML-embedded scripti
ii  libc62.10.2-6Embedded GNU C Library: Shared lib
ii  php5-cgi [phpapi-2006061 5.2.12.dfsg.1-2 server-side, HTML-embedded scripti
ii  php5-cli [phpapi-2006061 5.2.12.dfsg.1-2 command-line interpreter for the p
ii  ucf  3.0025  Update Configuration File: preserv

php5-xdebug recommends no packages.

php5-xdebug suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
php5-xdebug was binNMU-ed. Closing per submitter's request.

---End Message---


Processed: limit source to vlc, tagging 570749

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #vlc (1.0.5-2~2.gbpf22894) UNRELEASED; urgency=medium
 #
 #  * vlc-data Replaces very old vlc as well as vlc-nox (Closes: #570749)
 #
 limit source vlc
Limiting to bugs with field 'source' containing at least one of 'vlc'
Limit currently set to 'source':'vlc'

 tags 570749 + pending
Bug #570749 [vlc-data] vlc-data: file conflict with Lenny version of vlc
Added tag(s) 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 debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571752: FTBFS: FAILED (failures=2)

2010-02-27 Thread Julian Andres Klode
Am Samstag, den 27.02.2010, 19:52 +0100 schrieb Cyril Brulebois:
 Source: python-apt
 Version: 0.7.93.1
 Severity: serious
 Justification: FTBFS
 
 Hi,
 
 your package FTBFS:
 | FAIL: aptsources: Test distribution detection.
 | --
 | Traceback (most recent call last):
 |   File 
 /build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
  line 122, in testDistribution
 | self.assertTrue(d in dist_templates)
 | AssertionError
 | 
 | ==
 | FAIL: aptsources: Test matcher
 | --
 | Traceback (most recent call last):
 |   File 
 /build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
  line 105, in testMatcher
 | self.fail(source entry '%s' has no matcher % s)
 | AssertionError: source entry 'deb http://ubuntu.cs.uaf.edu/ubuntu/ hardy 
 main' has no matcher
 | 
 | --
 | Ran 18 tests in 6.082s
 | 
 | FAILED (failures=2)
 | make[1]: *** [override_dh_auto_test] Error 1

Any idea why those tests succeed on amd64 and i386, but seem to fail on
all other architectures?
-- 
Julian Andres Klode  - Debian Developer, Ubuntu Member

See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.





-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#342685: marked as done (simage(GNU/k*BSD): FTBFS: out of date libtool scripts)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 22:01:52 +
with message-id e1nlujq-0004ea...@ries.debian.org
and subject line Bug#342685: fixed in simage 1.7.0-1
has caused the Debian Bug report #342685,
regarding simage(GNU/k*BSD): FTBFS: out of date libtool scripts
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
342685: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=342685
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: simage
Version: 1.6.1-2
Severity: important

Hi,

the current version of simage fails to build on GNU/kFreeBSD, 
because of outdated libtool.

The version of libtool used in simage is too old to correctly 
support Debian GNU/k*BSD, libtool 1.5.2-1 or later is need.

Here is how to update the libtool in your package:

  libtoolize -c -f
  aclocal (-Im4 might be needed if there is an m4 template dir)
  autoconf

Note that you should probably use the same version of aclocal (from
the packages automake*) as the one used in the package. You could
determine it by looking at the first line of Makefile.in.

It would also be nice if you can ask upstream to update libtool
in their next release.

Thanks in advance

 Petr


---End Message---
---BeginMessage---
Source: simage
Source-Version: 1.7.0-1

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

libsimage-dev_1.7.0-1_amd64.deb
  to main/s/simage/libsimage-dev_1.7.0-1_amd64.deb
libsimage20_1.7.0-1_amd64.deb
  to main/s/simage/libsimage20_1.7.0-1_amd64.deb
simage_1.7.0-1.diff.gz
  to main/s/simage/simage_1.7.0-1.diff.gz
simage_1.7.0-1.dsc
  to main/s/simage/simage_1.7.0-1.dsc
simage_1.7.0.orig.tar.gz
  to main/s/simage/simage_1.7.0.orig.tar.gz



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 342...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steve M. Robbins s...@debian.org (supplier of updated simage package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Feb 2010 12:00:41 -0600
Source: simage
Binary: libsimage20 libsimage-dev
Architecture: source amd64
Version: 1.7.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 libsimage-dev - generic interface to various image file format libraries
 libsimage20 - generic interface to various image file format libraries
Closes: 342685
Changes: 
 simage (1.7.0-1) unstable; urgency=low
 .
   * New upstream.
 - updates to autotooling, including libtool scripts.  Closes: #342685.
 .
   * patches/01_src-Makefile-link-with-c.diff:
   * patches/02_simage-config.patch: Removed.  Issued addressed upstream.
 .
   * patches/01_configure-shared-static.patch: New.  Allow building both
 shared and static libs.
Checksums-Sha1: 
 6197910016e7f58c72e9a9c243e5c3e1d7b81346 1334 simage_1.7.0-1.dsc
 32b2bbfd7f2e7ec3591f506094c9d006e4af3921 752602 simage_1.7.0.orig.tar.gz
 943dc6cc012ba2fcd04c1ad2fa7a26eb1e0a8fa9 2933 simage_1.7.0-1.diff.gz
 37ab28d15759d6d8b4a056b65dadce7f7b2db62e 42770 libsimage20_1.7.0-1_amd64.deb
 7828695cff716f00115617d9b423f2988ce2bbf6 56262 libsimage-dev_1.7.0-1_amd64.deb
Checksums-Sha256: 
 54cb6f822ff73cb1b324248dd37622d572a6be7589e34a5a6e52baec4a71c4da 1334 
simage_1.7.0-1.dsc
 c9a0c43e45f825c46941789f5a8f6c3b61da5ac87e4088cb611ac0fead494def 752602 
simage_1.7.0.orig.tar.gz
 9dd364a2595f9d44402256d470b5a10fab7133c2411269e49db7dd6392bee15f 2933 
simage_1.7.0-1.diff.gz
 3352d185077f20f39f2643bb8678ae6318f4020f82bfbbd141063680e3f3ef36 42770 
libsimage20_1.7.0-1_amd64.deb
 5956ede24c1d3cfed518f3443d0da094b94321dfdfe243d0a1013386e84cbed7 56262 
libsimage-dev_1.7.0-1_amd64.deb
Files: 
 304da1a366094a179875059f52c2b858 1334 graphics optional simage_1.7.0-1.dsc
 c479cc27fc80ffc39142318a233c6ae2 752602 graphics optional 
simage_1.7.0.orig.tar.gz
 60ae5e85d25cc687832e04af21ca98bf 2933 graphics optional simage_1.7.0-1.diff.gz
 1904da1f12eecbcabaf234b84540a497 42770 libs optional 
libsimage20_1.7.0-1_amd64.deb
 9cf5c64ae4e0231ef4e183695ce97bd9 56262 libdevel optional 
libsimage-dev_1.7.0-1_amd64.deb

-BEGIN PGP 

Bug#571752: FTBFS: FAILED (failures=2)

2010-02-27 Thread Cyril Brulebois
Julian Andres Klode j...@debian.org (27/02/2010):
 Any idea why those tests succeed on amd64 and i386, but seem to fail
 on all other architectures?

Could that be that you rely on network access for those tests? Then,
different buildd configurations would explain apparently-arch-specific
issues?

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#559427: libglib2.0-0: GTK open dialog crash if folder contain bash script file

2010-02-27 Thread Константин
Hi Luca.

libglib2.0-0/sid uptodate 2.22.4-1

I put  badmime.cache to  ~/.local/share/mime/mime.cache

But i can not reproduce segfault.
I am glad that everything works.

Regards.
Konstasntin.


2010/2/27 Luca Bruno lethalma...@gmail.com:
 tag 559427 unreproducible
 thanks

 Are you able to reproduce it if you put badmime.cache underI put
 ~/.local/share/mime/mime.cache? I'm not able to reproduce it with glib
 2.22.3-2.

 --
 http://www.debian.org - The Universal Operating System

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

 iQIcBAEBCAAGBQJLiW4oAAoJEETrFmfSwntrzwUP/2PV0NKnMsdBkAobljulqa8R
 JG9fUyVGP4GuocDibTyVH4K8rEbEVO6KBiLD+pZEYxOFLTr7TENm+SuqKa4tu6KJ
 wvsQNLUK8LFm9ic5DaPORj2wQJWtsXEY0cBKlv74RVHYSLiLXR6ViIAyU7gscEia
 UiUaE17cMc4whQXspnO1A4ihOn3C53qizO2rghDis3TN5259vTaq5HKfOUGHMwmR
 c7ldqs+4ze9U+G43O5zBTu/fBchmw1Zc/AbAskCrJTW9skSPZ0RLfBERbJRfyQHT
 MWurbCv8LFT5G/5GnKS0dKoq/gDkb5fad/ty8pM2jvQB11saQ6WyKhmTSqpnwKIB
 zdnIns41xeCwKGRjIv/BpwgzF1UfasawQ+bhIQY8pLcRi6vd01GPqAkZnv+bqN8m
 +qrDgOjDXVErmoeXhGLmGQI+PSDlK2LxGTg4ttCu3S64SKsEy9qcwAiNMBdO6BpZ
 i8ibgitzVCeMqSIJ33Uk0PaLqHHW01rDEIfYU4u9TLGTwCzeFxNwaU+Sb7HzpVtt
 xS/gYoaqM12ixK8Zp1c3hU8vZ5oqB2Ejyt7jwq+ALSiVFm5AUHLDpkZDNrbBwgeG
 tnKVAD+XOGPbCLUHFc3uJ1/ZA4MCTVuqAOPBxp8T6WlMVXB/vnAbvnO5fTU6YxkO
 CX7nDvD6Om1dUB4rBqT6
 =U2S5
 -END PGP SIGNATURE-





-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#571752: FTBFS: FAILED (failures=2)

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 571752 pending
Bug #571752 [src:python-apt] FTBFS: FAILED (failures=2)
Added tag(s) 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 debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571752: FTBFS: FAILED (failures=2)

2010-02-27 Thread Julian Andres Klode
tag 571752 pending
thanks

Am Samstag, den 27.02.2010, 23:13 +0100 schrieb Cyril Brulebois:
 Julian Andres Klode j...@debian.org (27/02/2010):
  Any idea why those tests succeed on amd64 and i386, but seem to fail
  on all other architectures?
 
 Could that be that you rely on network access for those tests? Then,
 different buildd configurations would explain apparently-arch-specific
 issues?

The problem was that the Ubuntu mirror information was set for i386 and
amd64 only; thus causing the test suite to not recognize Ubuntu mirrors
at all on other architectures.

Upload is pending.

-- 
Julian Andres Klode  - Debian Developer, Ubuntu Member

See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.





-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571752: marked as done (FTBFS: FAILED (failures=2))

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sat, 27 Feb 2010 22:51:45 +
with message-id e1nlvvh-0004nh...@ries.debian.org
and subject line Bug#571752: fixed in python-apt 0.7.93.3
has caused the Debian Bug report #571752,
regarding FTBFS: FAILED (failures=2)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571752: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571752
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: python-apt
Version: 0.7.93.1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS:
| FAIL: aptsources: Test distribution detection.
| --
| Traceback (most recent call last):
|   File 
/build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
 line 122, in testDistribution
| self.assertTrue(d in dist_templates)
| AssertionError
| 
| ==
| FAIL: aptsources: Test matcher
| --
| Traceback (most recent call last):
|   File 
/build/buildd-python-apt_0.7.93.2-alpha-iwgiJm/python-apt-0.7.93.2/tests/test_aptsources.py,
 line 105, in testMatcher
| self.fail(source entry '%s' has no matcher % s)
| AssertionError: source entry 'deb http://ubuntu.cs.uaf.edu/ubuntu/ hardy 
main' has no matcher
| 
| --
| Ran 18 tests in 6.082s
| 
| FAILED (failures=2)
| make[1]: *** [override_dh_auto_test] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=python-apt

Mraw,
KiBi.


---End Message---
---BeginMessage---
Source: python-apt
Source-Version: 0.7.93.3

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

python-apt-dbg_0.7.93.3_amd64.deb
  to main/p/python-apt/python-apt-dbg_0.7.93.3_amd64.deb
python-apt-dev_0.7.93.3_all.deb
  to main/p/python-apt/python-apt-dev_0.7.93.3_all.deb
python-apt_0.7.93.3.dsc
  to main/p/python-apt/python-apt_0.7.93.3.dsc
python-apt_0.7.93.3.tar.gz
  to main/p/python-apt/python-apt_0.7.93.3.tar.gz
python-apt_0.7.93.3_amd64.deb
  to main/p/python-apt/python-apt_0.7.93.3_amd64.deb



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

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

Debian distribution maintenance software
pp.
Julian Andres Klode j...@debian.org (supplier of updated python-apt package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 27 Feb 2010 23:26:45 +0100
Source: python-apt
Binary: python-apt python-apt-dbg python-apt-dev
Architecture: source amd64 all
Version: 0.7.93.3
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
 python-apt-dev - Python interface to libapt-pkg (development files)
Closes: 571752
Changes: 
 python-apt (0.7.93.3) unstable; urgency=low
 .
   * data/templates/Ubuntu.info.in:
 - Use generic MirrorsFile key instead of per-architecture ones in
   order to fix FTBFS on !amd64 !i386 (Closes: #571752)
Checksums-Sha1: 
 c254f65557f2645432c9ea18b4831f63ab944cb0 1234 python-apt_0.7.93.3.dsc
 b2f94b5ad2cd53038462db258c891e89280d0706 271707 python-apt_0.7.93.3.tar.gz
 bb498d44e477140e18421896e1d4c59bb39a9f00 672040 python-apt_0.7.93.3_amd64.deb
 5b7aa30f1a8f048d6cd6cccfe5743630aac37d7a 3478036 
python-apt-dbg_0.7.93.3_amd64.deb
 87384915c9dfc516ad3cc6a102f5bd456bc36d11 22344 python-apt-dev_0.7.93.3_all.deb
Checksums-Sha256: 
 b8ca6597cb7f52cdc12b0931e7f1e182f3edcae2ba1d12a485908fd2003f5c9f 1234 
python-apt_0.7.93.3.dsc
 bd4c2f89c897eed7d78697db7089b25e8f1895e8ec875d4e6c7d5b0a92b3cf4e 271707 
python-apt_0.7.93.3.tar.gz
 e77d49c9832b6f65e50f634c567d14c849a81d34d482b424f0d9d11e4e6de80c 672040 
python-apt_0.7.93.3_amd64.deb
 4dfcd3ea8f9b43833677da34a634e2d130ae596d5acefea747704343508bcf1a 3478036 
python-apt-dbg_0.7.93.3_amd64.deb
 8e0b4d14ae3bdc8651ea2d85a6635f0275ee8003b033151675171278b4f66148 22344 

Bug#571724: Fix

2010-02-27 Thread Gerhard Rieger

To fix this bug, just replace the two fd1 by rfd.

Regards
Gerhard



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571779: dvi2ps: FATAL-- cannot open fontdesc file bikan-mor2

2010-02-27 Thread Adam M. Costello
Package: dvi2ps
Version: 4.1j-2
Severity: grave
Justification: renders package unusable

Whenever I run 'dvi2ps foo' I get the following error message (and
nothing else):

dvi2ps: FATAL-- cannot open fontdesc file bikan-mor2

This used to work.  It happens even for a trivial foo.tex:

\documentclass{article}
\begin{document}
hello, world
\end{document}

I then produce foo.dvi with either 'latex foo' (from texlive-latex-base)
or 'jlatex foo' (from jtex-bin).  Either way, dvi2ps fails, complaining
about bikan-mor2.

dvi2ps worked for me for many years, but I hadn't tried it in the last
few years, so some upgrade in the last few years must have broken it.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages dvi2ps depends on:
ii  debconf [debconf-2.0]1.5.27  Debian configuration management sy
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libfreetype6 2.3.9-4.1   FreeType 2 font engine, shared lib
ii  libkpathsea4 2007.dfsg.2-6   TeX Live: path search library for 
ii  texlive-base-bin 2007.dfsg.2-6   TeX Live: Essential binaries
ii  vflib3   3.6.14.dfsg-1.1 Versatile Font Library

dvi2ps recommends no packages.

Versions of packages dvi2ps suggests:
ii  dvi2ps-fontdata-ja1.0.1-2Font data for dvi2ps-j and dvi2dvi

-- debconf information:
  dvi2ps/fontdesc:
  dvi2ps/configk:



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571780: python-pydolfin0: Cannot import dolfin from python.

2010-02-27 Thread Guillaume Yziquel
Package: python-pydolfin0
Version: 0.9.7-1
Severity: grave
Justification: renders package unusable


Recently upgraded to the newest packaging of dolfin. I cannot import dolfin 
from python:

yziq...@seldon:~$ python
Python 2.5.5 (r255:77872, Feb  2 2010, 00:25:36) 
[GCC 4.4.3] on linux2
Type help, copyright, credits or license for more information.
 from dolfin import *
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.5/site-packages/dolfin/__init__.py, line 32, in 
module
from constant import *
  File /usr/lib/python2.5/site-packages/dolfin/constant.py, line 14, in 
module
class Constant(ufl.Function, cpp.Constant):
AttributeError: 'module' object has no attribute 'Function'
 

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (700, 'stable'), (500, 'stable'), (90, 
'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_CH.UTF-8, LC_CTYPE=fr_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-pydolfin0 depends on:
ii  libamd2.2.0  1:3.4.0-1   approximate minimum degree orderin
ii  libarpack2   2.1+parpack96.dfsg-2+b1 Fortran77 subroutines to solve lar
ii  libatlas3gf-base 3.6.0-24Automatically Tuned Linear Algebra
ii  libblas3gf [libb 1.2-3   Basic Linear Algebra Subroutines 3
ii  libboost-filesys 1.40.0-6+b1 filesystem operations (portable pa
ii  libboost-program 1.40.0-6+b1 program options library for C++
ii  libc62.10.2-2GNU C Library: Shared libraries
ii  libcamd2.2.0 1:3.4.0-1   symmetric approximate minimum degr
ii  libccolamd2.7.1  1:3.4.0-1   constrained column approximate lib
ii  libcholmod1.7.1  1:3.4.0-1   sparse Cholesky factorization libr
ii  libcolamd2.7.1   1:3.4.0-1   column approximate minimum degree 
ii  libdolfin0   0.9.7-1 shared libraries for DOLFIN
ii  libdolfin0-dev   0.9.7-1 Shared links and header files for 
ii  libgcc1  1:4.4.2-9   GCC support library
ii  liblapack3gf [li 3.2.1-2 library of linear algebra routines
ii  libopenmpi1.31.3.3-4 high performance message passing l
ii  libpetsc3.0.03.0.0.dfsg-5.1  Shared libraries for version 3.0.0
ii  libslepc3.0.03.0.0-p7.dfsg-2 Scalable Library for Eigenvalue Pr
ii  libstdc++6   4.4.2-9 The GNU Standard C++ Library v3
ii  libumfpack5.4.0  1:3.4.0-1   sparse LU factorization library
ii  libx11-6 2:1.3.3-1   X11 client-side library
ii  libxml2  2.7.6.dfsg-2+b1 GNOME XML library
ii  python   2.5.4-9 An interactive high-level object-o
ii  python-central   0.6.14+nmu2 register and build utility for Pyt
ii  zlib1g   1:1.2.3.4.dfsg-3compression library - runtime

python-pydolfin0 recommends no packages.

Versions of packages python-pydolfin0 suggests:
ii  dolfin-doc0.9.7-1Documentation and demo programs fo

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571782: gawk: FTBFS: testsuite issues

2010-02-27 Thread Cyril Brulebois
Source: gawk
Version: 1:3.1.6.dfsg-4
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS on all buildds (at least 7 of them right now) in the
testsuite:
| […]
|  test/_mbfw1
| Site
|   Kungsbacka
|  länGöteborg
| Stenungsund
|  test/_mbprintf1
| AAA|
| ÅÃÆ |
| if grep FAILED log-check /dev/null ; then \
|   exit 1 ; \
|   fi
| make: *** [build-stamp] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=gawk

Mraw,
KiBi.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571403: glassfish: FTBFS: package javax.management.j2ee.statistics does not exist

2010-02-27 Thread Varun Hiremath
On Sat, 27 Feb, 2010 at 09:57:01AM +0100, Lucas Nussbaum wrote:
 On 26/02/10 at 16:00 -0500, Varun Hiremath wrote:
  Hi Lucas,
  
  On Thu, 25 Feb, 2010 at 11:18:12AM +0100, Lucas Nussbaum wrote:
   Source: glassfish
   Version: 1:2ur2-b04-4
   Severity: serious
   User: debian...@lists.debian.org
   Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
   Justification: FTBFS on amd64
   
   Hi,
   
   During a rebuild of all packages in sid, your package failed to build on
   amd64.
  
  I can't reproduce this bug. Full build log is available here:
  http://people.debian.org/~varun/build-logs/glassfish_2ur2-b04-4_amd64.build
 
 I tried again, and I can still reproduce it, sorry.
 Where does javax.management.j2ee.statistics come from?

Hmmm.. I tried building the package again today, and I could reproduce
it. This seems very strange, because all the required classes are
present in the javaee.jar, which is included in the classpath. In
fact, if you try to rebuild the package from the failed state; it
builds fine. I'm not sure what is going on here.

Thanks,
Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571759: gcc-4.5: contains non-free manpage

2010-02-27 Thread Matthias Klose

wont't fix before the final 4.5.0 release. until then, please enjoy the man 
pages.



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571792: gjs: FTBFS on kfreebsd: Failed to launch message bus for test script to run

2010-02-27 Thread Cyril Brulebois
Source: gjs
Version: 0.5-1
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| Running dbus-launch --config-file=./uninstalled-test-bus.conf
| Created config file ./uninstalled-test-bus.conf with ./test-services 
servicedir
| ./test/run-with-dbus: Failed to launch message bus for test script to run
| make[2]: *** [test] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=gjs

Mraw,
KiBi.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571791: dpkg fails to configure clisp package because of non-ascii char in CLC

2010-02-27 Thread Pierre THIERRY
Package: clisp
Version: 1:2.44.1-4.1
Severity: grave

When dpkg tries to configure the clisp package, I get the following
error:

8--8--
Installing clc...
;; Loading file /usr/lib/clisp-2.44.1/install-clc.lisp ...
;;  Loading file 
/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp
 ...
Error during loading of common-lisp-controller.lisp:
invalid byte #xC3 in CHARSET:ASCII conversion

install-clc error:
invalid byte #xC3 in CHARSET:ASCII conversion

Building of new image failed!
8--8--

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (600, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages clisp depends on:
ii  common-lisp-controller6.18   Common Lisp source and compiler ma
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libdb4.6  4.6.21-16  Berkeley v4.6 Database Libraries [
ii  libffcall11.10+2.41-3Foreign Function Call Libraries
ii  libncurses5   5.7+20090803-2 shared libraries for terminal hand
ii  libreadline5  5.2-7  GNU readline and history libraries
ii  libsigsegv0   2.5-3  Library for handling page faults i
ii  libx11-6  2:1.3.3-1  X11 client-side library
ii  libxau6   1:1.0.5-1  X11 authorisation library
ii  libxext6  2:1.1.1-2  X11 miscellaneous extension librar
ii  libxpm4   1:3.5.8-1  X11 pixmap library

clisp recommends no packages.

Versions of packages clisp suggests:
pn  clisp-dev   none   (no description available)
ii  clisp-doc   1:2.44.1-4.1 GNU CLISP, a Common Lisp implement
ii  gdb 7.0.1-2  The GNU Debugger
ii  slime   1:20090908-1 Superior LISP Interaction Mode for

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571725: marked as done (anki: Missing dependency on python-beautifulsoup)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 00:47:09 +
with message-id e1nlxjn-0005wr...@ries.debian.org
and subject line Bug#571725: fixed in anki 0.9.9.8.6-2
has caused the Debian Bug report #571725,
regarding anki: Missing dependency on python-beautifulsoup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571725: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571725
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: anki
Version: 0.9.9.8.6-1
Severity: grave
Justification: renders package unusable

c...@ckone:~$ anki
Traceback (most recent call last):
  File /usr/bin/anki, line 8, in module
ankiqt.run()
  File /usr/share/anki/ankiqt/__init__.py, line 186, in run
ui.importAll()
  File /usr/share/anki/ankiqt/ui/__init__.py, line 14, in importAll
import exporting
  File /usr/share/anki/ankiqt/ui/exporting.py, line 7, in module
from anki.exporting import exporters as exporters_
  File /usr/share/anki/anki/exporting.py, line 20, in module
from BeautifulSoup import BeautifulSoup as BS
ImportError: No module named BeautifulSoup

Installing python-beautifulsoup fixed this.

   Carsten

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31.6 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages anki depends on:
ii  python2.5.4-9An interactive high-level object-o
ii  python-qt44.7-2  Python bindings for Qt4
ii  python-simplejson 2.0.9-2simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.5.8-1SQL toolkit and Object Relational 
ii  python-support1.0.6.1automated rebuilding support for P

Versions of packages anki recommends:
pn  kakasinone (no description available)
ii  python-matplotlib 0.99.1.2-3 Python based plotting system in a 

Versions of packages anki suggests:
ii  dvipng1.12-3 convert DVI files to PNG graphics

-- no debconf information


---End Message---
---BeginMessage---
Source: anki
Source-Version: 0.9.9.8.6-2

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

anki_0.9.9.8.6-2.diff.gz
  to main/a/anki/anki_0.9.9.8.6-2.diff.gz
anki_0.9.9.8.6-2.dsc
  to main/a/anki/anki_0.9.9.8.6-2.dsc
anki_0.9.9.8.6-2_all.deb
  to main/a/anki/anki_0.9.9.8.6-2_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 571...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Bombe a...@debian.org (supplier of updated anki package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 28 Feb 2010 01:33:51 +0100
Source: anki
Binary: anki
Architecture: source all
Version: 0.9.9.8.6-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Bombe a...@debian.org
Changed-By: Andreas Bombe a...@debian.org
Description: 
 anki   - extensible flashcard learning program
Closes: 571725
Changes: 
 anki (0.9.9.8.6-2) unstable; urgency=low
 .
   * Add Depends on python-beautifulsoup, it is not as optional as the
 README suggests (Closes: 571725)
   * Remove Build-Depends-Indep on python-sqlalchemy, another one no
 longer needed since unihan.db is not built anymore
Checksums-Sha1: 
 02445130d6ffcb5b75603a4dde5d17be6486bcd6 1015 anki_0.9.9.8.6-2.dsc
 12b2e24c56d71b5cd853f53bbc21de4045035903 8039 anki_0.9.9.8.6-2.diff.gz
 170094cf72669b771ea16efe5c33122f8ba461da 1212036 anki_0.9.9.8.6-2_all.deb
Checksums-Sha256: 
 c767a4e638687d3dfab9de7c4eb70e250cf3c3cbab87a23206a49b2e37213598 1015 
anki_0.9.9.8.6-2.dsc
 c10aeca81191a05160eece4289dcd1c42f5c9d23b2d20b79759de478a524a1fc 8039 
anki_0.9.9.8.6-2.diff.gz
 d699c75b0bec8bb08ea0f61698e0a835099d44301463d03bde7a341ed30ca53e 1212036 
anki_0.9.9.8.6-2_all.deb
Files: 
 070fa239a1b31fa2ad080a26981c2fd5 1015 misc optional anki_0.9.9.8.6-2.dsc
 5ba313fdccaa9105cb7a241997297d73 8039 misc optional anki_0.9.9.8.6-2.diff.gz
 f77ecfda4c4ae39fd87db68d61dd177b 1212036 misc optional 

Processed: Bug #567714 causes ftbfs: merging and making RC

2010-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 571334 tex-common
Bug #571334 [src:plastex] plastex: FTBFS: Dependencies installation failed.
Bug reassigned from package 'src:plastex' to 'tex-common'.
Bug No longer marked as found in versions plastex/0.9.2-1.
 forcemerge 567714 571334
Bug#567714: tex-common doesn't install without texlive-base
Bug#571334: plastex: FTBFS: Dependencies installation failed.
Bug#567716: Subject: tex-common fails to install when texlive-base is not 
installed
Forcibly Merged 567714 567716 571334.

 severity 567714 serious
Bug #567714 [tex-common] tex-common doesn't install without texlive-base
Bug #567716 [tex-common] Subject: tex-common fails to install when texlive-base 
is not installed
Bug #571334 [tex-common] plastex: FTBFS: Dependencies installation failed.
Severity set to 'serious' from 'important'

Severity set to 'serious' from 'important'

Severity set to 'serious' from 'important'

 stop
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571334: Bug #567714 causes ftbfs: merging and making RC

2010-02-27 Thread Stuart Prescott

reassign 571334 tex-common
forcemerge 567714 571334 
severity 567714 serious 
stop

The current uninstallability of tex-common causes the plastex package to 
ftbfs. This is clearly not a bug in plastex so reassigning to tex-common. 
It's still a ftbfs-issue so probably still serious but I have precisely zero 
interest in arguing about severity levels.

cheers
Stuart

-- 
Stuart Prescott www.nanoNANOnano.net


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


Bug#571169: marked as done (libstdc++: libstdc++.so.6: ELF load command address/offset not properly aligned)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 02:33:58 +0100
with message-id 4b89c806.7000...@debian.org
and subject line fixed in 4.5-20100227-1
has caused the Debian Bug report #571169,
regarding libstdc++: libstdc++.so.6: ELF load command address/offset not 
properly aligned
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571169
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libstdc++6
Version: 4.5-20100222-1
Severity: critical
File: libstdc++
Justification: breaks the whole system


I just updated libstdc++6 from experimental and this is the result when load-
ing any C++ program, after upgrade, include the entire APT suite:

apt-cache: error while loading shared libraries: libstdc++.so.6: ELF load
command address/offset not properly aligned

It makes my system unbootable. I've repaired the damage but others may not be
so lucky.

(Yes, I know it's experimental.)

-- System Information:
Debian Release: squeeze/sid
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libstdc++6 depends on:
ii  gcc-4.5-base4.5-20100222-1   The GNU Compiler Collection (base 
ii  libc6   2.11-0exp5   Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.5-20100222-1 GCC support library

libstdc++6 recommends no packages.

libstdc++6 suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---

Version: 4.5-20100227-1

seems to be fixed, didn't investigate why ...

---End Message---


Bug#567745: marked as done (subvertpy: fails to co-install with python2.6-minimal)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 02:32:29 +0100
with message-id 1267320749.13489.0.ca...@ganieda
and subject line Marking as fixed
has caused the Debian Bug report #567745,
regarding subvertpy: fails to co-install with python2.6-minimal
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
567745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567745
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python2.6-minimal
Version: 2.6.4-4
Severity: important

I have successfully installed ‘python2.6-minimal’ (as a dependency of
‘python2.6’) on several machines, so this is not severity ‘serious’.
But on i386 machines, the following error occurs:

=
Preconfiguring packages ...
(Reading database ... 311012 files and directories currently installed.)
Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.4-4_i386.deb) ...
new installation of python2.6-minimal; /usr/lib/python2.6/site-packages is a 
directory
which is expected a symlink to /usr/local/lib/python2.6/dist-packages.
please find the package shipping files in /usr/lib/python2.6/site-packages and
file a bug report to ship these in /usr/lib/python2.6/dist-packages instead
aborting installation of python2.6-minimal
dpkg: error processing 
/var/cache/apt/archives/python2.6-minimal_2.6.4-4_i386.deb (--unpack):
 subprocess new pre-installation script returned error exit status 1
=

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686 (SMP w/1 CPU core)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python2.6-minimal depends on:
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libssl0.9.8 0.9.8k-8 SSL shared libraries
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages python2.6-minimal recommends:
pn  python2.6 none (no description available)

Versions of packages python2.6-minimal suggests:
ii  binfmt-support1.2.15 Support for extra binary formats


---End Message---
---BeginMessage---
This issue has only been present in some versions in sid that have now
been superseded so I'm closing this bug.

---End Message---


Bug#571170: marked as done (libstdc++.so.6: ELF load command address/offset not properly aligned)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 02:33:58 +0100
with message-id 4b89c806.7000...@debian.org
and subject line fixed in 4.5-20100227-1
has caused the Debian Bug report #571169,
regarding libstdc++.so.6: ELF load command address/offset not properly aligned
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571169
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libstdc++6
Version: 4.5-20100222-1
Severity: critical
File: libstdc++
Justification: breaks the whole system


I just updated libstdc++6 from experimental and this is the result when load-
ing any C++ program, after upgrade, include the entire APT suite:

apt-cache: error while loading shared libraries: libstdc++.so.6: ELF load
command address/offset not properly aligned

It makes my system unbootable. I've repaired the damage but others may not be
so lucky.

(Yes, I know it's experimental.)

-- System Information:
Debian Release: squeeze/sid
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libstdc++6 depends on:
ii  gcc-4.5-base4.5-20100222-1   The GNU Compiler Collection (base
ii  libc6   2.11-0exp5   Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.5-20100222-1 GCC support library

libstdc++6 recommends no packages.

libstdc++6 suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---

Version: 4.5-20100227-1

seems to be fixed, didn't investigate why ...

---End Message---


Bug#571431: marked as done (libajaxtags-java: FTBFS: java errors)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 01:35:32 +
with message-id e1nly4c-0002cj...@ries.debian.org
and subject line Bug#571431: fixed in libajaxtags-java 1.3~rc7-4
has caused the Debian Bug report #571431,
regarding libajaxtags-java: FTBFS: java errors
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571431: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571431
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libajaxtags-java
Version: 1.3~rc7-3
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100224 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 test -x debian/rules
 dh_testroot
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/commons-beanutils.jar:/usr/share/java/commons-lang.jar:/usr/share/java/jericho-html.jar:/usr/share/java/jsp-api-2.1.jar:/usr/share/java/servlet-api-2.5.jar:/usr/share/java/struts-1.2.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main -Dcompile.debug=true 
 -Dcompile.optimize=true clean
 Buildfile: 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/build.xml
 
 clean:
 
 BUILD SUCCESSFUL
 Total time: 0 seconds
 rm -f debian/stamp-ant-build
 dh_clean 
 rm -f -r lib src/main/resources/META-INF
  dpkg-source -b libajaxtags-java-1.3~rc7
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building libajaxtags-java using existing 
 libajaxtags-java_1.3~rc7.orig.tar.gz
 dpkg-source: info: building libajaxtags-java in 
 libajaxtags-java_1.3~rc7-3.diff.gz
 dpkg-source: info: building libajaxtags-java in libajaxtags-java_1.3~rc7-3.dsc
  debian/rules build
 test -x debian/rules
 mkdir -p .
 mkdir -p lib src/main/resources/META-INF
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/commons-beanutils.jar:/usr/share/java/commons-lang.jar:/usr/share/java/jericho-html.jar:/usr/share/java/jsp-api-2.1.jar:/usr/share/java/servlet-api-2.5.jar:/usr/share/java/struts-1.2.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main -Dcompile.debug=true 
 -Dcompile.optimize=true jar
 Buildfile: 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/build.xml
 
 clean:
 
 build:
 [mkdir] Created dir: 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/bin
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/build.xml:42:
  warning: 'includeantruntime' was not set, defaulting to 
 build.sysclasspath=last; set to false for repeatable builds
 [javac] Compiling 31 source files to 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/bin
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/src/main/java/org/ajaxtags/server/BaseAjaxObserver.java:47:
  warning: unmappable character for encoding ASCII
 [javac]   this.xml = null; // daten zur??cksetzen
 [javac]^
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/src/main/java/org/ajaxtags/server/BaseAjaxObserver.java:47:
  warning: unmappable character for encoding ASCII
 [javac]   this.xml = null; // daten zur??cksetzen
 [javac] ^
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/src/main/java/org/ajaxtags/server/CallbackObservable.java:61:
  warning: unmappable character for encoding ASCII
 [javac]   // es hat sich was ge??ndert
 [javac]^
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/src/main/java/org/ajaxtags/server/CallbackObservable.java:61:
  warning: unmappable character for encoding ASCII
 [javac]   // es hat sich was ge??ndert
 [javac] ^
 [javac] 
 /build/user-libajaxtags-java_1.3~rc7-3-amd64-p4WrKS/libajaxtags-java-1.3~rc7/src/main/java/org/ajaxtags/server/CallbackObservable.java:66:
  warning: unmappable character for encoding ASCII
 [javac]   // es kann ein fehler passieren wenn sich hier nichts 
 ge??ndert hat
 [javac] 

Bug#571724: socat: FTBFS on kfreebsd-*: error: 'struct single' has no member named 'fd1'

2010-02-27 Thread Chris Taylor
I'll prepare a patch and upload it later today.

-Chris



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#561918: client certificate authentication broken

2010-02-27 Thread Christoph Anton Mitterer

FYI: RFC 5746 provides the solution to the renegotiation security attack.


Cheers,
Chris.


This message was sent using IMP, the Internet Messaging Program.




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#562423: marked as done (lingot - Fails silent if only ALSA is availabe)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 03:48:55 +
with message-id e1nla9h-0004va...@ries.debian.org
and subject line Bug#562423: fixed in lingot 0.8.0-1
has caused the Debian Bug report #562423,
regarding lingot - Fails silent if only ALSA is availabe
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
562423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=562423
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: lingot
Version: 0.7.4-2
Severity: grave

lingot only supports OSS and fails silent (at least for a X application)
if /dev/dsp is unavailable.  OSS support is not longer included in the
current kernels, so it is defacto (without the help of other tools)
unusable.

Bastian

-- 
Not one hundred percent efficient, of course ... but nothing ever is.
-- Kirk, Metamorphosis, stardate 3219.8


---End Message---
---BeginMessage---
Source: lingot
Source-Version: 0.8.0-1

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

lingot_0.8.0-1.diff.gz
  to main/l/lingot/lingot_0.8.0-1.diff.gz
lingot_0.8.0-1.dsc
  to main/l/lingot/lingot_0.8.0-1.dsc
lingot_0.8.0-1_i386.deb
  to main/l/lingot/lingot_0.8.0-1_i386.deb
lingot_0.8.0.orig.tar.gz
  to main/l/lingot/lingot_0.8.0.orig.tar.gz



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 562...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niv Sardi xa...@debian.org (supplier of updated lingot package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 26 Feb 2010 13:36:59 +0100
Source: lingot
Binary: lingot
Architecture: source i386
Version: 0.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Niv Sardi xa...@debian.org
Changed-By: Niv Sardi xa...@debian.org
Description: 
 lingot - accurate and easy to use musical instrument tuner
Closes: 425867 523924 562423 562424 562425 563579
Changes: 
 lingot (0.8.0-1) unstable; urgency=low
 .
   * New upstream release
 (Closes: #562423, #562424, #562425, #563579, #425867, #523924).
   * Add dependency on libasound2-dev and libjack-dev, lingot now uses alsa by 
default!
   * Update Jairo's address in manpage.
   * DH Compat bumped to 7, use debian/clean.
   * Bump standard version to 3.8.4, no change was needed.
Checksums-Sha1: 
 a5646ea11e5df962844e368bef41fc00355a44a7 1015 lingot_0.8.0-1.dsc
 45c9f93dcacca9f07ddb92701cb829fc84460c14 379914 lingot_0.8.0.orig.tar.gz
 475e7611e6316a11a1e93abf724629b45b3483d0 8216 lingot_0.8.0-1.diff.gz
 09fa2620c91cab2be9d89781521b348aa5992090 73218 lingot_0.8.0-1_i386.deb
Checksums-Sha256: 
 872761a9d0b4ad41eb91cd040229e36f928083ba78b3674517fa87a0942d1df9 1015 
lingot_0.8.0-1.dsc
 64b0f4f89a20da8f2a1fe183bc0a5e1ceac4ca497821ab4f87393a1702377b09 379914 
lingot_0.8.0.orig.tar.gz
 ef8cdda0a2e14a50031212efdbc4be124a287399a5fe0b9b2929f046445fec7d 8216 
lingot_0.8.0-1.diff.gz
 12627890766cc2862e50a3ad11b89a8b81757e1cf89a2fd10072e4ac6cdc282b 73218 
lingot_0.8.0-1_i386.deb
Files: 
 eedd0dd0632fadfde98ed63b01423258 1015 x11 optional lingot_0.8.0-1.dsc
 1f7c01cda3324560b01b6bea68652e17 379914 x11 optional lingot_0.8.0.orig.tar.gz
 9c77175c6efed0c06bac85f8bd02bf66 8216 x11 optional lingot_0.8.0-1.diff.gz
 3a5a89fa4b083cf6e7e871e856279ccb 73218 x11 optional lingot_0.8.0-1_i386.deb

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

iEYEARECAAYFAkuJzYsACgkQz5U+dsJLkBiofgCgpFZKZ7prKzU48lx0amMW+0cm
WawAn36HAMmfRAr+UkdNkdI7rzey8nnK
=t+V3
-END PGP SIGNATURE-


---End Message---


Bug#571334: Bug #567714 causes ftbfs: merging and making RC

2010-02-27 Thread Norbert Preining
Dear dpkg maintainers,

clone 571334 -1
retitle -1 please clarify return values of dpkg-query
severity -1 normal
thanks

On So, 28 Feb 2010, Stuart Prescott wrote:
 The current uninstallability of tex-common causes the plastex package to 
 ftbfs. This is clearly not a bug in plastex so reassigning to tex-common. 

Could you please clarify in the man page or somewhere else the return
values of dpkg-query.

It was recommended to use dpkg-querey instead of grepping the package
database (lintian warning or error), but dpkg-query just returns 1
when it does not find the given package on the command line. In this
example I used:
stat=$(dpkg-query -W -f='${Status}' texlive-base)
and I expected it NOT to return 1 but something else.

Thanks.

For Stuart:
 It's still a ftbfs-issue so probably still serious but I have precisely zero 
 interest in arguing about severity levels.

Will be fixed in a minute and I will upload a new tex-common. I will
just ignore any return value from dpkg-query as it is black magic to
know what it will return.


Best wishes

Norbert

Norbert Preiningprein...@{jaist.ac.jp, logic.at, debian.org}
JAIST, JapanTU Wien, Austria   Debian TeX Task Force
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094

AIRD OF SLEAT (n. archaic)
Ancient Scottish curse placed from afar on the stretch of land now
occupided by Heathrow Airport.
--- Douglas Adams, The Meaning of Liff



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#567716: marked as done (Subject: tex-common fails to install when texlive-base is not installed)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 04:34:21 +
with message-id e1nlarf-o7...@ries.debian.org
and subject line Bug#571334: fixed in tex-common 2.07
has caused the Debian Bug report #571334,
regarding Subject: tex-common fails to install when texlive-base is not 
installed
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571334: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571334
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: tex-common
Version: 2.06
Severity: important

Hello,

when tex-common is installed while textlive-binaries is already
unpacked, but techlive-base isn't installed, postinst aborts with an error:

...
+ dpkg-query -W -f=${Status} texlive-base
No packages found matching texlive-base.
+ stat=
dpkg: error processing tex-common (--configure):
 subprocess installed post-installation script returned error exit status 1
...

This can easily be reproduced by installing textlive-binaries in a clean
chroot. (textlive-binaries must be unpacked BEFORE installing tex-common
in order to reproduce the problem)

Maybe tex-common should depend on techlive-base and/or should gracefully
handle the non-existance of texlive-base in postinst when calling
dpkg-query.

Regards,

Tobias


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (1001, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0] 1.5.28 Debian configuration
management sy
ii  dpkg  1.15.5.6   Debian package management
system
ii  ucf   3.0025 Update Configuration File:
preserv

tex-common recommends no packages.

Versions of packages tex-common suggests:
ii  debhelper 7.4.11 helper programs for
debian/rules

Versions of packages texlive-base depends on:
ii  dpkg  1.15.5.6   Debian package management
system
ii  install-info  4.13a.dfsg.1-5 Manage installed
documentation in
ii  luatex0.50.0-1   next generation TeX engine
ii  mime-support  3.48-1 MIME files 'mime.types' 
'mailcap
ii  texlive-binaries  2009-5 Binaries for TeX Live
ii  texlive-common2009-7 TeX Live: Base component
ii  texlive-doc-base  2009-2 TeX Live: TeX Live
documentation

-- debconf information excluded



signature.asc
Description: OpenPGP digital signature
---End Message---
---BeginMessage---
Source: tex-common
Source-Version: 2.07

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

tex-common_2.07.dsc
  to main/t/tex-common/tex-common_2.07.dsc
tex-common_2.07.tar.gz
  to main/t/tex-common/tex-common_2.07.tar.gz
tex-common_2.07_all.deb
  to main/t/tex-common/tex-common_2.07_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 571...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Norbert Preining prein...@debian.org (supplier of updated tex-common package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 28 Feb 2010 13:13:35 +0900
Source: tex-common
Binary: tex-common
Architecture: source all
Version: 2.07
Distribution: unstable
Urgency: high
Maintainer: Debian TeX maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 tex-common - common infrastructure for building and installing TeX
Closes: 566915 571334
Changes: 
 tex-common (2.07) unstable; urgency=high
 .
   * reword the language.{dat,def} trigger action's message to include
 the name of the base format (Closes: #566915)
   * convert some files to UTF8
   * work around an under-specification of dpkg-query that makes the calls
 to it in the configure script break configuration, and thus creates
 FTBFS of unrelated packages (Closes: #571334)
   * bump standards version to 3.8.4, no changes necessary
Checksums-Sha1: 
 

Bug#567714: marked as done (tex-common doesn't install without texlive-base)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 04:34:21 +
with message-id e1nlarf-o7...@ries.debian.org
and subject line Bug#571334: fixed in tex-common 2.07
has caused the Debian Bug report #571334,
regarding tex-common doesn't install without texlive-base
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571334: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571334
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: tex-common
Version: 2.06
Severity: important
Tags: patch

When installing tex-common, whithout having texlive-base installed, postinst 
aborts with an error:

...
+ dpkg-query -W -f=${Status} texlive-base
No packages found matching texlive-base.
+ stat=
dpkg: error processing tex-common (--configure):
 subprocess installed post-installation script returned error exit status 1
...

This can easily be reproduced by creating a Squeeze chroot and install 
texlive-binaries.
(texlive-binaries must be unpacked BEFORE tex-common to reproduce the problem!)

Either tex-common should depend on texlive-base or the dpkg-query-Error should 
be catched in postinst.



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (1001, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii  dpkg  1.15.5.6   Debian package management system
ii  ucf   3.0025 Update Configuration File: preserv

tex-common recommends no packages.

Versions of packages tex-common suggests:
ii  debhelper 7.4.11 helper programs for debian/rules

Versions of packages texlive-base depends on:
ii  dpkg  1.15.5.6   Debian package management system
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  luatex0.50.0-1   next generation TeX engine
ii  mime-support  3.48-1 MIME files 'mime.types'  'mailcap
ii  texlive-binaries  2009-5 Binaries for TeX Live
ii  texlive-common2009-7 TeX Live: Base component
ii  texlive-doc-base  2009-2 TeX Live: TeX Live documentation

-- debconf information excluded


---End Message---
---BeginMessage---
Source: tex-common
Source-Version: 2.07

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

tex-common_2.07.dsc
  to main/t/tex-common/tex-common_2.07.dsc
tex-common_2.07.tar.gz
  to main/t/tex-common/tex-common_2.07.tar.gz
tex-common_2.07_all.deb
  to main/t/tex-common/tex-common_2.07_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 571...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Norbert Preining prein...@debian.org (supplier of updated tex-common package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 28 Feb 2010 13:13:35 +0900
Source: tex-common
Binary: tex-common
Architecture: source all
Version: 2.07
Distribution: unstable
Urgency: high
Maintainer: Debian TeX maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 tex-common - common infrastructure for building and installing TeX
Closes: 566915 571334
Changes: 
 tex-common (2.07) unstable; urgency=high
 .
   * reword the language.{dat,def} trigger action's message to include
 the name of the base format (Closes: #566915)
   * convert some files to UTF8
   * work around an under-specification of dpkg-query that makes the calls
 to it in the configure script break configuration, and thus creates
 FTBFS of unrelated packages (Closes: #571334)
   * bump standards version to 3.8.4, no changes necessary
Checksums-Sha1: 
 a839e9f7593afb4ad61125b6f76527ad4b81b8dd 1130 tex-common_2.07.dsc
 172a24e8e87314250d0802229ca34f54c02e3a26 807316 tex-common_2.07.tar.gz
 8b3050e21e38c91faf1b3fbea2f93c51fe30d375 724058 tex-common_2.07_all.deb

Bug#571334: marked as done (plastex: FTBFS: Dependencies installation failed.)

2010-02-27 Thread Debian Bug Tracking System
Your message dated Sun, 28 Feb 2010 04:34:21 +
with message-id e1nlarf-o7...@ries.debian.org
and subject line Bug#571334: fixed in tex-common 2.07
has caused the Debian Bug report #571334,
regarding plastex: FTBFS: Dependencies installation failed.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
571334: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571334
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: plastex
Version: 0.9.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-2010-02-24 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 Setting up tex-common (2.06) ...
 
 Creating config file /etc/texmf/texmf.d/05TeXMF.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/15Plain.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/45TeXinputs.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/55Fonts.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/65BibTeX.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/75DviPS.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/85Misc.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/90TeXDoc.cnf with new version
 
 Creating config file /etc/texmf/texmf.d/95NonPath.cnf with new version
 
 Creating config file /etc/texmf/updmap.d/00updmap.cfg with new version
 
 Creating config file /etc/texmf/texmf.cnf with new version
 Running mktexlsr. This may take some time... done.
 No packages found matching texlive-base.
 dpkg: error processing tex-common (--configure):
  subprocess installed post-installation script returned error exit status 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010-02-24/plastex_0.9.2-1_lsid64.buildlog

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.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: tex-common
Source-Version: 2.07

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

tex-common_2.07.dsc
  to main/t/tex-common/tex-common_2.07.dsc
tex-common_2.07.tar.gz
  to main/t/tex-common/tex-common_2.07.tar.gz
tex-common_2.07_all.deb
  to main/t/tex-common/tex-common_2.07_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 571...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Norbert Preining prein...@debian.org (supplier of updated tex-common package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 28 Feb 2010 13:13:35 +0900
Source: tex-common
Binary: tex-common
Architecture: source all
Version: 2.07
Distribution: unstable
Urgency: high
Maintainer: Debian TeX maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 tex-common - common infrastructure for building and installing TeX
Closes: 566915 571334
Changes: 
 tex-common (2.07) unstable; urgency=high
 .
   * reword the language.{dat,def} trigger action's message to include
 the name of the base format (Closes: #566915)
   * convert some files to UTF8
   * work around an under-specification of dpkg-query that makes the calls
 to it in the configure script break configuration, and thus creates
 FTBFS of unrelated packages (Closes: #571334)
   * bump standards version to 3.8.4, no changes necessary
Checksums-Sha1: 
 a839e9f7593afb4ad61125b6f76527ad4b81b8dd 1130 tex-common_2.07.dsc
 172a24e8e87314250d0802229ca34f54c02e3a26 807316 tex-common_2.07.tar.gz
 8b3050e21e38c91faf1b3fbea2f93c51fe30d375 724058 tex-common_2.07_all.deb
Checksums-Sha256: 
 4bda178df33d41480a369435997cac593b3f6513b5132db5490674a17584ad81 1130 
tex-common_2.07.dsc
 

Bug#571803: [php-openid] Compatibility problems with PHP 5.3 (mod_php)

2010-02-27 Thread Filipus Klutiero
Package: php-openid
Version: 2.1.3-1
Severity: serious

As discussed in 
http://lists.openidenabled.com/pipermail/dev/2010-January/001524.html has 
serious issues with PHP 5.3. The main problem is the usage of dl() by BigMath. 
BigMath is included by default when including php-openid. mod_php doesn't 
support dl() anymore. Moreover, the call to dl uses the @ operator, which has 
the fun effect that Apache gives a 200 OK return code. This will probably 
confuse many people that don't know PHP debugging tools.

There are some patches available. The project is looking close to dead. I think 
it would be unfortunate if php-openid was removed, but something needs to be 
done.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#561918: client certificate authentication broken

2010-02-27 Thread Mike Hommey
On Sun, Feb 28, 2010 at 03:45:06AM +0100, Christoph Anton Mitterer wrote:
 FYI: RFC 5746 provides the solution to the renegotiation security attack.

And it is planned for 3.12.6.

Mike



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571805: lingot: FTBFS: No package 'libglade-2.0' found

2010-02-27 Thread Cyril Brulebois
Source: lingot
Version: 0.8.0-1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS everywhere:
| configure: error: Package requirements (libglade-2.0) were not met:
| 
| No package 'libglade-2.0' found

Full build logs:
  https://buildd.debian.org/status/package.php?suite=unstablep=lingot

Mraw,
KiBi.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org