Bug#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Christian Perrier
Package: crm114
Version: 20090423-1
Severity: critical
Justification: causes serious data loss

Changes (again...) in .css files just made me lose about one full day of
mail...

All non whitelisted mails were apparently just trashed after the line, in my
.procmailrc, where they're piped to crm114.

Oh, I certainly got warned by mail as there is a NEWS.Debian entry about
this...and I ust apt-listchanges. Unfortunately, that mail got trashed
just like others.

I find such change inacceptable for release and I already imagine what wll
happen to people who upgrade their mail servers from lenny to squeeze.

Actually, even the advice of recreating .css files is another way to lose
data.

I'm really very seriously considering if I should keep on using crm114 if
such changes happen and, at this very moment, I don't think this software
verson is suitable for release in Debian.

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

Kernel: Linux 2.6.29-1-686 (SMP w/1 CPU core)
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 crm114 depends on:
ii  libc6 2.9-12 GNU C Library: Shared libraries
ii  libtre4   0.7.5-2regexp matching library with appro

Versions of packages crm114 recommends:
ii  metamail  2.7-54 implementation of MIME

crm114 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#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Milan Zamazal
 CP == Christian Perrier bubu...@debian.org writes:

CP Oh, I certainly got warned by mail as there is a NEWS.Debian
CP entry about this...and I ust apt-listchanges. Unfortunately,
CP that mail got trashed just like others.

If you want to prevent such problems, configure apt-listchanges to
display information before installation and to ask for confirmation.

CP I find such change inacceptable for release and I already
CP imagine what wll happen to people who upgrade their mail servers
CP from lenny to squeeze.

This has nothing to do with Debian.  It's an upstream decision.  It's
definitely not popular and if you hate it so much, there are some
options what you can do: 1. complain upstream; 2. use other classifier
than crm114; 3. fork crm114 and develop and maintain your own derivate;
4. write a .css file converter.

CP Actually, even the advice of recreating .css files is another
CP way to lose data.

I don't understand.  Recreating the .css files with mailreaver is
relatively easy and may even clean up and improve the .css files.

CP I'm really very seriously considering if I should keep on using
CP crm114 if such changes happen and, at this very moment, I don't
CP think this software verson is suitable for release in Debian.

I can understand your rage but as I've explained above I can't see in
your report what I should fix in the Debian package.




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



Bug#529306: [PATCH] Do not specify magic cookie for xauth in the xauth command line

2009-05-21 Thread Eygene Ryabinkin
Thu, May 21, 2009 at 09:50:12AM +0400, Eygene Ryabinkin wrote:
 Wed, May 20, 2009 at 05:39:08PM +0200, Mike Massonnet wrote:
  Wow, nice! I didn't take time yet to investigate, thanks for a lot for
  providing this patch. I will make a package for stable asap.
 
 Erm, sorry, sent old patch variant that doesn't produce .Xauthority:
 'quit' should be replaced with 'exit'.  Sorry, wasn't updated the
 patchfile.  Here is the proper one:

And found one more issue -- mcookie was weakened because I am blindly
substituted 'int r' for 'bool r'.  Fixed now.

From 72625a9dacfbd448ba7a84725d66bb2bfc9801f0 Mon Sep 17 00:00:00 2001
From: Eygene Ryabinkin r...@codelabs.ru
Date: Wed, 20 May 2009 18:44:57 +0400
Subject: [PATCH] Do not specify magic cookie for xauth in the xauth command line

Instead, open xauth as a pipe and feed commands via its stdin.

Signed-off-by: Eygene Ryabinkin r...@codelabs.ru
---
 Makefile |3 ++-
 Makefile.freebsd |3 ++-
 Makefile.netbsd  |3 ++-
 Makefile.openbsd |3 ++-
 app.cpp  |5 +++--
 switchuser.cpp   |7 ---
 util.cpp |   32 
 util.h   |   19 +++
 8 files changed, 66 insertions(+), 9 deletions(-)
 create mode 100644 util.cpp
 create mode 100644 util.h

diff --git a/Makefile b/Makefile
index f7d3d2d..240669d 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,8 @@ VERSION=1.3.1
 DEFINES=-DPACKAGE=\$(NAME)\ -DVERSION=\$(VERSION)\ \
-DPKGDATADIR=\$(PREFIX)/share/slim\ -DSYSCONFDIR=\$(CFGDIR)\
 
-OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o panel.o
+OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o \
+   panel.o util.o
 ifdef USE_PAM
 OBJECTS+=PAM.o
 endif
diff --git a/Makefile.freebsd b/Makefile.freebsd
index 3ff326e..c925a39 100644
--- a/Makefile.freebsd
+++ b/Makefile.freebsd
@@ -24,7 +24,8 @@ VERSION=1.3.1
 DEFINES=-DPACKAGE=\$(NAME)\ -DVERSION=\$(VERSION)\ \
-DPKGDATADIR=\$(PREFIX)/share/slim\ -DSYSCONFDIR=\$(CFGDIR)\
 
-OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o panel.o
+OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o \
+   panel.o util.o
 .ifdef USE_PAM
   OBJECTS+=PAM.o 
 .endif
diff --git a/Makefile.netbsd b/Makefile.netbsd
index ad8bb8b..45f33e6 100644
--- a/Makefile.netbsd
+++ b/Makefile.netbsd
@@ -24,7 +24,8 @@ VERSION=1.3.1
 DEFINES=-DPACKAGE=\$(NAME)\ -DVERSION=\$(VERSION)\ \
-DPKGDATADIR=\$(PREFIX)/share/slim\ -DSYSCONFDIR=\$(CFGDIR)\
 
-OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o panel.o
+OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o \
+   panel.o util.o
 .ifdef USE_PAM
   OBJECTS+=PAM.o 
 .endif
diff --git a/Makefile.openbsd b/Makefile.openbsd
index b1829f8..1205b84 100644
--- a/Makefile.openbsd
+++ b/Makefile.openbsd
@@ -20,7 +20,8 @@ VERSION=1.3.1
 DEFINES=-DPACKAGE=\$(NAME)\ -DVERSION=\$(VERSION)\ \
-DPKGDATADIR=\$(PREFIX)/share/slim\ -DSYSCONFDIR=\$(CFGDIR)\
 
-OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o panel.o
+OBJECTS=jpeg.o png.o main.o image.o numlock.o cfg.o switchuser.o app.o \
+   util.o panel.o
 
 .SUFFIXES: .c.o .cpp.o
 
diff --git a/app.cpp b/app.cpp
index 83ae947..04caaa1 100644
--- a/app.cpp
+++ b/app.cpp
@@ -24,6 +24,7 @@
 #include algorithm
 #include app.h
 #include numlock.h
+#include util.h
 
 
 #ifdef HAVE_SHADOW
@@ -1185,8 +1186,8 @@ void App::CreateServerAuth() {
 authfile = cfg-getOption(authfile);
 remove(authfile.c_str());
 putenv(StrConcat(XAUTHORITY=, authfile.c_str()));
-cmd = cfg-getOption(xauth_path) +  -q -f  + authfile +  add :0 .  + 
mcookie;
-system(cmd.c_str());
+Util::add_mcookie(mcookie, :0, cfg-getOption(xauth_path),
+  authfile);
 }
 
 char* App::StrConcat(const char* str1, const char* str2) {
diff --git a/switchuser.cpp b/switchuser.cpp
index e72a8fc..ec298e1 100644
--- a/switchuser.cpp
+++ b/switchuser.cpp
@@ -10,6 +10,7 @@
 */
 
 #include switchuser.h
+#include util.h
 
 using namespace std;
 
@@ -53,10 +54,10 @@ void SwitchUser::Execute(const char* cmd) {
 }
 
 void SwitchUser::SetClientAuth(const char* mcookie) {
-int r;
+bool r;
 string home = string(Pw-pw_dir);
 string authfile = home + /.Xauthority;
 remove(authfile.c_str());
-string cmd = cfg-getOption(xauth_path) +  -q -f  + authfile +  add 
:0 .  + mcookie;
-r = system(cmd.c_str());
+r = Util::add_mcookie(mcookie, :0, cfg-getOption(xauth_path),
+  authfile);
 }
diff --git a/util.cpp b/util.cpp
new file mode 100644
index 000..309ce4f
--- /dev/null
+++ b/util.cpp
@@ -0,0 +1,32 @@
+/* SLiM - Simple Login Manager
+   Copyright (C) 2009 Eygene Ryabinkin r...@codelabs.ru
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either 

Bug#529722: FTBFS; use libboost-serialization-mt

2009-05-21 Thread Steve M. Robbins
Package: barry
Severity: serious
Justification: no longer builds from source

The boost libraries now build only multithreaded (-mt) variant, so
barry needs to link using -lboost_serialization-mt.  


See also
http://lists.alioth.debian.org/pipermail/pkg-lyx-devel/2009-May/003244.html


Patch:

diff -u -r orig/barry-0.14/tools/Makefile.am barry-0.14/tools/Makefile.am
--- orig/barry-0.14/tools/Makefile.am   2008-09-24 20:27:53.0 -0500
+++ barry-0.14/tools/Makefile.am2009-05-21 01:47:00.0 -0500
@@ -20,7 +20,7 @@
 else
 btool_CXXFLAGS = -D__BARRY_BOOST_MODE__ -D_REENTRANT $(AM_CXXFLAGS)
 endif
-btool_LDADD += -lboost_serialization
+btool_LDADD += -lboost_serialization-mt
 endif
 
 if WITH_BOOST
@@ -32,7 +32,7 @@
 else
 bs11nread_CXXFLAGS = -D_REENTRANT $(AM_CXXFLAGS)
 endif
-bs11nread_LDADD += -lboost_serialization
+bs11nread_LDADD += -lboost_serialization-mt
 endif
 
 bidentify_SOURCES = bidentify.cc
Only in barry-0.14/tools: Makefile.am~


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

Kernel: Linux 2.6.29-2-amd64 (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



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



Bug#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Josselin Mouette
Le jeudi 21 mai 2009 à 08:36 +0200, Milan Zamazal a écrit :
  CP == Christian Perrier bubu...@debian.org writes:
 
 CP Oh, I certainly got warned by mail as there is a NEWS.Debian
 CP entry about this...and I ust apt-listchanges. Unfortunately,
 CP that mail got trashed just like others.
 
 If you want to prevent such problems, configure apt-listchanges to
 display information before installation and to ask for confirmation.

Sorry, but the existence of apt-listchanges is not an excuse for
completely breaking existing setups. It can be an excuse for some more
or less important glitches, but not for losing data. 

 This has nothing to do with Debian.

Of course it has to do with Debian, it’s a Debian package. If you don’t
want it to be a Debian problem, maintain the package in your own
repository.

 I don't understand.  Recreating the .css files with mailreaver is
 relatively easy and may even clean up and improve the .css files.

The problem is not whether this is easy or not. The problem is that you
broke existing setups in a way that leads to serious data loss.

 I can understand your rage but as I've explained above I can't see in
 your report what I should fix in the Debian package.

Simple: if there is no reasonable upgrade path, you need to change the
binary package name. And of course, to do that in a way that does not
install the new version automatically. Bonus points go for changing the
binary names as well, so that both versions can be installed at once on
the system.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'   “I recommend you to learn English in hope that you in
  `- future understand things”  -- Jörg Schilling


signature.asc
Description: Ceci est une partie de message numériquement signée


Bug#527005: marked as done (balsa: FTBFS: error: expected declaration specifiers or '...' before 'GtkDestroyNotify')

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 07:02:05 +
with message-id e1m72i1-0005ds...@ries.debian.org
and subject line Bug#527005: fixed in balsa 2.3.28-1
has caused the Debian Bug report #527005,
regarding balsa: FTBFS: error: expected declaration specifiers or '...' before 
'GtkDestroyNotify'
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.)


-- 
527005: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527005
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: balsa
Version: 2.3.25-1
Severity: serious

Hi,

There was an error while trying to autobuild your package:

 Start Time: 20090504-2109

[...]

 Build-Depends: autotools-dev, cdbs (= 0.4.37), debhelper (= 5.0), 
 dh-buildinfo, gnome-pkg-tools, libesmtp-dev, libgmime-2.0-2-dev (= 2.2.21), 
 libcompfaceg1-dev, libgpgme11-dev, libgtkhtml3.14-dev, libgtkspell-dev, 
 libkrb5-dev, libldap2-dev, libltdl3-dev, libpcre3-dev, libpspell-dev (= 
 0.50), libsqlite3-dev, libssl-dev (= 0.9.8), libxml-parser-perl, 
 scrollkeeper, libgtksourceview2.0-dev, libgnome2-dev, libgnomeui-dev, 
 libgnomevfs2-dev, libbonobo2-dev, libglib2.0-dev, libgtk2.0-dev (= 2.10.0), 
 liborbit2-dev, libnotify-dev, libxml2-dev

[...]

 Toolchain package versions: libc6-dev_2.9-9 linux-libc-dev_2.6.29-3 
 g++-4.3_4.3.3-8 gcc-4.3_4.3.3-8 binutils_2.19.1-1 libstdc++6_4.4.0-3 
 libstdc++6-4.3-dev_4.3.3-8
 

[...]

 cc -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
 -DGDK_PIXBUF_DISABLE_DEPRECATED -DGMIME_DISABLE_DEPRECATED 
 -DGNOME_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED_SOURCE 
 -DGNOME_VFS_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED 
 -DPANGO_DISABLE_DEPRECATED -I. -I.. -I.. -I.. -I../libbalsa 
 -I../libbalsa/imap -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 
 -DORBIT2=1 -pthread -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 
 -I/usr/include/gmime-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/orbit-2.0 
 -I/usr/include/gconf/2 -I/usr/include/gnome-vfs-2.0 
 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/libbonobo-2.0 
 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
 -I/usr/include/bonobo-activation-2.0 -I/usr/include/libgnomeui-2.0 
 -I/usr/include/libart-2.0 -I/usr/include/gnome-keyring-1 
 -I/usr/include/libbonoboui-2.0 -I/usr/include/libgnomecanvas-2.0 
 -I/usr/include/libxml2 -I/usr/include/gail-1.0 
 -I/usr/include/gnome-vfs-module-2.0   -D_REENTRANT -DORBIT2=1 -pthread 
 -I/usr/include/libgtkhtml-3.14 -I/usr/include/gtk-2.0 
 -I/usr/include/libgnomeui-2.0 -I/usr/include/libglade-2.0 
 -I/usr/include/enchant -I/usr/include/gconf/2 -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 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
 -I/usr/include/libart-2.0 -I/usr/include/gnome-keyring-1 
 -I/usr/include/libgnome-2.0 -I/usr/include/libbonoboui-2.0 
 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/gnome-vfs-2.0 
 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/orbit-2.0 
 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
 -I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
 -I/usr/include/libxml2 -I/usr/include/gail-1.0  -I/usr/include/libxml2
 -D_REENTRANT -I/usr/include/gtksourceview-2.0 -I/usr/include/libxml2 
 -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 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -D_REENTRANT 
 -I/usr/include/gtkspell-2.0 -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 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-g -O2 -g -Wall -O2 -D_REENTRANT -DORBIT2=1 -pthread 
 -I/usr/include/libgtkhtml-3.14 -I/usr/include/gtk-2.0 
 -I/usr/include/libgnomeui-2.0 -I/usr/include/libglade-2.0 
 -I/usr/include/enchant -I/usr/include/gconf/2 -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 -I/usr/include/glib-2.0 

Bug#529725: file conflicts with java-gcj-compat-dev

2009-05-21 Thread Soeren Sonnenburg
Package: libgcj-common
Version: 1:4.3.3-5
Severity: grave

aot-compile occurs in both packages...

[...]
(Reading database ... 497703 files and directories currently installed.)
Preparing to replace libgcj-common 1:4.3.3-5 (using 
.../libgcj-common_1%3a4.4.0-6_all.deb) ...
Unpacking replacement libgcj-common ...
dpkg: error processing 
/var/cache/apt/archives/libgcj-common_1%3a4.4.0-6_all.deb (--unpack):
 trying to overwrite `/usr/bin/aot-compile', which is also in package 
java-gcj-compat-dev
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libgcj-common_1%3a4.4.0-6_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: squeeze/sid
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-rc6-sonne (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

-- 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#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Milan Zamazal
 JM == Josselin Mouette j...@debian.org writes:

JM Simple: if there is no reasonable upgrade path, you need to
JM change the binary package name. And of course, to do that in a
JM way that does not install the new version automatically. 

This may be a good idea.  Do you know about packages with similar
properties (i.e. changing their data formats incompatibly) so that I
don't invent my own binary package naming scheme?  I can think about
PostgreSQL, but this is bound to upstream versions which is not the case
of crm114 (it doesn't change its data format with each upstream
version).

JM Bonus points go for changing the binary names as well, so that
JM both versions can be installed at once on the system.

I hate changing binary names across releases.




-- 
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#529701: libtool: libtool options not recognized.

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 529701 filezilla
Bug#529701: libtool: libtool options not recognized.
Bug reassigned from package `libtool' to `filezilla'.

 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#529701: libtool: libtool options not recognized.

2009-05-21 Thread Kurt Roeckx
reassign 529701 filezilla
thanks

On Thu, May 21, 2009 at 01:41:03AM +0200, Samuel Thibault wrote:
 ../../libtool: line 841: X--tag=CXX: command not found
 ../../libtool: line 874: libtool: ignoring unknown tag : command not
 found
 ../../libtool: line 841: X--mode=link: command not found
 
 There have been a bunch of issues on the hurd-i386 buildd with
 filezilla, gamin, nautilus-share, wordnet.

Those are all bugs in the package themself.  The problem is that
they mix 1.5 and 2.2 version code.  Most likely aclocal.m4 did
not get updated.

Please file bugs against the packages themself if they
don't have a bug yet.


Kurt




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



Bug#529306: [PATCH] Do not specify magic cookie for xauth in the xauth command line

2009-05-21 Thread Nico Golde
Hi,
* Eygene Ryabinkin r...@codelabs.ru [2009-05-21 10:24]:
 Thu, May 21, 2009 at 09:50:12AM +0400, Eygene Ryabinkin wrote:
  Wed, May 20, 2009 at 05:39:08PM +0200, Mike Massonnet wrote:
   Wow, nice! I didn't take time yet to investigate, thanks for a lot for
   providing this patch. I will make a package for stable asap.
  
  Erm, sorry, sent old patch variant that doesn't produce .Xauthority:
  'quit' should be replaced with 'exit'.  Sorry, wasn't updated the
  patchfile.  Here is the proper one:
 
 And found one more issue -- mcookie was weakened because I am blindly
 substituted 'int r' for 'bool r'.  Fixed now.

Thanks very much, the patch looks good! While you're at it, 
mind to fix the insecure random hexstring generation as 
well?

Cheers
Nico
-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgp0AWtMpc2Ks.pgp
Description: PGP signature


Bug#529306: [PATCH] Do not specify magic cookie for xauth in the xauth command line

2009-05-21 Thread Eygene Ryabinkin
Nico, good day.

Thu, May 21, 2009 at 11:00:23AM +0200, Nico Golde wrote:
 * Eygene Ryabinkin r...@codelabs.ru [2009-05-21 10:24]:
  Thu, May 21, 2009 at 09:50:12AM +0400, Eygene Ryabinkin wrote:
   Wed, May 20, 2009 at 05:39:08PM +0200, Mike Massonnet wrote:
Wow, nice! I didn't take time yet to investigate, thanks for a lot for
providing this patch. I will make a package for stable asap.
   
   Erm, sorry, sent old patch variant that doesn't produce .Xauthority:
   'quit' should be replaced with 'exit'.  Sorry, wasn't updated the
   patchfile.  Here is the proper one:
  
  And found one more issue -- mcookie was weakened because I am blindly
  substituted 'int r' for 'bool r'.  Fixed now.
 

 Thanks very much, the patch looks good! While you're at it, mind to
 fix the insecure random hexstring generation as well?

Sure, did it already, tested and just wanted to send it out.

From 5beb217296e3074cadc5bcb3e40355f54ee705f0 Mon Sep 17 00:00:00 2001
From: Eygene Ryabinkin r...@shadow.codelabs.ru
Date: Thu, 21 May 2009 11:56:27 +0400
Subject: [PATCH] Create interface for random number generator and use it 
everywhere

Don't use rand()/srand() at all -- they are very weak.  Provide our
wrappers for random()/srandom() and make utility function that will
generate seed for srandom.

Rework MIT magic cookie generation: consume 4 bytes of input in one
pass -- random() should produce values that are usable for this purpose.

Signed-off-by: Eygene Ryabinkin r...@shadow.codelabs.ru
---
 app.cpp  |   49 ++---
 app.h|2 ++
 util.cpp |   37 +
 util.h   |5 +
 4 files changed, 70 insertions(+), 23 deletions(-)

diff --git a/app.cpp b/app.cpp
index 04caaa1..0ac8c3a 100644
--- a/app.cpp
+++ b/app.cpp
@@ -129,15 +129,18 @@ void User1Signal(int sig) {
 
 
 #ifdef USE_PAM
-App::App(int argc, char** argv):
-pam(conv, static_castvoid*(LoginPanel)){
+App::App(int argc, char** argv)
+  : pam(conv, static_castvoid*(LoginPanel)),
 #else
-App::App(int argc, char** argv){
+App::App(int argc, char** argv)
+  :
 #endif
+mcookiesize(32)// Must be divisible by 4
+{
 int tmp;
 ServerPID = -1;
 testing = false;
-mcookie = ;
+mcookie = string(App::mcookiesize, 'a');
 daemonmode = false;
 force_nodaemon = false;
 firstlogin = true;
@@ -1128,13 +1131,13 @@ string App::findValidRandomTheme(const string set)
 name = name.substr(0, name.length() - 1);
 }
 
-srandom(getpid()+time(NULL));
+Util::srandom(Util::makeseed());
 
 vectorstring themes;
 string themefile;
 Cfg::split(themes, name, ',');
 do {
-int sel = random() % themes.size();
+int sel = Util::random() % themes.size();
 
 name = Cfg::Trim(themes[sel]);
 themefile = string(THEMESDIR) +/ + name + THEMESFILE;
@@ -1161,27 +1164,27 @@ void App::replaceVariables(string input,
 }
 
 
+/*
+ * We rely on the fact that all bits generated by Util::random()
+ * are usable, so we are taking full words from its output.
+ */
 void App::CreateServerAuth() {
 /* create mit cookie */
-int i, r;
-int hexcount = 0;
-string authfile;
-string cmd;
+uint16_t word;
+uint8_t hi, lo;
+int i;
+string authfile;
 const char *digits = 0123456789abcdef;
-srand( time(NULL) );
-for ( i = 0; i  31; i++ ) {
-r = rand()%16;
-mcookie[i] = digits[r];
-if (r9)
-hexcount++;
+Util::srandom(Util::makeseed());
+for (i = 0; i  App::mcookiesize; i+=4) {
+word = Util::random()  0x;
+lo = word  0xff;
+hi = word  8;
+mcookie[i] = digits[lo  0x0f];
+mcookie[i+1] = digits[lo  4];
+mcookie[i+2] = digits[hi  0x0f];
+mcookie[i+3] = digits[hi  4];
 }
-/* MIT-COOKIE: even occurrences of digits and hex digits */
-if ((hexcount%2) == 0) {
-r = rand()%10;
-} else {
-r = rand()%5+10;
-}
-mcookie[31] = digits[r];
 /* reinitialize auth file */
 authfile = cfg-getOption(authfile);
 remove(authfile.c_str());
diff --git a/app.h b/app.h
index 7b4bd10..9a44269 100644
--- a/app.h
+++ b/app.h
@@ -101,6 +101,8 @@ private:
 
 std::string themeName;
 std::string mcookie;
+
+const int mcookiesize;
 };
 
 
diff --git a/util.cpp b/util.cpp
index 309ce4f..5ed972f 100644
--- a/util.cpp
+++ b/util.cpp
@@ -7,7 +7,13 @@
(at your option) any later version.
 */
 
+#include sys/types.h
+
 #include stdio.h
+#include stdlib.h
+#include time.h
+#include unistd.h
+
 #include util.h
 
 /*
@@ -30,3 +36,34 @@ bool Util::add_mcookie(const std::string mcookie, const 
char *display,
pclose(fp);
return true;
 }
+
+/*
+ * Interface for random number generator.  Just now it uses ordinary
+ * random/srandom routines and serves 

Bug#526173: clamav-milter: initscript fails to start, options are deprecated

2009-05-21 Thread martin f krafft
also sprach Micah Anderson mi...@debian.org [2009.04.29.2005 +0200]:
 First all previous command-line options seem to have mysteriously
 disappeared and no documentation about where they went, or what they
 should be replaced by in the config file. Pretty much any command-line
 option causes milter to not start.

I used to have

  --max-children=10 -olq --dont-wait --noreject

The options map to the following directives in
/etc/clamav/clamav-milter.conf:

  -lLocalNet  (I just left it disabled)
  -o?
  -q?
  --norejectOnInfected (Blackhole|Accept|Quarantine)
  --dont-wait   ?
  --max-children?

I think -o and -q are not needed with the new On* directives.
--dont-wait and --max-children, well, I don't know about those. It
might be that it uses clamd's MaxThreads, but we'll see.

A few other notes to make it work:

1. disable $OPTIONS and $SOCKET in /etc/default/clamav-milter.
   Configure the socket with the MilterSocket config directive.

2. Leave $USE_POSTFIX if you need it.

When clamav-milter starts, it'll warn:

  Starting Sendmail milter plugin for ClamAV: clamav-milterWARNING: Ignoring 
option local:/var/spool/postfix/clamav/clamav-milter.ctl

but this can be ignored. Only a rewrite of the init.d script will
be able to properly fix that.

-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Christian Perrier
Quoting Milan Zamazal (p...@debian.org):
  CP == Christian Perrier bubu...@debian.org writes:
 
 CP Oh, I certainly got warned by mail as there is a NEWS.Debian
 CP entry about this...and I ust apt-listchanges. Unfortunately,
 CP that mail got trashed just like others.
 
 If you want to prevent such problems, configure apt-listchanges to
 display information before installation and to ask for confirmation.

Just as Joss answered, apt-listchanges should not be an excuse to
break existing setups.


 
 CP I find such change inacceptable for release and I already
 CP imagine what wll happen to people who upgrade their mail servers
 CP from lenny to squeeze.
 
 This has nothing to do with Debian.  It's an upstream decision.  It's
 definitely not popular and if you hate it so much, there are some
 options what you can do: 1. complain upstream; 2. use other classifier
 than crm114; 3. fork crm114 and develop and maintain your own derivate;
 4. write a .css file converter.

The duty of the Debian maintainer is to smooth down impacts from
upstream changes. One of the recognized qualities of Debian is such
stability. So, we need to prepare our stable releases to avoid such breakages.

Another is probably bringing feedback to upstream that such changes
are very unwished by their users.

I admit that, as I'm using unstable, I'm opened to such breakage and,
even though that costed me a full day of worthy mail (which in turn
could cost the various parts of Debian I work on several consequences
because I may have missed important mails). That I can live with, in
some way.

But, at least, I expect my problems to benefit other users and
particularly to avoid what I consider to be enhanced to enter testing
and then break much more setups.

 
 CP I'm really very seriously considering if I should keep on using
 CP crm114 if such changes happen and, at this very moment, I don't
 CP think this software verson is suitable for release in Debian.
 
 I can understand your rage but as I've explained above I can't see in
 your report what I should fix in the Debian package.

At the very minimum, a critical priority debconf note displayed when
upgrading from a pre-20090423 version would be a good way to try your
best preventing the problem to appear. Debconf notes are discouraged
but I think that, here, we have a case where it would be better having
it than nothing.

I also came back on the NEWS.Debian entry and I think it is not
alarming enough as it mentions on some architectures (which a
careless reader would translate to probably not on the most common
ones) and it just mentions that CRM114 might not work but not
thatmails piped through it will vanish.

Maybe more people will come up with better suggestions. I really think
that this bug should remain release critical so that it gets the
deserved attention by both you and other developers (I bet that many
use crm114 and many clever people can come up with good
suggestionsthis is also what RC bugs are about).

Please accept some forms of apologies for showing up my rage in the
bug report (I admit I was) but also please don't take the RC bug as a
personal attack but more as a way to help you to provide the best
possible package for that software.

-- 




signature.asc
Description: Digital signature


Bug#529745: python-gdal: can't import gdal_array

2009-05-21 Thread Oz N
Package: python-gdal
Version: 1.6.1-1
Severity: grave
Justification: renders package unusable

Hi, 
I've installed python gdal, it does not import some of the modules
correctly. 
Here's an output from python:
$ python
Python 2.5.4 (r254:67916, Feb 17 2009, 20:16:45) 
[GCC 4.3.3] on linux2
Type help, copyright, credits or license for more information.
 from osgeo import gdal
 from osgeo import gdal_array
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.5/site-packages/osgeo/gdal_array.py, line 7,
in module
import _gdal_array
ImportError: dynamic module does not define init function
(init_gdal_array)

###
I installed the whole gdal package from sources and that solves my
problem. So I guess something is malfunctioning with debian packages. 

Thanks for the great work, 

Oz. 

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

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
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 python-gdal depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-4  GCC support library
ii  libgdal1-1.6.01.6.0-2Geospatial Data Abstraction Librar
ii  libstdc++64.4.0-4The GNU Standard C++ Library v3
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt
ii  python-numpy  1:1.2.1-1  Numerical Python adds a fast array

python-gdal recommends no packages.

python-gdal 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#529725: (no subject)

2009-05-21 Thread Max Zimmermann
I can confirm this, same here on SID amd64.

Cheers,

Max



signature.asc
Description: OpenPGP digital signature


Bug#523345: marked as done (gstreamer0.10-plugins-bad: Still crashes Pidgin)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 09:47:17 +
with message-id e1m74rt-0005wx...@ries.debian.org
and subject line Bug#523345: fixed in gst-plugins-bad0.10 0.10.12-1
has caused the Debian Bug report #523345,
regarding gstreamer0.10-plugins-bad: Still crashes Pidgin
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.)


-- 
523345: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523345
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gstreamer0.10-plugins-bad
Version: 0.10.11-2
Severity: important

Hi,

I upgraded gstreamer-plugins-bad with the new liblrdf, and it solves the issue
with totem, but I'am still unable to launch pidgin. In a terminal, it says 
only Opération non permise (meaning operation not permitted) and doesn't
launch pidgin.

I downgraded to 0.10.10.3-1 (found in testing) and pidgin launch perfectly
again.

Regards,
Bertrand

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

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

Versions of packages gstreamer0.10-plugins-bad depends on:
ii  gstreamer0.10-plugins-base  0.10.22-5GStreamer plugins from the base 
ii  libasound2  1.0.19-1 shared library for ALSA applicatio
ii  libass1 0.9.5-2  library for SSA/ASS subtitles rend
ii  libbz2-1.0  1.0.5-1  high-quality block-sorting file co
ii  libc6   2.9-6GNU C Library: Shared libraries
ii  libcdaudio1 0.99.12p2-7  library for controlling a CD-ROM w
ii  libcelt00.4.0-1  The CELT codec runtime library
ii  libdc1394-222.1.0-2  high level programming interface f
ii  libdca0 0.0.5-2  decoding library for DTS Coherent 
ii  libdirectfb-1.2-0   1.2.7-2  direct frame buffer graphics - sha
ii  libdvdnav4  4.1.3-3  DVD navigation library
ii  libdvdread4 4.1.3-5  library for reading DVDs
ii  libexempi3  2.1.0-3  library to parse XMP metadata (Lib
ii  libexif12   0.6.16-2.1   library to parse EXIF files
ii  libfaad02.6.1-3.1freeware Advanced Audio Decoder - 
ii  libgcc1 1:4.3.3-7GCC support library
ii  libglib2.0-02.20.0-2 The GLib library of C routines
ii  libgmyth0   1:0.7.1-1GObject based library for accessin
ii  libgsm1 1.0.12-1 Shared libraries for GSM speech co
ii  libgstreamer-plugins-base0. 0.10.22-5GStreamer libraries from the base
ii  libgstreamer0.10-0  0.10.22-3Core GStreamer libraries and eleme
ii  libiptcdata01.0.3-1  Library to parse IPTC metadata
ii  libjack00.116.1-4JACK Audio Connection Kit (librari
ii  libjasper1  1.900.1-5.1  The JasPer JPEG-2000 runtime libra
ii  libmms0 0.4-2MMS stream protocol library - shar
ii  libmodplug0c2   1:0.8.4-3shared libraries for mod music bas
ii  libmpcdec3  1:1.2.2-2.1  Musepack (MPC) format library
ii  libmusicbrainz4c2a  2.1.5-2  Second generation incarnation of t
ii  libneon27-gnutls0.28.2-6.1   An HTTP and WebDAV client library 
ii  libofa0 0.9.3-3  Library for acoustic fingerprintin
ii  liboil0.3   0.3.15-1 Library of Optimized Inner Loops
ii  libopenspc0 0.3.99a-2library for playing SPC files
ii  libsndfile1 1.0.19-2 Library for reading/writing audio 
ii  libsoundtouch1c21.3.1-2  sound stretching library
ii  libssl0.9.8 0.9.8g-16SSL shared libraries
ii  libstdc++6  4.3.3-7  The GNU Standard C++ Library v3
ii  libwildmidi00.2.2-2  software MIDI player library
ii  libx11-62:1.2-1  X11 client-side library
ii  libxml2 2.7.3.dfsg-1 GNOME XML library

gstreamer0.10-plugins-bad recommends no packages.

gstreamer0.10-plugins-bad suggests no packages.

-- no debconf information



---End Message---
---BeginMessage---
Source: gst-plugins-bad0.10
Source-Version: 0.10.12-1

We believe that the bug you reported is fixed in the latest version of
gst-plugins-bad0.10, which is due to be installed in the Debian FTP archive:


Bug#524566: marked as done (fluidsynth: sf2/COPYRIGHT is not DFSG)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 09:47:05 +
with message-id e1m74rh-0005tq...@ries.debian.org
and subject line Bug#524566: fixed in fluidsynth 1.0.9+dfsg-1
has caused the Debian Bug report #524566,
regarding fluidsynth: sf2/COPYRIGHT is not DFSG
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.)


-- 
524566: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524566
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: fluidsynth
Version: 1.0.8-2
Severity: serious

The file fluidsynth_1.0.8.orig.tar.gz in Debian contains these files:

sf2/VintageDreamsWaves-v2.sf2
sf2/Makefile.in
sf2/Makefile.am
sf2/COPYRIGHT

The license in sf2/COPYRIGHT contains It is not altered, edited,
modified, ripped, or converted to other formats, except for private use
only.





---End Message---
---BeginMessage---
Source: fluidsynth
Source-Version: 1.0.9+dfsg-1

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

fluidsynth_1.0.9+dfsg-1.diff.gz
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1.diff.gz
fluidsynth_1.0.9+dfsg-1.dsc
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1.dsc
fluidsynth_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1_amd64.deb
fluidsynth_1.0.9+dfsg.orig.tar.gz
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg.orig.tar.gz
libfluidsynth-dev_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/libfluidsynth-dev_1.0.9+dfsg-1_amd64.deb
libfluidsynth1_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/libfluidsynth1_1.0.9+dfsg-1_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 524...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ralf Treinen trei...@debian.org (supplier of updated fluidsynth 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, 21 May 2009 10:22:08 +0200
Source: fluidsynth
Binary: fluidsynth libfluidsynth1 libfluidsynth-dev
Architecture: source amd64
Version: 1.0.9+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 fluidsynth - Real-time MIDI software synthesizer
 libfluidsynth-dev - Real-time MIDI software synthesizer (development files)
 libfluidsynth1 - Real-time MIDI software synthesizer (runtime library)
Closes: 524066 524566 527410 527832
Changes: 
 fluidsynth (1.0.9+dfsg-1) unstable; urgency=low
 .
   [ Ralf Treinen ]
   * QA upload (sponsoring David Henningsson).
 .
   [ David Henningsson launchpad@epost.diwic.se ]
   * New upstream release (Closes: #524066)
   * Remove non-DFSG soundfonts and documentation (Closes: #524566)
   * Depend on libjack-dev instead of libjack0.100.0-dev (Closes: #527410)
   * Optionally depend on lash instead of ladcca
   * Rewrite debian/copyright file, now it includes exact copyright notices
   * Fix build problem with new libtool (moved ltmain.sh) (Closes: #527832)
   * Erase autotools files in debian/rules to avoid large diff.gz
   * Remove unused debian/manpages file
   * Keep upstream's config.{sub,guess}, since they're recent enough
   * Bump Standards-Version to 3.8.1, no changes required
Checksums-Sha1: 
 88b7099c9cad511739980029113eaa3aa88db7b1 1211 fluidsynth_1.0.9+dfsg-1.dsc
 3b3bbd717001b9f24161de4423c92be7111ff5ac 620009 
fluidsynth_1.0.9+dfsg.orig.tar.gz
 fd7598fdd8d77cd6a34d2eed538aa060f9e55066 6635 fluidsynth_1.0.9+dfsg-1.diff.gz
 3341b16dedfff7d6294c02d99d708579b125e8f8 42478 
fluidsynth_1.0.9+dfsg-1_amd64.deb
 8211875cce49c63569dd8f4868002ce6c7c0322d 175878 
libfluidsynth1_1.0.9+dfsg-1_amd64.deb
 04878c22304d4ee1e59d027a2cdba68022c0094a 225896 
libfluidsynth-dev_1.0.9+dfsg-1_amd64.deb
Checksums-Sha256: 
 68e3ea99f008dc1472a34bef54976840a32b12167886a31bcc7ac1e30c385636 1211 
fluidsynth_1.0.9+dfsg-1.dsc
 e22a122e22629c24eb68c440ce4a32181276b7b8e0ef59ca6364968935b3f365 620009 
fluidsynth_1.0.9+dfsg.orig.tar.gz
 103b11e7b213da2c3fa73d63cddaf8adb2c3897468d9e6e0911d4022340084e7 6635 
fluidsynth_1.0.9+dfsg-1.diff.gz
 d369663441d9d81482e7787baa77a3800c2a8814abf9fc5308d3a32890156fa3 42478 
fluidsynth_1.0.9+dfsg-1_amd64.deb
 

Bug#527832: marked as done (fluidsynth: FTBFS: cp: cannot stat `/usr/share/libtool/ltmain.sh': No such file or directory)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 09:47:05 +
with message-id e1m74rh-0005tu...@ries.debian.org
and subject line Bug#527832: fixed in fluidsynth 1.0.9+dfsg-1
has caused the Debian Bug report #527832,
regarding fluidsynth: FTBFS: cp: cannot stat `/usr/share/libtool/ltmain.sh': 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.)


-- 
527832: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527832
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: fluidsynth
Version: 1.0.8-2
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20090508 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
 dh_testdir
 dh_testroot
 rm -f build-stamp configure-stamp
 # Add here commands to clean up after the build process.
 [ ! -f Makefile ] || /usr/bin/make distclean
 dh_clean
 find . -name '*.[oa]' -print |xargs rm -rf
 find . -name '*.l[oa]' -print |xargs rm -rf
 find . -name '*.s[oa]' -print |xargs rm -rf
 rm -f config.cache config.status config.log
 rm -f Makefile ltconfig
 rm -f debian/files
 rm -rf src/.libs
 test -r /usr/share/misc/config.sub  \
  cp -f /usr/share/misc/config.sub config.sub
 test -r /usr/share/misc/config.guess  \
  cp -f /usr/share/misc/config.guess config.guess
  dpkg-source -b fluidsynth-1.0.8
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building fluidsynth using existing 
 fluidsynth_1.0.8.orig.tar.gz
 dpkg-source: info: building fluidsynth in fluidsynth_1.0.8-2.diff.gz
 dpkg-source: warning: ignoring deletion of file ltconfig
 dpkg-source: info: building fluidsynth in fluidsynth_1.0.8-2.dsc
  debian/rules build
 dh_testdir
 rm -f config.sub config.guess ltmain.sh ltconfig
 cp -f /usr/share/misc/config.sub config.sub
 cp -f /usr/share/misc/config.guess config.guess
 cp -f /usr/share/libtool/ltmain.sh ltmain.sh
 cp: cannot stat `/usr/share/libtool/ltmain.sh': No such file or directory
 make: *** [configure-stamp] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/05/08/fluidsynth_1.0.8-2_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: fluidsynth
Source-Version: 1.0.9+dfsg-1

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

fluidsynth_1.0.9+dfsg-1.diff.gz
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1.diff.gz
fluidsynth_1.0.9+dfsg-1.dsc
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1.dsc
fluidsynth_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg-1_amd64.deb
fluidsynth_1.0.9+dfsg.orig.tar.gz
  to pool/main/f/fluidsynth/fluidsynth_1.0.9+dfsg.orig.tar.gz
libfluidsynth-dev_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/libfluidsynth-dev_1.0.9+dfsg-1_amd64.deb
libfluidsynth1_1.0.9+dfsg-1_amd64.deb
  to pool/main/f/fluidsynth/libfluidsynth1_1.0.9+dfsg-1_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 527...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ralf Treinen trei...@debian.org (supplier of updated fluidsynth 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, 21 May 2009 10:22:08 +0200
Source: fluidsynth
Binary: fluidsynth libfluidsynth1 libfluidsynth-dev
Architecture: source amd64
Version: 1.0.9+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 fluidsynth - Real-time MIDI software synthesizer
 libfluidsynth-dev - Real-time MIDI software synthesizer (development files)
 libfluidsynth1 - 

Bug#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Mehdi Dogguy
On  0, Milan Zamazal p...@debian.org wrote:

 This may be a good idea.  Do you know about packages with similar
 properties (i.e. changing their data formats incompatibly) so that I
 don't invent my own binary package naming scheme?


Unison maintainer did that for some period because of protocol
changes. There have been unison and unison2.13.16 installable and
usable together in the same system, thank to alternatives. The latter
was kept for compatibility reasons with older distributions.

HTH,

-- 
Mehdi Dogguy
http://www.pps.jussieu.fr/~dogguy/



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



Bug#529751: gxmms2: Needs to be rebuilt against libxmmsclient5

2009-05-21 Thread Mikko Rasa
Package: gxmms2
Version: 0.7.0-2
Severity: grave
Justification: renders package unusable

The gxmms2 package still depends on libxmmsclient4, which has been superseded
by libxmmsclient5 in the 0.6DrMattDestruction release.  Furthermore,
libxmmsclient5 conflicts with libxmmsclient4, and the older version can not
be used to communicate with the newer server.  Since xmms2-client-cli also
needs the client library, the only option is to remove gxmms2 and upgrade
libxmmsclient.

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

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

Versions of packages gxmms2 depends on:
ii  libatk1.0-0  1.26.0-1The ATK accessibility toolkit
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libglib2.0-0 2.20.1-2The GLib library of C routines
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface 
ii  libpango1.0-01.24.2-1Layout and rendering of internatio
ii  libx11-6 2:1.2.1-1   X11 client-side library
ii  libxmmsclient-glib1  0.5DrLecter-2.1 XMMS2 - glib client library
ii  libxmmsclient4   0.5DrLecter-2.1 XMMS2 - client library

gxmms2 recommends no packages.

Versions of packages gxmms2 suggests:
ii  xmms2-core0.6DrMattDestruction-1 XMMS2 - core package

-- 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#529675: Please avoid 1.3.38

2009-05-21 Thread Torsten Landschoff
Hi Francesco, 

On Wed, May 20, 2009 at 11:39:56PM +0200, Francesco Paolo Lovergine wrote:
 Python 2.6.1+ (r261:67515, Mar 18 2009, 22:12:06)
 [GCC 4.3.3] on linux2
 Type help, copyright, credits or license for more information.
  from osgeo import gdal
 Traceback (most recent call last):
   File stdin, line 1, in module
   File /usr/lib/python2.6/dist-packages/osgeo/gdal.py, line 19, in module
 _gdal = swig_import_helper()
   File /usr/lib/python2.6/dist-packages/osgeo/gdal.py, line 17, in 
 swig_import_helper
 if fp is not None: fp.close()
 UnboundLocalError: local variable 'fp' referenced before assignment
 

Ouch.

Thanks for the report, I wasn't going to upload 1.3.38 to sid anyway as it 
also breaks subversion, which is the biggest player of the swig users in
Debian afaik.

 This is fixed in 1.3.39.

So I'll go and package that.

Greetings, 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#529736: libdbd-sqlite3-perl: FTBFS due to locking failure in the sqlite3 code

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 529736 -1
Bug#529736: libdbd-sqlite3-perl: FTBFS due to locking failure in the sqlite3 
code
Bug 529736 cloned as bug 529755.

 severity -1 serious
Bug#529755: libdbd-sqlite3-perl: FTBFS due to locking failure in the sqlite3 
code
Severity set to `serious' from `important'

 retitle -1 uses bundled copy of sqlite
Bug#529755: libdbd-sqlite3-perl: FTBFS due to locking failure in the sqlite3 
code
Changed Bug title to `uses bundled copy of sqlite' from `libdbd-sqlite3-perl: 
FTBFS due to locking failure in the sqlite3 code'.

 submitter -1 !
Bug#529755: uses bundled copy of sqlite
Changed Bug submitter from Marc Dequènes (Duck) d...@duckcorp.org to 
Damyan Ivanov d...@debian.org.

 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



Processed: tagging 529755

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # borrowed from cloned bug
 tags 529755 - pending
Bug#529755: uses bundled copy of sqlite
Tags were: pending
Tags removed: pending


End of message, 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#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Milan Zamazal
 CP == Christian Perrier bubu...@debian.org writes:

CP The duty of the Debian maintainer is to smooth down impacts from
CP upstream changes. One of the recognized qualities of Debian is
CP such stability. So, we need to prepare our stable releases to
CP avoid such breakages.

CP Another is probably bringing feedback to upstream that such
CP changes are very unwished by their users.

This is not the first time .css format change has happened.  And yes, it
was reported and discussed upstream in the past.  They are willing to
avoid such changes but it may not always be easy.  More pressure
(i.e. from more users) on the upstream maintainers may or may not
improve things.  The .css format is generally not considered as very
fixed, e.g. it's not portable across architectures after all.

There were other upgrade problems in the past.  For instance, I
personally don't simply believe .crm scripts from the last version work
with a new one without changes and I always test that crm114 still works
after the upgrade.  I'd say that backward compatibility is not a crm114
feature and one must expect problems when upgrading crm114 to a new
version.  Of course, a user may not think about crm114 when typing
`apt-get upgrade'.  This wouldn't be a big problem if crm114 wasn't
typically used for things like e-mail delivery.

So the primary problem is how to _warn_ users that crm114 gets upgraded
with higher than casual risk of breaking things.  The current practice
of warning about important changes in NEWS.Debian seemed to work well so
far.  But I agree it may not be enough and I'm open to suggestions how
to improve it.

CP But, at least, I expect my problems to benefit other users and
CP particularly to avoid what I consider to be enhanced to enter
CP testing and then break much more setups.

Sure, you brave unstable users get hit by such problems and by reporting
them you prevent wider impacts.

CP At the very minimum, a critical priority debconf note displayed
CP when upgrading from a pre-20090423 version would be a good way
CP to try your best preventing the problem to appear. Debconf notes
CP are discouraged but I think that, here, we have a case where it
CP would be better having it than nothing.

Right now, I like this suggestion better than the binary package name
changes.  Some might not like it, but I may just try to add it and we'll
see what happens.

CP I also came back on the NEWS.Debian entry and I think it is not
CP alarming enough as it mentions on some architectures (which a
CP careless reader would translate to probably not on the most
CP common ones) and it just mentions that CRM114 might not work
CP but not thatmails piped through it will vanish.

Good remark.

CP Maybe more people will come up with better suggestions. 

If no applicable precedent in other Debian packages is presented here,
I'll probably discuss the problem on debian-mentors.

CP I really think that this bug should remain release critical so
CP that it gets the deserved attention by both you and other
CP developers (I bet that many use crm114 and many clever people
CP can come up with good suggestionsthis is also what RC bugs
CP are about).

Of course, I don't get rid of RC bugs without discussing them first.

CP Please accept some forms of apologies for showing up my rage
CP in the bug report (I admit I was) but also please don't take the
CP RC bug as a personal attack but more as a way to help you to
CP provide the best possible package for that software.

There is no need to apologize.  I just missed identification of the
_Debian package_ problem in your initial report and you've fixed it
now. :-)  Thanks for the report.




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



Processed: bug 529755 is not forwarded

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # borrowed from cloned bug
 notforwarded 529755
Bug#529755: uses bundled copy of sqlite
Removed annotation that Bug had been forwarded to 
http://rt.cpan.org/Public/Bug/Display.html?id=46270.


End of message, 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



Processed: merge libgcj-common bugs

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 529402 libgcj-common
Bug#529402: file conflict(s) with libgcj-common
Bug reassigned from package `java-gcj-compat-dev' to `libgcj-common'.

 forcemerge 529412 529402
Bug#529412: configure fails - not overwriting local files
Bug#529402: file conflict(s) with libgcj-common
Forcibly Merged 529402 529412.

 forcemerge 529402 529725
Bug#529402: file conflict(s) with libgcj-common
Bug#529725: file conflicts with java-gcj-compat-dev
Bug#529412: configure fails - not overwriting local files
Forcibly Merged 529402 529412 529725.

 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#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Milan Zamazal
 MD == Mehdi Dogguy mehdi.dog...@pps.jussieu.fr writes:

MD Unison maintainer did that for some period because of protocol
MD changes. There have been unison and unison2.13.16 installable
MD and usable together in the same system, thank to
MD alternatives. The latter was kept for compatibility reasons with
MD older distributions.

Thanks for the suggestion.  I'm not familiar with the unison case, but I
guess the split was introduced to be able to talk to other computers?
This is not the case with crm114, I can't see any common reason having
more than one crm114 version on a single computer.  The crm114 problem
is different, how to prevent unnoticed upgrade.

Josselin, it's not clear to me how your package name arrangement would
ensure the opposite thing, that people don't miss new versions.
E.g. when one upgrades from lenny to squeeze, he could end up with old
lenny crm114 package after the upgrade, without noticing there is
something new in squeeze.  Or when one performs regular unstable
updates, how to retain crm114 up to date?




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



Bug#529402: marked as done (file conflict(s) with libgcj-common)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 14:20:02 +0200
with message-id 4a1546f2.5020...@debian.org
and subject line merge libgcj-common bugs
has caused the Debian Bug report #529412,
regarding file conflict(s) with libgcj-common
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.)


-- 
529412: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529412
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: java-gcj-compat-dev
Version: 1.0.80-2
Severity: serious

Selecting previously deselected package libgcj-common.
Unpacking libgcj-common (from .../libgcj-common_1%3a4.4.0-4_all.deb) ...
[...]
Selecting previously deselected package java-gcj-compat-dev.
Unpacking java-gcj-compat-dev (from .../java-gcj-compat-dev_1.0.80-2_i386.deb) 
...
dpkg: error processing 
/var/cache/apt/archives/java-gcj-compat-dev_1.0.80-2_i386.deb (--unpack):
 trying to overwrite `/usr/bin/aot-compile', which is also in package 
libgcj-common

Regards,

Rene


---End Message---
---BeginMessage---
reassign 529402 libgcj-common
forcemerge 529412 529402
forcemerge 529402 529725
thanks

Version: 1:4.4.0-6

---End Message---


Bug#529725: marked as done (file conflicts with java-gcj-compat-dev)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 14:20:02 +0200
with message-id 4a1546f2.5020...@debian.org
and subject line merge libgcj-common bugs
has caused the Debian Bug report #529412,
regarding file conflicts with java-gcj-compat-dev
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.)


-- 
529412: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529412
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libgcj-common
Version: 1:4.3.3-5
Severity: grave

aot-compile occurs in both packages...

[...]
(Reading database ... 497703 files and directories currently installed.)
Preparing to replace libgcj-common 1:4.3.3-5 (using 
.../libgcj-common_1%3a4.4.0-6_all.deb) ...
Unpacking replacement libgcj-common ...
dpkg: error processing 
/var/cache/apt/archives/libgcj-common_1%3a4.4.0-6_all.deb (--unpack):
 trying to overwrite `/usr/bin/aot-compile', which is also in package 
java-gcj-compat-dev
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libgcj-common_1%3a4.4.0-6_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: squeeze/sid
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-rc6-sonne (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

-- no debconf information


---End Message---
---BeginMessage---
reassign 529402 libgcj-common
forcemerge 529412 529402
forcemerge 529402 529725
thanks

Version: 1:4.4.0-6

---End Message---


Bug#529412: marked as done (configure fails - not overwriting local files)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 14:20:02 +0200
with message-id 4a1546f2.5020...@debian.org
and subject line merge libgcj-common bugs
has caused the Debian Bug report #529412,
regarding configure fails - not overwriting local files
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.)


-- 
529412: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529412
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libgcj-common  


Version: 1:4.4.0-4  


Severity: serious   





On a dist-upgrade of a i386 chroot today:   





Setting up libgcj-common (1:4.4.0-4) ...


pycentral: pycentral pkginstall: not overwriting local files:   


  /usr/lib/python2.5/site-packages/aotcompile.py


  /usr/lib/python2.5/site-packages/classfile.py 


pycentral pkginstall: not overwriting local files:  


  /usr/lib/python2.5/site-packages/aotcompile.py


  /usr/lib/python2.5/site-packages/classfile.py 


dpkg: error processing libgcj-common (--configure): 


 subprocess post-installation script returned error exit status 1   





-- System Information:  


Debian Release: squeeze/sid 


  APT prefers unstable  


  APT policy: (500, 'unstable') 


Architecture: i386 (i686)   





Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores)  
  

Bug#529766: gjiten: FTBFS due to missing b-d on libglade2-dev

2009-05-21 Thread Andreas Metzler
Package: gjiten
Version: 2.6-2
Severity: serious
Justification: no longer builds from source

gijten FTBFS on up to date sid:
--
checking pkg-config is at least version 0.9.0... yes
checking for GJITEN... configure: error: Package requirements (libgnome-2.0 = 
2.2.0 libgnomeui-2.0 = 2.2.0 libglade-2.0 gconf-2.0) were not met:

No package 'libglade-2.0' found
--

Adding a build-depency on libglade2-dev fixes the bug.
cu andreas




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



Bug#529767: gtk-vnc: FTBFS ../../libtool: line 827: X--tag=CC: command not found

2009-05-21 Thread Andreas Metzler
Package: gtk-vnc
Version: 0.3.8-2
Severity: serious
Justification: ftbfs

On up to date sid, gtk-vnc does not build:
--
make[5]: Entering directory `/tmp/blah/gtk-vnc-0.3.8/build/gnulib/lib'
/bin/bash ../../libtool --tag=CC   --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H 
-I. -I/tmp/blah/gtk-vnc-0.3.8/./gnulib/lib -I../.. -g -O2 -g -Wall -O2 -c 
-o dummy.lo /tmp/blah/gtk-vnc-0.3.8/./gnulib/lib/dummy.c
../../libtool: line 827: X--tag=CC: command not found
../../libtool: line 860: libtool: ignoring unknown tag : command not found
../../libtool: line 827: X--mode=compile: command not found
[...]
--

/bin/sh is /bin/dash, if that makes a difference.

cu andreas



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



Processed: your mail

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 529193 by 529292
Bug#529292: libvtk5-dev: undefined reference to `vtkStringArray::GetValue(long 
long)'
Bug#529193: gdcm: FTBFS: libvtkgdcm.so.2.0.10: undefined reference to 
`vtkStringArray::GetValue(long long)'
Was not blocked by any bugs.
Blocking bugs of 529193 added: 529292

 --
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#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable dependencies

2009-05-21 Thread Sebastian Ramacher
Package: libghc6-xmonad-dev
Version: 0.8-1
Severity: grave

libghc6-xmonad-dev can not be upgraded to the latest version since its'
dependencies are not satisfiable.

libghc6-xmonad-dev 0.8.1-3 depends on

ghc6 ( 6.10.1+dfsg1+)
ghc6 (= 6.10.1+dfsg1-13)

whereas the latest version of ghc6 in unstable is 6.10.3-1. So those
two dependencies can't be satisfied.

The same applies to libghc6-xmonad-contrib-dev.

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

Kernel: Linux 2.6.29 (SMP w/4 CPU cores; PREEMPT)
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 libghc6-xmonad-dev depends on:
ii  ghc66.8.2dfsg1-1 GHC - the Glasgow Haskell Compilat
ii  libghc6-mtl-dev 1.1.0.0-2Haskell monad transformer library 
ii  libghc6-quickcheck-dev  1.1.0.0-2Haskell automatic testing library 
ii  libghc6-x11-dev 1.4.2-1  Haskell X11 binding for GHC
ii  libx11-dev  2:1.2.1-1X11 client-side library (developme
ii  libxinerama12:1.0.3-2X11 Xinerama extension library

Versions of packages libghc6-xmonad-dev recommends:
ii  libghc6-xmonad-contrib-dev0.8-5  Extensions to xmonad

Versions of packages libghc6-xmonad-dev suggests:
pn  libghc6-xmonad-docnone (no description available)
pn  libghc6-xmonad-prof   none (no description available)

-- 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#529775: libzebra3 and libzbar0: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbar0,libzebra3
Version: libzbar0/0.7+dfsg-1
Version: libzebra3/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 libjpeg62 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data
  libx11-6 libzbar0 libzebra3
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libzbar0.
Unpacking libzbar0 (from .../libzbar0_0.7+dfsg-1_amd64.deb) ...
Selecting previously deselected package libzebra3.
Unpacking libzebra3 (from .../libzebra3_0.7-1_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libzebra3_0.7-1_amd64.deb 
(--unpack):
 trying to overwrite `/usr/lib/libzbar.so.0.0.0', which is also in package 
libzbar0
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/libzebra3_0.7-1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail. Possible
solutions are to have the two packages conflict, to rename the common
file in one of the two packages, or to remove the file from one
package and have this package depend on the other package. File
diversions or a Replace relation are another possibility.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):


  usr/lib/libzbar.so.0
  usr/lib/libzbar.so.0.0.0
  

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package.

-Ralf.



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



Bug#529774: jack-jconv and libjconv-bin: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libjconv-bin,jack-jconv
Version: libjconv-bin/2.8-6+b1
Version: jack-jconv/0.8.1-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  libxml2 libclthreads2 libfftw3-3 libasound2 libraw1394-11 libavc1394-0
  libiec61883-0 libfreebob0 libsamplerate0 libjack0 libogg0 libflac8
  libvorbis0a libvorbisenc2 libsndfile1 libzita-convolver1 jconv-config-files
  jack-jconv libjconv2 libjconv-bin
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxml2.
(Reading database ... 8136 files and directories currently installed.)
Unpacking libxml2 (from .../libxml2_2.7.3.dfsg-1_amd64.deb) ...
Selecting previously deselected package libclthreads2.
Unpacking libclthreads2 (from .../libclthreads2_2.4.0-1_amd64.deb) ...
Selecting previously deselected package libfftw3-3.
Unpacking libfftw3-3 (from .../libfftw3-3_3.2.1-2_amd64.deb) ...
Selecting previously deselected package libasound2.
Unpacking libasound2 (from .../libasound2_1.0.19-1_amd64.deb) ...
Selecting previously deselected package libraw1394-11.
Unpacking libraw1394-11 (from .../libraw1394-11_2.0.2-2_amd64.deb) ...
Selecting previously deselected package libavc1394-0.
Unpacking libavc1394-0 (from .../libavc1394-0_0.5.3-1+b2_amd64.deb) ...
Selecting previously deselected package libiec61883-0.
Unpacking libiec61883-0 (from .../libiec61883-0_1.2.0-0.1_amd64.deb) ...
Selecting previously deselected package libfreebob0.
Unpacking libfreebob0 (from .../libfreebob0_1.0.11-1_amd64.deb) ...
Selecting previously deselected package libsamplerate0.
Unpacking libsamplerate0 (from .../libsamplerate0_0.1.7-2_amd64.deb) ...
Selecting previously deselected package libjack0.
Unpacking libjack0 (from .../libjack0_0.116.1-4_amd64.deb) ...
Selecting previously deselected package libogg0.
Unpacking libogg0 (from .../libogg0_1.1.3-5_amd64.deb) ...
Selecting previously deselected package libflac8.
Unpacking libflac8 (from .../libflac8_1.2.1-1.2_amd64.deb) ...
Selecting previously deselected package libvorbis0a.
Unpacking libvorbis0a (from .../libvorbis0a_1.2.0.dfsg-4_amd64.deb) ...
Selecting previously deselected package libvorbisenc2.
Unpacking libvorbisenc2 (from .../libvorbisenc2_1.2.0.dfsg-4_amd64.deb) ...
Selecting previously deselected package libsndfile1.
Unpacking libsndfile1 (from .../libsndfile1_1.0.20-1_amd64.deb) ...
Selecting previously deselected package libzita-convolver1.
Unpacking libzita-convolver1 (from .../libzita-convolver1_1.0.0-1_amd64.deb) ...
Selecting previously deselected package jconv-config-files.
Unpacking jconv-config-files (from .../jconv-config-files_0.8.1-1_all.deb) ...
Selecting previously deselected package jack-jconv.
Unpacking jack-jconv (from .../jack-jconv_0.8.1-1_amd64.deb) ...
Selecting previously deselected package libjconv2.
Unpacking libjconv2 (from .../libjconv2_2.8-6+b1_amd64.deb) ...
Selecting previously deselected package libjconv-bin.
Unpacking libjconv-bin (from .../libjconv-bin_2.8-6+b1_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libjconv-bin_2.8-6+b1_amd64.deb 
(--unpack):
 trying to overwrite `/usr/bin/jconv', which is also in package jack-jconv
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/libjconv-bin_2.8-6+b1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail. Possible
solutions are to have the two packages conflict, to rename the common
file in one of the two packages, or to remove the file from one
package and have this package depend on the other package. File
diversions or a Replace relation are another possibility.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):


  usr/bin/jconv
  

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package.

-Ralf.



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



Bug#529776: libzebra-dev and libzbar-dev: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbar-dev,libzebra-dev
Version: libzbar-dev/0.7+dfsg-1
Version: libzebra-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libxt6 libxt-dev libkeyutils1 libkrb5support0 libk5crypto3
  libkrb5-3 libgssapi-krb5-2 libxml2 fontconfig gsfonts liba52-0.7.4
  libatk1.0-0 libglib2.0-dev libatk1.0-dev libbz2-dev libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libcairo2 libpng12-dev libjpeg62 libdirectfb-extra
  libjpeg62-dev libmpeg3-1 libmpeg3-dev libsysfs-dev libdirectfb-dev
  libpixman-1-dev libxcb-render0-dev libxcb-render-util0-dev libcairo2-dev
  libcroco3 libcups2 libdatrie1 libdjvulibre-text libdjvulibre21
  libdjvulibre-dev libexif12 libexif-dev libgd2-noxpm libgomp1 libltdl7
  libpango1.0-common libthai-data libthai0 libpango1.0-0 libgraphviz4
  libltdl-dev libgraphviz-dev libgsf-1-common libgsf-1-114 libgtk2.0-common
  libjasper1 libtiff4 shared-mime-info libgtk2.0-0 libpango1.0-dev
  libxml2-utils libgtk2.0-dev libilmbase6 libilmbase-dev libjasper-dev
  liblcms1 liblcms1-dev liblqr-1-0 liblqr-1-0-dev libmagickwand2 libopenexr6
  librsvg2-2 libwmf0.2-7 libmagickcore2 libmagick++2 libtiffxx0c2 libtiff4-dev
  libwmf-dev libxml2-dev librsvg2-dev libopenexr-dev libmagickcore-dev
  libmagickwand-dev libmagick++-dev libzbar0 libzbar-dev libzebra3
  libzebra-dev

Extracting templates from packages: 18%
Extracting templates from packages: 37%
Extracting templates from packages: 56%
Extracting templates from packages: 75%
Extracting templates from packages: 94%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 8171 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from 

Processed: your mail

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 528020 pending
Bug#528020: files+dirs in /usr/local/*/* not removed on removal (policy 9.1.2)
There were no tags set.
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#529777: libzebraqt0 and libzbarqt0: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbarqt0,libzebraqt0
Version: libzbarqt0/0.7+dfsg-1
Version: libzebraqt0/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6
  libxt6 libmagic1 file libpcre3 perl-modules perl ucf defoma libexpat1
  libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config
  libfontconfig1 fontconfig libaudio2 libglib2.0-0 libjpeg62 liblcms1 libmng1
  libpng12-0 libqtcore4 libtiff4 libxext6 libxrender1 libqtgui4 libzbar0
  libzbarqt0 libzebra3 libzebraqt0

Extracting templates from packages: 76%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxt6.
(Reading database ... 8454 files and directories currently installed.)
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.10.0-22_all.deb) ...
Selecting previously deselected package perl.
Unpacking perl (from .../perl_5.10.0-22_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0018_all.deb) ...
Moving old data out of the way
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.9-4.1_amd64.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.29-2_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.29-2_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.29-2_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-3_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-3_amd64.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.6.0-3_amd64.deb) ...
Selecting previously deselected package libaudio2.
Unpacking libaudio2 (from .../libaudio2_1.9.1-5_amd64.deb) 

Bug#529779: libzebragtk-dev and libzbargtk-dev: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbargtk-dev,libzebragtk-dev
Version: libzbargtk-dev/0.7+dfsg-1
Version: libzebragtk-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libxml2 fontconfig liba52-0.7.4 libatk1.0-0 libglib2.0-dev
  libatk1.0-dev libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0
  libpng12-0 libxcb-render0 libxcb-render-util0 libcairo2 libpng12-dev
  libjpeg62 libdirectfb-extra libjpeg62-dev libmpeg3-1 libmpeg3-dev
  libsysfs-dev libdirectfb-dev libpixman-1-dev libxcb-render0-dev
  libxcb-render-util0-dev libcairo2-dev libcups2 libdatrie1 libgtk2.0-common
  libjasper1 libpango1.0-common libthai-data libthai0 libpango1.0-0 libtiff4
  shared-mime-info libgtk2.0-0 libpango1.0-dev libxml2-utils libgtk2.0-dev
  libzbar0 libzbargtk0 libzbargtk-dev libzebra3 libzebragtk0 libzebragtk-dev

Extracting templates from packages: 24%
Extracting templates from packages: 49%
Extracting templates from packages: 74%
Extracting templates from packages: 99%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 8171 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-3_amd64.deb) ...
Selecting 

Bug#529778: libzebragtk0 and libzbargtk0: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbargtk0,libzebragtk0
Version: libzbargtk0/0.7+dfsg-1
Version: libzebragtk0/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3
  libmagic1 file libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libpcre3 libxml2 perl-modules perl ucf defoma libexpat1
  libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config
  libfontconfig1 fontconfig libglib2.0-0 libatk1.0-0 libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libxrender1 libcairo2 libcups2 libdatrie1
  libgtk2.0-common libjpeg62 libjasper1 libpango1.0-common libthai-data
  libthai0 libxft2 libpango1.0-0 libtiff4 libxext6 libxcomposite1 libxcursor1
  libxdamage1 libxi6 libxinerama1 libxrandr2 shared-mime-info libgtk2.0-0
  libice6 libsm6 libzbar0 libzbargtk0 libzebra3 libzebragtk0

Extracting templates from packages: 45%
Extracting templates from packages: 90%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.7dfsg~beta2-4_amd64.deb) 
...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from 
.../libgssapi-krb5-2_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.3.dfsg-1_amd64.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.10.0-22_all.deb) ...
Selecting previously deselected package perl.
Unpacking perl (from .../perl_5.10.0-22_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0018_all.deb) ...
Moving old data out of the way
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting 

Bug#529780: libzebraqt-dev and libzbarqt-dev: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: libzbarqt-dev,libzebraqt-dev
Version: libzbarqt-dev/0.7+dfsg-1
Version: libzebraqt-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3 libice6
  libsm6 libxt6 libmagic1 file libcap2 libgpm2 libkeyutils1 libkrb5support0
  libk5crypto3 libkrb5-3 libgssapi-krb5-2 libldap-2.4-2 libpcre3 libicu40
  libsqlite3-0 libxml2 perl-modules perl ucf defoma libexpat1 libfreetype6
  ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
  fontconfig gsfonts libaa1 libasound2 libasyncns0 libglib2.0-0 libatk1.0-0
  libaudio2 libavutil49 libfaad0 libgsm1 liboil0.3 libschroedinger-1.0-0
  libspeex1 libogg0 libtheora0 libvorbis0a libvorbisenc2 libavcodec52 libcaca0
  libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0
  libxcb-render0 libxcb-render-util0 libxrender1 libcairo2 libcroco3 libcups2
  libdatrie1 libdbus-1-3 libdjvulibre-text libjpeg62 libdjvulibre21 libdrm2
  libflac8 libraw1394-11 libavc1394-0 libiec61883-0 libfreebob0 libgd2-noxpm
  libxdamage1 libxext6 libxxf86vm1 libgl1-mesa-glx libglu1-mesa libgomp1
  libltdl7 libpango1.0-common libthai-data libthai0 libxft2 libpango1.0-0
  libgraphviz4 libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1
  libtiff4 libxcomposite1 libxcursor1 libxi6 libxinerama1 libxrandr2
  shared-mime-info libgtk2.0-0 libilmbase6 libsamplerate0 libjack0 liblcms1
  liblqr-1-0 libmad0 libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7
  libmagickcore2 libmng1 libmodplug0c2 libmpcdec3 libqtcore4 libqt4-xml
  libqt4-dbus libqtgui4 libphonon4 libpostproc51 libxtst6 libpulse0
  libqt4-network libqt4-assistant libqt4-script libqt4-designer libqt4-sql
  libqt4-qt3support libqt4-svg libxine1-bin libxine1-ffmpeg libtalloc1
  libwbclient0 libsmbclient libwavpack1 libxine1-misc-plugins libxine1-plugins
  libx86-1 libsvga1 libsdl1.2debian-alsa libsdl1.2debian libxcb-shape0
  libxcb-shm0 libxcb-xv0 libxv1 libxvmc1 libxine1-x libxine1-console libxine1
  phonon-backend-xine phonon libqt4-webkit libqt4-scripttools
  libqt4-xmlpatterns libqt4-help libqt4-test qt4-qmake libqt4-dev libzbar0
  libzbarqt0 libzbarqt-dev libzebra3 libzebraqt0 libzebraqt-dev

Extracting templates from packages: 17%
Extracting templates from packages: 35%
Extracting templates from packages: 53%
Extracting templates from packages: 71%
Extracting templates from packages: 89%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking 

Bug#529778: marked as done (libzebragtk0 and libzbargtk0: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:44:43 +0200
with message-id 4a155acb.1040...@debian.org
and subject line Re: Bug#529778: libzebragtk0 and libzbargtk0: error when 
trying to install together
has caused the Debian Bug report #529778,
regarding libzebragtk0 and libzbargtk0: error when trying to install together
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.)


-- 
529778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbargtk0,libzebragtk0
Version: libzbargtk0/0.7+dfsg-1
Version: libzebragtk0/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3
  libmagic1 file libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libpcre3 libxml2 perl-modules perl ucf defoma libexpat1
  libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config
  libfontconfig1 fontconfig libglib2.0-0 libatk1.0-0 libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libxrender1 libcairo2 libcups2 libdatrie1
  libgtk2.0-common libjpeg62 libjasper1 libpango1.0-common libthai-data
  libthai0 libxft2 libpango1.0-0 libtiff4 libxext6 libxcomposite1 libxcursor1
  libxdamage1 libxi6 libxinerama1 libxrandr2 shared-mime-info libgtk2.0-0
  libice6 libsm6 libzbar0 libzbargtk0 libzebra3 libzebragtk0

Extracting templates from packages: 45%
Extracting templates from packages: 90%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.7dfsg~beta2-4_amd64.deb) 
...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package 

Bug#529781: zebra-tools and zbar-tools: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: zbar-tools,zebra-tools
Version: zbar-tools/0.7+dfsg-1
Version: zebra-tools/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3 libice6
  libsm6 libxt6 libmagic1 file libkeyutils1 libkrb5support0 libk5crypto3
  libkrb5-3 libgssapi-krb5-2 libpcre3 libxml2 perl-modules perl ucf defoma
  libexpat1 libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 fontconfig gsfonts libglib2.0-0 libatk1.0-0
  libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0
  libxcb-render0 libxcb-render-util0 libxrender1 libcairo2 libcroco3 libcups2
  libdatrie1 libdjvulibre-text libjpeg62 libdjvulibre21 libgd2-noxpm libgomp1
  libltdl7 libpango1.0-common libthai-data libthai0 libxft2 libpango1.0-0
  libgraphviz4 libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1
  libtiff4 libxext6 libxcomposite1 libxcursor1 libxdamage1 libxi6 libxinerama1
  libxrandr2 shared-mime-info libgtk2.0-0 libilmbase6 liblcms1 liblqr-1-0
  libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7 libmagickcore2
  libmagick++2 libzbar0 libzebra3 zbar-tools zebra-tools

Extracting templates from packages: 34%
Extracting templates from packages: 69%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.7dfsg~beta2-4_amd64.deb) 
...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from 
.../libgssapi-krb5-2_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.3.dfsg-1_amd64.deb) ...
Selecting 

Bug#529775: marked as done (libzebra3 and libzbar0: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:45:19 +0200
with message-id 4a155aef.1090...@debian.org
and subject line Re: Bug#529775: libzebra3 and libzbar0: error when trying to 
install together
has caused the Debian Bug report #529775,
regarding libzebra3 and libzbar0: error when trying to install together
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.)


-- 
529775: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529775
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbar0,libzebra3
Version: libzbar0/0.7+dfsg-1
Version: libzebra3/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 libjpeg62 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data
  libx11-6 libzbar0 libzebra3
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libzbar0.
Unpacking libzbar0 (from .../libzbar0_0.7+dfsg-1_amd64.deb) ...
Selecting previously deselected package libzebra3.
Unpacking libzebra3 (from .../libzebra3_0.7-1_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libzebra3_0.7-1_amd64.deb 
(--unpack):
 trying to overwrite `/usr/lib/libzbar.so.0.0.0', which is also in package 
libzbar0
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/libzebra3_0.7-1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail. Possible
solutions are to have the two packages conflict, to rename the common
file in one of the two packages, or to remove the file from one
package and have this package depend on the other package. File
diversions or a Replace relation are another possibility.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):


  usr/lib/libzbar.so.0
  usr/lib/libzbar.so.0.0.0
  

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package.

-Ralf.


---End Message---
---BeginMessage---
zebra is going to be removed, no transition needed (package not in
stable, no rdepends, etc.), closing.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/

---End Message---


Bug#529571: marked as done (FTBFS caused by inappropriate chrpath call)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 13:33:19 +
with message-id e1m78od-0002rt...@ries.debian.org
and subject line Bug#529571: fixed in scim-bridge 0.4.16-2
has caused the Debian Bug report #529571,
regarding FTBFS caused by inappropriate chrpath call
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.)


-- 
529571: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529571
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: scim-bridge
Version: 0.4.16-1
Severity: grave
Tags: patch

Scim-bridge FTBFS due to missing -d switch when calling chrpath.
Patch attached.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (300, 'experimental')
Architecture: mipsel (mips64)

Kernel: Linux 2.6.27.1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Naur scim-bridge-0.4.16/debian/rules scim-bridge-0.4.16.new/debian/rules
--- scim-bridge-0.4.16/debian/rules	2009-05-20 15:56:40.0 +0800
+++ scim-bridge-0.4.16.new/debian/rules	2009-05-20 15:59:52.0 +0800
@@ -74,7 +74,7 @@
 
 	# Add here commands to install the package into debian/scim-bridge.
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
-	chrpath debian/tmp/usr/bin/scim-bridge
+	chrpath -d debian/tmp/usr/bin/scim-bridge
 	rm debian/tmp/usr/lib/gtk-2.0/*/immodules/im-scim-bridge.a
 	rm debian/tmp/usr/lib/gtk-2.0/*/immodules/im-scim-bridge.la
 	rm debian/tmp/usr/lib/qt3/plugins/inputmethods/im-scim-bridge.a
---End Message---
---BeginMessage---
Source: scim-bridge
Source-Version: 0.4.16-2

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

scim-bridge-agent_0.4.16-2_amd64.deb
  to pool/main/s/scim-bridge/scim-bridge-agent_0.4.16-2_amd64.deb
scim-bridge-client-gtk_0.4.16-2_amd64.deb
  to pool/main/s/scim-bridge/scim-bridge-client-gtk_0.4.16-2_amd64.deb
scim-bridge-client-qt4_0.4.16-2_amd64.deb
  to pool/main/s/scim-bridge/scim-bridge-client-qt4_0.4.16-2_amd64.deb
scim-bridge-client-qt_0.4.16-2_amd64.deb
  to pool/main/s/scim-bridge/scim-bridge-client-qt_0.4.16-2_amd64.deb
scim-bridge_0.4.16-2.diff.gz
  to pool/main/s/scim-bridge/scim-bridge_0.4.16-2.diff.gz
scim-bridge_0.4.16-2.dsc
  to pool/main/s/scim-bridge/scim-bridge_0.4.16-2.dsc



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

Debian distribution maintenance software
pp.
Zhengpeng Hou zhengpeng-...@ubuntu.com (supplier of updated scim-bridge 
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: Wed, 20 May 2009 16:52:35 +
Source: scim-bridge
Binary: scim-bridge-agent scim-bridge-client-gtk scim-bridge-client-qt 
scim-bridge-client-qt4
Architecture: source amd64
Version: 0.4.16-2
Distribution: unstable
Urgency: low
Maintainer: Zhengpeng Hou zhengpeng-...@ubuntu.com
Changed-By: Zhengpeng Hou zhengpeng-...@ubuntu.com
Description: 
 scim-bridge-agent - IME server of scim-bridge communicate with SCIM
 scim-bridge-client-gtk - IME server of scim-bridge communicate with SCIM
 scim-bridge-client-qt - IME server of scim-bridge communicate with SCIM
 scim-bridge-client-qt4 - IME server of scim-bridge communicate with SCIM
Closes: 529571
Changes: 
 scim-bridge (0.4.16-2) unstable; urgency=low
 .
   * Fix FTBFS by add proper parameter to chrpath. (Closes: #529571)
 - Thanks for Deng Xiyue
Checksums-Sha1: 
 25c50155f7129c5457f83fff5e55e29471b18d75 1261 scim-bridge_0.4.16-2.dsc
 99c695e6e15c4e3eface3787f1339d91b00f89d8 7861 scim-bridge_0.4.16-2.diff.gz
 16ec8cd7eb78581b0854a854b3da4f13e86c003e 76982 
scim-bridge-agent_0.4.16-2_amd64.deb
 cede98dc81d704bae4345731b20bd04f98734ebe 40698 
scim-bridge-client-gtk_0.4.16-2_amd64.deb
 14c758f2acfbf6ae446a94762fd400b758ad9b44 49232 
scim-bridge-client-qt_0.4.16-2_amd64.deb
 a5661916554d99e68783e9da62f4c79156b2fe3f 51970 
scim-bridge-client-qt4_0.4.16-2_amd64.deb
Checksums-Sha256: 
 9472195ed0a75d0552344a5e8e731d182c3a779beb2a5382ed19df9c465c5036 1261 
scim-bridge_0.4.16-2.dsc
 ec6dc20a4678151646bc160a68e28e4197c0a3dfbdb8f54e6f22b02dc2d5ca36 7861 
scim-bridge_0.4.16-2.diff.gz
 

Bug#528020: marked as done (files+dirs in /usr/local/*/* not removed on removal (policy 9.1.2))

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 13:33:28 +
with message-id e1m78om-0002uj...@ries.debian.org
and subject line Bug#528020: fixed in zope-common 0.5.48
has caused the Debian Bug report #528020,
regarding files+dirs in /usr/local/*/* not removed on removal (policy 9.1.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.)


-- 
528020: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528020
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: zope-common
Version: 0.5.47
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts piuparts.d.o

Hi, 

during a test with piuparts I noticed your package left unowned files on the 
system after purge, which is a violation of policy 6.8:

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

From the attached log (scroll to the bottom...):

0m31.0s ERROR: FAIL: Package purging left files on system:
  /usr/local/share/zope  not owned
  /usr/local/share/zope/Extensions   not owned


regards,
Holger
Start: 2009-04-06 14:37:12 UTC

Package: zope-common
Priority: optional
Section: zope
Installed-Size: 252
Maintainer: Debian/Ubuntu Zope Team pkg-zope-develop...@lists.alioth.debian.org
Architecture: all
Version: 0.5.47
Depends: adduser, python2.4, debconf (= 0.5) | debconf-2.0
Filename: pool/main/z/zope-common/zope-common_0.5.47_all.deb
Size: 45916
MD5sum: 3aad1e2aca54bd33398c6040c61de20c
SHA1: fc492fb9236ba569115aee73626167f98f31086c
SHA256: abec18d75b6359804166b9b056e0b2e581641726fc1ffd176d49454c46157b7d
Description: common settings and scripts for Zope installations
 This package contains common settings and scripts for Zope installations.
Tag: role::app-data, suite::zope, web::cms

Executing: sudo /org/piuparts.debian.org/sbin/piuparts --no-symlinks --scriptsdir /etc/piuparts/scripts/ --tmpdir /org/piuparts.debian.org/tmp -ad sid -b sid.tar.gz zope-common
Guessed: debian
0m0.0s INFO: --
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at http://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: --
0m0.0s INFO: piuparts version 0.36~20090406 starting up.
0m0.0s INFO: Command line arguments: /org/piuparts.debian.org/sbin/piuparts --no-symlinks --scriptsdir /etc/piuparts/scripts/ --tmpdir /org/piuparts.debian.org/tmp -ad sid -b sid.tar.gz zope-common
0m0.0s INFO: Running on: Linux piatti 2.6.29.1-dsa-amd64 #2 SMP Sun Apr 5 00:16:11 CEST 2009 x86_64
0m0.0s DEBUG: Created temporary directory /org/piuparts.debian.org/tmp/tmpBEF90i
0m0.0s DEBUG: Unpacking sid.tar.gz into /org/piuparts.debian.org/tmp/tmpBEF90i
0m0.0s DEBUG: Starting command: ['tar', '-C', '/org/piuparts.debian.org/tmp/tmpBEF90i', '-zxf', 'sid.tar.gz']
0m2.7s DEBUG: Command ok: ['tar', '-C', '/org/piuparts.debian.org/tmp/tmpBEF90i', '-zxf', 'sid.tar.gz']
0m2.7s DEBUG: Created policy-rc.d and chmodded it.
0m2.7s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpBEF90i', 'apt-get', 'update']
0m14.8s DUMP: 
  Get:1 http://ftp.fi.debian.org sid Release.gpg [197B]
  Get:2 http://ftp.fi.debian.org sid Release [92.6kB]
  Get:3 http://ftp.fi.debian.org sid/main Packages/DiffIndex [2038B]
  Get:4 http://ftp.fi.debian.org sid/main Packages [7544kB]
  Fetched 7639kB in 10s (726kB/s)
  Reading package lists...
0m14.8s DEBUG: Command ok: ['chroot', '/org/piuparts.debian.org/tmp/tmpBEF90i', 'apt-get', 'update']
0m14.8s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpBEF90i', 'mount', '-t', 'proc', 'proc', '/proc']
0m14.8s DEBUG: Command ok: ['chroot', '/org/piuparts.debian.org/tmp/tmpBEF90i', 'mount', '-t', 'proc', 'proc', '/proc']
0m14.8s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpBEF90i', 'apt-get', '-yf', 'upgrade']
0m20.5s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages have been kept back:
debianutils
  The following packages will be upgraded:
base-passwd grep libc6 libncurses5 libpam-modules libpam-runtime libpam0g
libslang2 lsb-base mktemp ncurses-base ncurses-bin tar tzdata
  14 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
  Need to get 8917kB of archives.
  After this operation, 172kB disk space will be freed.
  WARNING: The following packages cannot be authenticated!
grep mktemp ncurses-bin tar libc6 base-passwd libncurses5 ncurses-base
libpam-modules libpam-runtime 

Bug#529782: python-zebrapygtk and python-zbarpygtk: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: python-zbarpygtk,python-zebrapygtk
Version: python-zbarpygtk/0.7+dfsg-1
Version: python-zebrapygtk/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3
  libmagic1 file libdb4.5 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libpcre3 libicu40 libsqlite3-0 libxml2 mime-support
  perl-modules perl python2.5-minimal python2.5 python-minimal python
  python-central ucf defoma libexpat1 libfreetype6 ttf-dejavu-core
  ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1 fontconfig
  libglib2.0-0 libatk1.0-0 libgfortran3 libblas3gf libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libxrender1 libcairo2 libcups2 libdatrie1
  libgtk2.0-common libjpeg62 libjasper1 libpango1.0-common libthai-data
  libthai0 libxft2 libpango1.0-0 libtiff4 libxext6 libxcomposite1 libxcursor1
  libxdamage1 libxi6 libxinerama1 libxrandr2 shared-mime-info libgtk2.0-0
  libice6 liblapack3gf libsm6 libzbar0 libzbargtk0 libzebra3 libzebragtk0
  python-support python-cairo libffi5 python-gobject python-numpy python-gtk2
  python-zbarpygtk python-zebrapygtk

Extracting templates from packages: 34%
Extracting templates from packages: 69%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libdb4.5.
Unpacking libdb4.5 (from .../libdb4.5_4.5.20-13_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.7dfsg~beta2-4_amd64.deb) 
...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from 
.../libgssapi-krb5-2_1.7dfsg~beta2-4_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libicu40.
Unpacking libicu40 (from .../libicu40_4.0.1-2_amd64.deb) ...
Selecting previously deselected package libsqlite3-0.
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.13-1_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 

Bug#529783: rt-tests and xenomai-runtime: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: xenomai-runtime,rt-tests
Version: xenomai-runtime/2.4.4-3
Version: rt-tests/0.39-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  libxenomai1 rt-tests xenomai-runtime
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxenomai1.
(Reading database ... 8136 files and directories currently installed.)
Unpacking libxenomai1 (from .../libxenomai1_2.4.4-3_amd64.deb) ...
Selecting previously deselected package rt-tests.
Unpacking rt-tests (from .../rt-tests_0.39-1_amd64.deb) ...
Selecting previously deselected package xenomai-runtime.
Unpacking xenomai-runtime (from .../xenomai-runtime_2.4.4-3_amd64.deb) ...
dpkg: error processing 
/var/cache/apt/archives/xenomai-runtime_2.4.4-3_amd64.deb (--unpack):
 trying to overwrite `/usr/bin/cyclictest', which is also in package rt-tests
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/xenomai-runtime_2.4.4-3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail. Possible
solutions are to have the two packages conflict, to rename the common
file in one of the two packages, or to remove the file from one
package and have this package depend on the other package. File
diversions or a Replace relation are another possibility.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):


  usr/bin/cyclictest
  

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package.

-Ralf.



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



Bug#529777: marked as done (libzebraqt0 and libzbarqt0: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:43:45 +0200
with message-id 4a155a91.1020...@debian.org
and subject line Re: Bug#529777: libzebraqt0 and libzbarqt0: error when trying 
to install together
has caused the Debian Bug report #529777,
regarding libzebraqt0 and libzbarqt0: error when trying to install together
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.)


-- 
529777: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529777
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbarqt0,libzebraqt0
Version: libzbarqt0/0.7+dfsg-1
Version: libzebraqt0/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6
  libxt6 libmagic1 file libpcre3 perl-modules perl ucf defoma libexpat1
  libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config
  libfontconfig1 fontconfig libaudio2 libglib2.0-0 libjpeg62 liblcms1 libmng1
  libpng12-0 libqtcore4 libtiff4 libxext6 libxrender1 libqtgui4 libzbar0
  libzbarqt0 libzebra3 libzebraqt0

Extracting templates from packages: 76%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxt6.
(Reading database ... 8454 files and directories currently installed.)
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.10.0-22_all.deb) ...
Selecting previously deselected package perl.
Unpacking perl (from .../perl_5.10.0-22_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0018_all.deb) ...
Moving old data out of the way
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from 

Bug#529779: marked as done (libzebragtk-dev and libzbargtk-dev: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:44:22 +0200
with message-id 4a155ab6.7080...@debian.org
and subject line Re: Bug#529779: libzebragtk-dev and libzbargtk-dev: error when 
trying to install together
has caused the Debian Bug report #529779,
regarding libzebragtk-dev and libzbargtk-dev: error when trying to install 
together
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.)


-- 
529779: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529779
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbargtk-dev,libzebragtk-dev
Version: libzbargtk-dev/0.7+dfsg-1
Version: libzebragtk-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libxml2 fontconfig liba52-0.7.4 libatk1.0-0 libglib2.0-dev
  libatk1.0-dev libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0
  libpng12-0 libxcb-render0 libxcb-render-util0 libcairo2 libpng12-dev
  libjpeg62 libdirectfb-extra libjpeg62-dev libmpeg3-1 libmpeg3-dev
  libsysfs-dev libdirectfb-dev libpixman-1-dev libxcb-render0-dev
  libxcb-render-util0-dev libcairo2-dev libcups2 libdatrie1 libgtk2.0-common
  libjasper1 libpango1.0-common libthai-data libthai0 libpango1.0-0 libtiff4
  shared-mime-info libgtk2.0-0 libpango1.0-dev libxml2-utils libgtk2.0-dev
  libzbar0 libzbargtk0 libzbargtk-dev libzebra3 libzebragtk0 libzebragtk-dev

Extracting templates from packages: 24%
Extracting templates from packages: 49%
Extracting templates from packages: 74%
Extracting templates from packages: 99%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 8171 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.0-2_amd64.deb) ...
Selecting previously 

Bug#529776: marked as done (libzebra-dev and libzbar-dev: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:45:05 +0200
with message-id 4a155ae1.8030...@debian.org
and subject line Re: Bug#529776: libzebra-dev and libzbar-dev: error when 
trying to install together
has caused the Debian Bug report #529776,
regarding libzebra-dev and libzbar-dev: error when trying to install together
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.)


-- 
529776: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529776
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbar-dev,libzebra-dev
Version: libzbar-dev/0.7+dfsg-1
Version: libzebra-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libxt6 libxt-dev libkeyutils1 libkrb5support0 libk5crypto3
  libkrb5-3 libgssapi-krb5-2 libxml2 fontconfig gsfonts liba52-0.7.4
  libatk1.0-0 libglib2.0-dev libatk1.0-dev libbz2-dev libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libcairo2 libpng12-dev libjpeg62 libdirectfb-extra
  libjpeg62-dev libmpeg3-1 libmpeg3-dev libsysfs-dev libdirectfb-dev
  libpixman-1-dev libxcb-render0-dev libxcb-render-util0-dev libcairo2-dev
  libcroco3 libcups2 libdatrie1 libdjvulibre-text libdjvulibre21
  libdjvulibre-dev libexif12 libexif-dev libgd2-noxpm libgomp1 libltdl7
  libpango1.0-common libthai-data libthai0 libpango1.0-0 libgraphviz4
  libltdl-dev libgraphviz-dev libgsf-1-common libgsf-1-114 libgtk2.0-common
  libjasper1 libtiff4 shared-mime-info libgtk2.0-0 libpango1.0-dev
  libxml2-utils libgtk2.0-dev libilmbase6 libilmbase-dev libjasper-dev
  liblcms1 liblcms1-dev liblqr-1-0 liblqr-1-0-dev libmagickwand2 libopenexr6
  librsvg2-2 libwmf0.2-7 libmagickcore2 libmagick++2 libtiffxx0c2 libtiff4-dev
  libwmf-dev libxml2-dev librsvg2-dev libopenexr-dev libmagickcore-dev
  libmagickwand-dev libmagick++-dev libzbar0 libzbar-dev libzebra3
  libzebra-dev

Extracting templates from packages: 18%
Extracting templates from packages: 37%
Extracting templates from packages: 56%
Extracting templates from packages: 75%
Extracting templates from packages: 94%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11proto-core-dev.
(Reading 

Bug#529781: marked as done (zebra-tools and zbar-tools: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:55:44 +0200
with message-id 4a155d60.6090...@debian.org
and subject line Re: Bug#529781: zebra-tools and zbar-tools: error when trying 
to install together
has caused the Debian Bug report #529781,
regarding zebra-tools and zbar-tools: error when trying to install together
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.)


-- 
529781: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529781
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: zbar-tools,zebra-tools
Version: zbar-tools/0.7+dfsg-1
Version: zebra-tools/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3 libice6
  libsm6 libxt6 libmagic1 file libkeyutils1 libkrb5support0 libk5crypto3
  libkrb5-3 libgssapi-krb5-2 libpcre3 libxml2 perl-modules perl ucf defoma
  libexpat1 libfreetype6 ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 fontconfig gsfonts libglib2.0-0 libatk1.0-0
  libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0
  libxcb-render0 libxcb-render-util0 libxrender1 libcairo2 libcroco3 libcups2
  libdatrie1 libdjvulibre-text libjpeg62 libdjvulibre21 libgd2-noxpm libgomp1
  libltdl7 libpango1.0-common libthai-data libthai0 libxft2 libpango1.0-0
  libgraphviz4 libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1
  libtiff4 libxext6 libxcomposite1 libxcursor1 libxdamage1 libxi6 libxinerama1
  libxrandr2 shared-mime-info libgtk2.0-0 libilmbase6 liblcms1 liblqr-1-0
  libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7 libmagickcore2
  libmagick++2 libzbar0 libzebra3 zbar-tools zebra-tools

Extracting templates from packages: 34%
Extracting templates from packages: 69%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...

Bug#529780: marked as done (libzebraqt-dev and libzbarqt-dev: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:49:15 +0200
with message-id 4a155bdb.1000...@debian.org
and subject line Re: Bug#529780: libzebraqt-dev and libzbarqt-dev: error when 
trying to install together
has caused the Debian Bug report #529780,
regarding libzebraqt-dev and libzbarqt-dev: error when trying to install 
together
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.)


-- 
529780: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529780
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzbarqt-dev,libzebraqt-dev
Version: libzbarqt-dev/0.7+dfsg-1
Version: libzebraqt-dev/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3 libice6
  libsm6 libxt6 libmagic1 file libcap2 libgpm2 libkeyutils1 libkrb5support0
  libk5crypto3 libkrb5-3 libgssapi-krb5-2 libldap-2.4-2 libpcre3 libicu40
  libsqlite3-0 libxml2 perl-modules perl ucf defoma libexpat1 libfreetype6
  ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
  fontconfig gsfonts libaa1 libasound2 libasyncns0 libglib2.0-0 libatk1.0-0
  libaudio2 libavutil49 libfaad0 libgsm1 liboil0.3 libschroedinger-1.0-0
  libspeex1 libogg0 libtheora0 libvorbis0a libvorbisenc2 libavcodec52 libcaca0
  libsysfs2 tsconf libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0
  libxcb-render0 libxcb-render-util0 libxrender1 libcairo2 libcroco3 libcups2
  libdatrie1 libdbus-1-3 libdjvulibre-text libjpeg62 libdjvulibre21 libdrm2
  libflac8 libraw1394-11 libavc1394-0 libiec61883-0 libfreebob0 libgd2-noxpm
  libxdamage1 libxext6 libxxf86vm1 libgl1-mesa-glx libglu1-mesa libgomp1
  libltdl7 libpango1.0-common libthai-data libthai0 libxft2 libpango1.0-0
  libgraphviz4 libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1
  libtiff4 libxcomposite1 libxcursor1 libxi6 libxinerama1 libxrandr2
  shared-mime-info libgtk2.0-0 libilmbase6 libsamplerate0 libjack0 liblcms1
  liblqr-1-0 libmad0 libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7
  libmagickcore2 libmng1 libmodplug0c2 libmpcdec3 libqtcore4 libqt4-xml
  libqt4-dbus libqtgui4 libphonon4 libpostproc51 libxtst6 libpulse0
  libqt4-network libqt4-assistant libqt4-script libqt4-designer libqt4-sql
  libqt4-qt3support libqt4-svg libxine1-bin libxine1-ffmpeg libtalloc1
  libwbclient0 libsmbclient libwavpack1 libxine1-misc-plugins libxine1-plugins
  libx86-1 libsvga1 libsdl1.2debian-alsa libsdl1.2debian libxcb-shape0
  libxcb-shm0 libxcb-xv0 libxv1 libxvmc1 libxine1-x libxine1-console libxine1
  phonon-backend-xine phonon libqt4-webkit libqt4-scripttools
  libqt4-xmlpatterns libqt4-help libqt4-test qt4-qmake libqt4-dev libzbar0
  libzbarqt0 libzbarqt-dev libzebra3 libzebraqt0 libzebraqt-dev

Extracting templates from packages: 17%
Extracting templates from packages: 35%
Extracting templates from packages: 53%
Extracting templates from packages: 71%
Extracting templates from packages: 89%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 

Bug#529782: marked as done (python-zebrapygtk and python-zbarpygtk: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 15:55:29 +0200
with message-id 4a155d51.6050...@debian.org
and subject line Re: Bug#529782: python-zebrapygtk and python-zbarpygtk: error 
when trying to install together
has caused the Debian Bug report #529782,
regarding python-zebrapygtk and python-zbarpygtk: error when trying to install 
together
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.)


-- 
529782: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529782
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-zbarpygtk,python-zebrapygtk
Version: python-zbarpygtk/0.7+dfsg-1
Version: python-zebrapygtk/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxfixes3
  libmagic1 file libdb4.5 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libpcre3 libicu40 libsqlite3-0 libxml2 mime-support
  perl-modules perl python2.5-minimal python2.5 python-minimal python
  python-central ucf defoma libexpat1 libfreetype6 ttf-dejavu-core
  ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1 fontconfig
  libglib2.0-0 libatk1.0-0 libgfortran3 libblas3gf libsysfs2 tsconf
  libts-0.0-0 libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libxrender1 libcairo2 libcups2 libdatrie1
  libgtk2.0-common libjpeg62 libjasper1 libpango1.0-common libthai-data
  libthai0 libxft2 libpango1.0-0 libtiff4 libxext6 libxcomposite1 libxcursor1
  libxdamage1 libxi6 libxinerama1 libxrandr2 shared-mime-info libgtk2.0-0
  libice6 liblapack3gf libsm6 libzbar0 libzbargtk0 libzebra3 libzebragtk0
  python-support python-cairo libffi5 python-gobject python-numpy python-gtk2
  python-zbarpygtk python-zebrapygtk

Extracting templates from packages: 34%
Extracting templates from packages: 69%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.2-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Processing triggers for man-db ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up x11-common (1:7.4+1) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libxfixes3.
(Reading database ... 8442 files and directories currently installed.)
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libdb4.5.
Unpacking libdb4.5 (from .../libdb4.5_4.5.20-13_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously 

Bug#529784: zebra-dbg and zbar-dbg: error when trying to install together

2009-05-21 Thread Ralf Treinen
Package: zbar-dbg,zebra-dbg
Version: zbar-dbg/0.7+dfsg-1
Version: zebra-dbg/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libxt6 libxt-dev libcap2 libdb4.5 libgpm2 libkeyutils1
  libkrb5support0 libk5crypto3 libkrb5-3 libgssapi-krb5-2 libldap-2.4-2
  libicu40 libsqlite3-0 libxml2 mime-support python2.5-minimal python2.5
  python-minimal python python-central fontconfig gsfonts liba52-0.7.4 libaa1
  libasound2 libasyncns0 libatk1.0-0 libglib2.0-dev libatk1.0-dev libaudio2
  libavutil49 libfaad0 libgsm1 liboil0.3 libschroedinger-1.0-0 libspeex1
  libogg0 libtheora0 libvorbis0a libvorbisenc2 libavcodec52 libgfortran3
  libblas3gf libbz2-dev libcaca0 libsysfs2 tsconf libts-0.0-0
  libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libcairo2 libpng12-dev libjpeg62 libdirectfb-extra
  libjpeg62-dev libmpeg3-1 libmpeg3-dev libsysfs-dev libdirectfb-dev
  libpixman-1-dev libxcb-render0-dev libxcb-render-util0-dev libcairo2-dev
  libcroco3 libcups2 libdatrie1 libdbus-1-3 libdjvulibre-text libdjvulibre21
  libdjvulibre-dev libdrm2 libexif12 libexif-dev libflac8 libraw1394-11
  libavc1394-0 libiec61883-0 libfreebob0 libgd2-noxpm libxxf86vm1
  libgl1-mesa-glx libglu1-mesa libgomp1 libltdl7 libpango1.0-common
  libthai-data libthai0 libpango1.0-0 libgraphviz4 libltdl-dev libgraphviz-dev
  libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1 libtiff4
  shared-mime-info libgtk2.0-0 libpango1.0-dev libxml2-utils libgtk2.0-dev
  libilmbase6 libilmbase-dev libsamplerate0 libjack0 libjasper-dev
  liblapack3gf liblcms1 liblcms1-dev liblqr-1-0 liblqr-1-0-dev libmad0
  libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7 libmagickcore2
  libmagick++2 libtiffxx0c2 libtiff4-dev libwmf-dev libxml2-dev librsvg2-dev
  libopenexr-dev libmagickcore-dev libmagickwand-dev libmagick++-dev libmng1
  libmodplug0c2 libmpcdec3 libqtcore4 libqt4-xml libqt4-dbus libqtgui4
  libphonon4 libpostproc51 libxtst6 libpulse0 libqt4-network libqt4-assistant
  libqt4-script libqt4-designer libqt4-sql libqt4-qt3support libqt4-svg
  libxine1-bin libxine1-ffmpeg libtalloc1 libwbclient0 libsmbclient
  libwavpack1 libxine1-misc-plugins libxine1-plugins libx86-1 libsvga1
  libsdl1.2debian-alsa libsdl1.2debian libxcb-shape0 libxcb-shm0 libxcb-xv0
  libxv1 libxvmc1 libxine1-x libxine1-console libxine1 phonon-backend-xine
  phonon libqt4-webkit libqt4-scripttools libqt4-xmlpatterns libqt4-help
  libqt4-test qt4-qmake libqt4-dev libzbar0 libzbar-dev libzbargtk0
  libzbargtk-dev libzbarqt0 libzbarqt-dev libzebra3 libzebra-dev libzebragtk0
  libzebragtk-dev libzebraqt0 libzebraqt-dev python-support python-cairo
  libffi5 python-gobject python-numpy python-gtk2 python-zbarpygtk
  python-zebrapygtk zbar-tools zebra-tools zbar-dbg zebra-dbg

Extracting templates from packages: 11%
Extracting templates from packages: 22%
Extracting templates from packages: 33%
Extracting templates from packages: 44%
Extracting templates from packages: 55%
Extracting templates from packages: 66%
Extracting templates from packages: 77%
Extracting templates from packages: 88%
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package x11-common.
(Reading database ... 8136 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+1_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 

Bug#529784: marked as done (zebra-dbg and zbar-dbg: error when trying to install together)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 16:00:30 +0200
with message-id 4a155e7e.6030...@debian.org
and subject line Re: Bug#529784: zebra-dbg and zbar-dbg: error when trying to 
install together
has caused the Debian Bug report #529784,
regarding zebra-dbg and zbar-dbg: error when trying to install together
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.)


-- 
529784: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529784
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: zbar-dbg,zebra-dbg
Version: zbar-dbg/0.7+dfsg-1
Version: zebra-dbg/0.7-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-05-21
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libxcb1 libx11-data libx11-6 libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev libxext6 libxfixes3
  libxcomposite1 x11proto-xext-dev x11proto-fixes-dev libxfixes-dev
  x11proto-composite-dev libxext-dev libxcomposite-dev libxrender1 libxcursor1
  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
  perl-modules perl defoma ttf-dejavu-core ttf-dejavu-extra ttf-dejavu
  fontconfig-config libfontconfig1 libxft2 linux-libc-dev libc6-dev
  libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0 pkg-config
  libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxrandr2 x11proto-randr-dev
  libxrandr-dev libxt6 libxt-dev libcap2 libdb4.5 libgpm2 libkeyutils1
  libkrb5support0 libk5crypto3 libkrb5-3 libgssapi-krb5-2 libldap-2.4-2
  libicu40 libsqlite3-0 libxml2 mime-support python2.5-minimal python2.5
  python-minimal python python-central fontconfig gsfonts liba52-0.7.4 libaa1
  libasound2 libasyncns0 libatk1.0-0 libglib2.0-dev libatk1.0-dev libaudio2
  libavutil49 libfaad0 libgsm1 liboil0.3 libschroedinger-1.0-0 libspeex1
  libogg0 libtheora0 libvorbis0a libvorbisenc2 libavcodec52 libgfortran3
  libblas3gf libbz2-dev libcaca0 libsysfs2 tsconf libts-0.0-0
  libdirectfb-1.2-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libcairo2 libpng12-dev libjpeg62 libdirectfb-extra
  libjpeg62-dev libmpeg3-1 libmpeg3-dev libsysfs-dev libdirectfb-dev
  libpixman-1-dev libxcb-render0-dev libxcb-render-util0-dev libcairo2-dev
  libcroco3 libcups2 libdatrie1 libdbus-1-3 libdjvulibre-text libdjvulibre21
  libdjvulibre-dev libdrm2 libexif12 libexif-dev libflac8 libraw1394-11
  libavc1394-0 libiec61883-0 libfreebob0 libgd2-noxpm libxxf86vm1
  libgl1-mesa-glx libglu1-mesa libgomp1 libltdl7 libpango1.0-common
  libthai-data libthai0 libpango1.0-0 libgraphviz4 libltdl-dev libgraphviz-dev
  libgsf-1-common libgsf-1-114 libgtk2.0-common libjasper1 libtiff4
  shared-mime-info libgtk2.0-0 libpango1.0-dev libxml2-utils libgtk2.0-dev
  libilmbase6 libilmbase-dev libsamplerate0 libjack0 libjasper-dev
  liblapack3gf liblcms1 liblcms1-dev liblqr-1-0 liblqr-1-0-dev libmad0
  libmagickwand2 libopenexr6 librsvg2-2 libwmf0.2-7 libmagickcore2
  libmagick++2 libtiffxx0c2 libtiff4-dev libwmf-dev libxml2-dev librsvg2-dev
  libopenexr-dev libmagickcore-dev libmagickwand-dev libmagick++-dev libmng1
  libmodplug0c2 libmpcdec3 libqtcore4 libqt4-xml libqt4-dbus libqtgui4
  libphonon4 libpostproc51 libxtst6 libpulse0 libqt4-network libqt4-assistant
  libqt4-script libqt4-designer libqt4-sql libqt4-qt3support libqt4-svg
  libxine1-bin libxine1-ffmpeg libtalloc1 libwbclient0 libsmbclient
  libwavpack1 libxine1-misc-plugins libxine1-plugins libx86-1 libsvga1
  libsdl1.2debian-alsa libsdl1.2debian libxcb-shape0 libxcb-shm0 libxcb-xv0
  libxv1 libxvmc1 libxine1-x libxine1-console libxine1 phonon-backend-xine
  phonon libqt4-webkit libqt4-scripttools libqt4-xmlpatterns libqt4-help
  libqt4-test qt4-qmake libqt4-dev libzbar0 libzbar-dev libzbargtk0
  libzbargtk-dev libzbarqt0 libzbarqt-dev libzebra3 libzebra-dev libzebragtk0
  libzebragtk-dev libzebraqt0 libzebraqt-dev python-support python-cairo
  libffi5 python-gobject python-numpy python-gtk2 python-zbarpygtk
  python-zebrapygtk zbar-tools zebra-tools zbar-dbg zebra-dbg

Extracting templates from packages: 11%
Extracting templates from packages: 22%
Extracting 

Bug#529720: CRM114's .css format

2009-05-21 Thread Chanoch (Ken) Bloom
I don't use CRM114, but I just read Christian Perrier blog post on
planet.debian.org so I happened to check out this bug report.

Milan Zamazal wrote:
 This is not the first time .css format change has happened.  And yes, it
 was reported and discussed upstream in the past.  They are willing to
 avoid such changes but it may not always be easy.  More pressure
 (i.e. from more users) on the upstream maintainers may or may not
 improve things.  The .css format is generally not considered as very
 fixed, e.g. it's not portable across architectures after all.
 
 There were other upgrade problems in the past.  For instance, I
 personally don't simply believe .crm scripts from the last version work
 with a new one without changes and I always test that crm114 still works
 after the upgrade.  I'd say that backward compatibility is not a crm114
 feature and one must expect problems when upgrading crm114 to a new
 version.  Of course, a user may not think about crm114 when typing
 `apt-get upgrade'.  This wouldn't be a big problem if crm114 wasn't
 typically used for things like e-mail delivery.
 
 So the primary problem is how to _warn_ users that crm114 gets upgraded
 with higher than casual risk of breaking things.  The current practice
 of warning about important changes in NEWS.Debian seemed to work well so
 far.  But I agree it may not be enough and I'm open to suggestions how
 to improve it.

If upstream can't keep the .css format stable, then they should break
it more obviously so that crm114 can fail gracefully.

They should have a version number in the .css file header.  If they
find the wrong version number in a .css file, then crm114 should exit
immediately with a nonzero exit code, to indicate to the caller that
it can't handle mail, and the caller should hold on to the message in
whatever way it knows how (for example, if fetchmail is calling
crm114, then fetchmail wouldn't mark the email as read, and wouldn't
delete it from the server, and so that fetchmail could download the
same message in the next run.)

Just my two cents.

--Ken

-- 
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology.
http://www.iit.edu/~kbloom1/


signature.asc
Description: Digital signature


Processed (with 2 errors): Re: Bug#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable dependencies

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 529773 + pending
Bug#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable 
dependencies
There were no tags set.
Tags added: pending

 notfound 0.8-1
Unknown command or malformed arguments to command.

 found 0.8.1-3
Unknown command or malformed arguments to command.

 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#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable dependencies

2009-05-21 Thread Joachim Breitner
tags 529773 + pending
notfound 0.8-1
found 0.8.1-3
thanks

Hi,

Am Donnerstag, den 21.05.2009, 15:04 +0200 schrieb Sebastian Ramacher:
 Package: libghc6-xmonad-dev
 Version: 0.8-1
 Severity: grave
 
 libghc6-xmonad-dev can not be upgraded to the latest version since its'
 dependencies are not satisfiable.
 
 libghc6-xmonad-dev 0.8.1-3 depends on
 
 ghc6 ( 6.10.1+dfsg1+)
 ghc6 (= 6.10.1+dfsg1-13)
 
 whereas the latest version of ghc6 in unstable is 6.10.3-1. So those
 two dependencies can't be satisfied.
 
 The same applies to libghc6-xmonad-contrib-dev.

thanks. kaol has requested binNMUs for these and other libraries, so
eventually, they will appear in the archive.

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: tagging 382175

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Automatically generated email from bts, devscripts version 2.10.35lenny3
 tags 382175 + pending
Bug#382175: glibc: contains Sun RPC implementation under non-free license
Tags were: lenny-ignore upstream etch-ignore sarge-ignore
Tags added: pending


End of message, 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#529801: gamin: FTBFS with libtool 2.2.6

2009-05-21 Thread Samuel Thibault
Package: gamin
Version: 0.1.10-1
Severity: serious
Justification: FTBFS

Hello,

gamin currently FTBFS with:

/bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I/tmp/gamin-0.1.10/./libgamin -I..  -I.. -I/tmp/gamin-0.1.10/./lib 
-DBINDIR=\/usr/lib/gamin\ -DBUILDDIR=\..\ -DGAM_DEBUG_ENABLED   -Wall 
-Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs 
-Wsign-compare -Wno-sign-compare -g -Wall -g -g -Wall -O2 -c -o gam_api.lo 
/tmp/gamin-0.1.10/./libgamin/gam_api.c
../libtool: line 821: X--tag=CC: command not found
../libtool: line 854: libtool: ignoring unknown tag : command not found
etc.

The libtool maintainer said this is because there is a mixture of
libtool versions in the source and scripts should probably just be
regenerated.

Samuel

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

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

Versions of packages gamin depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgamin0 0.1.10-1   Client library for the gamin file 
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines

gamin recommends no packages.

gamin suggests no packages.

-- no debconf information

-- 
Samuel Thibault samuel.thiba...@fnac.net
quit   When the quit statement is read, the  bc  processor
   is  terminated, regardless of where the quit state-
   ment is found.  For example, if  (0  ==  1)  quit
   will cause bc to terminate.
(Seen in the manpage for bc. Note the if statement's logic)



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



Bug#515274: gbuffy: Depends on GTK 1.2

2009-05-21 Thread Kelvin Ku
Thanks for the gtk2 patch. We are not using debian so we're not sure what your
build environment is, but we encountered a few hitches building it after
patching:

   - the original configure was built with autoconf 2.13, but the patched
 configure.in uses gtk2 m4 macros which seem to require autoconf 2.61
   - the Makefile.in does not work with configure generated by autoconf 2.61;
 the resulting Makefile has some un-substituted $expressions
   - fix: hack configure to make it work

Also, the patched gbuffy itself had some problems:

   - segfaults when opening the configuration dialog or displaying
 headers (both operations try to draw a pixmap)
   - fix: remove the gdk_draw_bitmap function in gbuffy.c so that the internal
 gdk_draw_drawable function is used instead

   - window resets position when gbuffy_display is called again, e.g., after
 closing configuration dialog
   - fix: use a configure_event callback instead of using the timeout callback
 to update internal window state after a position/dimension change

   - mailbox button and main window don't grow and shrink
 immediately/correctly in response to changes in button label lengths
 (mailbox: count)
   - fix: still working on it; button and window sizes are correct when gbuffy
 is initially launched now, but not while it is running

We're not sure who exactly to contact about patching gbuffy, since the gtk2
patches seem to be pending only for the debian package. The gendiff output for
our patches is below, if you're interested.

Regards,
Kelvin Ku

--- ../tmp/gbuffy.c 2009-05-21 11:49:03.794448649 -0400
+++ gbuffy.c2009-05-21 11:48:06.962703339 -0400
@@ -137,54 +144,6 @@
   return gdk_bitmap_create_from_data (w, data, 48, 48);
 }
 
-#include gdk/gdkprivate.h
-void
-gdk_draw_bitmap (GdkDrawable *drawable,
- GdkGC   *gc,
- GdkPixmap   *src,
- gint xsrc,
- gint ysrc,
- gint xdest,
- gint ydest,
- gint width,
- gint height)
-{
-  GdkWindow *drawable_private;
-  GdkWindow *src_private;
-  GdkGC *gc_private;
-  g_return_if_fail (drawable != NULL);
-  g_return_if_fail (src != NULL);
-  g_return_if_fail (gc != NULL);
-
-  drawable_private = (GdkWindow *) drawable;
-  src_private = (GdkWindow *) src;
-  gc_private = (GdkGC *) gc;
-
-  if (width == -1)
-/*width = src_private-width; */
-gdk_drawable_get_size (src_private, width, height);
-  if (height == -1)
-/*height = src_private-height; */
-gdk_drawable_get_size (src_private, width, height);
-
-/* BDD - No idea if this is correct. */
-/*  XCopyPlane (drawable_private-xdisplay, */
-/* src_private-xwindow, */
-/* drawable_private-xwindow, */
-/* gc_private-xgc, */
-/* xsrc, ysrc, */
-/* width, height, */
-/* xdest, ydest, 1); */
-/*} */
-  XCopyPlane (gdk_x11_display_get_xdisplay(drawable_private),
- gdk_x11_get_default_root_xwindow(),
- gdk_x11_get_default_root_xwindow,
- gdk_x11_gc_get_xgc(gc_private),
- xsrc, ysrc,
- width, height,
- xdest, ydest, 1);
-}
-
 gint configure_event (GtkWidget *da, GdkEventConfigure *event, BOX_INFO *box)
 {
   GList *headers;
@@ -554,9 +536,6 @@
 {
   BOX_INFO *mbox;
   int change;
-  gint cur_width;
-  gint cur_height;
-  static unsigned int beenhere = 0;
 
   mbox = MailboxInfo;
   while (mbox != NULL)
@@ -577,24 +560,6 @@
 mbox = mbox-next;
   }
 
-  /* This is the wrong way to do this, but its quick and dirty.  I
-   * should figure out what event I should capture to receive and update
-   * this information, but instead we just update it here. */
-
-  gdk_window_get_size(MainWindow-window, cur_width, cur_height);
-  if (cur_width != Width)
-Width = cur_width;
-  if (cur_height != Height)
-Height = cur_height;
-  
-  HorizPos.sign = POSITIVE;
-  VertPos.sign = POSITIVE;
-
-  if (beenhere)
-gdk_window_get_position (MainWindow-window, HorizPos.value, 
VertPos.value);
-  else
-beenhere = 1;
-
   return TRUE;
 }
 
@@ -637,6 +602,19 @@
 }
 #endif
 
+/*
+ * Saves main window position/dimensions in case it's destroyed and remade.
+ */
+gint main_window_configure_event (GtkWidget *widget, GdkEventConfigure *event, 
gpointer user_data)
+{
+   HorizPos.value = event-x;
+   VertPos.value = event-y;
+   HorizPos.sign = VertPos.sign = POSITIVE;
+   Width = event-width;
+   Height = event-height;
+   return TRUE;
+}
+
 void gbuffy_display ()
 {
   GtkWidget *box;
@@ -739,36 +718,40 @@
  GTK_FILL | GTK_SHRINK,
  0, 0);
 gtk_widget_show (mbox-button);
-gtk_signal_connect_after (GTK_OBJECT (mbox-button), button_press_event,
-   GTK_SIGNAL_FUNC (gbuffy_button_callback), mbox);
+
+gtk_signal_connect (GTK_OBJECT (mbox-button), 

Bug#525676: closed by Jens Peter Secher j...@debian.org (Bug#525071: fixed in libcrypto++ 5.6.0-2)

2009-05-21 Thread Stephane List

Hi,

I've tested, the bugs is resolved.

Thanks a lot.

Stephane

Debian Bug Tracking System a écrit :

This is an automatic notification regarding your Bug report
which was filed against the amule package:

#525071: amule: segfault in CryptoPP

It has been closed by Jens Peter Secher j...@debian.org.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Jens Peter Secher 
j...@debian.org by
replying to this email.


  




Sujet:
Bug#525071: fixed in libcrypto++ 5.6.0-2
Expéditeur:
Jens Peter Secher j...@debian.org
Date:
Tue, 19 May 2009 08:26:46 +
Destinataire:
525071-cl...@bugs.debian.org

Destinataire:
525071-cl...@bugs.debian.org


Source: libcrypto++
Source-Version: 5.6.0-2

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

libcrypto++-dev_5.6.0-2_i386.deb
  to pool/main/libc/libcrypto++/libcrypto++-dev_5.6.0-2_i386.deb
libcrypto++-doc_5.6.0-2_all.deb
  to pool/main/libc/libcrypto++/libcrypto++-doc_5.6.0-2_all.deb
libcrypto++-utils_5.6.0-2_i386.deb
  to pool/main/libc/libcrypto++/libcrypto++-utils_5.6.0-2_i386.deb
libcrypto++8-dbg_5.6.0-2_i386.deb
  to pool/main/libc/libcrypto++/libcrypto++8-dbg_5.6.0-2_i386.deb
libcrypto++8_5.6.0-2_i386.deb
  to pool/main/libc/libcrypto++/libcrypto++8_5.6.0-2_i386.deb
libcrypto++_5.6.0-2.diff.gz
  to pool/main/libc/libcrypto++/libcrypto++_5.6.0-2.diff.gz
libcrypto++_5.6.0-2.dsc
  to pool/main/libc/libcrypto++/libcrypto++_5.6.0-2.dsc



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

Debian distribution maintenance software
pp.
Jens Peter Secher j...@debian.org (supplier of updated libcrypto++ 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: Tue, 28 Apr 2009 23:23:21 +0200
Source: libcrypto++
Binary: libcrypto++8 libcrypto++8-dbg libcrypto++-dev libcrypto++-utils 
libcrypto++-doc
Architecture: source all i386
Version: 5.6.0-2
Distribution: unstable
Urgency: low
Maintainer: Jens Peter Secher j...@debian.org
Changed-By: Jens Peter Secher j...@debian.org
Description: 
 libcrypto++-dev - General purpose cryptographic library - C++ development

 libcrypto++-doc - General purpose cryptographic library - documentation
 libcrypto++-utils - General purpose cryptographic library - utilities and data 
files
 libcrypto++8 - General purpose cryptographic library - shared library
 libcrypto++8-dbg - General purpose cryptographic library - debug symbols
Closes: 525071
Changes: 
 libcrypto++ (5.6.0-2) unstable; urgency=low

 .
   * Added a package with debug symbols.
   * Drop the DCRYPTOPP_DISABLE_ASM flag to avoid segfault in amule on
 i386.
 (Closes: #525071)
Checksums-Sha1: 
 96def69902df654dd534e0f6eb18f9e38a87038e 1335 libcrypto++_5.6.0-2.dsc

 a16d6cf9335b23d4573bc0205cef49c2965cd673 21836 libcrypto++_5.6.0-2.diff.gz
 4db9dce428fec55fecea170be789089e62e324d5 4332186 
libcrypto++-doc_5.6.0-2_all.deb
 17d55405b90c43df2818e3ed60030d011c95ae34 1231196 libcrypto++8_5.6.0-2_i386.deb
 12c5f7a15274350157906fe668e77147286e9bba 6814798 
libcrypto++8-dbg_5.6.0-2_i386.deb
 52fa0f69008944ba49e33153d85420dc824487c6 2629002 
libcrypto++-dev_5.6.0-2_i386.deb
 df400b423f75533116846697a705e14a7c295529 907986 
libcrypto++-utils_5.6.0-2_i386.deb
Checksums-Sha256: 
 1d4d712565180c8d823cfa88557a7a020b1e127d4e8080e5e009f65e94794686 1335 libcrypto++_5.6.0-2.dsc

 5bfce704324886800c3c8387bbbf457e07d425b9df46a3dc16f64be1f44acbb9 21836 
libcrypto++_5.6.0-2.diff.gz
 2a458a7d84ae117db55d6586fed22f89e8a7acbb5effa425a0789f9a768b70e8 4332186 
libcrypto++-doc_5.6.0-2_all.deb
 02ef7a297fdcc5ad86a86f505851f33af37312121123c91d7265be4864ae6c71 1231196 
libcrypto++8_5.6.0-2_i386.deb
 d773ea3191680b7e2f2154fba492558d543179fa0bd2486281e71fce59636566 6814798 
libcrypto++8-dbg_5.6.0-2_i386.deb
 eaffaf78c510148a969a990b364ab6da6a2028df0b2349c08db75b70b7ffad11 2629002 
libcrypto++-dev_5.6.0-2_i386.deb
 09944e1c87454f6f89e6d7dd36123878fcbe7311bc53bb02fee4c64cca5dda9c 907986 
libcrypto++-utils_5.6.0-2_i386.deb
Files: 
 b4fede274b1f478e35d033cf302913f3 1335 libs optional libcrypto++_5.6.0-2.dsc

 05c8f8aa772705188c736c3d00c29acf 21836 libs optional 
libcrypto++_5.6.0-2.diff.gz
 60abe610b1e9c164cf8098f8a4c9cb36 4332186 doc optional 
libcrypto++-doc_5.6.0-2_all.deb
 18ed92fdd72c84f1643e482b6e2305bd 1231196 libs optional 
libcrypto++8_5.6.0-2_i386.deb
 7abb95bdd3711a6db736793f394a1df9 

Bug#527314: Bug#527461: considering preparing NMU of botan-devel for bug 527461

2009-05-21 Thread Zack Weinberg
On Tue, May 12, 2009 at 11:21 PM, Daniel Baumann dan...@debian.org wrote:
 Zack Weinberg wrote:
 1) Would an NMU of botan-devel to be welcome?

 no; it will get fixed today by me anyway (i did other changes to the
 package as well since it has to go through NEW anyway).

That was over a week ago and I see no upload of the package.  Is there
anything I can do to help?



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



Bug#529803: mercurial: fails to install

2009-05-21 Thread James Cloos
Package: mercurial
Version: 1.2.1-2
Severity: grave
Justification: renders package unusable


mercurial-1.2.1-2 does not exist for i386, although
mercurial-common-1.2.1-2 does.  Given that mercurial depends on the
identical version of mercurial-common, this prevents installation.

I saw the changelog, as reported by apt-listchanges, after mercurial
and mercurial-common were upgraded on my amd64 box; the all-arch
upload seems not to have worked.

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

Kernel: Linux 2.6.18.8-xenU (SMP w/1 CPU core)
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 mercurial depends on:
ii  libc6 2.9-12 GNU C Library: Shared libraries
pn  mercurial-common  none (no description available)
ii  python2.5.4-2An interactive high-level object-o
ii  python-support1.0.3  automated rebuilding support for P
ii  ucf   3.0018 Update Configuration File: preserv

mercurial recommends no packages.

Versions of packages mercurial suggests:
pn  kdiff3 | tkdiff | meld | xxd none  (no description available)
pn  qct  none  (no description available)
ii  tk8.4 [wish] 8.4.19-3Tk toolkit for Tcl and X11, v8.4 -
ii  vim  2:7.2.148-2 Vi IMproved - enhanced vi editor



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



Bug#516689: marked as done (undeclared conflicts with python-vtk)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 16:17:27 +
with message-id e1m7axt-0002ds...@ries.debian.org
and subject line Bug#516689: fixed in paraview 3.4.0-4
has caused the Debian Bug report #516689,
regarding undeclared conflicts with python-vtk
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.)


-- 
516689: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516689
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: paraview
Version: 3.4.0-2
Severity: serious

Trying to install the newest paraview (3.4.0-2) fails because it
includes /usr/bin/vtkpython, also in package python-vtk.

My initial reaction is that paraview should not be shipping this file.
I'm guessing it's there because paraview builds its own VTK.  If
paraview actually needs vtkpython, the safest bet would be to install
it hidden away in a private directory, IMHO.

Thanks for packaging paraview!

-Steve



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

Kernel: Linux 2.6.26-1-amd64 (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 paraview depends on:
ii  libavcodec51   0.svn20080206-17  ffmpeg codec library
ii  libavformat52  3:0.svn20090204-3 ffmpeg file format library
ii  libavutil493:0.svn20090204-3 ffmpeg utility library
ii  libc6  2.9-3 GNU C Library: Shared libraries
ii  libgcc11:4.3.3-4 GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-7   A free implementation of the OpenG
ii  libglu1-mesa [libglu1] 7.0.3-7   The OpenGL utility library (GLU)
ii  libhdf5-openmpi-1.6.6- 1.6.6-4   Hierarchical Data Format 5 (HDF5) 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libopenmpi11.3-2 high performance message passing l
ii  libqt4-assistant   4.4.3-2   Qt 4 assistant module
ii  libqt4-network 4.4.3-2   Qt 4 network module
ii  libqt4-xml 4.4.3-2   Qt 4 XML module
ii  libqtcore4 4.4.3-2   Qt 4 core module
ii  libqtgui4  4.4.3-2   Qt 4 GUI module
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libstdc++6 4.3.3-4   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  python2.5  2.5.4-1   An interactive high-level object-o
ii  qt4-dev-tools  4.4.3-2   Qt 4 development tools

Versions of packages paraview recommends:
ii  openmpi-bin   1.3-2  high performance message passing l
ii  qt4-dev-tools 4.4.3-2Qt 4 development tools

Versions of packages paraview suggests:
pn  h5utils   none (no description available)
ii  hdf5-tools1.6.6-4Hierarchical Data Format 5 (HDF5) 

-- no debconf information


---End Message---
---BeginMessage---
Source: paraview
Source-Version: 3.4.0-4

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

paraview_3.4.0-4.diff.gz
  to pool/main/p/paraview/paraview_3.4.0-4.diff.gz
paraview_3.4.0-4.dsc
  to pool/main/p/paraview/paraview_3.4.0-4.dsc
paraview_3.4.0-4_amd64.deb
  to pool/main/p/paraview/paraview_3.4.0-4_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 516...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christophe Prud'homme prudh...@debian.org (supplier of updated paraview 
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, 21 May 2009 07:25:30 +0200
Source: paraview
Binary: paraview
Architecture: source amd64
Version: 3.4.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team 
pkg-scicomp-de...@lists.alioth.debian.org
Changed-By: Christophe Prud'homme 

Bug#520888: marked as done (pidgin: Broken Build-Depends field in debian/control)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 16:17:50 +
with message-id e1m7axq-0002gm...@ries.debian.org
and subject line Bug#520888: fixed in pidgin 2.5.6-1
has caused the Debian Bug report #520888,
regarding pidgin: Broken Build-Depends field in debian/control
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.)


-- 
520888: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520888
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pidgin
Version: 2.5.5-1
Severity: serious
Justification: no longer builds from source

Please add a comma after 'intltool' (the last word on the first line) in
Build-Depends header of debian/control

p.s.  Maybe I've somewhat overvaluated severity, but 'pidgin' really
FTBFSed on me (for some strange reason I'm taking Build-Depends from
debian/control, but ../*.dsc, sorry).

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (700, 'testing'), (700, 'stable'), (1, 'testing'), (1, 'stable')
Architecture: i386 (i686)

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


---End Message---
---BeginMessage---
Source: pidgin
Source-Version: 2.5.6-1

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

finch-dev_2.5.6-1_all.deb
  to pool/main/p/pidgin/finch-dev_2.5.6-1_all.deb
finch_2.5.6-1_amd64.deb
  to pool/main/p/pidgin/finch_2.5.6-1_amd64.deb
libpurple-bin_2.5.6-1_all.deb
  to pool/main/p/pidgin/libpurple-bin_2.5.6-1_all.deb
libpurple-dev_2.5.6-1_all.deb
  to pool/main/p/pidgin/libpurple-dev_2.5.6-1_all.deb
libpurple0_2.5.6-1_amd64.deb
  to pool/main/p/pidgin/libpurple0_2.5.6-1_amd64.deb
pidgin-data_2.5.6-1_all.deb
  to pool/main/p/pidgin/pidgin-data_2.5.6-1_all.deb
pidgin-dbg_2.5.6-1_amd64.deb
  to pool/main/p/pidgin/pidgin-dbg_2.5.6-1_amd64.deb
pidgin-dev_2.5.6-1_all.deb
  to pool/main/p/pidgin/pidgin-dev_2.5.6-1_all.deb
pidgin_2.5.6-1.diff.gz
  to pool/main/p/pidgin/pidgin_2.5.6-1.diff.gz
pidgin_2.5.6-1.dsc
  to pool/main/p/pidgin/pidgin_2.5.6-1.dsc
pidgin_2.5.6-1_amd64.deb
  to pool/main/p/pidgin/pidgin_2.5.6-1_amd64.deb
pidgin_2.5.6.orig.tar.gz
  to pool/main/p/pidgin/pidgin_2.5.6.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 520...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ari Pollak a...@debian.org (supplier of updated pidgin 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: Thu, 21 May 2009 10:22:23 -0400
Source: pidgin
Binary: libpurple0 pidgin pidgin-data pidgin-dev pidgin-dbg finch finch-dev 
libpurple-dev libpurple-bin
Architecture: source all amd64
Version: 2.5.6-1
Distribution: unstable
Urgency: high
Maintainer: Ari Pollak a...@debian.org
Changed-By: Ari Pollak a...@debian.org
Description: 
 finch  - text-based multi-protocol instant messaging client
 finch-dev  - text-based multi-protocol instant messaging client - development
 libpurple-bin - multi-protocol instant messaging library - extra utilities
 libpurple-dev - multi-protocol instant messaging library - development files
 libpurple0 - multi-protocol instant messaging library
 pidgin - graphical multi-protocol instant messaging client for X
 pidgin-data - multi-protocol instant messaging client - data files
 pidgin-dbg - Debugging symbols for Pidgin
 pidgin-dev - multi-protocol instant messaging client - development files
Closes: 519112 520888
Changes: 
 pidgin (2.5.6-1) unstable; urgency=high
 .
   * New upstream version
 - Fixes a bunch of security bugs: CVE-2009-1373, CVE-2009-1374,
   CVE-2009-1375, and CVE-2009-1376
 - Fixes a crash in XMPP due to some XML parsing interactions
   (Closes: #519112)
   * Fix a missing comma in build-depends (Closes: #520888)
Checksums-Sha1: 
 a1240bff869803bd7794c27fad1b5a1ab03a8a3a 1787 pidgin_2.5.6-1.dsc
 aeefe055a1bafb8a4d13d9d8893bc85bfe334370 12099894 pidgin_2.5.6.orig.tar.gz
 95d7a8d7406f93431fde13af55b21969a8e65e4d 52916 pidgin_2.5.6-1.diff.gz
 6e3cf5af33a17ea648c69b96eb9ef451a32a08f1 7241410 pidgin-data_2.5.6-1_all.deb
 

Processed: blubb

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 529773 0.8-1
Bug#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable 
dependencies
Bug no longer marked as found in version 0.8-1.

 found 529773 0.8.1-3
Bug#529773: libghc6-xmonad-dev can't be upgraded due to unsatisfiable 
dependencies
Bug marked as found in version 0.8.1-3.

 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#456127: marked as done (icewm -- Please transition to imlib2)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 16:47:10 +
with message-id e1m7bqe-0006ry...@ries.debian.org
and subject line Bug#456127: fixed in icewm 1.2.37+1.3.4pre2-1
has caused the Debian Bug report #456127,
regarding icewm -- Please transition to imlib2
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.)


-- 
456127: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=456127
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: icewm
Version: 1.2.33-1
User: debian...@lists.debian.org
Usertags: oldlibs oldlibs-imlib

Hi!

On behalf of the QA group, I have been looking at packages which are
blocking the removal of libraries currently in the section oldlibs,
and icewm is one of them, depending on imlib. With the aim
of fixing as many of the depending as possible to pave the way for
gradual removal of imlib, I would request you to consider
moving to imlib2.

Thanks.

Kumar

-- 
Kumar Appaiah,
458, Jamuna Hostel,
Indian Institute of Technology Madras,
Chennai - 600 036


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: icewm
Source-Version: 1.2.37+1.3.4pre2-1

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

icewm-common_1.2.37+1.3.4pre2-1_amd64.deb
  to pool/main/i/icewm/icewm-common_1.2.37+1.3.4pre2-1_amd64.deb
icewm-experimental_1.2.37+1.3.4pre2-1_amd64.deb
  to pool/main/i/icewm/icewm-experimental_1.2.37+1.3.4pre2-1_amd64.deb
icewm-gnome-support_1.2.37+1.3.4pre2-1_amd64.deb
  to pool/main/i/icewm/icewm-gnome-support_1.2.37+1.3.4pre2-1_amd64.deb
icewm-lite_1.2.37+1.3.4pre2-1_amd64.deb
  to pool/main/i/icewm/icewm-lite_1.2.37+1.3.4pre2-1_amd64.deb
icewm_1.2.37+1.3.4pre2-1.diff.gz
  to pool/main/i/icewm/icewm_1.2.37+1.3.4pre2-1.diff.gz
icewm_1.2.37+1.3.4pre2-1.dsc
  to pool/main/i/icewm/icewm_1.2.37+1.3.4pre2-1.dsc
icewm_1.2.37+1.3.4pre2-1_amd64.deb
  to pool/main/i/icewm/icewm_1.2.37+1.3.4pre2-1_amd64.deb
icewm_1.2.37+1.3.4pre2.orig.tar.gz
  to pool/main/i/icewm/icewm_1.2.37+1.3.4pre2.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 456...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Eduard Bloch bl...@debian.org (supplier of updated icewm 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, 21 May 2009 16:17:28 +0200
Source: icewm
Binary: icewm-common icewm icewm-gnome-support icewm-lite icewm-experimental
Architecture: source amd64
Version: 1.2.37+1.3.4pre2-1
Distribution: unstable
Urgency: low
Maintainer: Eduard Bloch bl...@debian.org
Changed-By: Eduard Bloch bl...@debian.org
Description: 
 icewm  - wonderful Win95-OS/2-Motif-like window manager
 icewm-common - wonderful Win95-OS/2-Motif-like window manager
 icewm-experimental - wonderful Win95-OS/2-Motif-like window manager
 icewm-gnome-support - GNOME support files for IceWM
 icewm-lite - wonderful Win95-OS/2-Motif-like window manager
Closes: 288590 298995 354434 456127 508086
Changes: 
 icewm (1.2.37+1.3.4pre2-1) unstable; urgency=low
 .
   * Based on upstream development branch release
 + using libgdk_pixbuf instead of Imlib1.x which is now deprecated
   in Debian Unstable (closes: #456127)
 + fixes black application icon problem (closes: #354434, maybe also
   closes: #288590, #298995)
   * less verbosity of update-alternatives (closes: #508086)
Checksums-Sha1: 
 1798d8e1d7259ac1a7695dd6cbc2361a6603b1ac 1441 icewm_1.2.37+1.3.4pre2-1.dsc
 0061615644ada01801ddca96533a5f44f134281c 854505 
icewm_1.2.37+1.3.4pre2.orig.tar.gz
 dde8c914dee9d9e3230167edf39118abd3d28efa 103165 
icewm_1.2.37+1.3.4pre2-1.diff.gz
 899f559203813c694aab08603cd7d5e656cd4b60 391314 
icewm-common_1.2.37+1.3.4pre2-1_amd64.deb
 223fa532cd6202d86fcba149cd9578943270b9c6 833054 
icewm_1.2.37+1.3.4pre2-1_amd64.deb
 38306a91aa79c14bd3a62f4d647e570af609a412 28880 
icewm-gnome-support_1.2.37+1.3.4pre2-1_amd64.deb
 171634ff89f0eda552896296c76e68fb0d0f6a93 530334 
icewm-lite_1.2.37+1.3.4pre2-1_amd64.deb
 b4e83b3fb0d24aa062fc362a0875e1937bad3016 2402 
icewm-experimental_1.2.37+1.3.4pre2-1_amd64.deb
Checksums-Sha256: 
 c3194d7030bd3670b73cb69e807aaf2a1f0c500d9b6b647e7ba26e1d2d4276b9 1441 

Processed: Re: Bug#523749: bug #523749: 1.2.3 fixes this issue

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 523749 grave
Bug#523749: xserver-xorg-input-elographics: X freezes when touching the screen
Severity set to `grave' from `normal'

 close 523749 1:1.2.3-1
Bug#523749: xserver-xorg-input-elographics: X freezes when touching the screen
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 1:1.2.3-1, send any further explanations to 
anthony henderson developm...@fair-games.com

 kthxbye
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#525901: confirm

2009-05-21 Thread Adnan Hodzic
Package: bluez-gnome
Version: 0.27-1
Severity: grave

I can confirm that I have this same exact problem.


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

Kernel: Linux 2.6.29-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/bash

Versions of packages bluez-gnome depends on:
ii  dbus 1.2.14-2simple interprocess messaging syst
ii  gconf2   2.26.0-1GNOME configuration database syste
ii  gnome-icon-t 2.24.0-4GNOME Desktop icon theme
ii  libatk1.0-0  1.26.0-1The ATK accessibility toolkit
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.14-2simple interprocess messaging syst
ii  libdbus-glib 0.80-4  simple interprocess messaging syst
ii  libgconf2-4  2.26.0-1GNOME configuration database syste
ii  libglib2.0-0 2.20.1-2The GLib library of C routines
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface
ii  libhal1  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libnotify1 [ 0.4.5-1 sends desktop notifications to a n
ii  libpango1.0- 1.24.2-1Layout and rendering of internatio

Versions of packages bluez-gnome recommends:
ii  bluez-utils   3.36-3 Bluetooth tools and daemons
ii  gnome-vfs-obexftp 0.4-1  GNOME VFS module for OBEX FTP

bluez-gnome 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#529832: roundup: 1.4.4-4+lenny1 breaks user creation

2009-05-21 Thread Asheesh Laroia
Package: roundup
Version: 1.4.4-4+lenny1
Severity: grave
Justification: renders package unusable

With roundup 1.4.4-4 installed, the following use case works:

* Create a new roundup
* Log in as admin
* Go to http://example.com/issues/us...@template=item (where /issues/ is served 
by Roundup)
** The page has HTML title New User - Roundup issue tracker
* Enter a login name and email address and password and hit Submit new entry
* Hit submit, and a user gets created; you get redirected to that user's edit 
user info page

With roundup 1.4.4-4lenny1, the user does not get created and no error message 
results.

(As a result, I've reverted back to 1.4.4-4 on my production install)

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

Kernel: Linux 2.6.18-6-vserver-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/bash



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



Bug#529667: Additional Info

2009-05-21 Thread Soren Stoutner

Some additional info that might be helpful:

On the system with plone3 installed, approximately every 5 seconds, the 
python2.4 process running under the zope user pegs one of my CPU cores 
at 100% utilization.  It stays pegged for about 5 seconds and then drops 
down to 0%.  My guess is that Zope is trying to run some process on the 
database and is failing silently.  However, I don't know where to look 
to figure out exactly what is failing as nothing is logged in 
/var/log/zope2.10/plone-site.


Soren


Bug#515274: gbuffy: Depends on GTK 1.2

2009-05-21 Thread Adeodato Simó
+ Kelvin Ku (Thu, 21 May 2009 12:08:39 -0400):

 Thanks for the gtk2 patch. We are not using debian so we're not sure what your
 build environment is, but we encountered a few hitches building it after
 patching:

Hello, Kelvin. Thanks for providing these fixes for the GTK2 patch. If
I'm not mistaken, the upstream of GBuffy is not really active any more,
so I think if somebody feels up to maintaining it as upstream, they
should go for it. Is this something any of you would be interested in?

Personally, I don't use GBuffy anymore myself, so I also need to find
another person to become its Debian maintainer.

Thanks!

- the original configure was built with autoconf 2.13, but the patched
  configure.in uses gtk2 m4 macros which seem to require autoconf 2.61
- the Makefile.in does not work with configure generated by autoconf 2.61;
  the resulting Makefile has some un-substituted $expressions
- fix: hack configure to make it work

 Also, the patched gbuffy itself had some problems:

- segfaults when opening the configuration dialog or displaying
  headers (both operations try to draw a pixmap)
- fix: remove the gdk_draw_bitmap function in gbuffy.c so that the internal
  gdk_draw_drawable function is used instead

- window resets position when gbuffy_display is called again, e.g., after
  closing configuration dialog
- fix: use a configure_event callback instead of using the timeout callback
  to update internal window state after a position/dimension change

- mailbox button and main window don't grow and shrink
  immediately/correctly in response to changes in button label lengths
  (mailbox: count)
- fix: still working on it; button and window sizes are correct when gbuffy
  is initially launched now, but not while it is running

 We're not sure who exactly to contact about patching gbuffy, since the gtk2
 patches seem to be pending only for the debian package. The gendiff output for
 our patches is below, if you're interested.

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#523516: Haven't tested patch yet

2009-05-21 Thread Asheesh Laroia

Howdy bug and Sebastian,

I don't have enough issues on my production Roundup (I'm no longer an 
admin on the Roundup I was testing on before) to test the patch. I 
will let you know shortly, though.


-- Asheesh.

--
A man with one watch knows what time it is.
A man with two watches is never quite sure.



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



Processed: regression in gnupg-agent 2.0.11-1

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 499569
Bug 499569 [gnupg-agent] gnupg-agent: modifies SigBlk mask of all processes 
spawned in the X session breaking unrelated software [i386 only?]
Unarchived Bug 499569
 reopen 499569
Bug#499569: gnupg-agent: modifies SigBlk mask of all processes spawned in the X 
session breaking unrelated software [i386 only?]
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.

 found 499569 2.0.11-1
Bug#499569: gnupg-agent: modifies SigBlk mask of all processes spawned in the X 
session breaking unrelated software [i386 only?]
Bug marked as found in version 2.0.11-1.

 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#514809: gconf settings are not included in sabayon profiles

2009-05-21 Thread Alternativende

Hi there,

I can confirm this bugs in sabayon. I don't know if it is a Debian 
specific problem but everytime I try to make changes in a profile 
sabayon crashes on startup or just don't even get the changes I have made.


As I said maybe it's problem with sabayon itself. Would be nice to hear 
if the project itself is still alive or spending time to use it is just 
wasting of time...



Greetings



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



Bug#526719: New Upstream release

2009-05-21 Thread Charlie Smotherman
There is a new version of Ampache on mentor.debian.net which includes
the source code for XSPF JukeBox (xsfp_jukebox.fla).  I have also
updated debian/copyright with XSPF Jukebox's copyright information.

http://mentors.debian.net/debian/pool/main/a/ampache/ampache_3.5
+svn2078-1.dsc

When the above mentioned version is uploaded I will downgrade this bug
from serious to normal and I will keep this bug open until Lacy Morrow
responds.

Lacy is very very slow to respond.  I will attempt to contact him again
today 

Thank you
Charlie Smotherman 



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


Bug#529720: crm114: Changes in .css files leads to data loss

2009-05-21 Thread Christian Perrier
Quoting Milan Zamazal (p...@debian.org):

 CP At the very minimum, a critical priority debconf note displayed
 CP when upgrading from a pre-20090423 version would be a good way
 CP to try your best preventing the problem to appear. Debconf notes
 CP are discouraged but I think that, here, we have a case where it
 CP would be better having it than nothing.
 
 Right now, I like this suggestion better than the binary package name
 changes.  Some might not like it, but I may just try to add it and we'll
 see what happens.

In such case, I'd suggest having a good review of the debconf template
on debian-l10n-english (that's one of my hats in Debian) as well as
getting a good round of translations for this update (that's another
of my hats). In short, I'd volunteer to coordinate this.

That's certainly a much simpler method...but actually not a universal
one (it won't work if people use the noninteractive debconf
frontend). Still, probably better than NEWS.Debian alone.

 CP Maybe more people will come up with better suggestions. 
 
 If no applicable precedent in other Debian packages is presented here,
 I'll probably discuss the problem on debian-mentors.

Other packages have been using debconf notes in such cases. It not
completely widely accepted (I'm personnally a big fighter against
useless notes) but it is accepted that, in few cases, it is an
acceptable solution.


-- 




signature.asc
Description: Digital signature


Bug#529745: [DebianGIS-dev] Bug#529565: gdal-bin: please include gdal_polygonize

2009-05-21 Thread Oz Nahum
Hmm... It seems you are right.
I removed swig, and manually installed the version from etch !
I now have python-gdal 1.6.1-1, and swig 1.3.29, and import is working
properly !

So shell I file a bug against swig ?

Thanks for your help again,

Oz.

On Thu, May 21, 2009 at 9:32 PM, Francesco P. Lovergine
fran...@debian.orgwrote:

 On Thu, May 21, 2009 at 09:23:21PM +0200, Oz Nahum wrote:
  Hi,
  I'm using 1.3.36
 
  apt-cache show swig
  Package: swig
  Priority: optional
  Section: interpreters
  Installed-Size: 5004
  Maintainer: Torsten Landschoff tors...@debian.org
  Architecture: i386
  Source: swig1.3
  Version: 1.3.36-1
  Replaces: swig1.3
  Depends: libc6 (= 2.7-1), libgcc1 (= 1:4.1.1), libstdc++6 (= 4.1.1)
  Suggests: swig-examples, swig-doc
 
  This is actually the one for sid/squeeze.
 
  I also tried with swig from  experimental 1.3.38 but this still happens.
 
  Thanks for you support on the issue, let me know how I can help more
 

 My hypothesis is that the experimental one (1.3.38) is broken _also_ on
 that regard.

 --
 Francesco P. Lovergine




-- 

   Imagine there's no countries
   It isn't hard to do
   Nothing to kill or die for
   And no religion too
   Imagine all the people
   Living life in peace


Processed: setting package to ekiga-dbg ekiga, tagging 525781, tagging 446689, tagging 525864, tagging 520832 ...

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #ekiga (3.2.1~git20090515.9d0263-1) UNRELEASED; urgency=low
 #
 #  * New upstream release (Closes: #520832, #520773, #528952)
 #* Segfault after pwlib's update to 1.10.10-3 (Closes: #525781, #525864).
 #* Shows the configuration assistant *every time* (Closes: #446689).
 #* Fails with gconf schema error message (Closes: #511460).
 #
 package ekiga-dbg ekiga
Ignoring bugs not assigned to: ekiga ekiga-dbg

 tags 525781 + pending
Bug#525781: [Sid] ekiga started to segfault after pwlib's update to 1.10.10-3
There were no tags set.
Tags added: pending

 tags 446689 + pending
Bug#446689: ekiga: configuration druids alwasys starts
Tags were: fixed-upstream
Bug#494733: shows the configuration wizard *every time*
Tags added: pending

 tags 525864 + pending
Bug#525864: ekiga: Segfaults at startup
There were no tags set.
Tags added: pending

 tags 520832 + pending
Bug#520832: ekiga: New version 3.2.0 available
There were no tags set.
Tags added: pending

 tags 528952 + pending
Bug#528952: Ekiga uninstallable in sid due to missing libopal-2.2
Tags were: sid
Tags added: pending


End of message, 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#499569: regression in gnupg-agent 2.0.11-1

2009-05-21 Thread Mirco Bauer
unarchive 499569
reopen 499569
found 499569 2.0.11-1
thanks

gnupg-agent 2.0.11-1 has a regression, see:

mee...@redbull:~$ gpg-agent --daemon grep SigBlk /proc/self/status
SigBlk: fffe
mee...@redbull:~$ 

Looking at the gnupg2 PTS page it seems like the 2.0.9-3.1 NMU done by
Thomas Viehmann was not incorporated into the package.

-- 
Regards,

Mirco 'meebey' Bauer

PGP-Key ID: 0xEEF946C8

FOSS Developermee...@meebey.net  http://www.meebey.net/
PEAR Developermee...@php.net http://pear.php.net/
Debian Developer  mee...@debian.org  http://www.debian.org/



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



Bug#525652: strongswan: FTBFS on i386: libstrongswan-padlock.so*': No such file or directory

2009-05-21 Thread Ruben Puettmann


hy,


this is a bug in debian/rules.

It must be:

ifeq ($(DEB_BUILD_ARCH_CPU),i386)
CONFIGUREARGS += --enable-padlock
endif


insted of:

ifeq ($(DEB_BUILD_ARCH_CPU),i386)
CONFIGURE_ARGS += --enable-padlock
endif


ruben


-- 
Ruben Puettmann
ru...@puettmann.net
http://www.puettmann.net


signature.asc
Description: Digital signature


Processed: tagging 382175

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Automatically generated email from bts, devscripts version 2.10.35lenny3
 tags 382175 + pending
Bug#382175: glibc: contains Sun RPC implementation under non-free license
Tags were: fixed-upstream pending lenny-ignore upstream etch-ignore sarge-ignore
Tags added: pending


End of message, 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



Processed: [bts-link] source package eglibc

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #
 # bts-link upstream status pull for source package eglibc
 # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
 #
 user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
 # remote status report for #382175
 #  * http://sourceware.org/bugzilla/show_bug.cgi?id=6953
 #  * remote status changed: SUSPENDED - RESOLVED
 #  * remote resolution changed: (?) - FIXED
 #  * closed upstream
 tags 382175 + fixed-upstream
Bug#382175: glibc: contains Sun RPC implementation under non-free license
Tags were: pending lenny-ignore upstream etch-ignore sarge-ignore
Tags added: fixed-upstream

 usertags 382175 - status-SUSPENDED
Bug#382175: glibc: contains Sun RPC implementation under non-free license
Usertags were: status-SUSPENDED.
Usertags are now: .
 usertags 382175 + status-RESOLVED resolution-FIXED
Bug#382175: glibc: contains Sun RPC implementation under non-free license
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
 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



Processed: fixed in 2.0.9-3.1

2009-05-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 499569 2.0.9-3.1
Bug#499569: gnupg-agent: modifies SigBlk mask of all processes spawned in the X 
session breaking unrelated software [i386 only?]
Bug marked as fixed in version 2.0.9-3.1.

 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#528952: marked as done (Ekiga uninstallable in sid due to missing libopal-2.2)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 21:47:17 +
with message-id e1m7g6f-00014l...@ries.debian.org
and subject line Bug#528952: fixed in ekiga 3.2.1~git20090515.9d0263-1
has caused the Debian Bug report #528952,
regarding Ekiga uninstallable in sid due to missing libopal-2.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.)


-- 
528952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ekiga
Version: 2.0.12-1+nmu1+b1
Severity: serious
Tags: sid

Hi,

The package libopal-2.2 is no longer available in sid, so ekiga is 
currently not installable, if libopal-2.2 has not been previously 
installed. If you know for a fact that it will work out of the box 
with the new libopal package (libopal3.6.1), and do not plan to upload 
a new version of ekiga in the near future, you can contact 
debian-release to trigger a binNMU, so it can pick up a dependency on 
it via shlibdeps.

Best regards,
-- 
Jurij Smakov   ju...@wooyd.org
Key: http://www.wooyd.org/pgpkey/  KeyID: C99E03CC


---End Message---
---BeginMessage---
Source: ekiga
Source-Version: 3.2.1~git20090515.9d0263-1

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

ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
  to pool/main/e/ekiga/ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
ekiga_3.2.1~git20090515.9d0263-1.diff.gz
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.diff.gz
ekiga_3.2.1~git20090515.9d0263-1.dsc
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.dsc
ekiga_3.2.1~git20090515.9d0263-1_i386.deb
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1_i386.deb
ekiga_3.2.1~git20090515.9d0263.orig.tar.gz
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263.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 528...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kilian Krause kil...@debian.org (supplier of updated ekiga 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, 21 May 2009 23:08:34 +0200
Source: ekiga
Binary: ekiga ekiga-dbg
Architecture: source i386
Version: 3.2.1~git20090515.9d0263-1
Distribution: unstable
Urgency: low
Maintainer: Kilian Krause kil...@debian.org
Changed-By: Kilian Krause kil...@debian.org
Description: 
 ekiga  - H.323 and SIP compatible VoIP client
 ekiga-dbg  - H.323 and SIP compatible VoIP client - debug symbols
Closes: 446689 511460 520773 520832 525781 525864 528952 528960 529335
Changes: 
 ekiga (3.2.1~git20090515.9d0263-1) unstable; urgency=low
 .
   [ Eugen Dedu ]
   * New upstream release (Closes: #520832, #520773, #528952, #528960)
 * Segfault after pwlib's update to 1.10.10-3 (Closes: #525781, #525864)
 * Shows the configuration assistant *every time* (Closes: #446689).
 * Fails with gconf schema error message (Closes: #511460).
   * debian/rules: Honour DEB_BUILD_OPTIONS parameter for parallel builds.
   * Cleanup rules further.
   * Remove the now unneeded libgnome and libgnomeui dependencies.
   * Recommends gvfs.
   * Remove 00_news patch, integrated upstream (no patch anymore), and quilt
 dependency.
   * Build-depend on rarian-compat instead of scrollkeeper.
   * Remove fdupes hack, all the translations are updated now.
 .
   [ Emilio Pozuelo Monfort ]
   * Fix section of ekiga-dbg.
 .
   [ Kilian Krause ]
   * New dependency on libpt-dev (= 2.6.1) does pull libpt-plugins-v4l2
 primarily over libpt-plugins-v4l (Closes: #529335)
   * Bump debhelper build-dep to = 7 for dh_prep
Checksums-Sha1: 
 be13da3d13d2fdf557a5cfcc6c7b8122874a5ee7 1850 
ekiga_3.2.1~git20090515.9d0263-1.dsc
 ceec84f189c433c8588c01fa97914818d474b518 9753551 
ekiga_3.2.1~git20090515.9d0263.orig.tar.gz
 b4a651d24fce6e2096312a4168e0a9e62d15ca52 14400 
ekiga_3.2.1~git20090515.9d0263-1.diff.gz
 12cbd520003bdb6c4621a5fd6c6211447fdf1441 7726832 
ekiga_3.2.1~git20090515.9d0263-1_i386.deb
 66bb68963fd36a05afe805666c757401d21c 5387662 
ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
Checksums-Sha256: 
 

Bug#520773: marked as done (ekiga: Outdated broken package.)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 21:47:17 +
with message-id e1m7g6f-00014t...@ries.debian.org
and subject line Bug#520773: fixed in ekiga 3.2.1~git20090515.9d0263-1
has caused the Debian Bug report #520773,
regarding ekiga: Outdated broken package.
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.)


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


Package is old, poor quality of sound with available codecs.
Does not connect to new versions of Ekiga, probably codecs problem.


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

Kernel: Linux 2.6.29-rc8-vanilla (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 ekiga depends on:
ii  evolution-data-server   2.24.5-2 evolution database backend server
ii  gconf2  2.24.0-7 GNOME configuration database syste
ii  libatk1.0-0 1.24.0-2 The ATK accessibility toolkit
ii  libavahi-client30.6.24-2 Avahi client library
ii  libavahi-common30.6.24-2 Avahi common library
ii  libavahi-glib1  0.6.24-2 Avahi glib integration library
ii  libc6   2.9-6GNU C Library: Shared libraries
ii  libdbus-glib-1-20.80-3   simple interprocess messaging syst
ii  libebook1.2-9   2.24.5-2 Client library for evolution addre
ii  libedataserver1.2-9 2.22.3-1.1   Utility library for evolution data
ii  libgcc1 1:4.3.3-5GCC support library
ii  libgconf2-4 2.24.0-7 GNOME configuration database syste
ii  libglib2.0-02.20.0-2 The GLib library of C routines
ii  libgnome2-0 2.24.1-2 The GNOME 2 library - runtime file
ii  libgnomeui-02.24.1-1 The GNOME 2 libraries (User Interf
ii  libgtk2.0-0 2.16.0-1 The GTK+ graphical user interface 
ii  libldap-2.4-2   2.4.15-1 OpenLDAP libraries
ii  libnotify1 [libnotify1-gtk2 0.4.5-1  sends desktop notifications to a n
ii  libopal3.4.23.4.2~dfsg-2 Open Phone Abstraction Library - s
ii  libpango1.0-0   1.22.4-2 Layout and rendering of internatio
ii  libpt2.4.2  2.4.2-3  Portable Tools Library
ii  libpt2.4.2-plugins-alsa 2.4.2-3  PTLib audio plugin for the ALSA In
ii  libpt2.4.2-plugins-v4l2 2.4.2-3  Portable Tools Library video plugi
ii  libsigc++-2.0-0c2a  2.0.18-2 type-safe Signal Framework for C++
ii  libstdc++6  4.3.3-5  The GNU Standard C++ Library v3
ii  libx11-62:1.2-1  X11 client-side library
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxml2 2.7.3.dfsg-1 GNOME XML library
ii  libxv1  2:1.0.4-1X11 Video extension library

Versions of packages ekiga recommends:
ii  yelp  2.24.0-2   Help browser for GNOME 2

Versions of packages ekiga suggests:
pn  asterisk  none (no description available)
pn  callweavernone (no description available)
pn  gnugk none (no description available)
pn  mediaproxynone (no description available)
pn  openser   none (no description available)
pn  rtpproxy  none (no description available)
pn  ser   none (no description available)
pn  siproxd   none (no description available)
pn  yate  none (no description available)

-- no debconf information


---End Message---
---BeginMessage---
Source: ekiga
Source-Version: 3.2.1~git20090515.9d0263-1

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

ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
  to pool/main/e/ekiga/ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
ekiga_3.2.1~git20090515.9d0263-1.diff.gz
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.diff.gz
ekiga_3.2.1~git20090515.9d0263-1.dsc
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.dsc

Bug#525781: marked as done ([Sid] ekiga started to segfault after pwlib's update to 1.10.10-3)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 21:47:17 +
with message-id e1m7g6f-00014b...@ries.debian.org
and subject line Bug#525781: fixed in ekiga 3.2.1~git20090515.9d0263-1
has caused the Debian Bug report #525781,
regarding [Sid] ekiga started to segfault after pwlib's update to 1.10.10-3
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.)


-- 
525781: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525781
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ekiga
Version: 2.0.12-1+nmu1+b1
Severity: grave
Justification: package is unusable

Hello,

After the update of pwlib (the source package for libpt-1.10.10*)
to 1.10.10-3 in Sid, ekiga started to segfault right after execution.

Downgrading libpt-1.10.10* packages to 1.10.10-2 (Squeeze) works
around this issue.

One thing I noticed was that if ekiga is not configured for a
SIP account, then it doesn't segfault. However, once one completes
the configuration, it promptly segfaults.

Regards,

M. Vefa Bicakci



---End Message---
---BeginMessage---
Source: ekiga
Source-Version: 3.2.1~git20090515.9d0263-1

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

ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
  to pool/main/e/ekiga/ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
ekiga_3.2.1~git20090515.9d0263-1.diff.gz
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.diff.gz
ekiga_3.2.1~git20090515.9d0263-1.dsc
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1.dsc
ekiga_3.2.1~git20090515.9d0263-1_i386.deb
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263-1_i386.deb
ekiga_3.2.1~git20090515.9d0263.orig.tar.gz
  to pool/main/e/ekiga/ekiga_3.2.1~git20090515.9d0263.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 525...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kilian Krause kil...@debian.org (supplier of updated ekiga 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, 21 May 2009 23:08:34 +0200
Source: ekiga
Binary: ekiga ekiga-dbg
Architecture: source i386
Version: 3.2.1~git20090515.9d0263-1
Distribution: unstable
Urgency: low
Maintainer: Kilian Krause kil...@debian.org
Changed-By: Kilian Krause kil...@debian.org
Description: 
 ekiga  - H.323 and SIP compatible VoIP client
 ekiga-dbg  - H.323 and SIP compatible VoIP client - debug symbols
Closes: 446689 511460 520773 520832 525781 525864 528952 528960 529335
Changes: 
 ekiga (3.2.1~git20090515.9d0263-1) unstable; urgency=low
 .
   [ Eugen Dedu ]
   * New upstream release (Closes: #520832, #520773, #528952, #528960)
 * Segfault after pwlib's update to 1.10.10-3 (Closes: #525781, #525864)
 * Shows the configuration assistant *every time* (Closes: #446689).
 * Fails with gconf schema error message (Closes: #511460).
   * debian/rules: Honour DEB_BUILD_OPTIONS parameter for parallel builds.
   * Cleanup rules further.
   * Remove the now unneeded libgnome and libgnomeui dependencies.
   * Recommends gvfs.
   * Remove 00_news patch, integrated upstream (no patch anymore), and quilt
 dependency.
   * Build-depend on rarian-compat instead of scrollkeeper.
   * Remove fdupes hack, all the translations are updated now.
 .
   [ Emilio Pozuelo Monfort ]
   * Fix section of ekiga-dbg.
 .
   [ Kilian Krause ]
   * New dependency on libpt-dev (= 2.6.1) does pull libpt-plugins-v4l2
 primarily over libpt-plugins-v4l (Closes: #529335)
   * Bump debhelper build-dep to = 7 for dh_prep
Checksums-Sha1: 
 be13da3d13d2fdf557a5cfcc6c7b8122874a5ee7 1850 
ekiga_3.2.1~git20090515.9d0263-1.dsc
 ceec84f189c433c8588c01fa97914818d474b518 9753551 
ekiga_3.2.1~git20090515.9d0263.orig.tar.gz
 b4a651d24fce6e2096312a4168e0a9e62d15ca52 14400 
ekiga_3.2.1~git20090515.9d0263-1.diff.gz
 12cbd520003bdb6c4621a5fd6c6211447fdf1441 7726832 
ekiga_3.2.1~git20090515.9d0263-1_i386.deb
 66bb68963fd36a05afe805666c757401d21c 5387662 
ekiga-dbg_3.2.1~git20090515.9d0263-1_i386.deb
Checksums-Sha256: 
 d629c413e01ad80427b0ea5116973283e4e72eb0f68f6cf9ad1a2a82afccb5ea 1850 
ekiga_3.2.1~git20090515.9d0263-1.dsc
 bf58aa23a709f603f517d0cbf91f46631a2fef113305e6a317272dccc470b0ad 9753551 

Bug#511460: marked as done (ekiga 3.0.1 (from experimental) fails with gconf schema error message)

2009-05-21 Thread Debian Bug Tracking System

Your message dated Thu, 21 May 2009 21:47:17 +
with message-id e1m7g6f-00014r...@ries.debian.org
and subject line Bug#511460: fixed in ekiga 3.2.1~git20090515.9d0263-1
has caused the Debian Bug report #511460,
regarding ekiga 3.0.1 (from experimental) fails with gconf schema error message
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.)


-- 
511460: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511460
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ekiga
Version: 3.0.1-1
Severity: grave

(only the package in experimental!) gives this on

$ ekiga

Ekiga got an invalid value for the configuration key
/apps/ekiga/general/gconf_test_age.

It probably means that your configuration schemas have not been
correctly installed or that the permissions are not correct.

Please check the FAQ (http://www.ekiga.org/), the troubleshooting
section of the GConf site (http://www.gnome.org/projects/gconf/) or
the mailing list archives for more information
(http://mail.gnome.org) about this problem.

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.28-git-sonne (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 ekiga depends on:
ii  evolution-data-server  2.22.3-1.1evolution database backend server
ii  gconf2 2.24.0-4  GNOME configuration database syste
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.23-3  Avahi client library
ii  libavahi-common3   0.6.23-3  Avahi common library
ii  libavahi-glib1 0.6.23-3  Avahi glib integration library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libebook1.2-9  2.22.3-1.1Client library for evolution addre
ii  libedataserver1.2-92.22.3-1.1Utility library for evolution data
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libgconf2-42.24.0-4  GNOME configuration database syste
ii  libglib2.0-0   2.18.3-1  The GLib library of C routines
ii  libgnome2-02.24.1-1  The GNOME 2 library - runtime file
ii  libgnomeui-0   2.24.0-1  The GNOME 2 libraries (User Interf
ii  libgtk2.0-02.14.5-1  The GTK+ graphical user interface 
ii  libldap-2.4-2  2.4.11-1  OpenLDAP libraries
ii  libnotify1 [libnotify1-gtk 0.4.4-3   sends desktop notifications to a n
ii  libopal3.4.2   3.4.2~dfsg-2  Open Phone Abstraction Library - s
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpt2.4.2 2.4.2-3   Portable Tools Library
ii  libpt2.4.2-plugins-alsa2.4.2-3   PTLib audio plugin for the ALSA In
ii  libpt2.4.2-plugins-v4l22.4.2-3   Portable Tools Library video plugi
ii  libsigc++-2.0-0c2a 2.0.18-2  type-safe Signal Framework for C++
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  libxv1 2:1.0.4-1 X11 Video extension library

Versions of packages ekiga recommends:
ii  yelp  2.24.0-1   Help browser for GNOME 2

Versions of packages ekiga suggests:
pn  asterisk  none (no description available)
pn  callweavernone (no description available)
pn  gnugk none (no description available)
pn  mediaproxynone (no description available)
pn  openser   none (no description available)
pn  rtpproxy  none (no description available)
pn  ser   none (no description available)
pn  siproxd   none (no description available)
pn  yate  none (no description available)

-- no debconf information


---End Message---
---BeginMessage---
Source: ekiga
Source-Version: 3.2.1~git20090515.9d0263-1

We believe that the bug you 

Bug#529745: [DebianGIS-dev] Bug#529565: gdal-bin: please include gdal_polygonize

2009-05-21 Thread Francesco P. Lovergine
On Thu, May 21, 2009 at 09:44:21PM +0200, Oz Nahum wrote:
 Hmm... It seems you are right.
 I removed swig, and manually installed the version from etch !
 I now have python-gdal 1.6.1-1, and swig 1.3.29, and import is working
 properly !
 
 So shell I file a bug against swig ?
 
 Thanks for your help again,
 
 Oz.
 

The lenny/squeeze swig is ok, what's wrong is the experimental
one used to regenerate gdal support files.

-- 
Francesco P. Lovergine



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



Bug#529745: [DebianGIS-dev] Bug#529565: gdal-bin: please include gdal_polygonize

2009-05-21 Thread Francesco P. Lovergine
On Thu, May 21, 2009 at 09:44:21PM +0200, Oz Nahum wrote:
 
 So shell I file a bug against swig ?
 

Already done yesterday.

-- 
Francesco P. Lovergine



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



Bug#529872: kaffe: FTBFS: Obsolete Build-Depends

2009-05-21 Thread Daniel Schepler
Package: kaffe
Version: 2:1.1.8-5.2
Severity: serious

The kaffe source package Build-Depends on gij-4.2, while gcj-4.2 has been 
removed from unstable.  So the Build-Depends can no longer be satisfied.
-- 
Daniel Schepler




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



Bug#529414: Confirmed

2009-05-21 Thread Bernd Zeimetz
Torsten Marek wrote:
 Hi,
 
 this seems to be amd64-only as I haven't been able to reproduce it in
 x86, and is not a Qt-problem, since similar C++ code runs just fine. 

1 b...@think ~% python2.5-dbg /usr/bin/luma
Traceback (most recent call last):
  File /usr/bin/luma, line 21, in module
from base.gui.MainWin import MainWin
  File /usr/lib/luma/base/gui/MainWin.py, line 22, in module
from base.gui.ServerDialog import ServerDialog
  File /usr/lib/luma/base/gui/ServerDialog.py, line 12, in module
import ldap
  File /usr/lib/python2.5/site-packages/ldap/__init__.py, line 22, in module
from _ldap import *
ImportError: /usr/lib/python2.5/site-packages/_ldap.so: undefined symbol:
Py_InitModule4_64
[25196 refs]

I'm not sure if that's the problem here, but it is an annoying one for sure.

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79



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



Bug#526839: Gnome-session update causes this

2009-05-21 Thread Terry Watt
This bug appears when gnome-session is updated to 2.22.3-3, and only 
after logging out/back in.  I isolated the problem to the new 
/etc/X11/Xsession.d/55gnome-session_gnomerc; restoring the old 
55gnome-session_gnomerc from 2.22.3-2 alone is enough to restore Yelp 
(after logout).


Specially, the problem seems to be something in the added path information:

  # We prepend /usr/share/gnome since it actually points to /etc so
  # it is configurable.
  if [ -z $XDG_DATA_DIRS ]; then
XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/
  else
XDG_DATA_DIRS=/usr/share/gnome:$XDG_DATA_DIRS
  fi
  export XDG_DATA_DIRS
fi
Since my /usr/share/gnome does not point to /etc, I assume that has 
something to do with the problem.




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



Bug#516780: Congratulations

2009-05-21 Thread ©Online Notification
You are a certified winner of£1,000,000 award 2009 fill in below your names, 
address,sex, age, telephone, occupation. Email:ukoffic...@btinternet.com





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



Bug#529887: /etc/network/run/ifupdown-scripts-zg2/ doesn't exists

2009-05-21 Thread Andreas Barth
Package: ifupdown-scripts-zg2
Severity: serious
Version: 0.3-2
Tags: patch

Hi,

upon upgrade to the current version (from the version in lenny) the
postinst script fails because the target directory doesn't exist.

mkdir /etc/network/run/ifupdown-scripts-zg2/
fixes the issue for me.



Cheers,
Andi



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