Bug#625689: qemu-kvm: guest has trouble with dns resolution for some addresses

2011-05-05 Thread Jonathan Nieder
tags 625689 + wontfix
quit

m...@tls.msk.ru wrote:

 No the limitation isn't documented (yet), and it will be difficult
 to fix too, or maybe not worth a trouble really.  Two reasons.
 First of all, user-mode networking is not suitable for anything
 serious, you really want tap networking with bridges, which is
 about 100 times faster and actually works (e.g. ICMP).  Second,
 the implementation is rather simplistic - for DNS it merely
 forwards (like a NAT box) packets from guest to a nameserver
 from host /resolv.conf - only one nameserver, because you can't
 NAT to TWO destinations at once.  So in order to fix that,
 qemu has to become application-level proxy for DNS, instead
 of a simple NAT device.

Makes sense.  Thank you. :)



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



Bug#625687: Tested patch this time!

2011-05-05 Thread Ben Love
Hi,

In my excitement to send the patch previously, I'm embarrassed to say
that I hadn't tested it.  I hadn't written it a while ago against an
older version of caff, and I could have sworn it worked then.  In any
event, this new version definitely works, as I've used it to send both
signed and unsigned emails.  And I tested both with and without a
local-user specified.

I've also discovered in my testing that handling a bad passphrase is not
graceful.  The program immediately exits with a bunch of output from
gnupg.  Fortunately, the phrase bad passphrase does appear in the
output!

Ben

-- 
Ben Love
http://www.kylimar.com/
--- /usr/bin/caff	2010-02-11 13:26:29.0 -0500
+++ caff	2011-05-05 01:53:47.0 -0400
@@ -327,6 +327,7 @@
 my ($REVISION_NUMER) = $REVISION =~ /(\d+)/;
 my $VERSION = 0.0.0.$REVISION_NUMER;
 
+my $PASSPHRASE = '';
 
 ##
 # Display an error message on STDERR and then exit.
@@ -498,6 +499,7 @@
 	check_executable(gpg-delsig, $CONFIG{'gpg-delsig'});
 	$CONFIG{'secret-keyring'} = ($ENV{'GNUPGHOME'} || $ENV{'HOME'}/.gnupg) . '/secring.gpg'
 		unless defined $CONFIG{'secret-keyring'};
+	$CONFIG{'sign-and-encrypt'} = 0 unless defined $CONFIG{'sign-and-encrypt'};
 	$CONFIG{'no-download'} = 0 unless defined $CONFIG{'no-download'};
 	$CONFIG{'no-sign'} = 0 unless defined $CONFIG{'no-sign'};
 	$CONFIG{'key-files'} = () unless defined $CONFIG{'key-files'};
@@ -511,6 +513,18 @@
 	};
 };
 
+sub read_passphrase($) {
+	my ($user) = @_;
+	use Term::ReadKey;
+	ReadMode('noecho');
+	print Enter PGP passphrase.(defined $user ?  for key $user: : :);
+	my $passphrase = ReadLine(0);
+	chomp $passphrase;
+	ReadMode('normal');
+	print \n;
+	return $passphrase;
+};
+
 sub make_gpg_fds() {
 	my %fds = (
 		stdin = IO::Handle-new(),
@@ -800,7 +814,20 @@
 		if (defined $CONFIG{'also-encrypt-to'}) {
 			$gpg-options-push_recipients($_) foreach @{$CONFIG{'also-encrypt-to'}};
 		}
-		my $pid = $gpg-encrypt(handles = $handles);
+		my $pid;
+		if ($CONFIG{'sign-and-encrypt'}) {
+			my @local_user = get_local_user_keys();
+			my $user = $local_user[0];
+			if (!$PASSPHRASE) {
+$PASSPHRASE = read_passphrase($user);
+			};
+			$gpg-passphrase( $PASSPHRASE );
+			$gpg-options-push_extra_args( --secret-keyring=$CONFIG{'secret-keyring'} );
+			$gpg-options-push_extra_args( --local-user=$local_user[0] ) if defined $user;
+			$pid = $gpg-sign_and_encrypt(handles = $handles);
+		} else {
+			$pid = $gpg-encrypt(handles = $handles);
+		}
 		my ($stdout, $stderr, $status) = readwrite_gpg($message, $inputfd, $stdoutfd, $stderrfd, $statusfd);
 		waitpid $pid, 0;
 		if ($stdout eq '') {


signature.asc
Description: Digital signature


Bug#561593: background image config/handling (plus password handling)

2011-05-05 Thread Alexander Kurtz
On Wed, 2011-05-04 at 13:28 +0200, deb...@x.ray.net wrote:
 sorry, spamassassin problem over here, it seems to have been broken
 on the occasion that support was dropped (mailserver is etch) - i found
 about your mail just now.
Security support for etch was discontinued in February 2010...

 yes, the first part was about setting menucolors in case of a background
 image - just as the provided patch suggests to fix it.
Unfortunately that patch isn't perfect, see

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608283#26

Best regards

Alexander Kurtz


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


Bug#625683: say how to adjust the number of images per row

2011-05-05 Thread Daniel Friesel
Hi,

Right, index mode only refers to another section.

On Thu, May 05, 2011 at 11:42:58AM +0800, jida...@jidanni.org wrote:
 Also say how to adjust the number of images per row.

You can't. It's calculated via thumbnail width and image width, there's
nothing else to control it.

 Also mention why the mouse wheel cannot scroll down.
 Nor can the PgDn key.

Because it says index print, meaning image. It behaves like any other feh
image, so to scroll you either use the mouse or Ctrl+Up / Ctrl+Down.

I'll make sure to fix these documentation issues in 1.14.

Thanks for reporting,
Daniel


signature.asc
Description: Digital signature


Bug#625690: irssi: Patch bind_utf8-fix breaks Alt-UP/DOWN

2011-05-05 Thread Michael Guntsche
Package: irssi
Version: 0.8.15-3
Severity: normal

As mentioned in the subject, patch bind_utf8-fix which was added in
the latest revision, breaks Alt/ESC-UP/DOWN for me. Instead of switching
to the next window it emits a [B or [A. For testing purposes I reverted
the patch and the key combo started working again.

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

Kernel: Linux 2.6.39-rc6+
Locale: LANG=C, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages irssi depends on:
ii  libc6 2.13-2 Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libncurses5   5.9-1  shared libraries for terminal hand
ii  libssl1.0.0   1.0.0d-2   SSL shared libraries
ii  perl-base 5.10.1-20  minimal Perl system

irssi recommends no packages.

Versions of packages irssi suggests:
ii  irssi-scripts 20100512   collection of scripts for irssi

-- no debconf information



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



Bug#615033: gnome-web-photo already available in Debian

2011-05-05 Thread Janusz S. Bień

I support the request and would like to mention that the program is
already available in Ubuntu:


https://launchpad.net/ubuntu/natty/+source/gnome-web-photo/0.10.1-0ubuntu1

Regards

JSB

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - Warsaw University (Department of Formal Linguistics)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/



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



Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread johan spee
Package: thunar
Version: 1.2.1-6
Severity: normal

I regularly use Kid3-qt to rename a directory (using a name based on the music
files contained in it). When Thunar is showing the dir at that time it crashes
- often, not always (I can't figure out what makes the difference).



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

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

Versions of packages thunar depends on:
ii  desktop-file-utils0.15-2 Utilities for .desktop files
ii  exo-utils 0.6.0-3Utility files for libexo
ii  libatk1.0-0   2.0.0-1The ATK accessibility toolkit
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libcairo2 1.10.2-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.4.6-1simple interprocess messaging syst
ii  libdbus-glib-1-2  0.92-1 simple interprocess messaging syst
ii  libexo-1-00.6.0-3Library with extensions for Xfce
ii  libgdk-pixbuf2.0-02.23.3-3   GDK Pixbuf library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.24.4-3   The GTK+ graphical user interface 
ii  libgudev-1.0-0167-3  GObject-based wrapper library for 
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1-gtk2.1 0.5.0-2sends desktop notifications to a n
ii  libpango1.0-0 1.28.3-6   Layout and rendering of internatio
ii  libsm62:1.2.0-1  X11 Session Management library
ii  libtdb1   1.2.9-1Trivial Database - shared library
ii  libthunarx-2-01.2.1-6extension library for thunar
ii  libxfce4ui-1-04.8.0-2widget library for Xfce
ii  libxfce4util4 4.8.1-2Utility functions library for Xfce
ii  shared-mime-info  0.90-1 FreeDesktop.org shared MIME databa
ii  thunar-data   1.2.1-6Provides thunar documentation, ico

Versions of packages thunar recommends:
ii  dbus-x11  1.4.6-1simple interprocess messaging syst
ii  gvfs  1.6.4-3userspace virtual filesystem - ser
ii  libfontconfig12.8.0-2.2  generic font configuration library
ii  libfreetype6  2.4.4-1FreeType 2 font engine, shared lib
ii  thunar-volman 0.6.0-4Thunar extension for volumes manag
ii  tumbler   0.1.21-2   D-Bus thumbnailing service
ii  xdg-user-dirs 0.13-2 tool to manage well known user dir
ii  xfce4-panel   4.8.3-2panel for Xfce4 desktop environmen

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.3.0-2Archive plugin for Thunar file man
pn  thunar-media-tags-plugin  none (no description available)

-- no debconf information



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



Bug#616080: gmerlin: segfault on start

2011-05-05 Thread Fabian Greffrath

Am 04.05.2011 04:40, schrieb Alessio Treglia:

Setting severity to minor, read my previous comment: this bug is not
reproducible if accelerated graphics is enabled.


I disagree. A segfault is a segfault and an application should not 
depend on accelerated graphics being enabled or not in order to start 
without segfaulting. That's not minor, IMHO.




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



Bug#625692: long description not very descriptive

2011-05-05 Thread Gerfried Fuchs
Package: python3-zope.fixers
Version: 1.0-1
Severity: minor

   Hi!

 The long description of the package python3-zope.fixers is extremely
terse. Actually it makes me wonder what fixers actually are meant to
be. I guess it would be quite helpful to expand the long description a
bit, a single sentence is really really little.

 Thanks,
Rhonda

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

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

Versions of packages python3-zope.fixers depends on:
pn  python3   none (no description available)
pn  python3-pkg-resources none (no description available)

python3-zope.fixers recommends no packages.

python3-zope.fixers suggests no packages.



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



Bug#625693: ggz-gnome-client: causes warnings from gconf2 trigger

2011-05-05 Thread Paul Wise
Package: ggz-gnome-client
Version: 0.0.14.1-1
Severity: normal

root@morrison:~# apt-get --reinstall install ggz-gnome-client
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 300 not upgraded.
Need to get 0 B/1,699 kB of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 427230 files and directories currently installed.)
Preparing to replace ggz-gnome-client 0.0.14.1-1 (using 
.../ggz-gnome-client_0.0.14.1-1_amd64.deb) ...
Unpacking replacement ggz-gnome-client ...
Processing triggers for bash-completion ...
Processing triggers for gconf2 ...
WARNING: no list_type specified for schema of type list
WARNING: invalid or missing list_type for schema 
(/schemas/apps/ggz-gnome/profiles/names)
WARNING: failed to install schema `/schemas/apps/ggz-gnome/profiles/names', 
locale `en': Schema specifies type list but doesn't specify the type of the 
list elements
WARNING: no list_type specified for schema of type list
WARNING: invalid or missing list_type for schema 
(/schemas/apps/ggz-gnome/profiles/usernames)
WARNING: failed to install schema `/schemas/apps/ggz-gnome/profiles/usernames', 
locale `en': Schema specifies type list but doesn't specify the type of the 
list elements
WARNING: no list_type specified for schema of type list
WARNING: invalid or missing list_type for schema 
(/schemas/apps/ggz-gnome/profiles/passowrds)
WARNING: failed to install schema `/schemas/apps/ggz-gnome/profiles/passowrds', 
locale `en': Schema specifies type list but doesn't specify the type of the 
list elements
WARNING: no list_type specified for schema of type list
WARNING: invalid or missing list_type for schema 
(/schemas/apps/ggz-gnome/profiles/servers)
WARNING: failed to install schema `/schemas/apps/ggz-gnome/profiles/servers', 
locale `en': Schema specifies type list but doesn't specify the type of the 
list elements
Processing triggers for gnome-menus ...
Processing triggers for desktop-file-utils ...
Processing triggers for man-db ...
Setting up ggz-gnome-client (0.0.14.1-1) ...

-- System Information:
Debian Release: wheezy/sid
  APT prefers experimental
  APT policy: (900, 'experimental'), (800, 'unstable'), (700, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages ggz-gnome-client depends on:
ii  gconf2 2.32.1-2  GNOME configuration database syste
ii  libc6  2.13-2Embedded GNU C Library: Shared lib
ii  libgconf2-42.32.1-2  GNOME configuration database syste
ii  libggz20.99.5~pre1-1 GGZ Gaming Zone: common utilities 
ii  libggzcore90.99.5~pre1-1 GGZ Gaming Zone: core client front
ii  libglib2.0-0   2.28.6-1  The GLib library of C routines
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomeui-0   2.24.3-1  The GNOME libraries (User Interfac
ii  libgtk2.0-02.24.4-3  The GTK+ graphical user interface 
ii  libx11-6   2:1.4.3-1 X11 client-side library

Versions of packages ggz-gnome-client suggests:
ii  ggz-gtk-games 0.0.14.1-1 GGZ Gaming Zone: game clients coll
pn  ggz-kde-games none (no description available)
ii  ggz-python-games  0.0.14.1-1 GGZ Gaming Zone: game clients coll
ii  ggz-sdl-games 0.0.14.1-1 GGZ Gaming Zone: game clients coll

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#625694: thunar: Thunar will not use plain 'images' as icons for custom actions

2011-05-05 Thread johan spee
Package: thunar
Version: 1.2.1-6
Severity: minor

Thunar's 'custom actions' allow the use of images (rather than icons) to be
shown in the context menu. But is refuses to use plain images: they are not
shown in the 'custom actions' dialog or in the context menu.

I tried jpg png and xpm, both from my home dir and from the system but none
were accepted. The images themselves may therefore not be the problem.



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

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

Versions of packages thunar depends on:
ii  desktop-file-utils0.15-2 Utilities for .desktop files
ii  exo-utils 0.6.0-3Utility files for libexo
ii  libatk1.0-0   2.0.0-1The ATK accessibility toolkit
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libcairo2 1.10.2-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.4.6-1simple interprocess messaging syst
ii  libdbus-glib-1-2  0.92-1 simple interprocess messaging syst
ii  libexo-1-00.6.0-3Library with extensions for Xfce
ii  libgdk-pixbuf2.0-02.23.3-3   GDK Pixbuf library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.24.4-3   The GTK+ graphical user interface 
ii  libgudev-1.0-0167-3  GObject-based wrapper library for 
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1-gtk2.1 0.5.0-2sends desktop notifications to a n
ii  libpango1.0-0 1.28.3-6   Layout and rendering of internatio
ii  libsm62:1.2.0-1  X11 Session Management library
ii  libtdb1   1.2.9-1Trivial Database - shared library
ii  libthunarx-2-01.2.1-6extension library for thunar
ii  libxfce4ui-1-04.8.0-2widget library for Xfce
ii  libxfce4util4 4.8.1-2Utility functions library for Xfce
ii  shared-mime-info  0.90-1 FreeDesktop.org shared MIME databa
ii  thunar-data   1.2.1-6Provides thunar documentation, ico

Versions of packages thunar recommends:
ii  dbus-x11  1.4.6-1simple interprocess messaging syst
ii  gvfs  1.6.4-3userspace virtual filesystem - ser
ii  libfontconfig12.8.0-2.2  generic font configuration library
ii  libfreetype6  2.4.4-1FreeType 2 font engine, shared lib
ii  thunar-volman 0.6.0-4Thunar extension for volumes manag
ii  tumbler   0.1.21-2   D-Bus thumbnailing service
ii  xdg-user-dirs 0.13-2 tool to manage well known user dir
ii  xfce4-panel   4.8.3-2panel for Xfce4 desktop environmen

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.3.0-2Archive plugin for Thunar file man
pn  thunar-media-tags-plugin  none (no description available)

-- no debconf information



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



Bug#601938: forwarded upstream

2011-05-05 Thread Sebastian Ramacher
forwarded 601938 http://dev.deluge-torrent.org/ticket/1833
thanks
-- 
Sebastian Ramacher



signature.asc
Description: OpenPGP digital signature


Bug#625323: collectd: ftbfs with gcc-4.6 -Werror

2011-05-05 Thread Florian Forster
Hi Matthias,

On Tue, May 03, 2011 at 10:32:36AM +, Matthias Klose wrote:
 This package builds with -Werror, and GCC 4.6 triggers new warnings
 which will make the package fail to build.

 The full build log can be found at:
 http://people.debian.org/~doko/tmp/werror/collectd_4.10.1-2.1_lsid64.buildlog

the bulk of those problems reside in code that's generated by libtool
(errors around checking dlopen) or autoconf (errors involving the
ac_aggr variable).

There are a couple or warnings which we can influence ourselves (the
getmnt checking code) and I'll take a look, but I don't see how this
should fail the build. In particular, I did not find any output of make,
only that configure exited with status 1. Unfortunately, in that big
dump of mostly useless data, I wasn't able to detect the output of
configure before exiting with that status.

Regards,
--octo
-- 
Florian octo Forster
Hacker in training
GnuPG: 0x0C705A15
http://octo.it/


signature.asc
Description: Digital signature


Bug#625695: Perl upgrade in Unstable breaks mrtg

2011-05-05 Thread Michael Guntsche
Package: mrtg
Version: 2.16.3-3
Severity: grave
Justification: renders package unusable

The upgrade in sid to perl 5.12 renders mrtg unuseable. The error
message you get is the following.

Bareword P_DETACH not allowed while strict subs in use at
/usr/share/perl5/MRTG_lib.pm line 1181.
Compilation failed in require at /usr/bin/mrtg line 92.
BEGIN failed--compilation aborted at /usr/bin/mrtg line 92.

This his already been fixed in upsteram in 2.16.4. So please upgrade the
version to at least 2.16.4 or 2.17.2 which is currently the latest
upstream version.

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

Kernel: Linux 2.6.39-rc6+
Locale: LANG=C, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mrtg depends on:
ii  debconf [debconf-2.0]  1.5.39Debian configuration management sy
ii  libc6  2.13-2Embedded GNU C Library: Shared lib
ii  libgd2-xpm 2.0.36~rc1~dfsg-5 GD Graphics Library version 2
ii  libpng12-0 1.2.44-2  PNG library - runtime
ii  libsnmp-session-perl   1.13-1Perl support for accessing SNMP-aw
ii  perl   5.12.3-6  Larry Wall's Practical Extraction 
ii  perl-modules   5.12.3-6  Core Perl modules
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

mrtg recommends no packages.

Versions of packages mrtg suggests:
ii  apache2-mpm-prefork [httpd] 2.2.17-3 Apache HTTP Server - traditional n
ii  lynx-cur [www-browser]  2.8.8dev.8-1 Text-mode WWW Browser with NLS sup
pn  mrtg-contribnone   (no description available)

-- Configuration Files:
/etc/mrtg.cfg [Errno 13] Permission denied: u'/etc/mrtg.cfg'

-- debconf information:
  mrtg/own_user: true
* mrtg/conf_mods: true



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



Bug#625696: debmirror: please do not forcibly use rsync for trace files

2011-05-05 Thread A Mennucc
Package: debmirror
Version: 1:2.6
Severity: normal

hi,

regardless of the method of download selected with '--method' ,
debmirror tries to download the trace files using 'rsync' :
this is a bad idea, since the rsync connection is not always
open to the general public (sometimes a password is required)
so the trace files are not downloaded

a.



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



Bug#625697: postgrey: Update to new upstream version and drop dependency on libdigest-sha1-perl

2011-05-05 Thread Salvatore Bonaccorso
Source: postgrey
Version: 1.33-3
Severity: wishlist
User: debian-p...@lists.debian.org
Usertags: digest-sha-perl-transition 

Hi

There is a new upstream version of postgrey available. It would be
great if you could update it. It too solves one goal of the Debian
Perl Group to drop the libdigest-sha1-perl package, see [1] for more
informations.

 [1] http://deb.li/digestsha

Thanks for your work!
Bests
Salvatore

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

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



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



Bug#625698: mod-mono: [INTL:nl] Dutch translation of debconf templates

2011-05-05 Thread Jeroen Schot
Package: mod-mono
Severity: wishlist
Tags: patch l10n

Hello,

Attached is the updated Dutch translation of the mod-mono debconf
templates. Please include it in your next upload.

Regards,
-- 
Jeroen Schot
# Dutch translation of mod-mono debconf templates.
# Copyright (C) 2007-2011 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the mod-mono package.
# Bart Cornelis cob...@skolelinux.no, 2007.
# Jeroen Schot sc...@a-eskwadraat.nl, 2011.
#
msgid 
msgstr 
Project-Id-Version: mod-mono_2.10-1\n
Report-Msgid-Bugs-To: mod-m...@packages.debian.org\n
POT-Creation-Date: 2009-07-16 15:24+0100\n
PO-Revision-Date: 2011-05-05 09:11+0200\n
Last-Translator: Jeroen Schot sc...@a-eskwadraat.nl\n
Language-Team: Debian l10n Dutch debian-l10n-du...@lists.debian.org\n
Language: nl\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Description
#: ../libapache2-mod-mono.templates:2001
msgid Mono server to use:
msgstr Te gebruiken mono-server:

#. Type: select
#. Description
#: ../libapache2-mod-mono.templates:2001
msgid 
The libapache2-mod-mono module can be used with one of two different Mono 
ASP.NET backends:\n
 - mod-mono-server1: implements ASP.NET 1.1 features;\n
 - mod-mono-server2: implements ASP.NET 2.0 features.
msgstr 
De module libapache2-mod-mono kan met één van de volgende Mono ASP.NET 
backends worden gebruikt:\n
 - mod-mono-server1: implementeert ASP.NET 1.1 functionaliteit;\n
 - mod-mono-server2: implementeert ASP.NET 2.0 functionaliteit.


Bug#600381: Bug#621956: gem: diff for NMU version 1:0.92.3-1.1

2011-05-05 Thread Paul Brossier
Hi,

we are wokring on gem, and an upload is ready for it, so this one
wouldn't help.

Thanks, Paul

On 05/05/11 01:33, Alessio Treglia wrote:
 tags 600381 + pending
 tags 621956 + patch
 tags 621956 + pending
 thanks
 
 Dear maintainer,
 
 I've prepared an NMU for gem (versioned as 1:0.92.3-1.1) and
 uploaded it to DELAYED/2. Please feel free to tell me if I
 should delay it longer.
 
 Regards.
 diff -Nru gem-0.92.3/debian/changelog gem-0.92.3/debian/changelog
 --- gem-0.92.3/debian/changelog   2010-03-25 10:15:58.0 +0100
 +++ gem-0.92.3/debian/changelog   2011-05-05 01:18:40.0 +0200
 @@ -1,3 +1,18 @@
 +gem (1:0.92.3-1.1) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * debian/patches/04_v4l1_headers_moved.patch:
 +- Find the new location of the header libv4l1-videodev.h;
 +  V4L1 support was dropped from the latest kernel (Closes: #621956).
 +  * debian/patches/05_missing_includes.patch:
 +- Add missing #include statements in src/Pixes/videoV4L2.h to prevent
 +  it fail to build (Closes: #600381).
 +  * Replace puredata with puredata-dev in Build-Depends since puredata's
 +stuff were splitted into several packages, puredata-dev provides the
 +development headers.
 +
 + -- Alessio Treglia ales...@debian.org  Thu, 05 May 2011 01:05:20 +0200
 +
  gem (1:0.92.3-1) unstable; urgency=low
 
* New upstream
 diff -Nru gem-0.92.3/debian/control gem-0.92.3/debian/control
 --- gem-0.92.3/debian/control 2010-03-25 10:15:58.0 +0100
 +++ gem-0.92.3/debian/control 2011-05-05 01:04:25.0 +0200
 @@ -10,7 +10,7 @@
 autoconf,
 automake,
 pkg-config,
 -   puredata | pd,
 +   puredata-dev | pd,
 libftgl-dev,
 libmagick++-dev,
 libxxf86vm-dev,
 diff -Nru gem-0.92.3/debian/patches/04_v4l1_headers_moved.patch
 gem-0.92.3/debian/patches/04_v4l1_headers_moved.patch
 --- gem-0.92.3/debian/patches/04_v4l1_headers_moved.patch 1970-01-01
 01:00:00.0 +0100
 +++ gem-0.92.3/debian/patches/04_v4l1_headers_moved.patch 2011-05-05
 01:09:37.0 +0200
 @@ -0,0 +1,23 @@
 +Description: Recent kernel has dropped V4L1 support.
 + The linux/videodev.h header was renamed.
 +Author: Andreas Moog am...@ubuntu.com
 +Bug-Ubuntu: https://launchpad.net/bugs/756070
 +Bug-Debian: http://bugs.debian.org/621956
 +Bug: http://sourceforge.net/support/tracker.php?aid=3290926
 +Reviewed-by: Alessio Treglia ales...@debian.org
 +Last-Update: 2011-05-05
 +---
 + src/Pixes/videoV4L.h |2 +-
 + 1 file changed, 1 insertion(+), 1 deletion(-)
 +
 +--- gem-0.92.3.orig/src/Pixes/videoV4L.h
  gem-0.92.3/src/Pixes/videoV4L.h
 +@@ -40,7 +40,7 @@
 + # include sys/types.h
 + # include sys/time.h
 + # include linux/types.h
 +-# include linux/videodev.h
 ++# include libv4l1-videodev.h
 + # include sys/mman.h
 + //#ifdef HAVE_PTHREADS
 + # include pthread.h
 diff -Nru gem-0.92.3/debian/patches/05_missing_includes.patch
 gem-0.92.3/debian/patches/05_missing_includes.patch
 --- gem-0.92.3/debian/patches/05_missing_includes.patch   1970-01-01
 01:00:00.0 +0100
 +++ gem-0.92.3/debian/patches/05_missing_includes.patch   2011-05-05
 01:14:48.0 +0200
 @@ -0,0 +1,19 @@
 +Description: Add missing #include statements to avoid a build failure.
 +Bug-Debian: http://bugs.debian.org/600381
 +Author: Claude Heiland-Allen claudiusmaxi...@goto10.org
 +---
 + src/Pixes/videoV4L2.h |3 ++-
 + 1 file changed, 2 insertions(+), 1 deletion(-)
 +
 +--- gem-0.92.3.orig/src/Pixes/videoV4L2.h
  gem-0.92.3/src/Pixes/videoV4L2.h
 +@@ -36,7 +36,8 @@ WARRANTIES, see the file, GEM.LICENSE.T
 + # include fcntl.h
 + # include errno.h
 + # include sys/ioctl.h
 +-//# include sys/types.h
 ++# include sys/types.h
 ++# include sys/stat.h
 + //# include sys/time.h
 + # include asm/types.h
 + # include linux/videodev2.h
 diff -Nru gem-0.92.3/debian/patches/series gem-0.92.3/debian/patches/series
 --- gem-0.92.3/debian/patches/series  2010-03-25 10:15:58.0 +0100
 +++ gem-0.92.3/debian/patches/series  2011-05-05 01:12:48.0 +0200
 @@ -1,3 +1,5 @@
  01_change_defaultfont.patch
  02_manual_examples_install.patch
  03_falign_default.patch
 +04_v4l1_headers_moved.patch
 +05_missing_includes.patch
 




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



Bug#625244: gpsbabel conflicts with garmin_gps kernel module

2011-05-05 Thread David Schmitt

On 02.05.2011 21:06, Bernd Zeimetz wrote:

tag 625244 wontfix
thanks

Hi,


I tried to get gpsbabel to read the data from my Garmin EDGE 305 unit. This
only worked after removing the garmin_gps kernel module and running gpsbabel
as root (or manually adding a udev rule).


unfortunately some programs (like gpsd) need the module and others not. So there
is no proper way to decide if the module should be black listed or not. It is up
to the admin to decide what to do as there is no way to handle this
automatically. In Ubuntu the module was blacklisted but the blacklisting was
afaik removed as too many gpsd users complained about it. The proper way would
be to fix the module to allow access to the device from several programs and in
various modes. Or the real proper fix - ask Garmin to fix their USB mess.



Well, running gpsbabel -i garmin as root seems to be a good indicator 
of administrator's choice to me. But at least the error message from 1.3 
gives a much better picture of the situation than the non-committal from 
1.4. It be great to have that re-instated.


Best Regards, David



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



Bug#625653: [debian-mysql] Bug#625653: mysql-client-5.1: apt-get dist-upgrade fails

2011-05-05 Thread Norbert Tretkowski
Am Mittwoch, den 04.05.2011, 21:42 +0100 schrieb Nigel Horne:
 The following packages have unmet dependencies:
  mysql-client : Depends: mysql-client-5.1 but it is not going to be installed
 E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
 held packages.
 sh-4.1# dpkg -la | fgrep mysql-client
 ii  mysql-client-5.1   5.1.56-1   
 MySQL database client binaries

this looks broken... please send us the output of this command:

apt-get install mysql-client-5.1



Regards

Norbert




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



Bug#625521: glibc: causes segfault in Xorg

2011-05-05 Thread Michel Dänzer
On Mit, 2011-05-04 at 23:41 -0500, Steve M. Robbins wrote: 
 On Wed, May 04, 2011 at 10:08:47AM +0200, Michel Dänzer wrote:
 
  Steve, can you provide the output of fbset -i and the
  /etc/X11/xorg.conf file as well? Any reason for not using the radeon
  driver?
 
 I don't know why the radeon driver is not in use.

Looks like you're missing the xserver-xorg-video-ati package, which is
necessary for the radeon driver to get loaded automagically by the X
server. Maybe this package was accidentally uninstalled along with the
libc6 upgrade?

If you can't or don't want to install it again for some reason, you can
explicitly choose the radeon driver in xorg.conf Section Device.


 fbset -i:
 
 mode 1280x1024
 geometry 1280 1024 3200 1200 32
 timings 0 0 0 0 0 0 0
 accel true
 rgba 8/16,8/8,8/0,0/0
 endmode
 
 Frame buffer device information:
 Name: radeondrmfb
 Address : 0xd0142000
 Size: 9216000
 Type: PACKED PIXELS
 Visual  : TRUECOLOR
 XPanStep: 1
 YPanStep: 1
 YWrapStep   : 0
 LineLength  : 7680
 Accelerator : No
 
 xorg.conf:

[...]

   SubSection Display
   Virtual 3200 1200
   EndSubSection

Does commenting out this SubSection Display (or moving xorg.conf out
of the way altogether, it shouldn't be necessary anymore) help? It's no
longer needed with the radeon driver with KMS, and I suspect it's
triggering bugs with the fbdev driver.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



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



Bug#625682: xserver-xorg-video-intel: Xorg Crashes: intel_uxa_prepare_access: bo map failed: Input/output error

2011-05-05 Thread Cyril Brulebois
Hi,

frank fzambr...@gmail.com (04/05/2011):
 Package: xserver-xorg-video-intel
 Version: 2:2.14.0-4
 Severity: important
 
 Since upgrading to Wheezy, I'm having issues with Xorg crashing when running
 some gpu intensive tasks (noticed with flightgear mostly)

please check what happens with that:
 xserver-xorg-video-intel | 2:2.15.0-1   | wheezy  | source, amd64, i386

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#624145: duplicate ref

2011-05-05 Thread Christian Hofstädtler
The other bug is probably #624008
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624008



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



Bug#625521: glibc: causes segfault in Xorg

2011-05-05 Thread sean finney
Hi,

On Wed, May 04, 2011 at 10:56:27PM -0500, Steve M. Robbins wrote:
  And furthermore, even if Debian chooses to fix this, upstreams will
  be forced to eventually cater to the default glibc behavior for every
  other libc distro out there that does not have their own fix (and
  non-libc OS's where this behavior already exists), 
 
 That's fine: let others be the guinea pigs, then introduce the
 optimized memcpy later when the rest of the world has adapted.

I hope the glibc maintainer does not share this view, then.  If we were in
the midst of preparing a release, I'd agree and argue that such a change
shouldn't happen, because of the risk of regression, but otherwise the
whole point of testing/unstable is to find these types of things and
get them fixed before the next release.

  so gains would be potentially limited.
 
 For me, having a working system would be a great gain!

As would be with getting the buggy applications fixed.  My guess is
that the glibc upstream would side for the latter of these two, and I
don't think it's unreasonable that the debian maintainer might decide
to follow suit, since the buggy applications will be (eventually)
caught and fixed.

  That said, regressions do suck, especially when they take the form of
  heisenbugs.  But one could easily hack something LD_PRELOAD'able check
  for stuff like this without forcing a global change.
 
 Sounds interesting.  What do you have in mind?

The same types of hacks used to find other nonstandard or undefined
behavior (à la valgrind).  Simply override the problematic function
with your own via an LD_PRELOAD'd shared library.  Proof of concept:

me@host:~/debug-memcpy$ ./test_memcpy 
before: hhh
after:  hhh
me@host:~/debug-memcpy$ env LD_PRELOAD=./memcpy.so ./test_memcpy 
before: hhh
Error: memcpy used on overlapping regions
Aborted
me@host:~/debug-memcpy$ env MEMCPY=warn LD_PRELOAD=./memcpy.so ./test_memcpy 
before: hhh
Warning: memcpy used on overlapping regions
after:  hhh
me@host:~/debug-memcpy$ env MEMCPY=safe LD_PRELOAD=./memcpy.so ./test_memcpy 
before: hhh
after:  hhh

The first case above illustrates the undefined behavior which might crash,
the remaining two show using an LD_PRELOADED version of memcpy with the
checks to override the behavior.

I put a tarball up on http://seanius.net/tmp/debug-memcpy.tgz if you want to
check it out, it's maybe a dozen lines of actual code.  Note that I haven't
tested the bounds checking corner cases for 100% accuracy.

If you were running something super critical on testing, like a mars rover
or a robot that does brain surgery, you could install this system-wide and
hack the default action, and then you get your stability back.  Otherwise,
I'd think taking the default glibc behavior and using something like this
as one of several debugging tools when the heisenbugs pop up would be
pretty reasonable.  Maybe valgrind already does checks like this, but
if not, I imagine that it wouldn't be too hard to add the same check there.


sean



-- 



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



Bug#625700: sludge-engine: no sound

2011-05-05 Thread Jason Woofenden
Package: sludge-engine
Version: 2.1.1-1
Severity: normal

Thanks for packaging, this looks really fun.

I'm not getting any sound. No background music, no voices, not even
a little blip in pavucontrol. Though sludge-engine does show up in
pavucontrol, so it seems to be successfully opening the sound
device.

Here's one of the games I tried:

http://www.deirdrakiai.com/downloads/lfb/LifeFlashesBy-slg.zip

Thanks,   - Jason


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

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

Versions of packages sludge-engine depends on:
ii  libalure1   1.1-2AL Utilities REtooled (shared libr
ii  libc6   2.13-2   Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.6.0-6GCC support library
ii  libgl1-mesa-glx [libgl1]7.10.2-2 free implementation of the OpenGL 
ii  libglee0d1  5.4.0-1  extension loading library for Open
ii  libglu1-mesa [libglu1]  7.10.2-2 The OpenGL utility library (GLU)
ii  libogg0 1.2.0~dfsg-1 Ogg bitstream library
ii  libopenal1  1:1.13-2 Software implementation of the Ope
ii  libpng12-0  1.2.44-2 PNG library - runtime
ii  libsdl1.2debian 1.2.14-6.3   Simple DirectMedia Layer
ii  libstdc++6  4.6.0-6  The GNU Standard C++ Library v3
ii  libvorbis0a 1.3.2-1  The Vorbis General Audio Compressi
ii  libvpx0 0.9.6-1  VP8 video codec (shared library)

sludge-engine recommends no packages.

Versions of packages sludge-engine suggests:
pn  sludge-devkit none (no description available)

-- no debconf information



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



Bug#625661: debian.tar.gz contains garbage patch

2011-05-05 Thread Roland Stigge
Will upload fix soon.



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



Bug#625657: AttributeError: 'module' object has no attribute 'PARAM_APP_DATADIR'

2011-05-05 Thread Mihai Basa
Hi Laurent,

You were right. I tried upgrading to 2.28.1-2 again (still failed) and
then upgraded each of today's python packages in turn. The problem was
resolved after upgrading python-gnomedesktop 2.30.0-4 to 2.30.2-1.

Cheers,
Mihai

On 4 May 2011 23:55, Laurent Bigonville bi...@bigon.be wrote:
 severity 625657 grave
 tag 625657 + moreinfo
 notfound 625657 2.28.1-1
 found 625657 2.28.1-2
 thanks

 Hi,

 This is probably happening because some packages have not migrated to
 testing yet and/or all the python packages are not at their last
 version on your system since I cannot reproduce this in unstable.

 Could you please try to install last version of:

  - python-gconf
  - python-gtk2

 If it's not working, some other packages will migrate to testing
 tomorrow, so you should give it a try again.

 Cheers

 Laurent Bigonville




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



Bug#625701: [wpasupplicant] ipw3945 ioctl[SIOCSIWENCODEEXT]: Invalid argument

2011-05-05 Thread Ruiyan Yu

Package: wpasupplicant
Version: 0.7.3-3
Severity: normal

--- Please enter the report below this line. ---
I was able to connect to the university network.
Since last aptitude full-upgrade I received errors shown below and was 
unabled to connect.

It does not work for WPA-EPA-TTLS as well.

I dont have any other connection issues with wlan-network.


wpa_supplicant log with -dddt
---
1304546942.144667: wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 
seq_len=0 key_len=0
1304546942.144688: wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 
seq_len=0 key_len=0
1304546942.144697: wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 
seq_len=0 key_len=0
1304546942.144705: wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 
seq_len=0 key_len=0
1304546942.144713: wpa_driver_wext_set_key: alg=0 key_idx=4 set_tx=0 
seq_len=0 key_len=0

1304546942.144822: Driver did not support SIOCSIWENCODEEXT
1304546942.144828: wpa_driver_wext_set_key: alg=0 key_idx=5 set_tx=0 
seq_len=0 key_len=0

1304546942.144880: Driver did not support SIOCSIWENCODEEXT

wpa_supplicant.conf
---
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
eapol_version=1
ap_scan=1

network={
ssid=someid
id_str=somestr
scan_ssid=1
key_mgmt=WPA-EAP
eap=PEAP
identity=id@domain
anonymous_identity=anonymous@domain
password=somepass
ca_cert=somecert
phase2=auth=MSCHAPV2
}

interfaces
-
auto wlan0
iface wlan0 inet manual
wpa-driver wext

# Roaming Config File
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

#Location
iface somestr inet dhcp



--- System information. ---
Architecture: i386
Kernel: Linux 2.6.38-2-686

Debian Release: wheezy/sid
500 testing www.debian-multimedia.org
500 testing security.debian.org
500 testing ftp.de.debian.org

--- Package information. ---
Depends (Version) | Installed
==-+-==
libc6 (= 2.3.6-6~) | 2.11.2-11
libdbus-1-3 (= 1.1.1) | 1.4.6-1
libnl1 (= 1.1) | 1.1-6
libpcsclite1 | 1.7.2-2
libreadline6 (= 6.0) | 6.1-3
libssl1.0.0 (= 1.0.0) | 1.0.0d-2
lsb-base (= 3.0-6) | 3.2-27
adduser | 3.112+nmu2


Package's Recommends field is empty.

Suggests (Version) | Installed
===-+-===
wpagui |
libengine-pkcs11-openssl |







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



Bug#600381: Bug#621956: gem: diff for NMU version 1:0.92.3-1.1

2011-05-05 Thread Alessio Treglia
Hi Paul, IOhannes,

upload cancel'd, I'm happy to see you are active on these!

Please have a look at the 04_v4l1_headers_moved.patch patch included
in the above nmudiff, that patch would allow you to avoid disabling
V4L1 support, it just points to the new path of the culprit header
file.

Thanks for the quick reply, and keep up the great work!

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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



Bug#625521: glibc: causes segfault in Xorg

2011-05-05 Thread Pierre Habouzit
On Thu, May 05, 2011 at 09:56:03AM +0200, sean finney wrote:
 Maybe valgrind already does checks like this [...]

It does.
-- 
·O·  Pierre Habouzit
··Omadco...@debian.org
OOOhttp://www.madism.org



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



Bug#625702: service-discovery-applet: Crashes on gnome session start

2011-05-05 Thread Olivier Berger
Package: service-discovery-applet
Version: 0.4.4-4.1
Severity: normal

Hi.

It crashed at session start, and here's the report saved by bug-buddy.

Note that the dependency information has changed, since I upgraded some 
packages in between the crash and this sending of the report.

Hope this helps.

Best regards,

System: Linux 2.6.32-5-686 #1 SMP Tue Mar 8 21:36:00 UTC 2011 i686
X Vendor: The X.Org Foundation
X Vendor Release: 10905000
Selinux: No
Accessibility: Disabled
GTK+ Theme: Clearlooks
Icon Theme: gnome
GTK+ Modules: gnomebreakpad, canberra-gtk-module

Memory status: size: 50176000 vsize: 50176000 resident: 21929984 share: 
13811712 rss: 21929984 rss_rlim: 18446744073709551615
CPU usage: start_time: 1304581513 rtime: 26 utime: 24 stime: 2 cutime:0 cstime: 
0 timeout: 0 it_real_value: 0 frequency: 100

Backtrace was generated from '/usr/bin/python2.6'

[Thread debugging using libthread_db enabled]
0xb7751424 in __kernel_vsyscall ()
#0  0xb7751424 in __kernel_vsyscall ()
#1  0xb7729f23 in __waitpid_nocancel () at ../sysdeps/unix/syscall-template.S:82
#2  0xb705ee0f in g_spawn_sync () from /lib/libglib-2.0.so.0
#3  0xb705f30c in g_spawn_command_line_sync () from /lib/libglib-2.0.so.0
#4  0xb60338f4 in ?? () from /usr/lib/gtk-2.0/modules/libgnomebreakpad.so
#5  signal handler called
#6  0xb7751424 in __kernel_vsyscall ()
#7  0xb73fa751 in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
#8  0xb73fdb82 in abort () at abort.c:92
#9  0xb701e5e8 in g_logv () from /lib/libglib-2.0.so.0
#10 0xb701e622 in g_log () from /lib/libglib-2.0.so.0
#11 0xb5c4cebc in bonobo_activation_timeout_reg_check () from 
/usr/lib/libbonobo-activation.so.4
#12 0xb7016b8c in ?? () from /lib/libglib-2.0.so.0
#13 0xb7015252 in g_main_context_dispatch () from /lib/libglib-2.0.so.0
#14 0xb7015a30 in ?? () from /lib/libglib-2.0.so.0
#15 0xb70160f3 in g_main_loop_run () from /lib/libglib-2.0.so.0
#16 0xb690956f in gtk_dialog_run () from /usr/lib/libgtk-x11-2.0.so.0
#17 0xb6d7c0fd in ?? () from /usr/lib/pymodules/python2.6/gtk-2.0/gtk/_gtk.so
#18 0x080e08c0 in PyEval_EvalFrameEx ()
#19 0x080e1827 in PyEval_EvalFrameEx ()
#20 0x080e2968 in PyEval_EvalCodeEx ()
#21 0x080e2a67 in PyEval_EvalCode ()
#22 0x081053ac in PyRun_SimpleFileExFlags ()
#23 0x0805dc3b in Py_Main ()
#24 0x0805cf1b in main ()

Thread 1 (Thread 0xb73cf6c0 (LWP 4242)):
#0  0xb7751424 in __kernel_vsyscall ()
No symbol table info available.
#1  0xb7729f23 in __waitpid_nocancel () at ../sysdeps/unix/syscall-template.S:82
No locals.
#2  0xb705ee0f in g_spawn_sync () from /lib/libglib-2.0.so.0
No symbol table info available.
#3  0xb705f30c in g_spawn_command_line_sync () from /lib/libglib-2.0.so.0
No symbol table info available.
#4  0xb60338f4 in ?? () from /usr/lib/gtk-2.0/modules/libgnomebreakpad.so
No symbol table info available.
#5  signal handler called
No symbol table info available.
#6  0xb7751424 in __kernel_vsyscall ()
No symbol table info available.
#7  0xb73fa751 in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
resultvar = value optimized out
pid = -1219420172
selftid = 4242
#8  0xb73fdb82 in abort () at abort.c:92
act = {__sigaction_handler = {sa_handler = 0x, sa_sigaction = 
0x}, sa_mask = {__val = {3075552160, 162695451, 3218620328, 3074685885, 
160851224, 3218620464, 3218620392, 0, 3218620360, 160846848, 3075545856, 
3074686000, 3074685776, 3070927456, 3218620460, 160783824, 3218620424, 
3070610834, 3218620460, 3053665289, 3218620516, 3075552160, 162695192, 
3070657572, 3070086512, 159472944, 160783824, 4294967295, 3078021108, 
3070927456, 3049584432, 160783824}}, sa_flags = -1220295402, sa_restorer = 
0xb7036262 g_strdup_vprintf+50}
sigs = {__val = {32, 0 repeats 31 times}}
#9  0xb701e5e8 in g_logv () from /lib/libglib-2.0.so.0
No symbol table info available.
#10 0xb701e622 in g_log () from /lib/libglib-2.0.so.0
No symbol table info available.
#11 0xb5c4cebc in bonobo_activation_timeout_reg_check () from 
/usr/lib/libbonobo-activation.so.4
No symbol table info available.
#12 0xb7016b8c in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#13 0xb7015252 in g_main_context_dispatch () from /lib/libglib-2.0.so.0
No symbol table info available.
#14 0xb7015a30 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#15 0xb70160f3 in g_main_loop_run () from /lib/libglib-2.0.so.0
No symbol table info available.
#16 0xb690956f in gtk_dialog_run () from /usr/lib/libgtk-x11-2.0.so.0
No symbol table info available.
#17 0xb6d7c0fd in ?? () from /usr/lib/pymodules/python2.6/gtk-2.0/gtk/_gtk.so
No symbol table info available.
#18 0x080e08c0 in PyEval_EvalFrameEx ()
No symbol table info available.
#19 0x080e1827 in PyEval_EvalFrameEx ()
No symbol table info available.
#20 0x080e2968 in PyEval_EvalCodeEx ()
No symbol table info available.
#21 0x080e2a67 in PyEval_EvalCode ()
No symbol table info available.
#22 0x081053ac in PyRun_SimpleFileExFlags ()
No symbol table 

Bug#625703: ABI break for metaclass handling

2011-05-05 Thread Pietro Battiston
Package: python-gobject
Version: 2.28.3-2
Severity: normal
Tags: sid

If you try to start sqledit, from python-sqlkit package in experimental,
which used to work fine with previous python-gobject versions, it now dies
horribly:


pietro@voubian:~$ sqledit
Traceback (most recent call last):
  File /usr/bin/sqledit, line 379, in module
from sqlkit.misc import conf, optionparse, table_browser
  File /usr/lib/python2.6/dist-packages/sqlkit/misc/table_browser.py, line
23, in module
from sqlkit.widgets import SqlTable, SqlMask
  File /usr/lib/python2.6/dist-packages/sqlkit/widgets/__init__.py, line 2,
in module
from mask import SqlMask
  File /usr/lib/python2.6/dist-packages/sqlkit/widgets/mask/__init__.py, line
2, in module
from mask import SqlMask
  File /usr/lib/python2.6/dist-packages/sqlkit/widgets/mask/mask.py, line 27,
in module
from sqlkit.widgets.common import completion, sqlwidget
  File /usr/lib/python2.6/dist-packages/sqlkit/widgets/common/completion.py,
line 60, in module
class SimpleCompletion(object):
  File /usr/lib/python2.6/dist-packages/gobject/__init__.py, line 60, in
__init__
cls._type_register(cls.__dict__)
  File /usr/lib/python2.6/dist-packages/gobject/__init__.py, line 114, in
_type_register
type_register(cls, namespace.get('__gtype_name__'))
TypeError: Error when calling the metaclass bases
argument must be a GObject subclass


The problem has apparently surfaced in many other apps (see LP #713840, LP
#713843, LP #729947, LP #746416) and has been fixed by Ubuntu with a patch from
upstream:
http://changelogs.ubuntu.com/changelogs/pool/main/p/pygobject/pygobject_2.28.3-1ubuntu1/changelog

Applying that patch should probably be enough...

Pietro Battiston



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

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

Versions of packages python-gobject depends on:
ii  gir1.2-glib-2.0   0.10.7-1   Introspection data for GLib, GObje
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libffi5   3.0.9-4Foreign Function Interface library
ii  libgirepository-1.0-1 0.10.7-1   Library for handling GObject intro
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  python2.6.6-14   interactive high-level object-orie
ii  python2.6 2.6.6-10   An interactive high-level object-o

Versions of packages python-gobject recommends:
pn  python-gobject-cairo  none (no description available)

Versions of packages python-gobject suggests:
pn  python-gobject-dbgnone (no description available)

-- no debconf information



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



Bug#625676: aubio: diff for NMU version 0.3.2-4.2

2011-05-05 Thread Alessio Treglia
tags 625676 + patch
thanks

Dear maintainer,

I've prepared an NMU for aubio (versioned as 0.3.2-4.2). The diff
is attached to this message.

Regards.

diff -u aubio-0.3.2/debian/control aubio-0.3.2/debian/control
--- aubio-0.3.2/debian/control
+++ aubio-0.3.2/debian/control
@@ -14,7 +14,7 @@
python-all-dev (= 2.3.5-11),
python-support (= 0.90),
swig,
-   puredata
+   puredata-dev
 Build-Depends-Indep: doxygen, graphviz, gsfonts
 XS-Python-Version: current
 Standards-Version: 3.8.3
diff -u aubio-0.3.2/debian/changelog aubio-0.3.2/debian/changelog
--- aubio-0.3.2/debian/changelog
+++ aubio-0.3.2/debian/changelog
@@ -1,3 +1,11 @@
+aubio (0.3.2-4.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Replace puredata with puredata-dev in the Build-Depends field to fix
+FTBFS (Closes: #625676).
+
+ -- Alessio Treglia ales...@debian.org  Thu, 05 May 2011 10:09:35 +0200
+
 aubio (0.3.2-4.1) unstable; urgency=low

   * Non-maintainer upload.

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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



Bug#625704: superfluous ' in package description

2011-05-05 Thread Gerfried Fuchs
Package: mediathekview
Version: 2.4.0-4
Severity: minor

Hi!

 Somehow the ' in podcast's looks wrongly placed, I wonder where it
came from.

 Additionally, I would either remove the last paragraph as a whole, the
homepage URL is shown anyway, or remove the URL (which goes to the
project overview page which is rather not what helps endusers) and just
state Please visit the upstream homepage  Though, there is no
specific reason listed to do so, and adding such a paragraph to every
package description out there isn't really something we should do.

 Thanks for your effort for Debian, btw!
Rhonda



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



Bug#599658: Status of gtk2-engines-equinox packaging?

2011-05-05 Thread Hadret
On Thu, May 5, 2011 at 03:51, Maia Kozheva si...@ubuntu.com wrote:
 Greetings, Hadret!
 What's the status of your Debian ITP for gtk2-engines-equinox? Are you going 
 to
 upload a package?
 I maintain that package in Ubuntu, and I wouldn't mind preparing an upload for
 Debian too.

If you are willing to do so, feel free to take over the ITP (:

Regards,
-- 
Hadret | Blog: blog.fchabik.com
Twitter: @hadret | Identi.ca: hadret
(D)PPA: hadret.rootnode.net



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



Bug#625705: perlapi: After last perl update unable to install packages which still depend on 5.10

2011-05-05 Thread Adnan Hodzic
Package: perl
Version: 5.12.3-6
Severity: important
File: perlapi

After last Perl update I lost many applications, full list is: 

hpijs hplip hplip-cups libcairo-perl libgnome2-canvas-perl libgnome2-perl 
libgtk2-perl libhpmud0 libpango-perl libperl5.10 libpurple-bin libpurple0 
libsane-hpaio libsnmp15 
pidgin pidgin-facebookchat pidgin-musictracker pidgin-plugin-pack

All of them apparently depend on 5.10, so this bug may not even be a perl one 
as these packages might want to update their control files along with perl 5.12 
dependency.
Either way I was unsure and thus submited this bug as perl bug.

I got on the idea about updating individual packages dependencies after I tried 
to install Pidgin and got following error:

The following packages have unmet dependencies:
 pidgin : Depends: libpurple0 (= 2.7.0) but it is not going to be installed
  Depends: perlapi-5.10.1


If you need any additional information please do let me know.


Adnan
 

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (600, 'testing'), (200, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages perl depends on:
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.13-2   Embedded GNU C Library: Shared lib
ii  libdb5.15.1.25-10Berkeley v5.1 Database Libraries [
ii  libgdbm31.8.3-9  GNU dbm database routines (runtime
ii  perl-base   5.12.3-6 minimal Perl system
ii  perl-modules5.12.3-6 Core Perl modules
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages perl recommends:
ii  netbase   4.45   Basic TCP/IP networking system

Versions of packages perl suggests:
pn  libterm-readline-gnu-perl | l none (no description available)
pn  make  none (no description available)
pn  perl-doc  none (no description available)

-- no debconf information



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



Bug#625691: [Pkg-xfce-devel] Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread Yves-Alexis Perez
On jeu., 2011-05-05 at 08:45 +0200, johan spee wrote:
 I regularly use Kid3-qt to rename a directory (using a name based on the music
 files contained in it). When Thunar is showing the dir at that time it crashes
 - often, not always (I can't figure out what makes the difference). 

Could you take a backtrace when/if you manage to reproduce it? Here when
I rename a directory I'm on, Thunar just jumps to the parent.

Regards,
-- 
Yves-Alexis


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


Bug#625694: [Pkg-xfce-devel] Bug#625694: thunar: Thunar will not use plain 'images' as icons for custom actions

2011-05-05 Thread Yves-Alexis Perez
tag 625694 confirmed
thanks
On jeu., 2011-05-05 at 08:52 +0200, johan spee wrote:
 Thunar's 'custom actions' allow the use of images (rather than icons) to be
 shown in the context menu. But is refuses to use plain images: they are not
 shown in the 'custom actions' dialog or in the context menu.
 
 I tried jpg png and xpm, both from my home dir and from the system but none
 were accepted. The images themselves may therefore not be the problem. 

Yes, confirmed.

Regards,
-- 
Yves-Alexis


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


Bug#625705: perlapi: After last perl update unable to install packages which still depend on 5.10

2011-05-05 Thread Niko Tyni
forcemerge 624870 625705
thanks

On Thu, May 05, 2011 at 10:50:12AM +0200, Adnan Hodzic wrote:
 Package: perl
 Version: 5.12.3-6
 Severity: important
 File: perlapi
 
 After last Perl update I lost many applications, full list is: 
 
 hpijs hplip hplip-cups libcairo-perl libgnome2-canvas-perl libgnome2-perl 
 libgtk2-perl libhpmud0 libpango-perl libperl5.10 libpurple-bin libpurple0 
 libsane-hpaio libsnmp15 
 pidgin pidgin-facebookchat pidgin-musictracker pidgin-plugin-pack
 
 All of them apparently depend on 5.10, so this bug may not even be
 a perl one as these packages might want to update their control files
 along with perl 5.12 dependency.

 Either way I was unsure and thus submited this bug as perl bug.

Yes, this is expected whilst the transition (rebuild of ~ 400 packages)
completes. Please see #619117 for more information and try again in a
few days.
-- 
Niko Tyni   nt...@debian.org



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



Bug#584914: this serious

2011-05-05 Thread Harald Dunkel
Hi folks,

of course fixing bugs is an ugly business, but would it be
possible to increase the priority of this bug report? This
problem produced 30 minutes downtime on our CVS server.


Many thanx

Harri



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



Bug#625658: [Pkg-virtualbox-devel] Bug#625658: virtualbox-ose: FTBFS for xorg-server 1.10 rebuild: ** gcc version 4.6.1 found, expected gcc 3.x with x1 or gcc 4.x with 0x5!

2011-05-05 Thread Frank Mehnert
That script needs an update as the code compiles and works fine with
gcc-4.6. You can patch configure to allow gcc-4.6 and you should add
 
 VBOX_WITH_WARNINGS_AS_ERRORS =

to LocalConfig.kmk to be able to build the sources. That will
be properly fixed with the next maintenance release.

Kind regards,

Frank

On Wednesday 04 May 2011 23:04:45 Cyril Brulebois wrote:
 Source: virtualbox-ose
 Version: 4.0.4-dfsg-1
 Severity: serious
 Justification: FTBFS
 
 Hi,
 
 as announced on IRC, I scheduled a binNMU for your package, but that
 
 didn't work:
 | Checking for environment: Determined build machine: linux.amd64, target
 | machine: linux.amd64, OK. Checking for kBuild: found, OK.
 | 
 | Checking for gcc:
 |   ** gcc version 4.6.1 found, expected gcc 3.x with x1 or gcc 4.x with
 |   0x5!
 | 
 | Check
 | /build/buildd-virtualbox-ose_4.0.4-dfsg-1+b3-amd64-2Y8bRu/virtualbox-ose
 | -4.0.4-dfsg/out/configure.log for details make[1]: ***
 | [override_dh_auto_configure] Error 1
 
 Full build logs:
   https://buildd.debian.org/status/package.php?p=virtualbox-ose
 
 Mraw,
 KiBi.
 
 
 
 ___
 Pkg-virtualbox-devel mailing list
 pkg-virtualbox-de...@lists.alioth.debian.org
 http://lists.alioth.debian.org/mailman/listinfo/pkg-virtualbox-devel

-- 
ORACLE Deutschland B.V.  Co. KG   Dr.-Ing. Frank Mehnert
Werkstrasse 24 Staff Engineer, VirtualBox
71384 Weinstadt, Germany   mailto:frank.mehn...@oracle.com

Hauptverwaltung: Riesstr. 25, D-80992 München
Registergericht: Amtsgericht München, HRA 95603

Komplementärin: ORACLE Deutschland Verwaltung B.V.
Hertogswetering 163/167, 3543 AS Utrecht, Niederlande
Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697
Geschäftsführer: Jürgen Kunz, Marcel van de Molen, Alexander van der Ven


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


Bug#522493: /usr/bin/gnome-keyring-daemon not working in fr_FR.UTF-8 and ssh workaround

2011-05-05 Thread Ronan Keryell
For few weeks now on Debian/unstable, ssh authentication services on my
laptop computer is no longer working.

I've just discovered that this service is not provided by ssh-agent but
but gnome-keyring-daemon. Why not...

When I connect I get this in my /var/log/auth.log:

May  5 09:32:27 an-dro gdm[2145]: pam_nologin(gdm:auth): cannot determine 
username
May  5 09:33:02 an-dro CRON[2781]: pam_unix(cron:session): session opened for 
user nobody by (uid=0)
May  5 09:33:02 an-dro CRON[2781]: pam_limits(cron:session): Unknown kernel 
rlimit 'Max realtime timeout' ignored
May  5 09:33:02 an-dro CRON[2781]: pam_unix(cron:session): session closed for 
user nobody
May  5 09:33:21 an-dro gdm[2145]: pam_limits(gdm:session): Unknown kernel 
rlimit 'Max realtime timeout' ignored
May  5 09:33:21 an-dro gdm[2145]: pam_unix(gdm:session): session opened for 
user keryell by (uid=0)
May  5 09:33:21 an-dro gdm[2145]: pam_ck_connector(gdm:session): nox11 mode, 
ignoring PAM_TTY :0
May  5 09:33:26 an-dro gnome-keyring-daemon[2785]: GLib-GIO: Using the 'memory' 
GSettings backend.  Your settings will not be saved or shared with other 
applications.
May  5 09:33:34 an-dro polkitd(authority=local): Registered Authentication 
Agent for unix-session:/org/freedesktop/ConsoleKit/Session1 (system bus name 
:1.21 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object 
path /org/gnome/PolicyKit1/AuthenticationAgent, locale fr_FR.UTF-8)
May  5 09:52:33 an-dro gnome-keyring-daemon[2785]: unsupported key algorithm in 
certificate: 1.2.840.10045.2.1
May  5 09:52:33 an-dro gnome-keyring-daemon[2785]: unsupported key algorithm in 
certificate: 1.2.840.10045.2.1
May  5 09:52:34 an-dro last message repeated 2 times
May  5 09:52:34 an-dro gnome-keyring-daemon[2785]: couldn't load root 
certificates: /etc/ssl/certs/imapd.pem: L'ouverture du fichier 
« /etc/ssl/certs/imapd.pem » a échoué : Permission non accordée
May  5 09:52:34 an-dro gnome-keyring-daemon[2785]: unsupported key algorithm in 
certificate: 1.2.840.10045.2.1
May  5 09:52:34 an-dro last message repeated 4 times
May  5 09:52:35 an-dro gnome-keyring-prompt: Gtk: Failed to load module 
gnomebreakpad
May  5 09:52:35 an-dro gnome-keyring-daemon[2785]: Gtk-Message: Failed to load 
module gnomebreakpad 
May  5 09:52:56 an-dro gnome-keyring-prompt: Gtk: Failed to load module 
gnomebreakpad
May  5 09:52:56 an-dro gnome-keyring-daemon[2785]: Gtk-Message: Failed to load 
module gnomebreakpad 


I strace'd -f /usr/bin/gnome-keyring-daemon but I saw nothing
blatant.

It is not related for me to wrong encoding as stated in 
~/.gnome2/keyrings/default
because I don't have this file:
ls  ~/.gnome2/keyrings/
login.keyring  user.keystore

But I can suspect a wrong encoding stuff somewhere else too...

Since I find annoying having to launch ssh-agent and patching
gnome-keyring-daemon socket each time I log in :-/ , I've ended to write a
work-around script I run before using ssh-add.

Here is my gnome-keyring-daemon-work-around work-around script:

#! /bin/sh

# Use ssh-agent instead of currently broken /usr/bin/gnome-keyring-daemon
# to provide ssh autheticating services

# Ronan.Keryell at hpc-project dot com, 2011/05/05


# Keep around the socket to /usr/bin/gnome-keyring-daemon just in case...
OLD_SSH_AUTH_SOCK=$SSH_AUTH_SOCK
mv $OLD_SSH_AUTH_SOCK $OLD_SSH_AUTH_SOCK%

# Launch a working authenticating agent that set also SSH_AUTH_SOCK
eval `ssh-agent`

# Linked the old socket name advertised everywhere previously by
# /usr/bin/gnome-keyring-daemon to the new working one:
ln -s $SSH_AUTH_SOCK $OLD_SSH_AUTH_SOCK

-- 
  Ronan KERYELL  |\/  GSM:(+33|0) 6 13 14 37 66
  HPC Project|/)  Fax:(+33|0) 1 46 01 05 46
  9 Route du Colonel Marcel Moraine  KE-mail: r...@hpc-project.com
  92360 Meudon La Forêt  |\   skype:keryell
  FRANCE | \  http://hpc-project.com



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



Bug#625706: audio and video calls crash empathy

2011-05-05 Thread Lech Karol Pawłaszek
Package: empathy
Version: 2.30.3-2
Severity: normal

Trying to perform a audio or video call crashes empathy. 
~/.xsession-errors contains this line:
ERROR:empathy-video-widget.c:130:empathy_video_widget_constructed:
assertion failed: (sink != NULL)

Installing gstreamer0.10-gconf package resolves issue with audio 
calls. Video calls still crash empathy with the following messages:

empathy-Message: Element error: Cannot identify device '/dev/video0'. --
v4l2_calls.c(493): gst_v4l2_open (): /GstBin:bin3/GstV4l2Src:v4l2src0:
system error: No such file or directory

empathy-Message: Element error: GStreamer error: state change failed and
some element failed to post a proper error message with the reason for
the failure. -- gstswitchsrc.c(174): gst_switch_src_commit_new_kid ():
/GstPipeline:pipeline0/EmpathyGstVideoSrc:empathygstvideosrc0/GstGConfVideoSrc:gconfvideosrc0:
Failed to set state on new child.

(empathy:16668): tp-fs-DEBUG: GetSessionHandlers replied: 
(empathy:16668): tp-fs-DEBUG:   - session
/org/freedesktop/Telepathy/Connection/gabble/jabber/lpa_40blstreamgroup_2ecom_2f46b2d992/MediaChannel0
(empathy:16668): tp-fs-DEBUG: type rtp
(empathy:16668): tp-fs-DEBUG: adding session handler
/org/freedesktop/Telepathy/Connection/gabble/jabber/lpa_40blstreamgroup_2ecom_2f46b2d992/MediaChannel0,
type rtp
(empathy:16668): tp-fs-DEBUG: calling MediaSessionHandler::Ready

(empathy:16668): GStreamer-CRITICAL **: gst_bin_add: assertion
`GST_IS_BIN (bin)' failed
(empathy:16668): tp-fs-DEBUG: New stream, stream_id=1, media_type=0,
direction=3
(empathy:16668): tp-fs-DEBUG: New stream, stream_id=2, media_type=1,
direction=3
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
get_all_properties_cb: Adding STUN server 93.93.128.223:3478

(empathy:16668): GStreamer-CRITICAL **: gst_bin_add: assertion
`GST_IS_BIN (bin)' failed

(empathy:16668): empathy-WARNING **: Could not add audio source to
pipeline
tp-fs-Message: tf_stream_error: stream error errorno=7 error=Could not
link source
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: called (send_local:1 send_supported:0)
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 103: audio SPEEX clock:8000 channels:1
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 104: audio SPEEX clock:16000 channels:1
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 99: audio AMR clock:8000 channels:1
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 96: audio SIREN clock:16000 channels:0
bitrate=16000
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 0: audio PCMU clock:8000 channels:0
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 8: audio PCMA clock:8000 channels:0
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 3: audio GSM clock:8000 channels:0
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 100: audio telephone-event clock:16000
channels:0 events=0-15
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: 101: audio telephone-event clock:8000
channels:0 events=0-15
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec SPEEX [103]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec SPEEX [104]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec AMR [99]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec SIREN [96]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec PCMU [0]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec PCMA [8]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec GSM [3]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec telephone-event [100]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
fs_codecs_to_tp: adding codec telephone-event [101]
(empathy:16668): tp-fs-DEBUG: stream 1 0x2ac2af0 (audio)
_tf_stream_try_sending_codecs: calling MediaStreamHandler::Ready
(empathy:16668): tp-fs-DEBUG: stream 2 0x2ac2be0 (video)
get_all_properties_cb: Adding STUN server 93.93.128.223:3478
tp-fs-Message: tf_stream_error: stream error errorno=7 error=Could not
link source
(empathy:16668): tp-fs-DEBUG: stream 2 0x2ac2be0 (video)
_tf_stream_try_sending_codecs: called (send_local:1 send_supported:0)
(empathy:16668): tp-fs-DEBUG: stream 2 0x2ac2be0 (video)
_tf_stream_try_sending_codecs: 34: video H263 clock:9 channels:0
(empathy:16668): tp-fs-DEBUG: stream 2 0x2ac2be0 (video)
_tf_stream_try_sending_codecs: 96: video THEORA clock:9 channels:0
(empathy:16668): tp-fs-DEBUG: stream 2 0x2ac2be0 (video)

Bug#625707: kdebindings: FTBFS: conversion from 'void' to non-scalar type 'QListQPairQByteArray, QString ' requested

2011-05-05 Thread Jakub Wilk

Source: kdebindings
Version: 4:4.4.5-5
Severity: serious
Justification: fails to build from source

kdebindings no longer builds from source:
| [ 38%] Building CXX object smoke/phonon/CMakeFiles/smokephonon.dir/x_10.o
| cd smoke/phonon  /usr/bin/c++   -Dsmokephonon_EXPORTS -D_BSD_SOURCE 
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT 
-DKDE_DEPRECATED_WARNINGS -DQT3_SUPPORT -DSMOKE_BUILDING -DGCC_VISIBILITY -Wall -g -O2 
-Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align -Wchar-subscripts -Wall -W 
-Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new 
-fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden 
-fvisibility-inlines-hidden -DNDEBUG -DQT_NO_DEBUG -fPIC -I. -I../../../smoke/phonon 
-I../../.. -I../.. -I../../../smoke -I/usr/include/KDE -I/usr/include/qt4/phonon 
-I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit 
-I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg 
-I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript 
-I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp 
-I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDBus -I/usr/include/qt4/Qt3Support 
-I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
-I/usr/share/qt4/mkspecs/default -I/usr/include/qt4   -D_GNU_SOURCE 
-D_LARGEFILE64_SOURCE -o CMakeFiles/smokephonon.dir/x_10.o -c x_10.cpp
| x_10.cpp: In static member function 'static void 
__smokephonon::x_Phonon::x_1(Smoke::Stack)':
| x_10.cpp:1372:58: warning: 'void Phonon::registerMetaTypes()' is deprecated 
(declared at /usr/include/qt4/phonon/objectdescription.h:349) 
[-Wdeprecated-declarations]
| x_10.cpp:1372:76: warning: 'void Phonon::registerMetaTypes()' is deprecated 
(declared at /usr/include/qt4/phonon/objectdescription.h:349) 
[-Wdeprecated-declarations]
| x_10.cpp:1372:76: error: conversion from 'void' to non-scalar type 
'QListQPairQByteArray, QString ' requested

Full build log is here:
https://buildd.debian.org/status/fetch.php?pkg=kdebindingsarch=amd64ver=4%3A4.4.5-5%2Bb1stamp=1304559565

--
Jakub Wilk



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



Bug#625697: postgrey: Update to new upstream version and drop dependency on libdigest-sha1-perl

2011-05-05 Thread Antonio Radici
tag 625697 +confirmed pending
thanks

On Thu, May 05, 2011 at 09:08:06AM +0200, Salvatore Bonaccorso wrote:
 Hi
 
 There is a new upstream version of postgrey available. It would be
 great if you could update it. It too solves one goal of the Debian
 Perl Group to drop the libdigest-sha1-perl package, see [1] for more
 informations.
 
  [1] http://deb.li/digestsha
 

Ciao Salvatore,
I will upload the new upstream version on Friday or Saturday this week, 
thanks for your report!

Cheers
Antonio



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



Bug#616080: gmerlin: segfault on start

2011-05-05 Thread IOhannes m zmölnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 05/05/2011 05:43 PM, Fabian Greffrath wrote:
 Am 04.05.2011 04:40, schrieb Alessio Treglia:
 Setting severity to minor, read my previous comment: this bug is not
 reproducible if accelerated graphics is enabled.
 
 I disagree. A segfault is a segfault and an application should not
 depend on accelerated graphics being enabled or not in order to start
 without segfaulting. That's not minor, IMHO.
 

i agree that a segfault is a segfault and that (missing) acceleration is
no excuse.

however: i'm unable to reproduce the problem on non-accelerated hardware
(intel 945GME) as well.

i have no idea why this bug should be related to acceleration at all (i
guess alessio only mentioned it in the reply as potential cause of the
problem),

as long as there is no backtracee it is really hard to tell where the
problem comes from.


fmadsr
IOhannes
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk3CYEgACgkQkX2Xpv6ydvTNZwCaArgFWFBVJFsdhIiAi8T6EB5G
7UAAoKKCYVsATnIHGEoyxJZJWcXr0sPX
=1Zmb
-END PGP SIGNATURE-



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



Bug#625691: [Pkg-xfce-devel] Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread Yves-Alexis Perez
Please keep the bug on CC:

On jeu., 2011-05-05 at 11:14 +0200, Johan Spee wrote:
 On Thu, 05 May 2011 10:51:19 +0200
 Yves-Alexis Perez cor...@debian.org wrote:
 
  Could you take a backtrace when/if you manage to reproduce it?
 
 I opened thunar in a terminal, next renamed the opened dir with:
 - Kid3-qt
 - XFM
 - Thunar (2nd instance)

Is it just a second window or a second process?
What happens if you mv the folder from a terminal?
 
 In all cases (the first instance of) thunar segfaults:
 
 
 (thunar:11134): GLib-GObject-WARNING **: invalid uninstantiatable type
 `(null)' in cast to `ThunarFolder'
 
 (thunar:11134): GLib-GObject-WARNING **: invalid uninstantiatable type
 `(null)' in cast to `ThunarFile' Segmentation fault 

Can you take a backtrace then?

Regards,
-- 
Yves-Alexis


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


Bug#625708: [l10n] Updated Czech translation of dokuwiki debconf messages

2011-05-05 Thread Miroslav Kure
Package: dokuwiki
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech (cs.po) translation of
dokuwiki debconf messages. Please include it with the package.

Thanks
-- 
Miroslav Kure
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: dokuwiki\n
Report-Msgid-Bugs-To: dokuw...@packages.debian.org\n
POT-Creation-Date: 2011-04-13 22:05+0200\n
PO-Revision-Date: 2011-05-05 10:37+0200\n
Last-Translator: Miroslav Kure ku...@debian.cz\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: multiselect
#. Choices
#: ../templates:1001
msgid apache2
msgstr apache2

#. Type: multiselect
#. Choices
#: ../templates:1001
msgid lighttpd
msgstr lighttpd

#. Type: multiselect
#. Description
#: ../templates:1002
msgid Web server(s) to configure automatically:
msgstr Webové servery, které se mají nastavit automaticky:

#. Type: multiselect
#. Description
#: ../templates:1002
msgid 
DokuWiki runs on any web server supporting PHP, but only listed web servers 
can be configured automatically.
msgstr 
DokuWiki běží na libovolném webovém serveru s podporou PHP, ale automatické 
nastavení funguje pouze s uvedenými webovými servery.

#. Type: multiselect
#. Description
#: ../templates:1002
msgid 
Please select the web server(s) that should be configured automatically for 
DokuWiki.
msgstr 
Vyberte webové servery, které se mají automaticky nastavit pro běh DokuWiki.

#. Type: boolean
#. Description
#: ../templates:2001
msgid Should the web server(s) be restarted now?
msgstr Mají se nyní webové servery restartovat?

#. Type: boolean
#. Description
#: ../templates:2001
msgid 
In order to activate the new configuration, the reconfigured web server(s) 
have to be restarted.
msgstr Aby se nové nastavení projevilo, je třeba webové servery restartovat.

#. Type: string
#. Description
#: ../templates:3001
msgid Wiki location:
msgstr Umístění wiki:

#. Type: string
#. Description
#: ../templates:3001
msgid 
Specify the directory below the server's document root from which DokuWiki 
should be accessible.
msgstr 
Zadejte adresář pod kořenovým adresářem dokumentů, ve kterém má být DokuWiki 
dostupná.

#. Type: select
#. Description
#: ../templates:4001
msgid Authorized network:
msgstr Autorizovaná síť:

#. Type: select
#. Description
#: ../templates:4001
msgid 
Wikis normally provide open access to their content, allowing anyone to 
modify it. Alternatively, access can be restricted by IP address.
msgstr 
Wiki obvykle umožňují volný přístup k informacím v nich uložených a kdokoliv 
je tak může měnit. Pokud chcete, můžete přístup omezit jen určeným IP 
adresám.

#. Type: select
#. Description
#: ../templates:4001
msgid 
If you select \localhost only\, only people on the local host (the machine 
the wiki is running on) will be able to connect. \local network\ will 
allow people on machines in a local network (which you will need to specify) 
to talk to the wiki. \global\ will allow anyone, anywhere, to connect to 
the wiki.
msgstr 
Vyberete-li „pouze tento počítač“, budou se moci připojit pouze uživatelé z 
tohoto počítače (na kterém běží wiki). Volba „místní síť“ umožní přístup 
uživatelům z počítačů umístěných v místní síti (budete ji muset zadat). 
Poslední možnost povolí připojení k wiki komukoliv odkudkoliv.

#. Type: select
#. Description
#: ../templates:4001
msgid 
The default is for site security, but more permissive settings should be 
safe unless you have a particular need for privacy.
msgstr 
Výchozí možnost je zvolena s ohledem na zabezpečení počítače, ale pokud 
nevyžadujete speciální soukromí, mělo by být i volnější nastavení bezpečné.

#. Type: select
#. Choices
#: ../templates:4002
msgid localhost only
msgstr pouze tento počítač

#. Type: select
#. Choices
#: ../templates:4002
msgid local network
msgstr místní síť

#. Type: select
#. Choices
#: ../templates:4002
msgid global
msgstr kdokoliv

#. Type: string
#. Description
#: ../templates:5001
msgid Local network:
msgstr Místní síť:

#. Type: string
#. Description
#: ../templates:5001
msgid 
The specification of your local network should either be an IP network in 
CIDR format (x.x.x.x/y) or a domain specification (like .example.com).
msgstr 
Jak je definována vaše místní síť? Můžete ji zadat jako rozsah IP adres v 
CIDR tvaru (x.x.x.x/y) nebo jako doménu (jako .example.com).

#. Type: string
#. Description
#: ../templates:5001
msgid 
Anyone who 

Bug#625701: [wpasupplicant] ipw3945 ioctl[SIOCSIWENCODEEXT]: Invalid argument

2011-05-05 Thread Kel Modderman
Hi Ruiyan,

On Thu, 5 May 2011 06:02:47 PM Ruiyan Yu wrote:
 Package: wpasupplicant
 Version: 0.7.3-3
 Severity: normal
 
 --- Please enter the report below this line. ---
 I was able to connect to the university network.
 Since last aptitude full-upgrade I received errors shown below and was
 unabled to connect.
 It does not work for WPA-EPA-TTLS as well.
 
 I dont have any other connection issues with wlan-network.
 
 
 wpa_supplicant log with -dddt
 ---
 1304546942.144667: wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0
 seq_len=0 key_len=0
 1304546942.144688: wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0
 seq_len=0 key_len=0
 1304546942.144697: wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0
 seq_len=0 key_len=0
 1304546942.144705: wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0
 seq_len=0 key_len=0
 1304546942.144713: wpa_driver_wext_set_key: alg=0 key_idx=4 set_tx=0
 seq_len=0 key_len=0
 1304546942.144822: Driver did not support SIOCSIWENCODEEXT
 1304546942.144828: wpa_driver_wext_set_key: alg=0 key_idx=5 set_tx=0
 seq_len=0 key_len=0
 1304546942.144880: Driver did not support SIOCSIWENCODEEXT
 
 wpa_supplicant.conf
 ---
 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
 eapol_version=1
 ap_scan=1
 
 network={
  ssid=someid
  id_str=somestr
  scan_ssid=1
  key_mgmt=WPA-EAP
  eap=PEAP
  identity=id@domain
  anonymous_identity=anonymous@domain
  password=somepass
  ca_cert=somecert
  phase2=auth=MSCHAPV2
 }
 
 interfaces
 -
 auto wlan0
 iface wlan0 inet manual
 wpa-driver wext

Can you please remove this wpa-driver line or try with wpa-driver nl80211?

 Kernel: Linux 2.6.38-2-686

With this kernel, nl80211 should be better than WEXT interface.

Thanks, Kel.



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



Bug#625709: ERROR: This RRD was created on another architecture

2011-05-05 Thread Viktor Pilpenok
Package: rrdtool
Version: 1.4.3-1+b1
Severity: important

After update to 1.4.3-1+b1 all my RRD files return this error on all 
operations. Downgrading to 1.4.3-1 solves this problem. 


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

Kernel: Linux 2.6.38-2-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages rrdtool depends on:
ii  libc62.13-2  Embedded GNU C Library: Shared lib
ii  libcairo21.10.2-6The Cairo 2D vector graphics libra
ii  libdbi0  0.8.3+really0.8.2-1 Database Independent Abstraction L
ii  libglib2.0-0 2.28.6-1The GLib library of C routines
ii  libpango1.0-01.28.3-6Layout and rendering of internatio
ii  libpng12-0   1.2.44-2PNG library - runtime
ii  librrd4  1.4.3-1+b1  time-series data storage and displ
ii  libxml2  2.7.8.dfsg-2+b1 GNOME XML library

rrdtool recommends no packages.

Versions of packages rrdtool suggests:
pn  librrds-perl  none (no description available)

-- no debconf information



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



Bug#625710: phpmyadmin: dbconfig-install is enabled even after I've added false in debconf-set-selections

2011-05-05 Thread Stefan Eriksson
Package: phpmyadmin
Version: 4:3.3.7-5
Severity: normal
Tags: d-i



-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-194.26.1.el5.028stab081.1 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages phpmyadmin depends on:
ii  dbconfig-common1.8.46+squeeze.0  common framework for packaging dat
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  libapache2-mod-php55.3.3-7+squeeze1  server-side, HTML-embedded scripti
ii  libjs-mootools 1.2.4.0~debian1-1 compact JavaScript framework
ii  perl   5.10.1-17 Larry Wall's Practical Extraction 
ii  php5-mcrypt5.3.3-7+squeeze1  MCrypt module for php5
ii  php5-mysql 5.3.3-7+squeeze1  MySQL module for php5
ii  ucf3.0025+nmu1   Update Configuration File: preserv

Versions of packages phpmyadmin recommends:
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze1 Apache HTTP Server - traditional n
ii  mysql-client   5.1.49-3  MySQL database client (metapackage
ii  mysql-client-5.1 [mysq 5.1.49-3  MySQL database client binaries
ii  php5-gd5.3.3-7+squeeze1  GD module for php5

Versions of packages phpmyadmin suggests:
pn  mysql-server  none (no description available)

-- debconf information:
* phpmyadmin/app-password-confirm: (password omitted)
  phpmyadmin/mysql/admin-pass: (password omitted)
  phpmyadmin/password-confirm: (password omitted)
  phpmyadmin/setup-password: (password omitted)
* phpmyadmin/mysql/app-pass: (password omitted)
  phpmyadmin/remove-error: abort
  phpmyadmin/internal/reconfiguring: false
  phpmyadmin/missing-db-package-error: abort
  phpmyadmin/setup-username: admin
  phpmyadmin/db/app-user: phpmyadmin
  phpmyadmin/install-error: abort
  phpmyadmin/remote/newhost:
* phpmyadmin/reconfigure-webserver: apache2
  phpmyadmin/upgrade-error: abort
  phpmyadmin/remote/host:
  phpmyadmin/dbconfig-reinstall: false
* phpmyadmin/dbconfig-install: false
  phpmyadmin/db/dbname: phpmyadmin
  phpmyadmin/database-type: mysql
  phpmyadmin/internal/skip-preseed: true
  phpmyadmin/remote/port:
  phpmyadmin/dbconfig-upgrade: true
  phpmyadmin/upgrade-backup: true
  phpmyadmin/dbconfig-remove:
  phpmyadmin/passwords-do-not-match:
  phpmyadmin/mysql/method: unix socket
  phpmyadmin/mysql/admin-user: root
  phpmyadmin/purge: false


Hi I'm trying to automate the installation of PhpMyAdmin, I add:

echo phpmyadmin phpmyadmin/dbconfig-install boolean false | 
debconf-set-selections
echo phpmyadmin phpmyadmin/reconfigure-webserver multiselect apache2 | 
debconf-set-selections

So the two questions I get, should be automatically run through, but even with 
phpmyadmin/dbconfig-install boolean false
I end up with a question about setting admin password.

This can be optionally handled with dbconfig-common. 
Configure database for phpmyadmin with dbconfig-common? 

The answer should be no here as I've set boolean false but it goes with yes 
and tries to configure the database which I dont want :(

Is there a way through this problem? How do I autoconfigure it to say no to the 
dbconfig-common question in the installation script?



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



Bug#555580: upstream commit

2011-05-05 Thread Sven Hoexter
The relevant commit upstream is r34588 from June 2010.

Sven
-- 
And I don't know much, but I do know this:
With a golden heart comes a rebel fist.
 [ Streetlight Manifesto - Here's To Life ]



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



Bug#620603: linux-image-2.6.38-2-amd64: console still stays black with linux-image-2.6.39-rc5-amd64

2011-05-05 Thread Andreas Horter
Package: linux-2.6
Version: 2.6.38-3
Followup-For: Bug #620603

Today I installed linux-image-2.6.39-rc5-amd64 from experimental and
got the same black screen as with 2.6.38-3. 
Is there anything I can provide to get this fixed?



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



Bug#623724: dia: can not import Plain SVG created with inkscape. Example attached.

2011-05-05 Thread Roland Stigge
Hi,

thanks for your report!

Unfortunately, I can't reproduce the problem on import: I'm not sure
which import function you are referring to. Directly opening the file on
the command line (like dia herd.svg) is only supported for dia files.

Adding an image to a dia file, with herd.svg as image contents works for me.

Can you please elaborate about how we can reproduce the problem?

Thanks in advance!

Roland



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



Bug#625691: [Pkg-xfce-devel] Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread Yves-Alexis Perez
Please keep the bug on CC:, I won't reply anymore on direct mails.

On jeu., 2011-05-05 at 11:36 +0200, Johan Spee wrote:
 On Thu, 05 May 2011 11:18:34 +0200
 Yves-Alexis Perez cor...@debian.org wrote:
 
  Is it just a second window or a second process?
 
 I don't know. The first instance is started from the prompt, the second
 from the apps menu. 

So I guess same process but it'd be worth checking with ps.
 
  What happens if you mv the folder from a terminal?
 
 (thunar:12148): GLib-GObject-WARNING **: invalid uninstantiatable type
 `GParam' in cast to `ThunarFolder'
 
 (thunar:12148): GLib-GObject-WARNING **: invalid uninstantiatable type
 `(null)' in cast to `ThunarFile'
 
 (thunar:12148): GLib-GIO-CRITICAL **: g_file_equal: assertion
 `G_IS_FILE (file2)' failed Segmentation fault

So same thing?
 
  Can you take a backtrace then?
 
 I'd be most willing to do that if I knew what is was... please tell me
 what to do :)

http://wiki.debian.org/HowToGetABacktrace

Attach to the thunar process or run a new one through gdb, first
quitting the current one with thunar -q. Don't forget to install
debugging symbols.
 
 ---
 
 PS. Thunar does not segfault when the renamed dir is not opened, i.e.
 when it is only listed the name is adjusted as expected.

Ok, that's what I tested and it seems to work fine here.

Regards,
-- 
Yves-Alexis


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


Bug#625711: pure-ftpd-mysql fails to restart while clients are still connected

2011-05-05 Thread Benedikt Zorn
Package: pure-ftpd-mysql
Version: 1.0.30-1
Severity: important


Restarting the pure-ftpd-mysql service while there is at least one client 
connected ends with:

  pure-ftpd: (?@?) [ERROR] Unable to start a standalone server: [Address 
already in use]

The service is unavailable to anyone but the already connected clients and I 
have to kill the remaining processes
to restart the service. This is especially bad as the logrotate script does an 
automatic service restart.




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

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

Versions of packages pure-ftpd-mysql depends on:
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libcap2 1:2.20-1 support for getting/setting POSIX.
ii  libmysqlclient165.1.49-3 MySQL database client library
ii  libpam0g1.1.2-2  Pluggable Authentication Modules l
ii  libssl0.9.8 0.9.8o-7 SSL shared libraries
ii  lsb-base3.2-27   Linux Standard Base 3.2 init scrip
ii  openbsd-inetd [inet-sup 0.20080125-6 The OpenBSD Internet Superserver
ii  pure-ftpd-common1.0.30-1 Pure-FTPd FTP server (Common Files
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

pure-ftpd-mysql recommends no packages.

pure-ftpd-mysql suggests no packages.

-- no debconf information



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



Bug#619117: perl 5.12 transition

2011-05-05 Thread Dominic Hargreaves
On Sun, May 01, 2011 at 10:13:40PM +0100, Dominic Hargreaves wrote:
 On Sun, May 01, 2011 at 11:46:14AM +0200, Julien Cristau wrote:
  On Sat, Apr 30, 2011 at 22:36:27 +0100, Dominic Hargreaves wrote:
 
I don't think perl itself should be in that list, but other than that,
it looks good.
   
  Right.
 
 perl 5.12.3-6 has now been uploaded to unstable.

Thanks for your work in getting packages rebuilt so far. I had a
look at http://release.debian.org/transitions/html/perl.html and
noticed that while things are mostly doing quite well, it looks like
a few key packages may not have been binNMUd yet, in some cases
because new uploads occurred in the last few days:

apparmor
exactimage
libcrypt-openssl-x509-perl
libdata-alias-perl
libmath-random-perl (in non-free)
libogre-perl
liboping
libsys-syslog-perl
libtext-levenshteinxs-perl
libvideo-capture-v4l-perl
opendchub
hyperestraier
libcairo-perl (this is blocking quite a few packages in later rounds)
libdbd-mysql-perl
libmoose-perl
libverilog-perl
gbrowse
gdal
slurm-llnl

Would it be possible to schedule these at some point? I think we'll
then be in a good position to see what is broken due to FTBFS, etc.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#24326: sysklogd: diff for NMU version 1.5-6.1, DELAYED/15

2011-05-05 Thread Guillem Jover
Hi!

On Sun, 2011-04-24 at 10:08:40 +0200, Stefano Zacchiroli wrote:
 I believe it's a valuable change with potential security implications;
 it's also a well tested one in other derivatives (Ubuntu and all its
 descendants). Considering all this, I'm hereby declaring my intention to
 sponsor the NMU prepared by Matt. For your convenience and in the hope
 to help you out, I'll upload the NMU to DELAYED/15, which won't hit the
 archive before 15 days from now. Please let me know if you are fine with
 the changes, so that I can adapt the delay.

Some nitpicking comments, mostly stuff that does not seem to match the
existing coding style, and then some implementation comments.


 diff -u sysklogd-1.5/syslogd.c sysklogd-1.5/syslogd.c
 --- sysklogd-1.5/syslogd.c
 +++ sysklogd-1.5/syslogd.c
 @@ -878,6 +885,11 @@
   extern char *optarg;
   int maxfds;
  
 +/* user and group id to drop to */
 +uid_t uid = 0;
 +gid_t gid = 0;
 +const char* username = NULL;
 +

This is being indented with spaces, when the rest is using tabs.
The spacing around the asterisk seems inverted.

 @@ -886,7 +898,7 @@
   funix[i]  = -1;
   }
  
 - while ((ch = getopt(argc, argv, a:dhf:l:m:np:rs:v)) != EOF)
 + while ((ch = getopt(argc, argv, a:dhf:l:m:np:rs:vu:)) != EOF) 

Added trailing tab.

   switch((char)ch) {
   case 'a':
   if (nfunix  MAXFUNIX)
 @@ -934,6 +946,21 @@
   case 'v':
   printf(syslogd %s.%s\n, VERSION, PATCHLEVEL);
   exit (0);
 + case 'u':
 +if (optarg) {
 +username = strdup (optarg);
 +struct passwd *pw = getpwnam (username);

Mixed code and variable declarations is C99, I don't think the code
base has that assumption.

 +if (!pw) {
 +fprintf (stderr, User %s does not 
 exist, aborting.\n, username);
 +exit (1);
 +}
 +uid = pw-pw_uid;
 +gid = pw-pw_gid;
 +} else {
 +fputs (Internal error: -u optarg == 
 NULL!\n, stderr);
 +exit (1);

Hmm not sure this is really needed? The other cases just assume getopt
works fine.

 +}
 + break;

Spaces → tabs for indentation for this whole block.

   case '?':
   default:
   usage();
 @@ -1087,6 +1114,19 @@
   kill (ppid, SIGTERM);
  #endif
  
 +/*
 + * Drop privileges if -u was specified
 + */
 + if (username) {
 +if (initgroups (username, gid) || 

Trailing space.

 +setgid (gid) || setuid (uid)) {
 +perror (Could not drop to specified user 
 privileges);
 +exit (1);
 +}
 +free (username);
 +username = NULL;
 +}
 +

Spaces → tabs for indentation.

 @@ -1603,10 +1643,10 @@
   int msglen;
   char *timestamp;
  #ifdef __gnu_linux__
 - sigset_t mask;
 +sigset_t mask;
  #else
  #ifndef SYSV
 - sigset_t omask;
 +sigset_t omask;
  #endif
  #endif
  
 @@ -1618,9 +1658,9 @@
   sigaddset(mask, SIGALRM);
   sigprocmask(SIG_BLOCK, mask, NULL);
  #else
 -#ifndef SYSV
 +#  ifndef SYSV
   omask = sigblock(sigmask(SIGHUP)|sigmask(SIGALRM));
 -#endif
 +#  endif
  #endif
  
   /*
 @@ -1660,11 +1700,11 @@
   f-f_file = -1;
   }
  #ifdef __gnu_linux__
 - sigprocmask(SIG_UNBLOCK, mask, NULL);
 + sigprocmask(SIG_UNBLOCK, mask, NULL);
  #else
 -#ifndef SYSV
 +#  ifndef SYSV
   (void) sigsetmask(omask);
 -#endif
 +#  endif
  #endif
   return;
   }
 @@ -1731,9 +1771,9 @@
  #ifdef __gnu_linux__
   sigprocmask(SIG_UNBLOCK, mask, NULL);
  #else
 -#ifndef SYSV
 +#  ifndef SYSV
   (void) sigsetmask(omask);
 -#endif
 +#  endif
  #endif
  }
  #if FALSE

All this previous hunks seem to have suffered space damage.

 diff -u sysklogd-1.5/debian/rc.klogd sysklogd-1.5/debian/rc.klogd
 --- sysklogd-1.5/debian/rc.klogd
 +++ sysklogd-1.5/debian/rc.klogd
 @@ -12,37 +12,55 @@
  
  PATH=/bin:/usr/bin:/sbin:/usr/sbin
  
 -pidfile=/var/run/klogd.pid
 +pidfile=/var/run/klogd/klogd.pid
 +kmsgpipe=/var/run/klogd/kmsg
 +kmsgpidfile=/var/run/klogd/kmsgpipe.pid
  binpath=/sbin/klogd
  
  test -f $binpath || exit 0
  
 -test ! -r /etc/default/klogd || . /etc/default/klogd
 -
  . /lib/lsb/init-functions
  
 +#  Use KLOGD=-k /boot/System.map-$(uname -r) to specify System.map
 +#
 +KLOGD=-P $kmsgpipe
 +
 +test ! -r /etc/default/klogd || . /etc/default/klogd
 +
  case $1 in
start)
  

Bug#554313: FTBFS with binutils-gold

2011-05-05 Thread Mark-Willem Jansen

Dear Peter,

Would you be so kind to check if this bug still applies to the latest uploaded 
version.

Mark-Willem Jansen
  


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



Bug#620603: linux-image-2.6.38-2-amd64: console still stays black with linux-image-2.6.39-rc5-amd64

2011-05-05 Thread Jonathan Nieder
Andreas Horter wrote:

 Today I installed linux-image-2.6.39-rc5-amd64 from experimental and
 got the same black screen as with 2.6.38-3. 
 Is there anything I can provide to get this fixed?

Could you file a separate bug (since it seems you do not have identical
hardware to Ilmari), attaching dmesg output?

Also, do you remember what version did work (if any)?  That can be
very useful information in a bug report.

Thanks,
Jonathan



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



Bug#625712: ld: --no-allow-shlib-undefined confused by libraries

2011-05-05 Thread Bernhard R. Link
Package: binutils
Version: 2.21.51.20110421-3

This seems to be an older problem, but due to other
changes this bug means --no-allow-shlib-undefined
is now almost completely useless:

ld -shared -o test.so --no-allow-shlib-undefined -lc

fails with returns:

/lib/libc.so.6: undefined reference to `_dl_argv@GLIBC_PRIVATE'
/lib/libc.so.6: undefined reference to `_rtld_global_ro@GLIBC_PRIVATE'
/lib/libc.so.6: undefined reference to `__tls_get_addr@GLIBC_2.3'
/lib/libc.so.6: undefined reference to `_rtld_global@GLIBC_PRIVATE'
/lib/libc.so.6: undefined reference to `__libc_enable_secure@GLIBC_PRIVATE'

i.e. ld complains about undefined symbols in libraries linked
in (but not the to be created library itself), which are found in
that library's dependencies.

$ readelf -s /usr/lib/libc_nonshared.a | grep _tls_get_addr | wc -l
0
$ readelf -s /lib/libc.so.6 | grep _tls_get_addr
4:  0 FUNCGLOBAL DEFAULT  UND __tls_get_addr@GLIBC_2.3 
(19)
$ readelf -d /lib/libc.so.6 | grep NEEDED
0x0001 (NEEDED) Shared library: [ld-linux-x86-64.so.2]
$ readelf -s /lib/ld-linux-x86-64.so.2 | grep _tls_get_addr
20: 00010e9082 FUNCGLOBAL DEFAULT   11 __tls_get_addr@@GLIBC_2.3

Bernhard R. Link



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



Bug#619117: perl 5.12 transition

2011-05-05 Thread Dominic Hargreaves
On Thu, May 05, 2011 at 10:53:10AM +0100, Dominic Hargreaves wrote:
 On Sun, May 01, 2011 at 10:13:40PM +0100, Dominic Hargreaves wrote:
  On Sun, May 01, 2011 at 11:46:14AM +0200, Julien Cristau wrote:
   On Sat, Apr 30, 2011 at 22:36:27 +0100, Dominic Hargreaves wrote:
  
 I don't think perl itself should be in that list, but other than that,
 it looks good.

   Right.
  
  perl 5.12.3-6 has now been uploaded to unstable.
 
 Thanks for your work in getting packages rebuilt so far. I had a
 look at http://release.debian.org/transitions/html/perl.html and
 noticed that while things are mostly doing quite well, it looks like
 a few key packages may not have been binNMUd yet, in some cases
 because new uploads occurred in the last few days:
 
 apparmor
 exactimage
 libcrypt-openssl-x509-perl
 libdata-alias-perl
 libmath-random-perl (in non-free)
 libogre-perl
 liboping
 libsys-syslog-perl
 libtext-levenshteinxs-perl
 libvideo-capture-v4l-perl
 opendchub
 hyperestraier
 libcairo-perl (this is blocking quite a few packages in later rounds)
 libdbd-mysql-perl
 libmoose-perl
 libverilog-perl
 gbrowse
 gdal
 slurm-llnl
 
 Would it be possible to schedule these at some point? I think we'll
 then be in a good position to see what is broken due to FTBFS, etc.

Actually, I suspect I'm jumping the gun here; perhaps these are packages
out of sync between unstable, testing, in the main. Sorry about that
(I see you're already on the case for libcairo-perl).

Sorry for the noise :)

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#625713: ikiwiki: Fails if libyaml-libyaml-perl is installed

2011-05-05 Thread Jonas Smedegaard
Package: ikiwiki
Version: 3.20110430
Severity: important

The new YAML formatted config files fail to be parsed if the package
libyaml-libyaml-perl is installed:

ikiwiki --setup config/ikiwiki.setup
YAML::XS::Load Error: The problem:

Invalid trailing UTF-8 octet

was found at document: 0
brug: ikiwiki [valg] kilde mål
   ikiwiki --setup opsætningsfil


 - Jonas

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

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

Versions of packages ikiwiki depends on:
ii  libhtml-parser-perl   3.68-1+b1  collection of modules that parse H
ii  libhtml-scrubber-perl 0.09-1 Perl extension for scrubbing/sanit
ii  libhtml-template-perl 2.9-3  module for using HTML Templates wi
ii  libtext-markdown-perl 1.0.26-1   Markdown and MultiMarkdown markup 
ii  liburi-perl   1.58-1 module to manipulate and access UR
ii  libyaml-perl  0.72-1 YAML Ain't Markup Language
ii  perl  5.12.3-6   Larry Wall's Practical Extraction 
ii  python2.6.6-14   interactive high-level object-orie
ii  python-support1.0.13 automated rebuilding support for P

Versions of packages ikiwiki recommends:
ii  bzr  2.4.0~beta2-3   easy to use distributed version co
ii  darcs2.4.4-3 a distributed, interactive, smart 
ii  gcc [c-compiler] 4:4.6.0-5   The GNU C compiler
ii  gcc-4.4 [c-compiler] 4.4.6-3 The GNU C compiler
ii  gcc-4.5 [c-compiler] 4.5.3-1 The GNU C compiler
ii  gcc-4.6 [c-compiler] 4.6.0-6 The GNU C compiler
ii  git [git-core]   1:1.7.4.4-1 fast, scalable, distributed revisi
ii  git-core 1:1.7.4.4-1 fast, scalable, distributed revisi
pn  libauthen-passphrase-per none  (no description available)
ii  libc6-dev [libc-dev] 2.13-2  Embedded GNU C Library: Developmen
ii  libcgi-formbuilder-perl  3.05.01-8   Easily generate and process statef
ii  libcgi-session-perl  4.43-1  persistent session data in CGI app
ii  libcrypt-ssleay-perl 0.57-2+b2   Support for https protocol in LWP
ii  libgravatar-url-perl 1.04-1  Perl interface to make URLs for Gr
ii  liblwpx-paranoidagent-pe 1.07-1  a paranoid subclass of LWP::User
ii  libmail-sendmail-perl0.79.16-1   Send email from a perl script
ii  libnet-openid-consumer-p 1.03-2  library for consumers of OpenID id
ii  libterm-readline-gnu-per 1.20-1+b1   Perl extension for the GNU ReadLin
ii  libtimedate-perl 1.2000-1collection of modules to manipulat
ii  libxml-simple-perl   2.18-3  Perl module for reading and writin
ii  mercurial1.8.1-3 scalable distributed version contr
ii  subversion   1.6.16dfsg-1+b2 Advanced version control system
ii  tla  1.3.5+dfsg-16   GNU Arch revision control system

Versions of packages ikiwiki suggests:
pn  dvipng none(no description available)
ii  file   5.04-5+b1 Determines file type using magic
ii  gettext0.18.1.1-3GNU Internationalization utilities
ii  graphviz   2.26.3-6+b1   rich set of graph drawing tools
ii  libfile-mimeinfo-perl  0.15-1Perl module to determine file type
pn  libhighlight-perl  none(no description available)
ii  libhtml-tree-perl  4.2-1 Perl module to represent and creat
ii  liblocale-gettext-perl 1.05-6+b1 Using libc functions for internati
ii  libmailtools-perl  2.07-1Manipulate email in perl programs
pn  libnet-amazon-s3-perl  none(no description available)
ii  librpc-xml-perl0.74-2Perl implementation of the XML-RPC
ii  libsearch-xapian-perl  1.2.4.0-1+b1  Perl bindings for the Xapian searc
pn  libsort-naturally-perl none(no description available)
pn  libsparkline-php   none(no description available)
ii  libtext-csv-perl   1.21-1comma-separated values manipulator
pn  libtext-textile-perl   none(no description available)
ii  libtext-typography-perl0.01-2markup ASCII text with correct typ
pn  libtext-wikicreole-perlnone(no description available)
ii  libtext-wikiformat-perl0.79-1translates Wiki formatted text int
ii  libxml-feed-perl   0.43+dfsg-1   syndication feed parser and auto-d
pn  perlmagick none(no description available)
ii  po4a   0.41-1tools for helping translation of d
pn  polygennone(no description available)
ii  

Bug#588318: empathy sometimes crashes with xorg error

2011-05-05 Thread Laurent Bigonville
tag 588318 + moreinfo
thanks

Hi,

Are you still experiencing this bug? The upstream bug has been closed,
so if you could confirm this is fixed in debian too.

Cheers

Laurent Bigonville



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



Bug#625634: correctly search include directories

2011-05-05 Thread Matthias Klose
the return value for inc_dirs() currently doesn't have anything to do with the 
include search path, here is a version which just searches the system include 
directories.


http://launchpadlibrarian.net/71126460/perl_5.12.3-6ubuntu3_5.12.3-6ubuntu4.diff.gz



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



Bug#624008: Bug 624008: plans

2011-05-05 Thread Christian Hofstädtler
Marco,

Do you currently have any plans to get rid of the agent warnings? If
so, how do they look like?

Thanks,
Christian



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



Bug#617759: icedove: symbol lookup error: /usr/lib/icedove/components/libdbusservice.so: undefined symbol: NS_Alloc

2011-05-05 Thread Jonathan Nieder
severity 617759 important
tags 617759 + moreinfo
quit

Jonathan Nieder wrote:

 Typical experimental system.

Not reproducible on sid.  Tagging moreinfo until it is clear how to
reproduce (hopefully upgrading the test vm to experimental will do the
trick, so that the hunt for the specific problematic package could
begin).



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



Bug#621834: Ongoing infrastructure problems

2011-05-05 Thread Martin Eberhard Schauer

Today the last accessible entry on
http://ddtp.debian.net/l.html
is  
libboost-python1.34.1.


The last server downtime/crash (tuesday, 03.05) must have been heavier
than others with just to many processes. The italian team experienced
with DDTSS:
http://lists.debian.org/debian-i18n/2011/05/msg00018.html

BTW: ddtp.debian.net had it's last update on 16-Feb-2011.



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



Bug#623724: how to reproduce

2011-05-05 Thread Jonas Stein

how to reproduce:

1. start dia
$ dia


2. in the menu of Diagram1.dia click
File // Open
i found out the bug depends on the filetype you select now:

Pixbuf svg  = works
Plain svg   = errormessage
Scalable Vector Graphics = broken import; picture looks strange



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



Bug#625452: Acknowledgement (libpoppler5: subsetted fonts in PDF are missing certain characters)

2011-05-05 Thread Patrick Josef Strasser
retitle 625452 subsetted fonts in PDF are missing certain characters
clone 625452 -1 -2 -3 -4
reassign -1 impressive
reassign -2 okular
reassign -3 viewpdf.app
reassign -4 xpdf

thanks

I'm cloning this bug to the affected packages, because Josselin Mouette
said libpoppler5 is not propperly maintained. See debian-devel thread.

Regards

Patrick
-- 
Patrick Strasser patrick dot strasser at tugraz dot at
Business Development des Zentralen Informatikdienstes (ZID)
Technische Universität Graz



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



Bug#625714: option force-reload doesn't exist in init script

2011-05-05 Thread Martin Zobel-Helas
Package: sphinxsearch
Version: 0.9.9-7
Severity: important
Tags: patch

Hi,

the init script of sphinxsearch suggests (when run with no option) that
there should be a force-reload option, which doesn't exist in your
'case' statement.

Attached patch fixes this issue.

Cheers,
Martin

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

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

-- 
 Martin Zobel-Helas zo...@debian.org  | Debian System Administrator
 Debian  GNU/Linux Developer   |   Debian Listmaster
 GPG key http://go.debian.net/B11B627B  | 
 GPG Fingerprint:  6B18 5642 8E41 EC89 3D5D  BDBB 53B1 AC6D B11B 627B 
--- debian/init.d	2011-05-05 12:09:27.0 +0200
+++ debian/init.d.new	2011-05-05 12:14:32.0 +0200
@@ -145,7 +145,7 @@
   *)
 N=/etc/init.d/$NAME
 # echo Usage: $N {start|stop|restart|reload|force-reload} 2
-echo Usage: $N {start|stop|restart|force-reload|status|force-stop} 2
+echo Usage: $N {start|stop|restart|status|force-stop} 2
 exit 1
 ;;
 esac


Bug#625715: ddclient: Debconf should include options for no-ip.com

2011-05-05 Thread Luís Picciochi Oliveira
Package: ddclient
Version: 3.8.0-11.3
Severity: normal

Hi,

ddclient supports no-ip but the Debconf options do not include it as an
eligible provider.
During the Debconf setup, if I select other provider and indicate the
server as dynupdate.no-ip.com, when I am asked for the update protocol,
none of them is 'noip'. This is a supported protocol for ddclient as can be
seen by issuing 'ddclient --help'.
Actually, I had to resort to the example printed by 'ddclient --help' to
edit my ddclient.conf, as debconf was useless for this end. Please include
no-ip support on ddclient's debconf menus.


Thanks and best regards,
Luís Picciochi



-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages ddclient depends on:
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management
sy
ii  initscripts 2.88dsf-13.1 scripts for initializing and
shutt
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init
scrip
ii  perl [perl5]5.10.1-17Larry Wall's Practical
Extraction

Versions of packages ddclient recommends:
pn  libio-socket-ssl-perl none (no description available)

ddclient suggests no packages.

-- debconf information excluded


Bug#555000: FTBFS with binutils-gold

2011-05-05 Thread Cyril Brulebois
tag 555000 patch
thanks

Peter Fritzsche peter.fritzs...@gmx.de (07/11/2009):
 Source: kildclient
 Version: 2.9.0-1
 [FTBFS due to missing -lz]

Here's a workaround. I don't intend to NMU myself, just providing with
a patch.

Mraw,
KiBi.
diff -u kildclient-2.9.0/debian/changelog kildclient-2.9.0/debian/changelog
--- kildclient-2.9.0/debian/changelog
+++ kildclient-2.9.0/debian/changelog
@@ -1,3 +1,13 @@
+kildclient (2.9.0-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Work around FTBFS due to missing -lz by hardcoding it in
+src/Makefile.* (Closes: #555000). A proper fix would introduce a check
+in configure.in, setting ZLIB_LIBS, and using that variable in the
+Makefiles.
+
+ -- Cyril Brulebois k...@debian.org  Thu, 05 May 2011 12:24:10 +0200
+
 kildclient (2.9.0-1) unstable; urgency=low
 
   * New upstram version: 2.9.0.
only in patch2:
unchanged:
--- kildclient-2.9.0.orig/src/Makefile.am
+++ kildclient-2.9.0/src/Makefile.am
@@ -66,7 +66,7 @@
 manualdir = $(pkgdocdir)/html
 
 
-kildclient_LDADD = $(KILDCLIENT_LIBS) $(KILDCLIENT_PERL_LIBS) $(GTKSPELL_LIBS) $(LIBGNUTLS_LIBS) $(INTLLIBS)
+kildclient_LDADD = $(KILDCLIENT_LIBS) $(KILDCLIENT_PERL_LIBS) $(GTKSPELL_LIBS) $(LIBGNUTLS_LIBS) $(INTLLIBS) -lz
 
 localedir = $(datadir)/locale
 
only in patch2:
unchanged:
--- kildclient-2.9.0.orig/src/Makefile.in
+++ kildclient-2.9.0/src/Makefile.in
@@ -278,7 +278,7 @@
 EXTRA_DIST = $(pkgdata_DATA)
 pkgdocdir = $(datadir)/doc/kildclient
 manualdir = $(pkgdocdir)/html
-kildclient_LDADD = $(KILDCLIENT_LIBS) $(KILDCLIENT_PERL_LIBS) $(GTKSPELL_LIBS) $(LIBGNUTLS_LIBS) $(INTLLIBS)
+kildclient_LDADD = $(KILDCLIENT_LIBS) $(KILDCLIENT_PERL_LIBS) $(GTKSPELL_LIBS) $(LIBGNUTLS_LIBS) $(INTLLIBS) -lz
 INCLUDES = -DLOCALEDIR=\$(localedir)\ \
-DPKGDATADIR=\$(pkgdatadir)\ \
-DSYSDATADIR=\$(datadir)\ \


signature.asc
Description: Digital signature


Bug#625710: phpmyadmin: dbconfig-install is enabled even after I've added false in debconf-set-selections

2011-05-05 Thread Michal Čihař
Hi

Dne Thu, 05 May 2011 11:26:46 +0200
Stefan Eriksson ste...@glesys.se napsal(a):

 Hi I'm trying to automate the installation of PhpMyAdmin, I add:
 
 echo phpmyadmin phpmyadmin/dbconfig-install boolean false | 
 debconf-set-selections
 echo phpmyadmin phpmyadmin/reconfigure-webserver multiselect apache2 | 
 debconf-set-selections
 
 So the two questions I get, should be automatically run through, but even 
 with phpmyadmin/dbconfig-install boolean false
 I end up with a question about setting admin password.
 
 This can be optionally handled with dbconfig-common. 
 Configure database for phpmyadmin with dbconfig-common? 
 
 The answer should be no here as I've set boolean false but it goes with yes 
 and tries to configure the database which I dont want :(
 
 Is there a way through this problem? How do I autoconfigure it to say no to 
 the dbconfig-common question in the installation script?

This is known bug in dbconfig-common that it ignores preseed. See
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476946 for more
information. Merging bug accordingly.

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#625691: [Pkg-xfce-devel] Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread Johan Spee
On Thu, 05 May 2011 11:52:19 +0200
Yves-Alexis Perez cor...@debian.org wrote:

 http://wiki.debian.org/HowToGetABacktrace
 
 Attach to the thunar process or run a new one through gdb, first
 quitting the current one with thunar -q. Don't forget to install
 debugging symbols.

Problem:

(gdb) run /usr/bin/thunar
brings up a dialog that asks me how I want to open thunar and other
files of type shared library'

/usr/bin/thunar and /usr/bin/Thunar are not executable binaries,
apparently.

How do I handle this?

--
Johan Spee



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



Bug#624549: bug in radeon driver module of linux 2.6.38 (since 2.6.35)

2011-05-05 Thread Martin Teufel
Hi,

I want and have to rectify my last mail:
This patch is obviously not applied in 2.6.38-bpo.2 because I get:
[5.924366] drm: Unknown parameter `edid_strict'
Could you get this applied to the next version of a linux backport?

Best regards,
Martin


On Tue, May 03, 2011 at 10:29:27PM +0200, Martin Teufel wrote:
 Hi together,
 
 does someone know if this patch has been applied already to
 linux-image-2.6.38-bpo.2-amd64 (2.6.38-3~bpo60+1)?
 I installed this image yesterday and had the idea to test the
 drm.edid_strict=0 parameter on it today. - It works like a charm. ;)
 Dunno why my patch didn't work... (But I don't have the time nor the
 mood to track this down atm.)
 
 Nevertheless: Thank you for trying to help me. - And sorry for
 bugreporting this twice and not cc-ing the last mail. Reason for the
 first was that I never used reportbug on this machine before and
 therefore had no .reportbugrc on it which caused in a nonexistent mail
 address due to some circumstances.
 
 Best regards,
 Martin


pgpOTcbiGFgyl.pgp
Description: PGP signature


Bug#625691: [Pkg-xfce-devel] Bug#625691: thunar: Thunar crashes when opened dir is renamed by other program

2011-05-05 Thread Johan Spee
On Thu, 05 May 2011 11:52:19 +0200
Yves-Alexis Perez cor...@debian.org wrote:

 So I guess same process but it'd be worth checking with ps.
~$ ps aux | grep thunar
jayes 1700  0.0  0.3 217848 11332 tty1 SMay04
0:00 /usr/lib/xfce4/panel/wrapper /usr/lib/xfce4/panel/plugins/libthunar-tpa.so
21 14680102 thunar-tpa Trash Applet Display the trash can jayes
14007  0.7  0.4 308648 15144 pts/1S+   12:44   0:00 thunar jayes
14126  0.0  0.0   7596   836 pts/0S+   12:45   0:00 grep thunar

Looks like a single thunar process, indeed.

 So same thing?
Yes. mv also causes the segfault.

--
Johan Spee



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



Bug#625701: [wpasupplicant] ipw3945 ioctl[SIOCSIWENCODEEXT]: Invalid argument

2011-05-05 Thread Kel Modderman
On Thu, 5 May 2011 07:20:16 PM Ruiyan Yu wrote:
 Hi Kel,
 
 Am 05.05.2011 11:06, schrieb Kel Modderman:
  Can you please remove this wpa-driver line or try with wpa-driver
  nl80211?
  
  Kernel: Linux 2.6.38-2-686
  
  With this kernel, nl80211 should be better than WEXT interface.
  
  Thanks, Kel.
 
 It works great with wpa-driver nl80211.
 Thanks for your help!

Cool, copying the BTS + list for the record.

Normally I would close a bug fixed so easily, but it seems that
wpa-driver wext might actually be totally crap and cause more problems for 
other people.

It should possibly be removed from wpa_supplicant build configuration and 
nl80211 used instead. I'm not sure of the best way to migrate people's 
/etc/network/interfaces configuration which includes wpa-driver wext.

Idea's welcome.

Thanks, Kel.



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



Bug#613073: Perhaps fixed in 2.6.32-34

2011-05-05 Thread Sebastien Koechlin
On Thu, Apr 21, 2011 at 09:41:16AM +0100, Ian Campbell wrote:
 If you are able to reproduce this it would be very much appreciated if
 you could test on 2.6.32-34 once it is uploaded to
 stable-proposed-updates.

Thanks,

As 2.6.32-34 is now in stable-proposed-updates, I'm planning a test session
on this production server May 14.

-- 
Seb, autocuiseur



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



Bug#476946: still breaks phpmyadmin using dbconfig-common 1.8.46+squeeze.0

2011-05-05 Thread Stefan Eriksson
 Hi I'm trying to automate the installation of PhpMyAdmin, I add:
 
 echo phpmyadmin phpmyadmin/dbconfig-install boolean false | debconf-set-
selections
 echo phpmyadmin phpmyadmin/reconfigure-webserver multiselect apache2 | 
debconf-set-selections
 
 So the two questions I get, should be automatically run through, but even 
with phpmyadmin/dbconfig-install boolean false
 I end up with a question about setting admin password.
 
 This can be optionally handled with dbconfig-common. 
 Configure database for phpmyadmin with dbconfig-common? 
 
 The answer should be no here as I've set boolean false but it goes with 
yes and tries to configure the database which I dont want :(
 
 Is there a way through this problem? How do I autoconfigure it to say no to 
the dbconfig-common question in the installation script?

This is known bug in dbconfig-common that it ignores preseed. See
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476946 for more
information. Merging bug accordingly.



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



Bug#625657: marked as done (AttributeError: 'module' object has no attribute 'PARAM_APP_DATADIR')

2011-05-05 Thread Josselin Mouette
reopen 625657
thanks

Le jeudi 05 mai 2011 à 09:54 +, Debian Bug Tracking System a
écrit : 
  The problem here is due to the fact we have changed python helper
  (pysupport to dh_python2) and that all the packages that share the same
  namespace MUST use the same.
  
  I should have added tighter Breaks/Dependencies but there are quite
  some packages involved and that was not that trivial.

Well, there is still time to do it, because the bug is still not fixed.




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



Bug#625716: kvm: cannot boot from USB

2011-05-05 Thread Michal Suchanek
Package: qemu-kvm
Version: 1:0.12.5+dfsg-5
Severity: normal


While kvm supports USB devices it does not support booting from USB mass
storage.


-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'oldstable'), (510, 'unstable'), (500, 
'testing'), (200, 'experimental'), (111, 'oldstable')
Architecture: amd64 (x86_64)

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

Versions of packages kvm depends on:
ii  qemu-kvm   0.12.5+dfsg-5 Full virtualization on x86 hardwar

kvm recommends no packages.

kvm suggests no packages.

Versions of packages qemu-kvm depends on:
ii  adduser3.112+nmu2add and remove users and groups
ii  bridge-utils   1.4-5 Utilities for configuring the Linu
ii  iproute20100519-3networking and traffic control too
ii  libaio10.3.107-7 Linux kernel AIO access library - 
ii  libasound2 1.0.23-2.1shared library for ALSA applicatio
ii  libbluetooth3  4.66-3Library to use the BlueZ Linux Blu
ii  libbrlapi0.5   4.2-7 braille display access via BRLTTY 
ii  libc6  2.11.2-10 Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls7.21.0-1  Multi-protocol file transfer libra
ii  libgnutls262.10.5-1+b1   the GNU TLS library - runtime libr
ii  libncurses55.7+20100313-5shared libraries for terminal hand
ii  libpci31:3.1.7-6 Linux PCI Utilities (shared librar
ii  libpulse0  0.9.21-3+squeeze1 PulseAudio client libraries
ii  libsasl2-2 2.1.23.dfsg1-7Cyrus SASL - authentication abstra
ii  libsdl1.2debian1.2.14-6.1Simple DirectMedia Layer
ii  libuuid1   2.17.2-9  Universally Unique ID library
ii  libvdeplug22.2.3-3   Virtual Distributed Ethernet - Plu
ii  libx11-6   2:1.3.3-4 X11 client-side library
ii  python 2.6.6-3+squeeze6  interactive high-level object-orie
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

-- no debconf information



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



Bug#625721: ikiwiki: Please add attached updated danish l10n.

2011-05-05 Thread Jonas Smedegaard
Package: ikiwiki
Version: 3.20110430
Severity: minor
Tags: l10n

As subject says, please add attached updated danish l10n.

 - Jonas

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

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

Versions of packages ikiwiki depends on:
ii  libhtml-parser-perl   3.68-1+b1  collection of modules that parse H
ii  libhtml-scrubber-perl 0.09-1 Perl extension for scrubbing/sanit
ii  libhtml-template-perl 2.9-3  module for using HTML Templates wi
ii  libtext-markdown-perl 1.0.26-1   Markdown and MultiMarkdown markup 
ii  liburi-perl   1.58-1 module to manipulate and access UR
ii  libyaml-perl  0.72-1 YAML Ain't Markup Language
ii  perl  5.12.3-6   Larry Wall's Practical Extraction 
ii  python2.6.6-14   interactive high-level object-orie
ii  python-support1.0.13 automated rebuilding support for P

Versions of packages ikiwiki recommends:
ii  bzr  2.4.0~beta2-3   easy to use distributed version co
ii  darcs2.4.4-3 a distributed, interactive, smart 
ii  gcc [c-compiler] 4:4.6.0-5   The GNU C compiler
ii  gcc-4.4 [c-compiler] 4.4.6-3 The GNU C compiler
ii  gcc-4.5 [c-compiler] 4.5.3-1 The GNU C compiler
ii  gcc-4.6 [c-compiler] 4.6.0-6 The GNU C compiler
ii  git [git-core]   1:1.7.4.4-1 fast, scalable, distributed revisi
ii  git-core 1:1.7.4.4-1 fast, scalable, distributed revisi
pn  libauthen-passphrase-per none  (no description available)
ii  libc6-dev [libc-dev] 2.13-2  Embedded GNU C Library: Developmen
ii  libcgi-formbuilder-perl  3.05.01-8   Easily generate and process statef
ii  libcgi-session-perl  4.43-1  persistent session data in CGI app
ii  libcrypt-ssleay-perl 0.57-2+b2   Support for https protocol in LWP
ii  libgravatar-url-perl 1.04-1  Perl interface to make URLs for Gr
ii  liblwpx-paranoidagent-pe 1.07-1  a paranoid subclass of LWP::User
ii  libmail-sendmail-perl0.79.16-1   Send email from a perl script
ii  libnet-openid-consumer-p 1.03-2  library for consumers of OpenID id
ii  libterm-readline-gnu-per 1.20-1+b1   Perl extension for the GNU ReadLin
ii  libtimedate-perl 1.2000-1collection of modules to manipulat
ii  libxml-simple-perl   2.18-3  Perl module for reading and writin
ii  mercurial1.8.1-3 scalable distributed version contr
ii  subversion   1.6.16dfsg-1+b2 Advanced version control system
ii  tla  1.3.5+dfsg-16   GNU Arch revision control system

Versions of packages ikiwiki suggests:
pn  dvipng none(no description available)
ii  file   5.04-5+b1 Determines file type using magic
ii  gettext0.18.1.1-3GNU Internationalization utilities
ii  graphviz   2.26.3-6+b1   rich set of graph drawing tools
ii  libfile-mimeinfo-perl  0.15-1Perl module to determine file type
pn  libhighlight-perl  none(no description available)
ii  libhtml-tree-perl  4.2-1 Perl module to represent and creat
ii  liblocale-gettext-perl 1.05-6+b1 Using libc functions for internati
ii  libmailtools-perl  2.07-1Manipulate email in perl programs
pn  libnet-amazon-s3-perl  none(no description available)
ii  librpc-xml-perl0.74-2Perl implementation of the XML-RPC
ii  libsearch-xapian-perl  1.2.4.0-1+b1  Perl bindings for the Xapian searc
pn  libsort-naturally-perl none(no description available)
pn  libsparkline-php   none(no description available)
ii  libtext-csv-perl   1.21-1comma-separated values manipulator
pn  libtext-textile-perl   none(no description available)
ii  libtext-typography-perl0.01-2markup ASCII text with correct typ
pn  libtext-wikicreole-perlnone(no description available)
ii  libtext-wikiformat-perl0.79-1translates Wiki formatted text int
ii  libxml-feed-perl   0.43+dfsg-1   syndication feed parser and auto-d
pn  perlmagick none(no description available)
ii  po4a   0.41-1tools for helping translation of d
pn  polygennone(no description available)
ii  python-docutils0.7-2 utilities for the documentation of
ii  texlive2009-11   TeX Live: A decent selection of th
ii  tidy   20091223cvs-1 HTML syntax checker and reformatte
pn  viewvc 

Bug#581440: qjackctl: Does not handle jackd2 output correctly

2011-05-05 Thread Felipe Sateler
On Tue, Apr 26, 2011 at 08:58, Alessio Treglia ales...@debian.org wrote:
 Hi Felipe,

 I cannot reproduce this with the latest release of qjackctl currently
 available in testing, do you confirm that this is solved?

 Thanks in advance.

I've been busy so I haven't had time to check this out, but it's on my
todo list. I'll try to check this weekend.

-- 

Saludos,
Felipe Sateler



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



Bug#610434: Has anyone attempted a tomcat7 package?

2011-05-05 Thread Simon Paillard
Hi,

On Wed, May 04, 2011 at 08:12:10PM -0430, Ernesto Hernández-Novich wrote:
 I've been trying to build a tomcat7 package based on the existing
 tomcat6 package. After fiddling with it for a while, I've managed to
 build what looks like a working binary, but I get a backtrace when the
 services starts.
 
 The relevant part of the backtrace is
 
 java.lang.NoClassDefFoundError: org/apache/tomcat/util/res/StringManager
   at org.apache.catalina.startup.Catalina.clinit(Catalina.java:80)
 ...
 at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:406)
 
 meaning there's a missing class.
 
 I found the reference to the class in build.xml however I have no idea
 why it's not being built nor what should I do in debian/rules to install
 it in its proper place. I've run ant manually and gotten the file to
 build, and attempted putting it in tomcat's class search path, but the
 problem persists.
 
 If anyone is working on a tomcat7 package, or can shed light on what I'm
 supposed to do next, I'd appreciate any pointers.

You should see with tomcat maintainers.

See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610434

-- 
Simon Paillard



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



Bug#535768: closed by Albin Tonnerre lu...@debian.org (Bug#535768: fixed in evas 0.9.9.49898-1)

2011-05-05 Thread Mark-Willem Jansen

Hi,

Maybe you could rewrite the patch, so the pre-compiler checks the existence 
of SA_SIGINFO and selects the appropriate code. For example.

@@ -1454,13 +1454,13 @@ parse_args(int argc, char **argv)
 static int exit_flag = 0;

 static void
+#ifdef SA_SIGINFO
 exit_handler(int x, siginfo_t *info, void *data)
+#else
+exit_handler(int x)
+#endif
 {
    exit_flag = 1;
 }

 static void
+#ifdef SA_SIGINFO
 pipe_handler(int x, siginfo_t *info, void *data)
+#else

+pipe_handler(int x)

+#endif
 
{
 }

This way the patch will not effect the architects that have SA_SIGINFO defined.

Mark-Willem Jansen
  


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



Bug#625716: kvm: cannot boot from USB

2011-05-05 Thread mjt
tags 625716 + upstream wontfix
severity 625716 minor
thanks

05.05.2011 15:26, Michal Suchanek wrote:
 Package: qemu-kvm
 Version: 1:0.12.5+dfsg-5
 Severity: normal
 
 While kvm supports USB devices it does not support booting from USB mass
 storage.

Yes qemu-kvm 0.12.5 does not support booting from USB mass
storage devices.  Current git version (after 0.14 release)
has some provisions for that but these are not complete.
It wont be fixed for squeeze for sure.

Thanks,

/mjt



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



Bug#559620: valkyrie: Does not work with valgrind = 3.5.0

2011-05-05 Thread George Danchev
On Thursday 05 May 2011 14:08:07 you wrote:
 Hi!
 Thanks for pinging. I did not work on that bug because I did not have
 debian unstable at hand - and now I have. So I'll take care of it next
 week or so.
 And yes, it will be great if you can sponsor it when I finish.

Hi,

Okay that sounds good.

I didn't sponsor the initial upload, it has been done by LI Daobing 
lidaob...@debian.org (also CC'ed) [1], but if he is not available for any 
reason, I'll have a look and hopefully upload to resolve that RC-bug as well.

[1] I only sponsored 1.4.0-2 in order to fix RC#543108.

-- 
pub 4096R/0E4BD0AB people.fccf.net/danchev/key pgp.mit.edu



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



Bug#625452: Acknowledgement (libpoppler5: subsetted fonts in PDF are missing certain characters)

2011-05-05 Thread Pino Toscano
Alle giovedì 5 maggio 2011, Patrick Josef Strasser ha scritto:
 I'm cloning this bug to the affected packages, because Josselin
 Mouette said libpoppler5 is not propperly maintained. See
 debian-devel thread.

No sorry, it is nonsense to clone a bug for the apps using its library 
just because of that.
The bug is in the poppler library (not in the applications), and in the 
Splash backend to be precise; that's why ...

 Following readers where tested:
 apvlv   ok
 epdfviewok
 evince  ok
 gv  ok
 impressive  error
 mupdf   ok
 okular  error
 pdfcube ok
 viewpdf.app error
 xpdferror
 zathura ok

... all the ok readers are those using poppler-glib (and thus the 
Cairo rendering backend), and gv is not using poppler at all (but render 
PDF documents on its own).

I'm closing all the cloned bugs.

-- 
Pino Toscano


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


Bug#625722: FTBFS on ia64: FAIL: subvertpy.tests.test_wc.AdmTests.test_transmit_text_deltas

2011-05-05 Thread Jakub Wilk

Source: subvertpy
Version: 0.8.0-2
Severity: serious
Justification: fails to build from source

subvertpy failed to build from source on ia64:
| PYTHONPATH=.: python -m testtools.run subvertpy.tests.test_suite
| Tests running...
| ==
| FAIL: subvertpy.tests.test_wc.AdmTests.test_transmit_text_deltas
| --
| Traceback (most recent call last):
|   File subvertpy/tests/test_wc.py, line 240, in test_transmit_text_deltas
| self.assertEquals(1, bar.revision)
| AssertionError: 1 != 6917529027641081857
| Ran 154 tests in 65.259s
|
| FAILED (failures=1)

Full build log is here:
https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.0-2stamp=1304596737

--
Jakub Wilk



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



Bug#625723: blas FTBFS on i386 in unstable

2011-05-05 Thread Matthias Klose

Package: blas
Version: 1.2-8
Severity: serious

currently fails to build on i386 with -O2 or -O3. didn't check if it's exposed 
by eglibc or gcc, or if some upstream fixes are needed (the upstream site has 
some new files dating from April 2011).


the failing test cases show a DIFFERENCE in the expected results in the order of 
0.[1-5]e-07.


I see no test failures on amd64, even with -O3.



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



Bug#571572: -O2 not necessary anymore on amd64

2011-05-05 Thread Matthias Klose
lowering the optimization level to -O2 isn't necessary anymore; checked on 
current unstable 20110505.




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



Bug#610434: Has anyone attempted a tomcat7 package?

2011-05-05 Thread James Page
On Thu, 2011-05-05 at 13:35 +0200, Simon Paillard wrote:
 On Wed, May 04, 2011 at 08:12:10PM -0430, Ernesto Hernández-Novich wrote:
  I've been trying to build a tomcat7 package based on the existing
  tomcat6 package. After fiddling with it for a while, I've managed to
  build what looks like a working binary, but I get a backtrace when the
  services starts.
  
  The relevant part of the backtrace is
  
  java.lang.NoClassDefFoundError: org/apache/tomcat/util/res/StringManager
  at org.apache.catalina.startup.Catalina.clinit(Catalina.java:80)
  ...
  at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:406)
  
  meaning there's a missing class.
  
  I found the reference to the class in build.xml however I have no idea
  why it's not being built nor what should I do in debian/rules to install
  it in its proper place. I've run ant manually and gotten the file to
  build, and attempted putting it in tomcat's class search path, but the
  problem persists.
  
  If anyone is working on a tomcat7 package, or can shed light on what I'm
  supposed to do next, I'd appreciate any pointers.

Hi Ernesto

I'm hoping to start packaging tomcat7 in the next few weeks (indeed I'm
running a session on it at the Ubuntu Developer Summit next week if you
want to tune in - see [0]).  

If you can wait a bit it would be great to collaborate on this work.

Looking at this issue specifically; this class should be contained in
tomcat-util.jar that the build process produces.  It looks like the
jar's produced by the tomcat build has changed quite a bit since tomcat6
so the packaging will need a thorough review to ensure that its picking
up all the right bits and pieces.  

From memory a standard tomcat install relies on jar files being
installed to the correct locations in the CATALINA_BASE directory so you
might want to start looking there.

I generally lurk on the debian-java IRC channel if you want to discuss
in more detail.

Cheers

James

[0]
https://blueprints.launchpad.net/ubuntu/+spec/server-o-tomcat7-packaging
-- 
James Page
Software Engineer, Ubuntu Server Team


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


Bug#625724: subversion: Password prompt output occurs too early

2011-05-05 Thread Vincent Lefevre
Package: subversion
Version: 1.6.16dfsg-1+b2
Severity: normal

I have the following problem:

xvii:~ svn --username anonsvn ls https://scm.gforge.inria.fr/svn/mpfr
Password for 'anonsvn': Authentication realm: https://scm.gforge.inria.fr:443 
INRIAGForge User Authentication
[]

(where [] is the text cursor), then nothing. I thought that this
wasn't working, until I found that I had to typed a password. The
following should have been output:

Authentication realm: https://scm.gforge.inria.fr:443 INRIAGForge User 
Authentication
Password for 'anonsvn': []

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

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

Versions of packages subversion depends on:
ii  libapr1  1.4.2-8 The Apache Portable Runtime Librar
ii  libc62.11.2-13   Embedded GNU C Library: Shared lib
ii  libsasl2-2   2.1.23.dfsg1-8  Cyrus SASL - authentication abstra
ii  libsvn1  1.6.16dfsg-1+b2 Shared libraries used by Subversio

subversion recommends no packages.

Versions of packages subversion suggests:
pn  db4.8-util  none   (no description available)
ii  patch   2.6.1-1  Apply a diff file to an original
ii  subversion-tools1.6.16dfsg-1 Assorted tools related to Subversi

-- no debconf information



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



Bug#610434: Has anyone attempted a tomcat7 package?

2011-05-05 Thread Ernesto Hernández-Novich
On Thu, 2011-05-05 at 13:10 +0100, James Page wrote:
 I'm hoping to start packaging tomcat7 in the next few weeks (indeed I'm
 running a session on it at the Ubuntu Developer Summit next week if you
 want to tune in - see [0]).  

 If you can wait a bit it would be great to collaborate on this work.

I know enough Java to turn away from it, so I'll pass. I'm building this
package at a customer's request; they're too stubborn to realize that
using tomcat6 is enough for their purposes. So you can count on my
Debian packaging abilities, including dh8 if needed (I've worked with
the Debian Perl and Haskell Groups, and also maintain webgui).

 Looking at this issue specifically; this class should be contained in
 tomcat-util.jar that the build process produces.  It looks like the
 jar's produced by the tomcat build has changed quite a bit since tomcat6
 so the packaging will need a thorough review to ensure that its picking
 up all the right bits and pieces.  

My packaging effort started by reviewing the tomcat6 package, renaming
what had to be renamed and fixing some of the jar names that, indeed,
have been renamed. I'm attaching what I've done so far.

The changelog is minimal and the copyright file hasn't been updated, and
I dropped a lot of people from Uploaders (this was supposed to be an
internal package in the meantime). I also dropped some of the
CVE-related patches and refreshed the rest; I'm not sure if the patch
for build.xml is useful, but I've kept it on account of ignorance.

The package builds and is lintian clean, except for not closing a bug.

 From memory a standard tomcat install relies on jar files being
 installed to the correct locations in the CATALINA_BASE directory so you
 might want to start looking there.

That's what I'll attempt later today (around 17:00 UTC or later).

 I generally lurk on the debian-java IRC channel if you want to discuss
 in more detail.

Good to know.
-- 
Ernesto Hernández-Novich - @iamemhn - Unix: Live free or die!
Geek by nature, Linux by choice, Debian of course.
If you can't aptitude it, it isn't useful or doesn't exist.
GPG Key Fingerprint = 438C 49A2 A8C7 E7D7 1500 C507 96D6 A3D6 2F4C 85E3


tomcat7_7.0.12-1.debian.tar.gz
Description: application/compressed-tar


Bug#621932: Info received (Bug#621932: fontforge: FTBFS: eval: 1: base_compile+= -c: not found)

2011-05-05 Thread Hideki Yamane
tags patch 621932
thanks

Hi,

 Here is a patch, simply specify using bash to avoid FTBFS.

diff -urN fontforge-0.0.20100501.orig/debian/rules 
fontforge-0.0.20100501/debian/rules
--- fontforge-0.0.20100501.orig/debian/rules2011-05-05 08:22:32.049849000 
+0900
+++ fontforge-0.0.20100501/debian/rules 2011-05-05 20:43:52.187403361 +0900
@@ -7,6 +7,8 @@
 # This has to be exported to make some magic below work.
 export DH_OPTIONS
 
+export CONFIG_SHELL=/bin/bash
+
 LIBTOOLVERSION = $(shell dpkg-query -W -f='$${Version}\n' libtool)
 
 DIST=$(shell lsb_release -i -s)



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



Bug#619457: Problem with kernel 2.6.38

2011-05-05 Thread Ben Hutchings
On Thu, 2011-05-05 at 13:50 +0800, Paolo Scarabelli wrote:
 Hi, I apologize in advance if this is the wrong place to ask.
 
 I have a weird problem with a Debian testing (Wheezy) install,
 gnome-settings-daemon keeps crashing whenever I boot with kernel 2.6.38.
 
 With other kernel releases (2.6.32 and 2.6.39) I have no problem at all,
 I initially filed a bug report (#619457) with the Debian Gnome
 maintainers [1] but I now suspect it could be a bug in a kernel module
 so I would like to reassign it to the Debian Kernel Team.
[...]

It sounds like there are 2 bugs:

1. The kernel is reporting spurious changes in the connected displays
(hence the flickering between 2x3 and 2x4 workspaces).
2. There is a race condition in handling these changes in
gnome-settings-daemon which causes it to crash.

Therefore, please clone your bug report and reassign the clone.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#624753: Security prb with apt with https transport

2011-05-05 Thread David Kalnischkies
reassign 624573 libcurl3-gnutls 7.21.0-1
retitle 624573 errorbuffer message includes user/password
thanks

Hi *,

in case of error, apt-transport-https prints the error message gathered
with CURL_ERRORBUFFER.
If we have an unresolvable host the message in stable
(with libcurl3-gnutls 7.21.0) is as follows:
Couldn't resolve host 'example.org:sec...@unresolvable.debian.org'

As you can see here, it includes username and password.
Even further, the username is garbled as the username is in reality:
m...@example.org -- so the 'me@' is cut off.

(It's not really a security issue in my eyes, as the user who can see this
 message can easily also look up the files himself, but on the other
 hand it is not really useful to include here - especially not broken.)


You can reproduce this by installing apt-transport-https and
$ mkdir -p /tmp/apt/lists
$ cd /tmp/apt
$ cat test.list
deb https://unresolvable.debian.org/debian/ squeeze main
$ cat auth.conf
machine unresolvable.debian.org
login m...@example.org
password secret
$ LANG=C apt-get update -o dir::etc::sourcelist=/tmp/apt/test.list -o
dir::etc::sourceparts=/dev/null -o dir::etc::netrc=/tmp/apt/auth.conf
-o dir::state::lists=/tmp/apt/lists -s


Also interesting, if i move back to the current unstable version
of libcurl3-gnutls (7.21.6-1) i am getting a different error:
Failed to connect to 2620:0:2d0:200::10: Network is unreachable

If i remove the 'me@' part from auth.conf the message is
Couldn't resolve host 'unresolvable.debian.org'

So, for newer versions username and password seems to get removed
from the error message, but it seems to be still confused by the @.


Best regards

David Kalnischkies


P.S.: Sorry, i have no https setup currently to test if it would work
if the host wouldn't be unresolvable…



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



Bug#625716: kvm: cannot boot from USB

2011-05-05 Thread Michael Tokarev
A small followup.  While no released version of
qemu-kvm can flawlessly boot from a (emulated)
usb drive directly (using -boot menu or automatic
boot) -- this is because seabios as currently
available in Debian (even -testing) does not
have necessary support -- even 0.12 version in
squeeze can boot from usb device using external
boot rom method (extboot), like this:

 kvm -usb \
   -drive file=filename,if=none,id=b,boot=on \
   -device usb-storage,drive=b

(the key point is boot=on subparameter)

But either way, booting from a usb1.1 device
takes ages - base debian squeeze with only
minimal set of software (login prompt and ssh
with network support, no X) takes ~5 minutes
to boot this way.

/mjt



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



Bug#476946: still breaks phpmyadmin using dbconfig-common 1.8.46+squeeze.0

2011-05-05 Thread sean finney
Hi,

On Thu, May 05, 2011 at 01:04:05PM +0200, Stefan Eriksson wrote:
  The answer should be no here as I've set boolean false but it goes with 
 yes and tries to configure the database which I dont want :(
  
  Is there a way through this problem? How do I autoconfigure it to say no to 
 the dbconfig-common question in the installation script?
 
 This is known bug in dbconfig-common that it ignores preseed. See
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476946 for more
 information. Merging bug accordingly.

I haven't read the full reports, but I've gotten similar questions from
users before about this.  I think the problem is that you shouldn't be
relying on debconf to do th work for you in the first place (i.e. debconf
is not a registry).  dbconfig-common is internally stateless, so it goes
out of its way to always use the local config rather than the transient
data in the debconf cache.

Instead of (or in addition to, guess it wouldn't hurt...) pre-seeding
debconf, have you tried just plopping in a config file at
/etc/dbconfig-common/pkg.conf ?  The rest of the process (creating
tables/users/custom config files) should then honor that configuration.


sean

-- 



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



  1   2   3   >