Bug#421359: #421359 patch submitted

2008-05-19 Thread Martin Michlmayr
* Kevin Price [EMAIL PROTECTED] [2008-05-19 00:58]:
  That's what I've included.  I added the man page for flash-apex as
  well.
 
 Please also remeber adding the dependency of devio to debian/control,
 whithout which flash-apex is useless. Thank you.

Good point!
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#456776: Patches updated for svn r763

2008-05-19 Thread Ian Campbell
Attached are the patches redone against r763.

onbig.patch is the whole lot. grub-xvd_drives.diff and
grub-install_xvd.diff are the individual patches in non patch-of-a-patch
format.

Ian.
-- 
Ian Campbell

Honi soit qui mal y pense.
[Evil to him who evil thinks.]
-- Motto of the Order of the Garter (est. Edward III)
Index: debian/changelog
===
--- debian/changelog	(revision 768)
+++ debian/changelog	(working copy)
@@ -1,8 +1,12 @@
 grub (0.97-39) unstable; urgency=low
 
+  [ Robert Millan ]
   * Adjust make_system_path_relative_to_its_root() not to print trailing
 slashes.  (Closes: #479169)
 
+  [ Ian Campbell ]
+  * Support for Xen style xvd[a-z] devices. (Closes: #456776)
+
  -- Robert Millan [EMAIL PROTECTED]  Tue,  6 May 2008 15:46:48 +0200
 
 grub (0.97-38) unstable; urgency=high
Index: debian/patches/grub-xvd_drives.diff
===
--- debian/patches/grub-xvd_drives.diff	(revision 0)
+++ debian/patches/grub-xvd_drives.diff	(revision 0)
@@ -0,0 +1,49 @@
+--- a/lib/device.c
 b/lib/device.c
+@@ -395,6 +395,16 @@
+ #endif
+ }
+ 
++static void
++get_xvd_disk_name (char *name, int unit)
++{
++#ifdef __linux__
++  sprintf (name, /dev/xvd%c, unit + 'a');
++#else
++# warning Xen XVD drives cannot be guessed in your operating system.
++  *name = 0;
++#endif
++}
+ #ifdef __linux__
+ static void
+ get_dac960_disk_name (char *name, int controller, int drive)
+@@ -770,7 +780,28 @@
+ 	  num_hd++;
+ 	}
+ }
+-  
++
++#ifdef __linux__
++  /* Xen Virtual Disks. */
++  for (i = 0; i  16; i++)
++{
++  char name[16];
++
++  get_xvd_disk_name (name, i);
++  if (check_device (name))
++{
++  (*map)[num_hd + 0x80] = strdup (name);
++  assert ((*map)[num_hd + 0x80]);
++
++  /* If the device map file is opened, write the map.  */
++  if (fp)
++fprintf (fp, (hd%d)\t%s\n, num_hd, name);
++
++  num_hd++;
++}
++}
++#endif
++
+ #ifdef __linux__
+   /* This is for DAC960 - we have
+  /dev/rd/ccontrollerdlogical driveppartition.
Index: debian/patches/grub-install_xvd.diff
===
--- debian/patches/grub-install_xvd.diff	(revision 0)
+++ debian/patches/grub-install_xvd.diff	(revision 0)
@@ -0,0 +1,11 @@
+--- a/util/grub-install.in.orig	2008-04-24 07:25:47.0 +
 b/util/grub-install.in	2008-04-24 07:31:05.0 +
+@@ -104,7 +104,7 @@
+ 	)
+ 
+ 	# Convert RAID devices list into a list of disks
+-	tmp_disks=`echo $devices | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' \
++	tmp_disks=`echo $devices | sed -e 's%\(\(s\|h\|xv\)d[a-z]\)[0-9]*$%\1%' \
+ 	 -e 's%\(d[0-9]*\)p[0-9]*$%\1%' \
+ 	 -e 's%\(fd[0-9]*\)$%\1%' \
+ 	 -e 's%/part[0-9]*$%/disc%' \
Index: debian/patches/00list
===
--- debian/patches/00list	(revision 768)
+++ debian/patches/00list	(working copy)
@@ -9,11 +9,13 @@
 2gb_limit.diff
 kfreebsd.diff
 grub-special_device_names.diff
+grub-xvd_drives.diff
 initrd_max_address.diff
 splashimage_help.diff
 grub-install_addsyncs.diff
 grub-install_regexp.diff
 grub-install_aoe_support.diff
+grub-install_xvd.diff
 geometry-26kernel.diff
 print_func.diff
 mprotect.diff
--- a/util/grub-install.in.orig	2008-04-24 07:25:47.0 +
+++ b/util/grub-install.in	2008-04-24 07:31:05.0 +
@@ -104,7 +104,7 @@
 	)
 
 	# Convert RAID devices list into a list of disks
-	tmp_disks=`echo $devices | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' \
+	tmp_disks=`echo $devices | sed -e 's%\(\(s\|h\|xv\)d[a-z]\)[0-9]*$%\1%' \
 	 -e 's%\(d[0-9]*\)p[0-9]*$%\1%' \
 	 -e 's%\(fd[0-9]*\)$%\1%' \
 	 -e 's%/part[0-9]*$%/disc%' \
--- a/lib/device.c
+++ b/lib/device.c
@@ -395,6 +395,16 @@
 #endif
 }
 
+static void
+get_xvd_disk_name (char *name, int unit)
+{
+#ifdef __linux__
+  sprintf (name, /dev/xvd%c, unit + 'a');
+#else
+# warning Xen XVD drives cannot be guessed in your operating system.
+  *name = 0;
+#endif
+}
 #ifdef __linux__
 static void
 get_dac960_disk_name (char *name, int controller, int drive)
@@ -770,7 +780,28 @@
 	  num_hd++;
 	}
 }
-  
+
+#ifdef __linux__
+  /* Xen Virtual Disks. */
+  for (i = 0; i  16; i++)
+{
+  char name[16];
+
+  get_xvd_disk_name (name, i);
+  if (check_device (name))
+{
+  (*map)[num_hd + 0x80] = strdup (name);
+  assert ((*map)[num_hd + 0x80]);
+
+  /* If the device map file is opened, write the map.  */
+  if (fp)
+fprintf (fp, (hd%d)\t%s\n, num_hd, name);
+
+  num_hd++;
+}
+}
+#endif
+
 #ifdef __linux__
   /* This is for DAC960 - we have
  /dev/rd/ccontrollerdlogical driveppartition.


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


Bug#481482: Fix for Bug#481482 commited to version control

2008-05-19 Thread nijel
tags 481482 +pending
thanks
Hi,

The following change has been committed for this bug, and so the
fix will be in the next upload.
===

Changeset [62] by nijel, 2008-05-19 08:19:15 +0200 (Mon, 19 May 2008)

Fix possible crash in proxy handling (Closes: #481482).

U   trunk/debian/changelog
U   trunk/debian/patches/proxy-support.dpatch

http://viewsvn.cihar.com/debian-mpdscribble?view=revrevision=62



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



Bug#481860: openssh-server upgrade didn't remove all compromised keys from /etc/ssh

2008-05-19 Thread Colin Watson
On Mon, May 19, 2008 at 04:28:46AM +0200, Vincent Lefevre wrote:
 When I upgraded openssh-server, ssh_host_dsa_key has been replaced
 because it was compromised, but not ssh_host_rsa_key, but this one
 was compromised too!

What does 'grep -i hostkey /etc/ssh/sshd_config' say?

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#481806: Bug#481713: pristine-tar: Fails when more than one ref matches upstream

2008-05-19 Thread Guido Günther
On Sun, May 18, 2008 at 07:17:18PM -0400, Andres Mejia wrote:
 On Sunday 18 May 2008 6:40:38 pm Joey Hess wrote:
  Andres Mejia wrote:
   git-import-orig does use what's supplied by the --upstream-branch option
   or what is found in the gbp.conf files and that is what is passed on to
   pristine-tar. I suppose this is a problem with git-buildpackage. I've
   already cloned this bug and assigned it to git-buildpackage.
   http://bugs.debian.org/481806
 
  Right, it would be good for gbp to pass that info on to pristine-tar.
 
  I don't see anything I can do in pristine-tar to fix this. Ok if I close
  #481713?
What would you expect git-import-orig to do here? Git-import-orig calls
pristine-tar as:
 pristine-tar  commit tarball upstream_upstream_branch_name
Is there anything else git-import-orig could do. Andres, is this 0.4.23
or newer?
Cheers,
 -- Guido



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



Bug#481854: tc filters undocumented

2008-05-19 Thread Andreas Henriksson
tags 481854 etch
fixed 481854 20070313-1
thanks

On mån, 2008-05-19 at 02:28 +0200, Josip Rodin wrote:
 Package: iproute
 Version: 20061002-3
 
 Hi,
 
 tc-filters(8) is missing, even though it's referenced by tc(8). There were
 bugs filed about both issues before, and they are all closed, yet the
 situation is the same...
 
 Please fix this. TIA.
 

This has already been fixed in the above mentioned version (and
forwarded/merged upstream). kthxbye.

-- 
Regards,
Andreas Henriksson



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



Bug#481863: trn4: AUTHORCOPY only stores tail of article

2008-05-19 Thread Colin Watson
On Mon, May 19, 2008 at 01:17:11PM +1000, Robert Swan wrote:
 The script /usr/share/trn4/mbox.saver uses
 
   tail +$5c ...
 
 which tail (from coreutils 6.10-6) no longer understands.  It outputs
 a warning message, then works as if it was invoked with no options.
 This leads to just the tail of the article being stored.
 Changing it to:
 
   tail -c +$5 ...
 
 Sorts it out.  norm.saver has the same problem.

Coincidentally, I had already fixed this in my local tree. :-)

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#451337: good start for ip xfrm man documentation.

2008-05-19 Thread Andreas Henriksson
Hello!

Upstream commit ae9b671d518ab (which is now available in the iproute
20080417-1 package in unstable) partially fixes this bug:

 man ip.8 miss xfrm option
 
 I was asked to at least mention the xfrm option in ip manual. I added
 all usage into ip.8 and try to write some basic information about xfrm.
 If someone want complete it, I'll be happy.
 
 Marcela Maslanova

A good start atleast


-- 
Regards,
Andreas Henriksson



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



Bug#481853: [openssh-client] ssh-vulnkey -a does not see the weak keys of the user

2008-05-19 Thread Colin Watson
On Mon, May 19, 2008 at 01:03:45AM +0100, David wrote:
 I have the packages openssh-blacklist and openssh-blacklist-extra installed.
 
 
 If I run ssh-vulnkey -a I get no output, either by running it as user or
 as root.
 
 Nevertheless:
 
 # perl dowkd.pl user
 /home/username/.ssh/known_hosts:1: weak key (OpenSSH/rsa/2048)
 /home/username/.ssh/known_hosts:2: weak key (OpenSSH/rsa/2048)
 summary: keys found: 2, weak keys: 2
 
 I am deleting the file /home/username/.ssh/known_hosts right now, so I am
 afraid it will not be available for debugging :-(

I'm not sure how I'm supposed to do anything with this bug, then ... it
worked for me. Can you give me any useful information at all?

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#481224: [Pkg-ia32-libs-maintainers] Bug#481224: (no subject)

2008-05-19 Thread Goswin von Brederlow
Ben Bromley [EMAIL PROTECTED] writes:

 Yes, I have the 2.2 version installed to fix the skype issue mentioned
 in the first post in this report.  Upgrading to 2.3 fixes the
 flashplugin-nonfree problem, but doesn't allow me to run skype.

 Thanks,
 Ben

 On Mon, 2008-05-19 at 06:42 +0200, Goswin von Brederlow wrote:
 Ben Bromley [EMAIL PROTECTED] writes:
 
  This has now become ever more annoying because if I try to stay at the
  version in testing to get Skype to work, flashplugin-nonfree doesn't
  work.
 
  /usr/lib/nspluginwrapper/i386/linux/npviewer.bin: error while loading
  shared libraries: libpixman-1.so.0: cannot open shared object file: No
  such file or directory
 
  I mostly use gnash anyways, but it would be nice if this were fixed.
 
  Thanks!
 
 Do you have ia32-libs-gtk installed?
 
 MfG
 Goswin

Ok, now what is wrong with skype? We already fixed the flash problem
with 2.3. Now lets fix whatever we broke.

MfG
Goswin



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



Bug#481836: [INTL:eu] openssh debconf templates Basque translation

2008-05-19 Thread Colin Watson
tags 481836 pending
thanks

On Sun, May 18, 2008 at 11:06:09PM +0200, Piarres Beobide wrote:
 Attached openssh debconf templates basque translation, please add it.

Committed, thanks.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#481713: Bug#481806: Bug#481713: pristine-tar: Fails when more than one ref matches upstream

2008-05-19 Thread Andres Mejia
On Monday 19 May 2008 2:18:24 am Guido Günther wrote:
 On Sun, May 18, 2008 at 07:17:18PM -0400, Andres Mejia wrote:
  On Sunday 18 May 2008 6:40:38 pm Joey Hess wrote:
   Andres Mejia wrote:
git-import-orig does use what's supplied by the --upstream-branch
option or what is found in the gbp.conf files and that is what is
passed on to pristine-tar. I suppose this is a problem with
git-buildpackage. I've already cloned this bug and assigned it to
git-buildpackage. http://bugs.debian.org/481806
  
   Right, it would be good for gbp to pass that info on to pristine-tar.
  
   I don't see anything I can do in pristine-tar to fix this. Ok if I
   close #481713?

 What would you expect git-import-orig to do here? Git-import-orig calls
 pristine-tar as:
  pristine-tar  commit tarball upstream_upstream_branch_name
 Is there anything else git-import-orig could do. Andres, is this 0.4.23
 or newer?
 Cheers,
  -- Guido

This is 0.4.28. git-import-orig could call pristine tar as:
  pristine-tar commit path_to_tarball tag_object

I think it would be better if it called the tag object instead of the upstream 
branch name, since in the latter case, it will always fail since it's finding 
a local upstream branch (refs/heads/upstream) and a remote upstream branch 
(refs/remotes/origin/upstream).

-- 
Regards,
Andres


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


Bug#474502: Patch for the 0.8-2.4 NMU of delo

2008-05-19 Thread Christian Perrier

Dear maintainer of delo,

On Thursday, May 08, 2008 I sent you a notice announcing my intent to upload a
NMU of your package to fix its pending l10n issues, after an initial
notice sent on Thursday, May 08, 2008.

You either agreed for this NMU or did not respond to my notices.

I will now upload this NMU to DELAYED/2-DAY.

The NMU patch is attached to this mail.

The NMU changelog is:


Source: delo
Version: 0.8-2.4
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier [EMAIL PROTECTED]
Date: Thu, 08 May 2008 10:27:16 +0200
Closes: 378037 474502 475422 480145 480222 480262 480269 480291 480742
Changes: 
 delo (0.8-2.4) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n issues.
   * We've given the package as much non-intrusive love as possible.
 The remaining needs to be given by someone who commits to give love
 on long-term. Amaya and I have only been one-night lovers.
 Closes: #378037
   * Debconf translations:
 - French. Closes: #474502
 - German. Closes: #475422
 - Czech. Closes: #480145
 - Finnish. Closes: #480269
 - Galician. Closes: #480222
 - Russian. Closes: #480262
 - Basque. Closes: #480291
 - Portuguese. Closes: #480742
   * [Lintian] Add copyright information to debian/copyright

-- 


diff -Nru delo-0.8.old/debian/changelog delo-0.8/debian/changelog
--- delo-0.8.old/debian/changelog	2008-05-07 20:19:40.840167711 +0200
+++ delo-0.8/debian/changelog	2008-05-19 06:12:28.515181208 +0200
@@ -1,3 +1,23 @@
+delo (0.8-2.4) unstable; urgency=low
+
+  * Non-maintainer upload to fix pending l10n issues.
+  * We've given the package as much non-intrusive love as possible.
+The remaining needs to be given by someone who commits to give love
+on long-term. Amaya and I have only been one-night lovers.
+Closes: #378037
+  * Debconf translations:
+- French. Closes: #474502
+- German. Closes: #475422
+- Czech. Closes: #480145
+- Finnish. Closes: #480269
+- Galician. Closes: #480222
+- Russian. Closes: #480262
+- Basque. Closes: #480291
+- Portuguese. Closes: #480742
+  * [Lintian] Add copyright information to debian/copyright
+
+ -- Christian Perrier [EMAIL PROTECTED]  Thu, 08 May 2008 10:27:16 +0200
+
 delo (0.8-2.3) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru delo-0.8.old/debian/copyright delo-0.8/debian/copyright
--- delo-0.8.old/debian/copyright	2008-05-07 20:19:40.840167711 +0200
+++ delo-0.8/debian/copyright	2008-05-08 10:47:17.624884766 +0200
@@ -11,7 +11,8 @@
 
 Upstream Author: Thiemo Seufer [EMAIL PROTECTED]
 
-Copyright:
+Copyright © 2000-2002 Florian Lohoff [EMAIL PROTECTED]
+Copyright © 2002,2003 Thiemo Seufer [EMAIL PROTECTED]
 
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff -Nru delo-0.8.old/debian/po/cs.po delo-0.8/debian/po/cs.po
--- delo-0.8.old/debian/po/cs.po	2008-05-07 20:19:40.835466830 +0200
+++ delo-0.8/debian/po/cs.po	2008-05-09 19:59:01.092957000 +0200
@@ -1,14 +1,14 @@
-# SOME DESCRIPTIVE TITLE.
+# Czech translation of delo debconf messages.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR [EMAIL PROTECTED], YEAR.
+# This file is distributed under the same license as the delo package.
+# Miroslav Kure [EMAIL PROTECTED], 2007,2008.
 #
 msgid 
 msgstr 
 Project-Id-Version: delo\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
 POT-Creation-Date: 2008-03-27 20:41+0100\n
-PO-Revision-Date: 2007-03-11 12:22+0100\n
+PO-Revision-Date: 2008-05-08 12:09+0200\n
 Last-Translator: Miroslav Kure [EMAIL PROTECTED]\n
 Language-Team: Czech [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
@@ -50,10 +50,8 @@
 #. Type: string
 #. Description
 #: ../delo.templates:3001
-#, fuzzy
-#| msgid Console device
 msgid Console device:
-msgstr Zařízení konzoly
+msgstr Zařízení konzoly:
 
 #. Type: string
 #. Description
@@ -76,15 +74,9 @@
 #. Type: note
 #. Description
 #: ../delo.templates:4001
-#, fuzzy
-#| msgid 
-#| You have to set the \boot\ firmware variables to boot your new debian 
-#| installation:\n
-#|  setenv boot \3/rz${FIRM_RZ}\
 msgid 
 You have to set the \boot\ firmware variables to boot your new debian 
 installation:
 msgstr 
 Pro zavedení své nové instalace Debianu musíte nastavit ve firmwaru zaváděcí 
-proměnné:\n
- setenv boot \3/rz${FIRM_RZ}\
+proměnné:
diff -Nru delo-0.8.old/debian/po/de.po delo-0.8/debian/po/de.po
--- delo-0.8.old/debian/po/de.po	2008-05-07 20:19:40.840167711 +0200
+++ delo-0.8/debian/po/de.po	2008-05-08 10:30:14.480936000 +0200
@@ -1,15 +1,15 @@
 # Translation of delo debconf templates to German
-# Copyright (C) Helge Kreutzmann [EMAIL PROTECTED], 2007.
+# Copyright (C) Helge Kreutzmann [EMAIL PROTECTED], 2007, 2008.
 # This file is distributed under the same license as the delo package.
 #
 msgid 
 msgstr 
-Project-Id-Version: 

Bug#481870: [INTL:bg] Updated Bulgarian debconf translation

2008-05-19 Thread Damyan Ivanov
Package: openssh
Version: 1:4.7p1-9
Severity: wishlist
Tags: patch l10n

Hi,

Attached is the updated Bulgarian debconf translation.

Translation team, if you have any corrections, please send them replying
to this mail.


Thanks,
dam
# translation of bg.po to Bulgarian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Damyan Ivanov [EMAIL PROTECTED], 2007, 2008.
msgid 
msgstr 
Project-Id-Version: openssh\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-17 09:39+0200\n
PO-Revision-Date: 2008-05-19 09:27+0300\n
Last-Translator: Damyan Ivanov [EMAIL PROTECTED]\n
Language-Team: Bulgarian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid Generate a new configuration file for OpenSSH?
msgstr Създаване на нов файл с настройки за OpenSSH?

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
This version of OpenSSH has a considerably changed configuration file from 
the version shipped in Debian 'Potato', which you appear to be upgrading 
from. This package can now generate a new configuration file (/etc/ssh/sshd.
config), which will work with the new server version, but will not contain 
any customizations you made with the old version.
msgstr 
Файлът с настройки в тази версия на OpenSSH е силно променен в сравнение с 
версията в Debian 'Potato', която изглежда се обновява. Може да бъде 
създаден нов файл с настройки (/etc/ssh/sshd.config), който ще работи с 
новата версия, но няма да съдържа евентуални промени от стария файл.

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
Please note that this new configuration file will set the value of 
'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password 
can ssh directly in as root). Please read the README.Debian file for more 
details about this design choice.
msgstr 
Новият файл ще съдържа 'PermitRootLogin yes' (разрешавайки отдалечен достъп 
през ssh за административния потребител root). Подробности за причините за 
тази настройка има във файла README.Debian.

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
It is strongly recommended that you choose to generate a new configuration 
file now.
msgstr Препоръчва се да изберете създаването на нов файл с настройки.

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid Do you want to risk killing active SSH sessions?
msgstr Да се прекъснат ли текущите връзки по SSH?

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
The currently installed version of /etc/init.d/ssh is likely to kill all 
running sshd instances. If you are doing this upgrade via an SSH session, 
you're likely to be disconnected and leave the upgrade procedure unfinished.
msgstr 
Много е вероятно версията на /etc/init.d/ssh, която е инсталирана в момента 
да прекъсне активните връзки. Ако извършвате обновяването отдалечено има 
опасност връзката да се разпадне и процесът да не завърши нормално.

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
This can be fixed by manually adding \--pidfile /var/run/sshd.pid\ to the 
start-stop-daemon line in the stop section of the file.
msgstr 
Това може да бъде поправено ръчно с добавянето на „--pidfile /var/run/sshd.
pid“ към командата start-stop-daemon в раздела „stop“ на файла.

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid New host key mandatory
msgstr Необходим е нов ключ за хоста

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid 
The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA 
algorithm. OpenSSH can not handle this host key file, and the ssh-keygen 
utility from the old (non-free) SSH installation does not appear to be 
available.
msgstr 
В момента ключа на хоста в /etc/ssh/ssh_host_key е шифриран с алгоритъма 
IDEA. OpenSSH не може да работи с този файл, а програмата ssh-keygen от 
старата инсталация не е налична.

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid You need to manually generate a new host key.
msgstr Необходимо е да се генерира ръчно нов ключ за хоста.

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid Disable challenge-response authentication?
msgstr Забрана на удостоверяването challenge-response?

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid 
Password authentication appears to be disabled in the current OpenSSH server 
configuration. In order to prevent users from logging in using passwords 
(perhaps using only public key authentication instead) with recent versions 
of OpenSSH, you must disable challenge-response authentication, or else 
ensure that your PAM configuration does not allow Unix password file 

Bug#312552: RARv3 support removed

2008-05-19 Thread Matt Taggart
It looks like the RARv3 support mentioned by PaulLiu on 03 Jul 2007 as 
being added in 1:0.0.1+cvs20070424-1 was removed in 1:0.0.1+cvs20071127-1. 
Here is the comment from the changelog

remove RARv3 code from libclamav due to unclear license and patent issues

So I guess if this bug is apply the v3 support from libclamav then the 
answer is wontfix for now unless they can get the license sorted out, but 
if it's meant to track adding v3 support in general then it's still open 
waiting for someone to implement in an unencumbered manner.

-- 
Matt Taggart
[EMAIL PROTECTED]





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



Bug#411535: Patch for the cr.g7-40.4 NMU of cnews

2008-05-19 Thread Christian Perrier

Dear maintainer of cnews,

On Thursday, May 08, 2008 I sent you a notice announcing my intent to upload a
NMU of your package to fix its pending l10n issues, after an initial
notice sent on Sunday, April 27, 2008.

You either agreed for this NMU or did not respond to my notices.

I will now upload this NMU to DELAYED/2-DAY.

The NMU patch is attached to this mail.

The NMU changelog is:


Source: cnews
Version: cr.g7-40.4
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier [EMAIL PROTECTED]
Date: Sun, 27 Apr 2008 20:51:34 +0200
Closes: 411535 479522 480115 480220 480261
Changes: 
 cnews (cr.g7-40.4) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n issues.
   * Debconf translations:
 - German. Closes: #411535
 - Finnish. Closes: #479522
 - Basque. Closes: #480115
 - Galician. Closes: #480220
 - Russian. Closes: #480261
   * [Lintian] Correct NEWS.Debian file syntax
   * [Lintian] Mention /usr/share/doc in README.debian instead of /usr/doc
   * [Lintian] Remove empty prerm script
   * [Lintian] Add (empty) Required-Stop and Default-Stop fields to
 LSB headers in init script

-- 


diff -Nru cnews-cr.g7.old/debian/NEWS.Debian cnews-cr.g7/debian/NEWS.Debian
--- cnews-cr.g7.old/debian/NEWS.Debian	2008-04-27 20:52:27.266735844 +0200
+++ cnews-cr.g7/debian/NEWS.Debian	2008-05-08 08:26:54.805407611 +0200
@@ -9,4 +9,4 @@
 need to change it.  (The character set for news posting is the most
 likely to need changed.)
 
-   -- Blars Blarson [EMAIL PROTECTED]  Tue, 22 Jun 2004 21:54:49 -0700
+ -- Blars Blarson [EMAIL PROTECTED]  Tue, 22 Jun 2004 21:54:49 -0700
diff -Nru cnews-cr.g7.old/debian/README.debian cnews-cr.g7/debian/README.debian
--- cnews-cr.g7.old/debian/README.debian	2008-04-27 20:52:26.294751201 +0200
+++ cnews-cr.g7/debian/README.debian	2008-05-08 08:28:05.621717879 +0200
@@ -78,7 +78,7 @@
 
  DEBIAN CONFIGURATION ISSUES
 
-There is a default configuration in /usr/doc/cnews/examples. All those
+There is a default configuration in /usr/share/doc/cnews/examples. All those
 files are for /etc/news or /var/lib/news. For all files in /etc/news,
 symlinks in /var/lib/news exist, because C News itself doesn't know
 about /etc/news. Files in /var/lib/news should be owned by news:news.
diff -Nru cnews-cr.g7.old/debian/changelog cnews-cr.g7/debian/changelog
--- cnews-cr.g7.old/debian/changelog	2008-04-27 20:52:26.750753086 +0200
+++ cnews-cr.g7/debian/changelog	2008-05-19 06:11:32.243113843 +0200
@@ -1,3 +1,20 @@
+cnews (cr.g7-40.4) unstable; urgency=low
+
+  * Non-maintainer upload to fix pending l10n issues.
+  * Debconf translations:
+- German. Closes: #411535
+- Finnish. Closes: #479522
+- Basque. Closes: #480115
+- Galician. Closes: #480220
+- Russian. Closes: #480261
+  * [Lintian] Correct NEWS.Debian file syntax
+  * [Lintian] Mention /usr/share/doc in README.debian instead of /usr/doc
+  * [Lintian] Remove empty prerm script
+  * [Lintian] Add (empty) Required-Stop and Default-Stop fields to
+LSB headers in init script
+
+ -- Christian Perrier [EMAIL PROTECTED]  Sun, 27 Apr 2008 20:51:34 +0200
+
 cnews (cr.g7-40.3) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru cnews-cr.g7.old/debian/cnewsclean cnews-cr.g7/debian/cnewsclean
--- cnews-cr.g7.old/debian/cnewsclean	2008-04-27 20:52:27.298735939 +0200
+++ cnews-cr.g7/debian/cnewsclean	2008-05-08 08:58:43.705260501 +0200
@@ -3,7 +3,9 @@
 ### BEGIN INIT INFO
 # Provides:  cnewsclean
 # Required-Start:$remote_fs
+# Required-Stop:
 # Default-Start: S
+# Default-Stop:
 ### END INIT INFO
 
 set -e
diff -Nru cnews-cr.g7.old/debian/po/cs.po cnews-cr.g7/debian/po/cs.po
--- cnews-cr.g7.old/debian/po/cs.po	2008-04-27 20:52:27.054735647 +0200
+++ cnews-cr.g7/debian/po/cs.po	2008-05-08 08:16:29.997134241 +0200
@@ -3,8 +3,8 @@
 msgid 
 msgstr 
 Project-Id-Version: cnews cr.g7-38\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2004-03-29 09:43-0800\n
+Report-Msgid-Bugs-To: [EMAIL PROTECTED]
+POT-Creation-Date: 2008-05-08 08:16+0200\n
 PO-Revision-Date: 2005-04-18 22:10+0200\n
 Last-Translator: Martin Sin [EMAIL PROTECTED]\n
 Language-Team: Czech [EMAIL PROTECTED]\n
@@ -14,6 +14,6 @@
 
 #. Type: string
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid Fully qualified domain name of the system:
 msgstr Plnì urèené doménové jméno systému:
diff -Nru cnews-cr.g7.old/debian/po/de.po cnews-cr.g7/debian/po/de.po
--- cnews-cr.g7.old/debian/po/de.po	1970-01-01 01:00:00.0 +0100
+++ cnews-cr.g7/debian/po/de.po	2008-05-08 08:16:30.057255456 +0200
@@ -0,0 +1,21 @@
+# Translation of cnews debconf templates to German
+# Copyright (C) Helge Kreutzmann [EMAIL PROTECTED], 2007.
+# This file is distributed under the same license as the cnews package.
+#
+msgid 
+msgstr 
+Project-Id-Version: cnews cr.g7-40.1\n
+Report-Msgid-Bugs-To: [EMAIL PROTECTED]
+POT-Creation-Date: 2008-05-08 08:16+0200\n
+PO-Revision-Date: 2007-02-19 18:55+0100\n

Bug#481076: libnss-ldapd: Can not contact LDAP servers messages

2008-05-19 Thread Bas van der Vlies

Arthur de Jong wrote:

On Wed, 2008-03-19 at 15:47 +0100, Bas van der Vlies wrote:

We have installed nslcd on out 800 node cluster and once in a while we
get these message from some nodes:

Mar 19 15:17:47 gb-r3n8 nslcd[3236]: failed to bind to LDAP server
ldaps://ldap.cua.sara.nl: Can't contact LDAP server: Operation now in
progress


The problem is most likely that calling connect() to the LDAP server
failed with the error EINPROGRESS (Operation now in progress). Probably
because the number of connection to the server is too large.

If you have a large cluster, having too many connections to the LDAP
server may be a problem. If that is the case this problem may be
mitigated by using the threads keyword introduced in release 0.6.2
(setting it to something lower than the default 5).


I have made a calculation and and have increased the open files to
8192 and we have 2 server for this cluster. So 5 * 800 = 4000 is only
2000 connections per server. Must be enough


The error itself is a bit weird because this should only happen when the
socket is in non-blocking mode. Since OpenLDAP has control over the
socket I suspect this may be a bug in OpenLDAP. You also appear to be
using OpenLDAP from stable which is much older than the current version
in unstable/testing.

Again thanks for the explanation. This error mostly occurs we i restart the 
slapd servers. Then i client tries forever to connect to a slapd-server. We 
have Round Robin DNS  setup. The only way to stop this is to restart the 
nslcd daemon.


Do you mean the client libraries or the slapd version?



Versions of packages libnss-ldapd depends on:
ii  grap   1.39-2program for typesetting graphs


Btw, I'm a bit puzzled how this dependency ended up in libnss-ldapd.


When i compiled it on our debian system it was needed for the man page.



--
--

*  *
*  Bas van der Vlies e-mail: [EMAIL PROTECTED]  *
*  SARA - Academic Computing Servicesphone:  +31 20 592 8012   *
*  Kruislaan 415 fax:+31 20 6683167*
*  1098 SJ Amsterdam   *
*  *




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



Bug#481871: Softupdate support in simple example

2008-05-19 Thread Michael Tautschnig
Package: fai
Version: 3.2.6
Severity: wishlist
Tags: patch

The currently shipped simple examples cannot be immediately used with
softupdates as some actions cannot be performed are would be errornous if run
multiple times and/or on an already installed system.

The attached patch is supposed to fix this, but should be carefully reviewed.

Best,
Michael

Index: examples/simple/class/20-hwdetect.source
===
--- examples/simple/class/20-hwdetect.source(revision 4793)
+++ examples/simple/class/20-hwdetect.source(working copy)
@@ -5,7 +5,8 @@
 # NOTE: Files named *.source will be evaluated, but their output ignored. 
Instead
 # the contents of $newclasses will be added to the list of defined classes.
 
-[ $action = dirinstall ]  return 0 # Do not execute when doing dirinstall
+# Do not execute when doing dirinstall or softupdate
+[ $action = dirinstall -o $action = softupdate ]  return 0
 
 echo 0  /proc/sys/kernel/printk
 
Index: examples/simple/scripts/GRUB/10-setup
===
--- examples/simple/scripts/GRUB/10-setup   (revision 4793)
+++ examples/simple/scripts/GRUB/10-setup   (working copy)
@@ -2,7 +2,7 @@
 
 error=0 ; trap error=$((error|1)) ERR
 
-fcopy -Uv boot/grub/menu.lst
+fcopy -v /boot/grub/menu.lst
 
 exit $error
 
Index: examples/simple/scripts/LAST/50-misc
===
--- examples/simple/scripts/LAST/50-misc(revision 4793)
+++ examples/simple/scripts/LAST/50-misc(working copy)
@@ -11,7 +11,7 @@
 done
 
 [ $FAI_DEBMIRROR ]  
-echo #$FAI_DEBMIRROR $MNTPOINT nfs ro 0 0  $target/etc/fstab
+ainsl $target/etc/fstab #$FAI_DEBMIRROR $MNTPOINT nfs ro 0 0
 
 # set bios clock
 if [ $do_init_tasks -eq 1 ] ; then
Index: examples/simple/scripts/DEMO/10-misc
===
--- examples/simple/scripts/DEMO/10-misc(revision 4793)
+++ examples/simple/scripts/DEMO/10-misc(working copy)
@@ -9,6 +9,9 @@
 #perl -pi.orig -pe s/%%VIDEODRIVER%%/$VIDEODRIVER/ 
$target/etc/X11/xorg.conf
 }
 
-# add a demo user account
-$ROOTCMD adduser --disabled-login --gecos fai demo user demo
-echo demo:$ROOTPW | $ROOTCMD chpasswd --encrypted
+if ! $ROOTCMD getent passwd demo ; then
+  # add a demo user account
+  $ROOTCMD adduser --disabled-login --gecos fai demo user demo
+  echo demo:$ROOTPW | $ROOTCMD chpasswd --encrypted
+fi
+
Index: examples/simple/scripts/FAISERVER/10-conffiles
===
--- examples/simple/scripts/FAISERVER/10-conffiles  (revision 4793)
+++ examples/simple/scripts/FAISERVER/10-conffiles  (working copy)
@@ -5,10 +5,16 @@
 
 #/etc/fai/fai.conf /etc/fai/make-fai-nfsroot.conf
 fcopy /etc/apt-proxy/apt-proxy-v2.conf /etc/fai/apt/sources.list
-# use the same sources.list for the server itself and the clients
-cp -a $target/etc/fai/apt $target/etc/
 
-rm -f $target/etc/resolv.conf
+# Michael T: actually I absolutely don't understand the following, but I guess
+# it must not happen on softupdates
+if [ $FAI_ACTION != softupdate ] ; then
+  # use the same sources.list for the server itself and the clients
+  cp -a $target/etc/fai/apt $target/etc/
 
-# create some host entries
-perl -e 'for (1..25) {printf 192.168.1.%s atom%02s\n,$_,$_;}'  
$target/etc/hosts
+  rm -f $target/etc/resolv.conf
+
+  # create some host entries
+  perl -e 'for (1..25) {printf 192.168.1.%s atom%02s\n,$_,$_;}'  
$target/etc/hosts
+fi
+
Index: examples/simple/scripts/FAIBASE/30-interface
===
--- examples/simple/scripts/FAIBASE/30-interface(revision 4793)
+++ examples/simple/scripts/FAIBASE/30-interface(working copy)
@@ -2,7 +2,7 @@
 
 error=0 ; trap error=$((error|1)) ERR
 
-if ifclass DHCPC
+if ifclass DHCPC  [ $FAI_ACTION != softupdate ]
 then
 cat  $target/etc/network/interfaces -EOF
# generated by FAI
@@ -23,11 +23,11 @@
 EOF
 [ -n $NETWORK ]  echo localnet $NETWORK  $target/etc/networks
 [ -s /etc/resolv.conf ]  cp -p /etc/resolv.conf $target/etc
-fcopy -i /etc/resolv.conf
 fi
 
 # here fcopy is mostly used, when installing a client for running in a
 # different subnet than during the installation  
+fcopy -i /etc/resolv.conf
 fcopy -iM /etc/network/interfaces /etc/networks
 
 exit $error
Index: examples/simple/scripts/FAIBASE/10-misc
===
--- examples/simple/scripts/FAIBASE/10-misc (revision 4793)
+++ examples/simple/scripts/FAIBASE/10-misc (working copy)
@@ -10,12 +10,14 @@
 ainsl -a $target/etc/modules ^$module$
 done
 
-# disable fsck on ext3 filesystems
-for part in $(mount|grep $target |grep type ext3|perl -ane 'print $F[0] ')
-do
-echo Disable periodic fsck on $part
-tune2fs -c 0 -i 0 $part
-done
+if [ 

Bug#479668: debian : tuxguitar : wrapper script

2008-05-19 Thread Philippe Coval

Gary Kramlich wrote:

Philippe Coval wrote:
  

Hi,

Rc4 is out , I am about to package it,



I pulled the packages out of incoming but had issues.  So I waited for
them to hit the mirrors, then purged, cleaned, and reinstalled.  And I
keep meeting:
$ tuxguitar
Exception in thread main java.lang.NoClassDefFoundError:
org/eclipse/swt/widgets/Control
  

yes this has been reported :

 * http://bugs.debian.org/481728
   * http://bugs.debian.org/464735

thanks for testing

--
# mailto:rzr[a]users.sf.net -- gpg:0x467094BC
# http://rzr.online.fr/contribs.htm -- Libre Software Addict
# xmpp:rzr[a]jabber.fr -- sip:rzr[a]ekiga.net




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



Bug#471394: libmcs1: messes up with configuration file while the program is running

2008-05-19 Thread Adam Cécile (Le_Vert)

Francesco Poli a écrit :

On Mon, 17 Mar 2008 23:34:18 +0100 Francesco Poli wrote:

[...]
  

I noticed a strange behavior in the configuration management of
audacious.


[...]

I still suffer from this issue, as I have to do the following whenever
I quit audacious:

  $ cp -a ~/tmp/config-audacious-config_SAVE ~/.config/audacious/config

which is very annoying.

BTW, I noticed that the issue happens on amd64, but not on i386.
Maybe it has something to do with 64 bit portability...

I reported the issue a while ago, but I don't see any response yet.
Could at least this bug report be forwarded to upstream?
Thanks.
  
Wiliam Pitcock (upstream) is alreayd reading Debian's bugs. I'll speak 
with him about this issue when I'll see him.





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



Bug#481724: [kdebase-workspace] krunner/startupid.cpp: undefined reference to `XcursorGetDefaultSize'

2008-05-19 Thread Fathi BOUDRA
tag 481724 + pending
tag 481724 - patch
severity 481724 normal

thanks

Hi Sedat,

My guess: you have build kdebase-workspace in a non-clean environment 
(dpkg-buildpackage), and you have libxcursor-dev installed.
It defines HAVE_XCURSOR and fails with undefined reference issue.

I'm not able to reproduce your bug in a clean pbuilder environment as we don't 
build depend on libxcursor-dev and so don't fail on your issue.

the fix is easy,  startupid must link with xcursor when xcursor is used. It 
will be fixed on next upload (after guessing verify).

cheers,

Fathi



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



Bug#481870: [INTL:bg] Updated Bulgarian debconf translation

2008-05-19 Thread Colin Watson
On Mon, May 19, 2008 at 09:43:11AM +0300, Damyan Ivanov wrote:
 Attached is the updated Bulgarian debconf translation.

Christian Perrier got the templates file a bit wrong the first time
around. Could you please update with the one I've attached to this mail?

Thanks,

-- 
Colin Watson   [EMAIL PROTECTED]
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR [EMAIL PROTECTED], YEAR.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-17 08:51+0200\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME [EMAIL PROTECTED]\n
Language-Team: LANGUAGE [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid Generate a new configuration file for OpenSSH?
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
This version of OpenSSH has a considerably changed configuration file from 
the version shipped in Debian 'Potato', which you appear to be upgrading 
from. This package can now generate a new configuration file (/etc/ssh/sshd.
config), which will work with the new server version, but will not contain 
any customizations you made with the old version.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
Please note that this new configuration file will set the value of 
'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password 
can ssh directly in as root). Please read the README.Debian file for more 
details about this design choice.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
It is strongly recommended that you choose to generate a new configuration 
file now.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid Do you want to risk killing active SSH sessions?
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
The currently installed version of /etc/init.d/ssh is likely to kill all 
running sshd instances. If you are doing this upgrade via an SSH session, 
you're likely to be disconnected and leave the upgrade procedure unfinished.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
This can be fixed by manually adding \--pidfile /var/run/sshd.pid\ to the 
start-stop-daemon line in the stop section of the file.
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid New host key mandatory
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid 
The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA 
algorithm. OpenSSH can not handle this host key file, and the ssh-keygen 
utility from the old (non-free) SSH installation does not appear to be 
available.
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid You need to manually generate a new host key.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid Disable challenge-response authentication?
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid 
Password authentication appears to be disabled in the current OpenSSH server 
configuration. In order to prevent users from logging in using passwords 
(perhaps using only public key authentication instead) with recent versions 
of OpenSSH, you must disable challenge-response authentication, or else 
ensure that your PAM configuration does not allow Unix password file 
authentication.
msgstr 

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid 
If you disable challenge-response authentication, then users will not be 
able to log in using passwords. If you leave it enabled (the default 
answer), then the 'PasswordAuthentication no' option will have no useful 
effect unless you also adjust your PAM configuration in /etc/pam.d/ssh.
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:5001
msgid Vulnerable host keys will be regenerated
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:5001
msgid 
Some of the OpenSSH server host keys on this system were generated with a 
version of OpenSSL that had a broken random number generator. As a result, 
these host keys are from a well-known set, are subject to brute-force 
attacks, and must be regenerated.
msgstr 

#. Type: note
#. Description
#: ../openssh-server.templates:5001
msgid 
Users of this system should be informed of this change, as they will be 
prompted about the host key change the next time they log in. Use 'ssh-
keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of 
the new host keys.
msgstr 

#. Type: note
#. Description
#: 

Bug#481872: ftbfs: libstdc++ missing?

2008-05-19 Thread Max Kellermann
Package: swfmill
Version: 0.2.12-1.1

During my attempt to backport swfmill to etch, I got the following
error:

i486-linux-gnu-g++ -g -O2 -o swfmill swfmill-base64.o
swfmill-SWFReader.o swfmill-SWFWriter.o swfmill-SWFFile.o
swfmill-SWFItem.o swfmill-SWFTag.o swfmill-SWFAction.o
swfmill-SWFFilter.o swfmill-SWFStackItem.o swfmill-SWFStyle.o
swfmill-SWFShapeItem.o swfmill-SWFGly
phList.o swfmill-SWFShapeMaker.o swfmill-gSWFParseXML.o
swfmill-gSWFWriteXML.o swfmill-gSWFParser.o swfmill-gSWFWriter.o
swfmill-gSWFDumper.o swfmill-gSWFBasics.o swfmill-gSWFSize.o
swfmill-swfmill.o  -L/usr/lib swft/.libs/libswft.a
/usr/lib/libexslt.so /usr/lib/lib
xslt.so -lm /usr/lib/libxml2.so /usr/lib/libfreetype.so -lz -lpng12
xslt/.libs/libswfmillxslt.a
swfmill-SWFReader.o: In function `SWF::Reader::getPString()':
/usr/src/debian/build/swfmill-0.2.12/src/SWFReader.cpp:154: undefined
reference to `operator new[](unsigned int)'
swfmill-SWFReader.o:(.eh_frame+0x11): undefined reference to
`__gxx_personality_v0'
[...]
swft/.libs/libswft.a(libswft_la-swft_import.o):(.eh_frame+0x11):
undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
make[4]: *** [swfmill] Error 1
make[4]: Leaving directory `/usr/src/debian/build/swfmill-0.2.12/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/usr/src/debian/build/swfmill-0.2.12/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/usr/src/debian/build/swfmill-0.2.12/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/debian/build/swfmill-0.2.12'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status
2

GCC version:

Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v
--enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr
--enable-shared --with-system-zlib --libexecdir=/usr/lib
--without-included-gettext --enable-threads=posix --enable-nls
--program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu
--enable-libstdcxx-debug --enable-mpfr --with-tune=i686
--enable-checking=release i486-linux-gnu
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)



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



Bug#481806: Bug#481713: pristine-tar: Fails when more than one ref matches upstream

2008-05-19 Thread Guido Günther
On Mon, May 19, 2008 at 02:38:50AM -0400, Andres Mejia wrote:
 I think it would be better if it called the tag object instead of the 
 upstream 
 branch name, since in the latter case, it will always fail since it's finding 
 a local upstream branch (refs/heads/upstream) and a remote upstream branch 
 (refs/remotes/origin/upstream).
Since the branch passed to git-import-orig needs to be a local branch
anyway we can simply prefix with 'refs/heads' to make pristine-tar
happy.
 -- Guido



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



Bug#481713: Bug#481806: Bug#481713: pristine-tar: Fails when more than one ref matches upstream

2008-05-19 Thread Andres Mejia
On Monday 19 May 2008 3:08:32 am Guido Günther wrote:
 On Mon, May 19, 2008 at 02:38:50AM -0400, Andres Mejia wrote:
  I think it would be better if it called the tag object instead of the
  upstream branch name, since in the latter case, it will always fail since
  it's finding a local upstream branch (refs/heads/upstream) and a remote
  upstream branch (refs/remotes/origin/upstream).

 Since the branch passed to git-import-orig needs to be a local branch
 anyway we can simply prefix with 'refs/heads' to make pristine-tar
 happy.
  -- Guido

That should work too.

-- 
Regards,
Andres


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


Bug#479252: Announce of the upcoming NMU for the cgiemail package

2008-05-19 Thread Christian Perrier
Dear maintainer of cgiemail and Debian translators,

Some days ago, I sent a notice to the maintainer of the cgiemail Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

I announced the intent to build and possibly upload a non-maintainer upload
for this package in order to fix this long-time pending localization
bug as well as all other pending translations.

The package maintainer agreed for the NMU or did not respond in two
weeks, so I will proceed with the NMU.

The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs de es fr ja nl pt sv vi

Among these, the following translations are incomplete: cs es ja nl pt sv vi

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the cgiemail package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Wednesday, May 28, 
2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

If the maintainer objects to this process I will immediately abort my NMU
and send him/her all updates I receive.

Otherwise the following will happen (or already has):

 Thursday, May 08, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Monday, May 19, 2008   : send this notice
 Monday, May 26, 2008   : (midnight) deadline for receiving translation 
updates
 Wednesday, May 28, 2008   : build the package and upload it to 
DELAYED/2-day
 send the NMU patch to the BTS
 Friday, May 30, 2008   : NMU uploaded to incoming

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR [EMAIL PROTECTED], YEAR.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-08 10:39+0200\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME [EMAIL PROTECTED]\n
Language-Team: LANGUAGE [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../templates:1001
msgid Directory where you want to put the cgiemail's mail templates:
msgstr 

#. Type: string
#. Description
#: ../templates:1001
msgid 
In old versions of cgiemail, templates that were used for creating e-mails 
to be sent could be placed anywhere that would be served up by the web 
server.  This behaviour is a security vulnerability: an attacker can read 
files that he shouldn't be able to, such as scripts in cgi-bin, if they 
contain certain pieces of text.
msgstr 

#. Type: string
#. Description
#: ../templates:1001
msgid 
If you enter nothing (that is, erase the default directory, leaving this 
empty), cgiemail will still work. This may be needed if you are, for 
instance, hosting web services, and cannot move all of your clients cgiemail 
templates to one directory.  Remember that this will LEAVE THE SECURITY HOLE 
OPEN, and is only a choice for backwards compatibility.
msgstr 

#. Type: string
#. Description
#: ../templates:1001
msgid 
To close the hole, enter a directory, which MUST be accessible by your web 
server.  Template files that you want to use should go there. For further 
instructions, please read the README.Debian and README files in /usr/share/
doc/cgiemail/.
msgstr 


signature.asc
Description: Digital signature


Bug#481796: dkimproxy: fails to authenticate since Perl update to version 5.10

2008-05-19 Thread Thomas Goirand
Manolo Díaz wrote:
 El Mon, 19 May 2008 00:53:20 +0800
 Thomas Goirand [EMAIL PROTECTED] escribió:
 dkim=invalid (public key: Can't locate object method new via
 package Net::DNS::RR::TXT at /usr/lib/perl5/Net/DNS/RR.pm line
 305, _GEN_3 line 30.) [EMAIL PROTECTED]; dkim=invalid (public
 key: Can't locate object method new via package
 Net::DNS::RR::TXT at /usr/lib/perl5/Net/DNS/RR.pm line 305,
 _GEN_3 line 30.) [EMAIL PROTECTED]

 Well, all those bugs are older than two months and dkimproxy worked
 perfectly to me till yesterday, when I did a package upgrade. 

Ok, but look at the error message. It's saying that there is an error in
line 305 file /usr/lib/perl5/Net/DNS/RR.pm. apt-file confirms this file
is in the package libnet-dns-perl. Here's the source cut/past:

sub new_from_data {
my $class = shift;
my ($name, $rrtype, $rrclass, $ttl, $rdlength, $data, $offset) = @_;

my $self = {name= $name,
type= $rrtype,
class   = $rrclass,
ttl = $ttl,
rdlength= $rdlength,
rdata   = substr($$data, $offset,
$rdlength)
};

if ($RR{$rrtype}) {
my $subclass = $class-_get_subclass($rrtype);
return $subclass-new($self, $data, $offset);
} else {
return Net::DNS::RR::Unknown-new($self, $data, $offset);
}

}

It fails at the following call:

return $subclass-new($self, $data, $offset);

How it works is that new_from_string calls new_from_data. rrclass is
defined in new_from_string.

I'm all but a perl specialist, but this really sound like a problem in
libnet-dns-perl, and a side effect of an already existing bug in it. I
hope that Florian will be able to tell more about it, I'd like to have
his opinion: we shall try to be 100% sure of the location ofthe problem.

In the hope for help, I've also added the upstream author of dkimproxy
to this thread, and the user mailing list of the project:
[EMAIL PROTECTED] For them who might not know about
it, I'm the maintainer of DKIMproxy in Debian, and there's a bug report
sent against the dkimproxy package. Here is the link to the package QA URL:

http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=dkimproxy

The new bug appears because Lenny  SID are now using Perl 5.10, it was
not causing any trouble before.

I hope this can be fixed really quick and that the upstream author will
help (he didn't respond to my previous messages), I hate to leave bugs
open for too longs, and I'll do what I can to have it solved. Is there
any debugger for perl that is able to trace such SMTP proxy?

Thomas Goirand



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



Bug#481873: pre-inst should mkdir

2008-05-19 Thread Martin Schulze
Package: dokuwiki
Version: 0.0.20080505-1

Hi,

it would be nice if the pre-installation script would check whether
$conf['savedir'] . '/../tmp' exists and create that directory with
proper permissions prior to the upgrade to this new upstream version.
That would actually help existing wikis to continue working after
the upgrade.

There's also something broken with UCF, the upgrade is stalled until
I hit Enter about half a dozen times.

Thanks,

Joey

-- 
Never trust an operating system you don't have source for!

Please always Cc to me when replying to me on the lists.



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



Bug#481635: sorry for the wrong encoding

2008-05-19 Thread Christian Perrier
Quoting Marcin Owsiany ([EMAIL PROTECTED]):
 Sorry for the mess guys, looks like mutt helpfully recoded the po
 files to latin2 :-/ I think I'll gzip the files the next time just to
 make sure it does not mess it up.


That's one of the very annoying features of mutt. Is mostly comes from
your settigns requiring to send mails in ISO-8859-2. As PO files are
considered as text files, mut re-encodes them just as it re-encodes
your mail text if needed.

The solution to this is to tell mutt that PO files are *not* text
files:

~/.mime.types:

application/x-gettext po





signature.asc
Description: Digital signature


Bug#481870: trimmed ${HOST_KEYS}

2008-05-19 Thread Damyan Ivanov
I've sent the first update too quickly to remember that there was an
ammendment. Please use this one. It is the same as the last one, but
omits the (now not present) ${HOST_KEYS} string.

-- 
damJabberID: [EMAIL PROTECTED]
# translation of bg.po to Bulgarian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Damyan Ivanov [EMAIL PROTECTED], 2007, 2008.
msgid 
msgstr 
Project-Id-Version: openssh\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-17 13:58+0200\n
PO-Revision-Date: 2008-05-19 09:27+0300\n
Last-Translator: Damyan Ivanov [EMAIL PROTECTED]\n
Language-Team: Bulgarian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid Generate a new configuration file for OpenSSH?
msgstr Създаване на нов файл с настройки за OpenSSH?

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
This version of OpenSSH has a considerably changed configuration file from 
the version shipped in Debian 'Potato', which you appear to be upgrading 
from. This package can now generate a new configuration file (/etc/ssh/sshd.
config), which will work with the new server version, but will not contain 
any customizations you made with the old version.
msgstr 
Файлът с настройки в тази версия на OpenSSH е силно променен в сравнение с 
версията в Debian 'Potato', която изглежда се обновява. Може да бъде 
създаден нов файл с настройки (/etc/ssh/sshd.config), който ще работи с 
новата версия, но няма да съдържа евентуални промени от стария файл.

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
Please note that this new configuration file will set the value of 
'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password 
can ssh directly in as root). Please read the README.Debian file for more 
details about this design choice.
msgstr 
Новият файл ще съдържа 'PermitRootLogin yes' (разрешавайки отдалечен достъп 
през ssh за административния потребител root). Подробности за причините за 
тази настройка има във файла README.Debian.

#. Type: boolean
#. Description
#: ../openssh-server.templates:1001
msgid 
It is strongly recommended that you choose to generate a new configuration 
file now.
msgstr Препоръчва се да изберете създаването на нов файл с настройки.

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid Do you want to risk killing active SSH sessions?
msgstr Да се прекъснат ли текущите връзки по SSH?

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
The currently installed version of /etc/init.d/ssh is likely to kill all 
running sshd instances. If you are doing this upgrade via an SSH session, 
you're likely to be disconnected and leave the upgrade procedure unfinished.
msgstr 
Много е вероятно версията на /etc/init.d/ssh, която е инсталирана в момента 
да прекъсне активните връзки. Ако извършвате обновяването отдалечено има 
опасност връзката да се разпадне и процесът да не завърши нормално.

#. Type: boolean
#. Description
#: ../openssh-server.templates:2001
msgid 
This can be fixed by manually adding \--pidfile /var/run/sshd.pid\ to the 
start-stop-daemon line in the stop section of the file.
msgstr 
Това може да бъде поправено ръчно с добавянето на „--pidfile /var/run/sshd.
pid“ към командата start-stop-daemon в раздела „stop“ на файла.

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid New host key mandatory
msgstr Необходим е нов ключ за хоста

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid 
The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA 
algorithm. OpenSSH can not handle this host key file, and the ssh-keygen 
utility from the old (non-free) SSH installation does not appear to be 
available.
msgstr 
В момента ключа на хоста в /etc/ssh/ssh_host_key е шифриран с алгоритъма 
IDEA. OpenSSH не може да работи с този файл, а програмата ssh-keygen от 
старата инсталация не е налична.

#. Type: note
#. Description
#: ../openssh-server.templates:3001
msgid You need to manually generate a new host key.
msgstr Необходимо е да се генерира ръчно нов ключ за хоста.

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid Disable challenge-response authentication?
msgstr Забрана на удостоверяването challenge-response?

#. Type: boolean
#. Description
#: ../openssh-server.templates:4001
msgid 
Password authentication appears to be disabled in the current OpenSSH server 
configuration. In order to prevent users from logging in using passwords 
(perhaps using only public key authentication instead) with recent versions 
of OpenSSH, you must disable challenge-response authentication, or else 
ensure that your PAM configuration does not allow Unix password file 

Bug#478173: Bug #478173: is this a QT-related problem?

2008-05-19 Thread David Headland
Hello all,

I don't know quite why I didn't think of this before, but this may well be
a problem with the new QT packages, as has been seen in lyx (see bug
#475523 for details). Unfortunately I'm at work at present and don't have
access to my Debian machines, but I will try changing the libraries around
this evening and report whether this is successful or not. I thought I'd
post this quick message here now, though, in case anyone wants to try it
for themselves in the mean time.

All the best,
-Dave.




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



Bug#440202: wifi-radar debconf translation to Brazilian Portuguese?

2008-05-19 Thread Christian Perrier
In #440202, Marcelo Cavalcante sent a bug report for a Brazilian
debconf translation of wifi-radar.

However, he forgot attaching the pt_BR.po file to the bug report..:-)

Then, Patrick, the package maintainer asked about the filebut just
mailed the bug report and not the bug submitter.who then had no
chance to react.

As a consequence, this bug is opened since August 2007 and should
either be closed is noone can find a pt_BR.po file for
wifi-radaror completed with such file.

May you sort this out, Marcelo...or someone from the Brazilian l10n
team ?

In case, noone answers, I think that you can then close the bug,
Patrick.

Possible alternative: I can organize a translation update round. Even
if no pt_BR.po file comes, I can guarantee that other files will come
(fi, gl, ru at least).

-- 




signature.asc
Description: Digital signature


Bug#481504: patch proposal for mantis CSRF

2008-05-19 Thread Thijs Kinkhorst
On Monday 19 May 2008 07:48, Steffen Joeris wrote:
 Attached you'll find a complete patch for the mantis issue. I still need to
 investigate it a little further and test it.

The patch can be summarised as only allowing POST to things that change stuff. 
It's not entirely agreed upon that this can completely prevent cross site 
scripting, but it is a fact that it makes it many times more difficult. 
Hence, I think this is an acceptable patch without tearing the application 
apart.


cheers,
Thijs


pgpDTbp7MzcN0.pgp
Description: PGP signature


Bug#481874: update-ca-certificates should not disable local certs

2008-05-19 Thread Joey Schulze
Package: ca-certificates
Version: 20080514

After updating the spi-inc.org certificate that Debian uses my locally
added certificates have been disabled in /etc/ca-certificates.conf.
Naturally, this should not happen.  The package should maintain a
blacklist of certs to disable instead of disabling everything in
that configuration file that doesn't come from the package (or
whatever heuristics it currently uses).

Regards,

Joey

-- 
Never trust an operating system you don't have source for!

Please always Cc to me when replying to me on the lists.



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



Bug#454743: Debian Bug #454743 gpg should make ${SENDMAIL} configurable

2008-05-19 Thread Sven Hoexter
Hi,
I don't think this behaviour is a bug nor a very clever feature request.

What's happening is actually pretty normal. hostname -f or /etc/mailname
is picked up as the hostname value for the sender From: and probably
also for envelope From: and thus most receiving mailserver will reject
your mail because of the invalid sender domain part.

What you really need to solve this is a MTA that can rewrite your invalid
e-mail address with something legit. I'm too lazy to read the courier docs
but I can tell you that this feature is called sender_canonical_maps in the
Postfix world and I remember that sendmail has something similar aswell.

IMO this report can be closed.

Sven
-- 
If God passed a mic to me to speak
I'd say stay in bed, world
Sleep in peace
   [The Cardigans - 03:45: No sleep]



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



Bug#454917: Fixed :-)

2008-05-19 Thread Cyril Jaquier

Hi all,

The upgrade to console-common 0.7.77 finally fixed this issue for me :) 
No need to stay in front of my computer to press a key during bootup 
anymore ;)


Thanks,

Cyril Jaquier



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



Bug#481634: debtags: problem parsing continued Tag: fields

2008-05-19 Thread Enrico Zini
On Sat, May 17, 2008 at 05:15:39PM +0200, Filippo Giunchedi wrote:

 | Tag: use::monitoring, administration::monitoring, hardware::lcd, 
 role::sw:utility,
 |  interface::commandline, interface::daemon, made-of::lang:c
 the entry is indeed sane, but debtags has some problems parsing it:
 $ sudo debtags update
 separator character ends the line. Context: Parsing line 539007552
 $ tagcoll cat /var/lib/debtags/debtags-fetch-apt.tag
 [...]
 separator character ends the line. Context: Parsing line 0

Confirmed: it's the fault of /usr/share/debtags/fetch, which does not
handle continued fields properly.  It will be easy to fix, luckily.


Ciao,

Enrico

-- 
GPG key: 1024D/797EBFAB 2000-12-05 Enrico Zini [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#481724: [kdebase-workspace] krunner/startupid.cpp: undefined reference to `XcursorGetDefaultSize'

2008-05-19 Thread Sedat Dilek
Hi Fathi,

On Mon, May 19, 2008 at 9:12 AM, Fathi BOUDRA [EMAIL PROTECTED] wrote:
 My guess: you have build kdebase-workspace in a non-clean environment 
 (dpkg-buildpackage), and you have libxcursor-dev installed.
 It defines HAVE_XCURSOR and fails with undefined reference issue.

 I'm not able to reproduce your bug in a clean pbuilder environment as we 
 don't build depend on libxcursor-dev and so don't fail on your issue.

You are explaining this in two lines and I spent a half day try to fix
it and especially the research took a while (I am new to kde-dev).
I had success at 07:25h GMT+2 with my packages - by commenting the
line containing XcursorGetDefaultSize.

 the fix is easy,  startupid must link with xcursor when xcursor is used. It 
 will be fixed on next upload (after guessing verify).


I am not working in a pbuilder-environment (planned) and _have_
libxcursor-dev installed.
By-the-way, I compared the source with that from kde.org itself.
Checked out what the Debian-build modifies...

I think that the developer are not beware of the problem because it is
bypassed (no libxcursor-dev installed).

I am only guessing... for me the variable assignment is strange.

#ifdef HAVE_XCURSOR
// cursor_size = XcursorGetDefaultSize( QX11Info::display());
#endif

Again my tea is cold, Argh.
Find that brain-bug and ...

Regards,
Sedat

Excerpts from /usr/include/X11/Xcursor/Xcursor.h
...
define XCURSOR_BITMAP_HASH_SIZE16

void
XcursorImageHash (XImage*image,
  unsigned char hash[XCURSOR_BITMAP_HASH_SIZE]);

/*
 * Display information APIs
 */
XcursorBool
XcursorSupportsARGB (Display *dpy);

XcursorBool
XcursorSupportsAnim (Display *dpy);

XcursorBool
XcursorSetDefaultSize (Display *dpy, int size);

int
XcursorGetDefaultSize (Display *dpy);

XcursorBool
XcursorSetTheme (Display *dpy, const char *theme);

char *
XcursorGetTheme (Display *dpy);

XcursorBool
XcursorGetThemeCore (Display *dpy);

XcursorBool
XcursorSetThemeCore (Display *dpy, XcursorBool theme_core);

_XFUNCPROTOEND

#endif
...



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



Bug#481877: cgiemail: [INTL:vi] Vietnamese debconf templates translation update

2008-05-19 Thread Clytie Siddall

Package: cgiemail
Version: 1.6-32.1
Tags:  l10n patch
Severity: wishlist

The updated Vietnamese translation for the debconf file: cgiemail

translated and submitted by:

Clytie Siddall
Vietnamese Free-Software Translation Team
http://vnoss.net/dokuwiki/doku.php?id=projects:l10n

vi.po
Description: Binary data


Bug#454917: [Splashy-devel] Bug#454917: Fixed :-)

2008-05-19 Thread Sedat Dilek
Hi Cyril,

the patching as decribed on the tips-page of splashy-website is no
more needed for /etc/init.d/keymap.sh.
I OKed the maintainers version of console-common 0.7.77.
Sorry, forgot to send an Email to the list.
Take this as a confirmation ;-).

Regards,
Sedat

On Mon, May 19, 2008 at 9:29 AM, Cyril Jaquier [EMAIL PROTECTED] wrote:
 Hi all,

 The upgrade to console-common 0.7.77 finally fixed this issue for me :)
 No need to stay in front of my computer to press a key during bootup
 anymore ;)

 Thanks,

 Cyril Jaquier



 ___
 Splashy-devel mailing list
 [EMAIL PROTECTED]
 http://lists.alioth.debian.org/mailman/listinfo/splashy-devel




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



Bug#481457: closed by Loic Minier [EMAIL PROTECTED] (Bug#481457: fixed in pygtk 2.12.1-3)

2008-05-19 Thread Manuel Metz

Hi Loic,

*  believe me or not. But it's still not working correctly for me *

  First what the bugfix solved: now the interactive interface of 
matplotlib with ipython -pylab is working fine now. So this is solved 
(might to be related to #481480 !?)


  Now what is not working is any pygtk program, like this most 
simplistic code:



import gtk
win = gtk.Window(gtk.WINDOW_TOPLEVEL)
win.set_title(GTK Simple Test)
win.connect(delete-event, gtk.main_quit)
win.realize()
win.show_all()
gtk.main()


Please note that I also updated the glade package...

ii  python-gtk2   2.12.1-3
ii  python-glade2 2.12.1-3
ii  python-gobject2.14.1-6
ii  python2.5 2.5.2-5

Only manually switching back to python-gtk2 2.12.1-1 solves the problem

ii  python-gtk2   2.12.1-1

Manuel

Debian Bug Tracking System wrote:

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

#481457: python-gtk2: 2.12.1-2 breaks matplotlib and likely other apps as well

It has been closed by Loic Minier [EMAIL PROTECTED].

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Loic Minier [EMAIL 
PROTECTED] by
replying to this email.






Subject:
Bug#481457: fixed in pygtk 2.12.1-3
From:
Loic Minier [EMAIL PROTECTED]
Date:
Sat, 17 May 2008 21:47:09 +
To:
[EMAIL PROTECTED]

To:
[EMAIL PROTECTED]


Source: pygtk
Source-Version: 2.12.1-3

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

pygtk_2.12.1-3.diff.gz
  to pool/main/p/pygtk/pygtk_2.12.1-3.diff.gz
pygtk_2.12.1-3.dsc
  to pool/main/p/pygtk/pygtk_2.12.1-3.dsc
python-glade2_2.12.1-3_i386.deb
  to pool/main/p/pygtk/python-glade2_2.12.1-3_i386.deb
python-gtk2-dev_2.12.1-3_all.deb
  to pool/main/p/pygtk/python-gtk2-dev_2.12.1-3_all.deb
python-gtk2-doc_2.12.1-3_all.deb
  to pool/main/p/pygtk/python-gtk2-doc_2.12.1-3_all.deb
python-gtk2_2.12.1-3_i386.deb
  to pool/main/p/pygtk/python-gtk2_2.12.1-3_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loic Minier [EMAIL PROTECTED] (supplier of updated pygtk package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 May 2008 21:59:27 +0200
Source: pygtk
Binary: python-gtk2 python-gtk2-dev python-glade2 python-gtk2-doc
Architecture: source all i386
Version: 2.12.1-3
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 python-glade2 - GTK+ bindings: Glade support

 python-gtk2 - Python bindings for the GTK+ widget set
 python-gtk2-dev - GTK+ bindings: devel files
 python-gtk2-doc - Python bindings for the GTK+ widget set - documentation
Closes: 481457
Changes: 
 pygtk (2.12.1-3) unstable; urgency=low

 .
   * Bump Standards-Version to 3.7.3.
   * s/python/Python in description
   * Update 60_pygtk-wakeupfd-fix to use more ifdefs for python without the
 wakeupfd support; closes: #481457.
   * Build-dep and dep on python2.5-dev = 2.5.2-5 for wakeupfd support.
Checksums-Sha1: 
 c74f7d089cd7c8723454a589da370b139f252de5 1592 pygtk_2.12.1-3.dsc

 c6d6fd9e350e193e0a79bae1a8433bfb4c17e2df 13170 pygtk_2.12.1-3.diff.gz
 fdf836c2942f89ed51e03f385efe0d878d8e846a 206504 
python-gtk2-dev_2.12.1-3_all.deb
 914ce1f14bff351f7120706449c94231b839624d 1343358 
python-gtk2-doc_2.12.1-3_all.deb
 a18dcac30a7c98688af07eca3dafd122e659a9ec 1376482 python-gtk2_2.12.1-3_i386.deb
 b4e325212477de8a7913fbad15da7b1241a654ec 42682 python-glade2_2.12.1-3_i386.deb
Checksums-Sha256: 
 6a83fadc267f3ca4a3b3685ecf9bee8687c75c359918f0c5b69ff89a00069d50 1592 pygtk_2.12.1-3.dsc

 bf36f889e5183725a4ad68165c41843b121d9ea26fde9b0c27fc152cb5c19294 13170 
pygtk_2.12.1-3.diff.gz
 cbf141f6f5077ec83dceb7833fec3fc8b0946083d77cdcb3bfe45af2c9a60ddb 206504 
python-gtk2-dev_2.12.1-3_all.deb
 95162a08a6ab3636bb21984c74c84f1366ac466cfb2f7921f8504ff52001efd5 1343358 
python-gtk2-doc_2.12.1-3_all.deb
 5f20a8c3a086a0d252ecbc810b4100d955d3d5ec6b48bafdfd323e9bf9188481 1376482 
python-gtk2_2.12.1-3_i386.deb
 50052e894727b9ea6cfd9135e26772ce8c93491c387ec9b1b2c1ea1e35259005 42682 
python-glade2_2.12.1-3_i386.deb
Files: 
 a850ee6f5d6198466448d7a18d38e4d8 1592 python optional pygtk_2.12.1-3.dsc

 99b270397b310a0204b4935c5a41 

Bug#481875: linux-image-2.6.24-1-amd64 page allocation failure when under load

2008-05-19 Thread Alex Samad
Package: linux-image-2.6.24-1-amd64
Version: 2.6.24-5
Severity: normal

I seem to be getting a lot of swapper page allocation faults especially
when I am loading the network, 1G with 9k mtu. I am using forcedeth with
max_int_work set to 15

I have attached a sample from the syslog, not sure what else is need. I
started seeing this from 2.6.23 and up. Although it has become more
previlant now

Alex

-- Package-specific info:
** Version:
Linux version 2.6.24-1-amd64 (Debian 2.6.24-5) ([EMAIL PROTECTED]) (gcc version 
4.1.3 20080308 (prerelease) (Debian 4.1.2-21)) #1 SMP Thu Mar 27 16:52:38 UTC 
2008

** Command line:
root=/dev/md1 ro console=tty0 selinux=1 

** Tainted: PF (3)

** Kernel log:
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev dm-21, type ext3), uses xattr
Filesystem dm-24: Disabling barriers, not supported by the underlying device
XFS mounting filesystem dm-24
Ending clean XFS mount for filesystem: dm-24
SELinux: initialized (dev dm-24, type xfs), uses xattr
Filesystem dm-5: Disabling barriers, not supported by the underlying device
XFS mounting filesystem dm-5
Ending clean XFS mount for filesystem: dm-5
SELinux: initialized (dev dm-5, type xfs), uses xattr
kjournald starting.  Commit interval 5 seconds
EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
EXT3 FS on dm-15, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev dm-15, type ext3), uses xattr
kjournald starting.  Commit interval 5 seconds
EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
EXT3 FS on dm-8, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev dm-8, type ext3), uses xattr
Adding 1959800k swap on /dev/md2.  Priority:-1 extents:1 across:1959800k
ip_tables: (C) 2000-2006 Netfilter Core Team
nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
audit(1211063036.304:29): avc:  denied  { read write } for  pid=4158 
comm=modprobe path=socket:[12082] dev=sockfs ino=12082 
scontext=system_u:system_r:insmod_t:s0 tcontext=system_u:system_r:iptables_t:s0 
tclass=rawip_socket
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
ip6_tables: (C) 2000-2006 Netfilter Core Team
audit(1211063037.611:30): avc:  denied  { append } for  pid=2556 comm=ifup 
name=ifstate dev=md1 ino=586883 
scontext=system_u:system_r:udev_t:s0-s0:c0.c1023 
tcontext=system_u:object_r:etc_runtime_t:s0 tclass=file
audit(1211063038.460:31): avc:  denied  { search } for  pid=4366 
comm=rpc.statd name=sbin dev=md1 ino=1026145 
scontext=system_u:system_r:rpcd_t:s0 tcontext=system_u:object_r:bin_t:s0 
tclass=dir
audit(1211063038.460:32): avc:  denied  { execute } for  pid=4366 
comm=rpc.statd name=sm-notify dev=md1 ino=1026569 
scontext=system_u:system_r:rpcd_t:s0 tcontext=system_u:object_r:bin_t:s0 
tclass=file
audit(1211063038.460:33): avc:  denied  { read } for  pid=4366 comm=rpc.statd 
name=sm-notify dev=md1 ino=1026569 scontext=system_u:system_r:rpcd_t:s0 
tcontext=system_u:object_r:bin_t:s0 tclass=file
audit(1211063038.460:34): avc:  denied  { execute_no_trans } for  pid=4366 
comm=rpc.statd path=/sbin/sm-notify dev=md1 ino=1026569 
scontext=system_u:system_r:rpcd_t:s0 tcontext=system_u:object_r:bin_t:s0 
tclass=file
audit(1211063038.912:35): avc:  denied  { search } for  pid=4366 
comm=sm-notify scontext=system_u:system_r:rpcd_t:s0 
tcontext=system_u:object_r:sysctl_fs_t:s0 tclass=dir
audit(1211063041.015:36): avc:  denied  { read } for  pid=4676 comm=auditd 
name=audit dev=dm-1 ino=98305 scontext=system_u:system_r:auditd_t:s0 
tcontext=root:object_r:var_log_t:s0 tclass=dir
audit(1211063041.019:37): avc:  denied  { read append } for  pid=4676 
comm=auditd name=audit.log dev=dm-1 ino=98311 
scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:object_r:var_log_t:s0 
tclass=file
audit(1211063041.019:38): avc:  denied  { getattr } for  pid=4676 comm=auditd 
path=/var/log/audit/audit.log dev=dm-1 ino=98311 
scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:object_r:var_log_t:s0 
tclass=file
audit(1211063041.023:39): audit_pid=4677 old=0 by auid=4294967295 
subj=system_u:system_r:auditd_t:s0
lp0: using parport0 (interrupt-driven).
ppdev: user-space parallel port driver
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
Installing knfsd (copyright (C) 1996 [EMAIL PROTECTED]).
SELinux: initialized (dev nfsd, type nfsd), uses genfs_contexts
NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
NFSD: starting 90-second grace period
Bluetooth: L2CAP ver 2.9
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
[5610]: VMCI: Driver initialized.
[5610]: Module vmmon: registered with major=10 minor=165
[5610]: Module vmmon: initialized
/dev/vmnet: open called by PID 5636 (vmnet-bridge)
/dev/vmnet: hub 0 does not exist, allocating memory.
/dev/vmnet: 

Bug#481876: openssh: [INTL:vi] Vietnamese debconf templates translation update

2008-05-19 Thread Clytie Siddall

Package: openssh
Version: 1:4.7p1-9
Tags:  l10n patch
Severity: wishlist

The updated Vietnamese translation for the debconf file: openssh

(I'm copying this to you, Christian, because I'm not sure if I got the  
name right: if the number 1 is part of the name, then I'm worried the  
BTS won't filter this mail to that package.)


translated and submitted by:

Clytie Siddall
Vietnamese Free-Software Translation Team
http://vnoss.net/dokuwiki/doku.php?id=projects:l10n

vi.po
Description: Binary data


Bug#481854: tc filters undocumented

2008-05-19 Thread Josip Rodin
On Mon, May 19, 2008 at 08:29:12AM +0200, Andreas Henriksson wrote:
 tags 481854 etch
 fixed 481854 20070313-1
 thanks
 
 On m??n, 2008-05-19 at 02:28 +0200, Josip Rodin wrote:
  Package: iproute
  Version: 20061002-3
  
  Hi,
  
  tc-filters(8) is missing, even though it's referenced by tc(8). There were
  bugs filed about both issues before, and they are all closed, yet the
  situation is the same...
  
  Please fix this. TIA.
  
 
 This has already been fixed in the above mentioned version (and
 forwarded/merged upstream). kthxbye.

Pity it's broken in stable. Oh well.

-- 
 2. That which causes joy or happiness.



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



Bug#440344: tls_security

2008-05-19 Thread Niels Borne
Hi,

The test version of msmtp-1.4.14 was also useful to me.
Of course using 'tls_security lax' does not sound like a long term
solution but if you can not act on the server what else can you do ?
Thanks in any case since I was totally hopeless and now it is working
fine. So yes some people do care about this issue !

Niels


pgpHc8w6Qybue.pgp
Description: PGP signature


Bug#481469: [EMAIL PROTECTED]: Bug#481469: dovecot-common: mail_extra_groups deprecation not fixed very helpfully for me and probably most users]

2008-05-19 Thread Thijs Kinkhorst
severity 481469 minor
thanks

Hi Fabio,

Thanks for bringing this to our attention.

 I see that the upgrade which deprecates mail_extra_groups is regarded as
 having been fixed.   However, I don't think the fix is optimal for most of
 us.  I opted to use my old config file when upgrading as there was no clear
 warning not to do this,

There /is/ a clear warning not to do that, and it is in the advisory text. 
This is the place were updates to stable security and their consequences are 
announced.

Besides, in general in Debian users not accepting config file changes on 
upgrade are considered themselves responsible for fixing it up, and this is 
especially so in the case of a security upgrade when you as a user can expect 
that that change has not been made lightly.

It's a pity that the error warnings are not very clear, but that is a minor 
issue and not something appropriate to be changing in a security update. It 
also doesn't render the package unusable.

I'm marking the bug as minor. You can ask the stable release team if they're 
willing to accept an update for this, but it's out of the scope of the 
security team.


cheers,
Thijs


pgpt0yJD83srA.pgp
Description: PGP signature


Bug#481879: wish: upgrade to new upstream pydot-1.0.2

2008-05-19 Thread Kirill Smelkov
Package: python-pydot
Version: 0.9.10-2
Severity: wishlist

Please upgrade to upstream pydot-1.0.2, which was released 4 months ago.

Thanks beforehand.

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

Kernel: Linux 2.6.23.9-evo (PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-pydot depends on:
ii  graphviz  2.18-1+b1  rich set of graph drawing tools
ii  python-pyparsing  1.4.11-2   Python parsing module
ii  python-support0.7.7  automated rebuilding support for P

python-pydot recommends no packages.

-- no debconf information



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



Bug#481457: python-gtk2: 2.12.1-2 breaks matplotlib and likely other apps as well

2008-05-19 Thread Loïc Minier
On Sun, May 18, 2008, Dmitry Kurochkin wrote:
 I have upgraded to python-gtk2 2.12.1-3 and the problem is still
 there. Gajim hangs on startup unless started with /dev/null.

 I installed gajim, and it worked fine; I'm using python-gobject
 2.14.1-6, python2.5 2.5.2-5, and python-gtk2 2.12.1-3; whare your
 versions?

 Could you try moving your gajim profile away temporarily, and seeing
 whether it starts?

   Thanks,
-- 
Loïc Minier



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



Bug#481724: fixed in svn repo

2008-05-19 Thread Fathi BOUDRA
Fixed in our repo: Committed revision 10643.
http://svn.debian.org/wsvn/pkg-kde/branches/kde4/packages/kdebase-workspace/debian/?rev=10643sc=1

have a good tea ;)

cheers,

Fathi



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



Bug#400448: libnss-ldap: Certificate verification using tls_cacertdir causes long delay

2008-05-19 Thread Simon Josefsson
Mitar [EMAIL PROTECTED] writes:

 Hi!

 On Fri, May 16, 2008 at 10:52 AM, Simon Josefsson [EMAIL PROTECTED] wrote:
 Which means it has been solved in gnutls 2.3.3 or later.  Unfortunately,
 that isn't in debian yet, but once it is, could you test it?  Or if you
 can build gnutls from sources and try it.

 Oh. Great. But that was quite a long time ago. I do not have that
 system up anymore. Sorry.

 But at that time I recompiled with openssl and it worked. So I believe
 that it will work also now with gnutls.

Thanks for feedback.  Anyway, unless anyone else sees this problem, I
think we should consider it fixed by the latest versions, and close this
bug when the new release hits unstable.

/Simon



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



Bug#481880: radiance: enable -funroll-loops on arm again when gcc is fixed

2008-05-19 Thread Bernd Zeimetz
Package: radiance
Severity: minor
Version: 3R9-3

-funroll-loops is disabled on arm due to a gcc 4.3 segfault, see #476460
This bug is a reminder to enable it again when the gcc bug is fixed.

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



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



Bug#481469: [EMAIL PROTECTED]: Bug#481469: dovecot-common: mail_extra_groups deprecation not fixed very helpfully for me and probably most users]

2008-05-19 Thread Fabio Tranchitella
Hello Thijs,

* 2008-05-19 09:52, Thijs Kinkhorst wrote:
 There /is/ a clear warning not to do that, and it is in the advisory
 text.  This is the place were updates to stable security and their
 consequences are announced.
 
 ...
 
 I'm marking the bug as minor. You can ask the stable release team if they're 
 willing to accept an update for this, but it's out of the scope of the 
 security team.

Thanks for your detailed explanation, I'll ask the stable release team for
the inclusion of a fixed version with a better warning message.

Have a nice day,

-- 
Fabio Tranchitella http://www.kobold.it
Free Software Developer and Consultant http://www.tranchitella.it
_
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564



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



Bug#481552: swfdec-mozilla should recommend some gstreamer* packages

2008-05-19 Thread Christophe Mouilleron
On Sat, May 17, 2008 at 02:10:33AM +0200, Santiago Garcia Mantinan wrote:
  I think that the swfdec-mozilla should recommend these packages :
  - gstreamer0.10-plugins-ugly
  - gstreamer0.10-ffmpeg (or gstreamer0.10-ffmpeg-full)
 
 This is already done, as...
 
 swfdec-mozilla depends on libswfdec-0.6-90 and libswfdec-0.6-90 Recommends:
 gstreamer0.10-ffmpeg, gstreamer0.10-plugins-base,
 gstreamer0.10-plugins-ugly, hicolor-icon-theme
 
 So I don't see why swfdec-mozilla should recommend also that, or am I
 missing something here?
 
 Regards...
 -- 
 Manty/BestiaTester - http://manty.net

Oops, I am the one who missed something...

My apologies for the noise.

Christophe.



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



Bug#481881: Corrupt filesystem burning DVD

2008-05-19 Thread Stefan Frings
Subject: k3b: Corrupt filesystem burning DVD
Package: k3b
Version: 1.0.4-8
Severity: grave
Justification: renders package unusable

*** Please type your report below this line ***

When I burn files onto DVD, a corrupt filesystem gets created. Linux
can mount it properly, but Windows (Windows Me, XP and
Vista) opens a filemanager that shows an empty table of content.

Video DVD is also affected. I can playback the disk with any DVD player
but I cannot see the files on it when I use Windows.

I used the default settings of k3b for the filesystem options, which
creates an iso filesystem with Rock Ridge and Joliet enxtension.

I tried this with 3 different notebooks. Obviously the media type
(DVD-R, DVD+R, DVD+RW) does not matter. It does not seem to be
hardware related because all threee notebooks produce the same error.

The problem occures since an update april. All my other DVD's from
march and before
are ok. CD's are not affected. I assume that the problem is related
to wodim.

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

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

Versions of packages k3b depends on:
ii  cdparanoia   3.10+debian~pre0-6  audio extraction tool
for sampling
ii  cdrdao   1:1.2.2-7   records CDs in
Disk-At-Once (DAO)
ii  genisoimage  9:1.1.7.1-1 Creates ISO-9660 CD-ROM
filesystem
ii  k3b-data 1.0.4-8 A sophisticated KDE CD
burning app
ii  kdelibs-data 4:3.5.9.dfsg.1-2core shared data for
all KDE appli
ii  kdelibs4c2a  4:3.5.9.dfsg.1-2+b1 core libraries and
binaries for al
ii  libacl1  2.2.45-1Access control list
shared library
ii  libart-2.0-2 2.3.20-1Library of functions
for 2D graphi
ii  libattr1 1:2.4.41-1  Extended attribute
shared library
ii  libaudio21.9.1-2 Network Audio System -
shared libr
ii  libc62.7-10  GNU C Library: Shared
libraries
ii  libdbus-1-3  1.2.1-1 simple interprocess
messaging syst
ii  libdbus-qt-1-1c2 0.62.git.20060814-2 simple interprocess
messaging syst
ii  libdvdread3  0.9.7-8 library for reading DVDs
ii  libexpat11.95.8-4XML parsing C library -
runtime li
ii  libfam0  2.7.0-13.2  Client library to
control the FAM
ii  libfontconfig1   2.5.0-2 generic font
configuration library
ii  libfreetype6 2.3.5-1+b1  FreeType 2 font engine,
shared lib
ii  libgcc1  1:4.3.0-3   GCC support library
ii  libhal1  0.5.11~rc2-1Hardware Abstraction
Layer - share
ii  libice6  2:1.0.4-1   X11 Inter-Client
Exchange library
ii  libidn11 1.6-1   GNU libidn library,
implementation
ii  libjpeg626b-14   The Independent JPEG
Group's JPEG
ii  libk3b3  1.0.4-8 The KDE cd burning
application lib
ii  libmusicbrainz4c2a   2.1.5-2 Second generation
incarnation of t
ii  libpng12-0   1.2.15~beta5-3  PNG library - runtime
ii  libqt3-mt3:3.3.8b-5  Qt GUI Library
(Threaded runtime v
ii  libsm6   2:1.0.3-1+b1X11 Session Management
library
ii  libstdc++6   4.3.0-3 The GNU Standard C++
Library v3
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcursor1  1:1.1.9-1   X cursor management
library
ii  libxext6 2:1.0.4-1   X11 miscellaneous
extension librar
ii  libxft2  2.1.12-2FreeType-based font
drawing librar
ii  libxi6   2:1.1.3-1   X11 Input extension
library
ii  libxinerama1 2:1.0.3-1   X11 Xinerama extension
library
ii  libxrandr2   2:1.2.2-1   X11 RandR extension
library
ii  libxrender1  1:0.9.4-1   X Rendering Extension
client libra
ii  libxt6   1:1.0.5-3   X11 toolkit intrinsics
library
ii  wodim9:1.1.7.1-1 command line CD/DVD
writing tool
ii  zlib1g   1:1.2.3.3.dfsg-12   compression library -
runtime

Versions of packages k3b recommends:
ii  dvd+rw-tools 7.1-1   DVD+-RW/R tools
ii  kcontrol 4:3.5.9.dfsg.1-2+b1 control center for KDE
ii  kdebase-kio-plugins  4:3.5.9.dfsg.1-2+b1 core I/O slaves for KDE
ii  vcdimager0.7.23-4A VideoCD (VCD) image
mastering an

-- no debconf information




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



Bug#481875: linux-image-2.6.24-1-amd64 page allocation failure when under load

2008-05-19 Thread Bastian Blank
On Mon, May 19, 2008 at 05:36:49PM +1000, Alex Samad wrote:
 I seem to be getting a lot of swapper page allocation faults especially
 when I am loading the network, 1G with 9k mtu. I am using forcedeth with
 max_int_work set to 15

You need to reduce the taint flags to 0 until we intend to really look
at it. Aka no proprietary module and no forced module load. Also please
check with 2.6.25 from unstable.

 I have attached a sample from the syslog, not sure what else is need. I
 started seeing this from 2.6.23 and up. Although it has become more
 previlant now

It does not show any allocation failures.

 ata1: timeout waiting for ADMA IDLE, stat=0x440
 ata1.00: exception Emask 0x0 SAct 0x1 SErr 0x0 action 0x0
 ata1.00: CPB resp_flags 0x11: , CMD error
 ata1.00: cmd 61/08:00:82:37:1e/00:00:00:00:00/40 tag 0 ncq 4096 out
  res 41/04:08:82:37:1e/24:00:00:00:00/40 Emask 0x401 (device error) 
 F
 ata1.00: status: { DRDY ERR }
 ata1.00: error: { ABRT }
 ata1.00: configured for UDMA/133
 ata1: EH complete

Broken hardware?

Bastian

-- 
Earth -- mother of the most beautiful women in the universe.
-- Apollo, Who Mourns for Adonais? stardate 3468.1



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



Bug#481504: CVE-2008-2276: Cross-site request forgery (CSRF) vulnerability

2008-05-19 Thread Patrick Schoenfeld
Tags 481504 confirmed
thanks

Hi Steffen,

thanks for reporting this. I was wondering because you've written that
1.1.1 is vulnerable, which isn't in Debian, but it indeed affects 1.0.8
as well. I'm working on a package for 1.1.1 but as I'm waiting for
upstream (they planned to make a bugfix release) an upload will not
happen within the next few days. So I would appreciate a NMU.

I haven't looked deeper in your patch, but it seems reasonable.
I have forwarded it to the developers, because they are currently
or has been working on this issue recently and I wanted to hear their
opinion. Did you test your patch in a working install?

Best Regards,



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



Bug#481685: acpi-support: do not set APM mode in 90-hdparm.sh if running in a VMware guest

2008-05-19 Thread Bart Samwel

Lea Wiemann wrote:

Bart Samwel wrote:

The line:

  if hdparm -i $dev | grep -q 'AdvancedPM=yes' ; then

is supposed to filter out hard drives that can't handle it.


Apologies, I wasn't using sid, and that line wasn't in the previous 
version.  Now that I've upgraded my acpi-support package, it works fine.


Great!

One more thing though:  To avoid these messages (since my virtual SCSI 
drive and my USB drive don't support hdparm -i) ...


# /etc/acpi/start.d/90-hdparm.sh
 HDIO_GET_IDENTITY failed: Invalid argument
 HDIO_GET_IDENTITY failed: Invalid argument

... I'd suggest you apply the attached patch, which discards errors. 
Then everything works fine!


Consider that patch accepted then. :-)

Cheers,
Bart



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



Bug#481882: cgiemail: [INTL:ja] Updated Japanese debconf template translation

2008-05-19 Thread Hideki Yamane (Debian-JP)
Package: cgiemail
Version: 1.6-32.1
Severity: wishlist
Tags: patch l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear cgiemail maintainer,

 Here's updated Japanese po-debconf template (ja.po) file.
 Could you apply it, please?

- --
Regards,

 Hideki Yamane henrich @ debian.or.jp


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

iD8DBQFIMTj7Iu0hy8THJksRAkt5AJ4tae91W654mXaVtt6pAmP1PIXBDACfRKoq
8CXIgZOcK57AqtonbcU1R08=
=jHi0
-END PGP SIGNATURE-
#
#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: cgiemail 1.6-32.1\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-08 10:39+0200\n
PO-Revision-Date: 2008-05-19 16:54+0900\n
Last-Translator: Hideki Yamane [EMAIL PROTECTED]\n
Language-Team: Japanese [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../templates:1001
msgid Directory where you want to put the cgiemail's mail templates:
msgstr cgimail のメールテンプレートを配置するディレクトリ:

#. Type: string
#. Description
#: ../templates:1001
msgid 
In old versions of cgiemail, templates that were used for creating e-mails 
to be sent could be placed anywhere that would be served up by the web 
server.  This behaviour is a security vulnerability: an attacker can read 
files that he shouldn't be able to, such as scripts in cgi-bin, if they 
contain certain pieces of text.
msgstr 
cgiemail の以前のバージョンでは、送信されるメールの作成に使われるテンプレート
は、web サーバが使用するディレクトリならどこにでも配置できました。この挙動は
セキュリティ上の脆弱性となります: テンプレートがある種の文字列を含んでいた場
合、cgi-bin にあるスクリプトのような読めるべきではないファイルを攻撃者が読め
ることになります。

#. Type: string
#. Description
#: ../templates:1001
msgid 
If you enter nothing (that is, erase the default directory, leaving this 
empty), cgiemail will still work. This may be needed if you are, for 
instance, hosting web services, and cannot move all of your clients cgiemail 
templates to one directory.  Remember that this will LEAVE THE SECURITY HOLE 
OPEN, and is only a choice for backwards compatibility.
msgstr 
何も入力しない場合 (つまり、デフォルトのディレクトリを消去し、これを空のまま
にする場合)、それでも cgiemail は動作します。もし、例えばあなたがホスティング
サービスを行っており、クライアント全ての cgiemail テンプレートを一つのディレ
クトリに移動できない場合、これが必要となるかもしれません。これは「セキュリ
ティホールを放置している」のであり、単に後方互換性のための選択であるというこ
とに注意してください。

#. Type: string
#. Description
#: ../templates:1001
msgid 
To close the hole, enter a directory, which MUST be accessible by your web 
server.  Template files that you want to use should go there. For further 
instructions, please read the README.Debian and README files in /usr/share/
doc/cgiemail/.
msgstr 
この脆弱性を封じるには、ディレクトリ名を入力してください。これは web サーバか
らアクセス可能であることが「必要」です。使いたいテンプレートファイルは、ここ
に置かなければなりません。より詳細な説明については、/usr/share/doc/cgiemail/ 
の README.Debian と README ファイルを読んでください。



Bug#481485: Quick and dirty working bad ugly hack

2008-05-19 Thread Marco Amadori
Until we wait for a new packages, this works for 2.6.25-2 :

$ cd /usr/src
$ su
# grep  CONFIG_XEN modules/ -Rl | xargs -i 
sed -i -e 's/CONFIG_XEN/CONFIG_LUPO/g' {}
# IGNORE_XEN_PRESENCE=1 m-a -tO a-i nvidia -l 2.6.25-2-686

I know it is really ugly and little tested, but seems to work, at least on my 
system.

-- 
ESC:wq

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




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



Bug#481817: severity of 481817 is important

2008-05-19 Thread Paul Wise
# Automatically generated email from bts, devscripts version 2.10.27
# not a regression, therefore not RC
severity 481817 important




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



Bug#481860: openssh-server upgrade didn't remove all compromised keys from /etc/ssh

2008-05-19 Thread Vincent Lefevre
On 2008-05-19 07:26:29 +0100, Colin Watson wrote:
 On Mon, May 19, 2008 at 04:28:46AM +0200, Vincent Lefevre wrote:
  When I upgraded openssh-server, ssh_host_dsa_key has been replaced
  because it was compromised, but not ssh_host_rsa_key, but this one
  was compromised too!
 
 What does 'grep -i hostkey /etc/ssh/sshd_config' say?

vin:~ grep -i hostkey /etc/ssh/sshd_config
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



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



Bug#481807: ogv file recorded with recordmydesktop crashes mplayer

2008-05-19 Thread A Mennucc
On Sun, May 18, 2008 at 07:21:36PM +0200, Nico Golde wrote:
 http://nion.modprobe.de/mplayer-crash.ogv crashes my mplayer 
 installation.

Instead
$ mplayer -vo x11 -xy 0.1 mplayer-crash.ogv 
works. The problem is that the image is too big for XV to reproduce,
or even allocate. Of course, mplayer should not crash afterwards.

a.



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



Bug#481457: python-gtk2: 2.12.1-2 breaks matplotlib and likely other apps as well

2008-05-19 Thread Dmitry Kurochkin
On Mon, May 19, 2008 at 11:37 AM, Loïc Minier [EMAIL PROTECTED] wrote:
 On Sun, May 18, 2008, Dmitry Kurochkin wrote:
 I have upgraded to python-gtk2 2.12.1-3 and the problem is still
 there. Gajim hangs on startup unless started with /dev/null.

  I installed gajim, and it worked fine; I'm using python-gobject
  2.14.1-6, python2.5 2.5.2-5, and python-gtk2 2.12.1-3; whare your
  versions?

python-gobject   2.14.1-6
python2.52.5.2-5
python-gtk2  2.12.1-3


  Could you try moving your gajim profile away temporarily, and seeing
  whether it starts?

Does not help. strace shows it reads from stdin.

Regards,
  Dmitry


   Thanks,
 --
 Loïc Minier




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



Bug#472629: linux-2.6: please increase the default RLIMIT_MEMLOCK

2008-05-19 Thread Josselin Mouette
reassign 472629 libpam-modules
thanks

Le mardi 25 mars 2008 à 13:33 +0100, Josselin Mouette a écrit :
 Currently, the default value for RLIMIT_MEMLOCK (defined in
 include/linux/resource.h) is 32 KiB, because this value is enough for
 GnuPG.
 
 However this value is not enough for gnome-keyring-daemon, which will
 store both SSH and GnuPG keys, plus user passwords for various kinds of
 resources. Upstream authors recommend to provide a limit of at least 256
 KiB for RLIMIT_MEMLOCK for the keys to remain securely in memory.
 
 Given the amount of memory in current machines, I think 256 KiB is still
 a very reasonable value. Could you please increase the default in the
 kernel?

Looking at the reactions on the LKML, it looks like the kernel
developers will sooner or later remove this limitation in a way that
forces distributors to set it in userspace, so we’re better off starting
to do it right now.

Which leaves pam_limits.so and its configuration
file /etc/security/limits.conf.

Steve, would you agree to start setting this default in the PAM package?

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


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


Bug#481853: [Secure-testing-team] Bug#481853: [openssh-client] ssh-vulnkey -a does not see the weak keys of the user

2008-05-19 Thread Dominic Hargreaves
On Mon, May 19, 2008 at 01:03:45AM +0100, David wrote:

 I have the packages openssh-blacklist and openssh-blacklist-extra installed.
 
 
 If I run ssh-vulnkey -a I get no output, either by running it as user or
 as root.
 
 Nevertheless:
 
 # perl dowkd.pl user
 /home/username/.ssh/known_hosts:1: weak key (OpenSSH/rsa/2048)
 /home/username/.ssh/known_hosts:2: weak key (OpenSSH/rsa/2048)
 summary: keys found: 2, weak keys: 2
 
 I am deleting the file /home/username/.ssh/known_hosts right now, so I am
 afraid it will not be available for debugging :-(

Deleting a known_hosts file containing weak keys will not gain you any
security (rather, it'll lose you security unless you rigourously check
all the fingerprints of the host keys that used to be stored there).
You (or the system administrator of the remote machine in question)
need to regenerate the host keys on the remote machine.

I wouldn't expect ssh-vulnkey to tell me about such keys.

Dominic.

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



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



Bug#278647: closed by Ivan Kohler [EMAIL PROTECTED] (Bug#278647: fixed in libnet-ssh-perl 0.09-1)

2008-05-19 Thread Gerfried Fuchs
reopen 278647 -
thanks

On Mon, May 19, 2008 at 06:50:57AM +, Debian Bug Tracking System wrote:
* Better description (closes: Bug#278647).

 Let's take a look at the new description:

#v+
This perl module provides simple wrappers around the ssh command.
#v-

 Personally this doesn't look too different from the one before:

#v+
Simple wrappers around ssh commands.
#v-

 Please be more verbose, like I requested in the original report:

, quote 
|  Pretty please make the long description more descriptive. E.g. what ssh
| commands are wrapped around with it? A just one line long description
| isn't really helpful in most of the cases, and I don't think it is here.
` quote 

 What can one do with this package? Is it just to log in to a remote
machine, does it also offer the port forwarding and similar means,
whatever? I still don't consider this single line helpful in here,
sorry.

 Thanks in advance,
Rhonda



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



Bug#481739: xserver-xorg-video-savage: Transparency problem with OpenGL in xscreensaver and some 3D games

2008-05-19 Thread Marc GASNOT
My system (thinkpad t23) have been affected by this bug for a very long 
time. It worked correctly with xorg before 7.0 or 7.1, then a kernel 
module bug appeared making DRI unusable. When a workaround was found, I 
had this bug but another one crashed x11 when certain apps tried to 
change screen res. I didn't send a bug report before because I have 
little technical knowledge and very poor english. I thought that someone 
else having the same problem would be able to do it sometime...


I don't know how to test mesa because it worked with the version used in 
sarge or in testing within the three month following sarge stable release.


If you have some hints to try to isolate it anyway, I'll try to do what 
I can...



Brice Goglin a écrit :


Do you know when this bug appeared? Did this ever work fine earlier?

It could be a bug in mesa. Can you try downgrading libgl1-mesa-dri and
see whether the bug disappears?

Brice









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



Bug#481860: openssh-server upgrade didn't remove all compromised keys from /etc/ssh

2008-05-19 Thread Vincent Lefevre
On 2008-05-19 10:35:58 +0200, Vincent Lefevre wrote:
 On 2008-05-19 07:26:29 +0100, Colin Watson wrote:
  On Mon, May 19, 2008 at 04:28:46AM +0200, Vincent Lefevre wrote:
   When I upgraded openssh-server, ssh_host_dsa_key has been replaced
   because it was compromised, but not ssh_host_rsa_key, but this one
   was compromised too!
  
  What does 'grep -i hostkey /etc/ssh/sshd_config' say?
 
 vin:~ grep -i hostkey /etc/ssh/sshd_config
 # HostKeys for protocol version 2
 HostKey /etc/ssh/ssh_host_rsa_key
 HostKey /etc/ssh/ssh_host_dsa_key

On another Debian machihe, I can see that ssh-vulnkey outputs
Unknown (no blacklist information) for the RSA key, probably
because openssh-blacklist-extra isn't installed on this machine.

The description field of openssh-blacklist-extra says:
list of non-default blacklisted OpenSSH RSA and DSA keys

I wonder why non-default, because all these keys were generated
automatically when Debian was installed.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



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



Bug#479580: Can't reproduce bug

2008-05-19 Thread Martín Ferrari
Hi David,

I'm having trouble reproducing this bug. If I wipe all the metadata
from a flac file with metaflac --remove-all, I don't get any
segmentation fault. But I wasn't able to just delete the vendor tag
with metaflac; maybe you can produce the correct command line for
doing that.

Also, please use the current package from Debian; the version showed
in the bug report indicates a custom-built package.

Thanks, Tincho.

--
Martín Ferrari



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



Bug#481082: Removal of crypt++el

2008-05-19 Thread Christoph Martin
Hi,

The package crypt++el was removed from the archive without talking to
the maintainer. He was just in the process of preparing fixes and making
a new update. The bugreport against ftp.debian.org arrived Mon, 14 Jan
2008 11:00:34 +0100 and the package was removed only some hours later
Mon, 14 Jan 2008 21:51:54 +.

I was the former maintainer of this package and use it extensively. So
when came aware of the removal I contacted the maintainer and he told me
all about it and that he just had not the energy to pursue the matter.

I am really astonished the ftpmaster removes a package on such a short
notice and without talking to the maintainer.

Please reinstall the falsely removed package. We try to get the
outstanding issues resolved as soon as possible.

Christoph

PS: I filed an ITP to get it back into Debian too (481082). But it
should be really just reinstalled.

-- 

Christoph Martin, Leiter der EDV der Verwaltung, Uni-Mainz, Germany
 Internet-Mail:  [EMAIL PROTECTED]
  Telefon: +49-6131-3926337
  Fax: +49-6131-3922856



signature.asc
Description: OpenPGP digital signature


Bug#481881: Correction

2008-05-19 Thread Stefan Frings
I need to correct that data DVD are only affected if I select Large
Files which creates an UDF filesystem. The combination
ISO+Joliet+RockRidget is not affected.

In case of Video DVD, k3b does not allow me to select a filesystem.



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



Bug#480552: A Business Proposal For You

2008-05-19 Thread Mr Ken Jonathan




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



Bug#474409: FTBFS: error: 'system' was not declared in this scope

2008-05-19 Thread Colin Tuckley
I've sorted this and will be NMU'ing it later today to delayed 2

patch attached

-- 
Colin Tuckley  |  +44(0)1903 236872  |  PGP/GnuPG Key Id
Debian Developer   |  +44(0)7799 143369  | 0x1B3045CE

Any sufficiently advanced technology is indistinguishable from magic. -
Arthur C. Clarke
diff -u ttfm-0.1/debian/changelog ttfm-0.1/debian/changelog
--- ttfm-0.1/debian/changelog
+++ ttfm-0.1/debian/changelog
@@ -1,3 +1,10 @@
+ttfm (0.1-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS: 'system' was not declared (Closes: #474409).
+
+ -- Colin Tuckley [EMAIL PROTECTED]  Mon, 19 May 2008 10:06:55 +0100
+
 ttfm (0.1-1) unstable; urgency=low
 
   * Initial release (Closes: #439565)
only in patch2:
unchanged:
--- ttfm-0.1.orig/time-traveler/bookmark_form.ui.h
+++ ttfm-0.1/time-traveler/bookmark_form.ui.h
@@ -30,6 +30,7 @@
 #include qapplication.h
 #include qfileinfo.h
 #include qptrstack.h 
+#include stdlib.h
 #include stdio.h
 
 #ifdef TTFS_DEBUG


Bug#481739: xserver-xorg-video-savage: Transparency problem with OpenGL in xscreensaver and some 3D games

2008-05-19 Thread Brice Goglin
Marc GASNOT wrote:
 My system (thinkpad t23) have been affected by this bug for a very
 long time. It worked correctly with xorg before 7.0 or 7.1, then a
 kernel module bug appeared making DRI unusable. When a workaround was
 found, I had this bug but another one crashed x11 when certain apps
 tried to change screen res. I didn't send a bug report before because
 I have little technical knowledge and very poor english. I thought
 that someone else having the same problem would be able to do it
 sometime...

 I don't know how to test mesa because it worked with the version used
 in sarge or in testing within the three month following sarge stable
 release.


You can add:
deb http://snapshot.debian.net/archive pool mesa
to your /etc/apt/sources.list

Then run apt-get update. At this point, apt-cache policy libgl1-mesa-dri
will show you a lot of available versions. You can install one with
apt-get install libgl1-mesa-dri=6.5.1-0.6

6.5.1-0.6 is the one from Etch. If you can find the first buggy version,
that would help us a lot.

Don't forget to remove the new line in /etc/apt/sources.list after
testing all this.

Brice




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



Bug#481807: ogv file recorded with recordmydesktop crashes mplayer

2008-05-19 Thread A Mennucc
On Sun, May 18, 2008 at 07:21:36PM +0200, Nico Golde wrote:
 Package: mplayer
 Version: 1.0~rc2-12
 Severity: normal
 
 Hi,
 http://nion.modprobe.de/mplayer-crash.ogv crashes my mplayer 
 installation.
 
 Using mplayer-dbg I get no reliable backtrace

I could get this

#0  0x005a4dbe in demux_ogg_add_packet (ds=0xe67af0, os=0xe7afa8, id=1, 
pack=0x7fff00d6b150) at demux_ogg.c:463
#1  0x005a5f92 in demux_ogg_fill_buffer (d=0xe685a0, dsds=value 
optimized out) at demux_ogg.c:1225
#2  0x005598a8 in ds_fill_buffer (ds=0xe679d0) at demuxer.c:423
#3  0x00559f45 in ds_get_packet_pts (ds=0xe679d0, start=0x7fff00d6b228, 
pts=0x7fff00d6b220) at demuxer.c:550
#4  0x005397c1 in decode_audio (sh_audio=0xe69e60, buf=0x2ac0b2a09010 
, minlen=1, maxlen=257536) at ad_ffmpeg.c:158
#5  0x005399c1 in init (sh_audio=0xe69e60) at ad_ffmpeg.c:112
#6  0x004fe6cf in init_audio_codec (sh_audio=0xe69e60) at dec_audio.c:93
#7  0x004fea75 in init_audio (sh_audio=0xe69e60, codecname=0x0, 
afm=0x0, status=1) at dec_audio.c:195
#8  0x004fec32 in init_best_audio_codec (sh_audio=0xe69e60, 
audio_codec_list=0x7fff00d6b340, audio_fm_list=0x0)
at dec_audio.c:238
#9  0x0046315a in reinit_audio_chain () at mplayer.c:1485
#10 0x00464f73 in main (argc=value optimized out, argv=value 
optimized out) at mplayer.c:3274

a.



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



Bug#481886: iceweasel: Celcius sign is displayed as micro sign in browser window.

2008-05-19 Thread Jonathan David Amery
Package: iceweasel
Version: 2.0.0.14-0etch1
Severity: normal

Hi!

 When viewing http://www.bbc.co.uk/weather/5day.shtml?id=1418 (and other
pages in the past that I don't have the URLs for at the moment) the
degree signs are replaced by micro signs.

 A clipped screenshot of this is available here:
  http://www.ysolde.ucam.org/~jdamery/bts/micro-celcius.png

 The degree sign displays correctly in the View Source window:
  http://www.ysolde.ucam.org/~jdamery/bts/micro-celcius-source.png

 My font settings are like this:
  http://www.ysolde.ucam.org/~jdamery/bts/micro-celcius-fonts.png

 however the bug still occurs in safe-mode with PANGO disabled, so I
don't think it's purely a font settings-related issue.

 I shall attatch a bugzilla bug number to this bug report as soon as I
have one.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages iceweasel depends on:
ii  debianutils2.17  Miscellaneous utilities specific t
ii  fontconfig 2.4.2-1.2 generic font configuration library
ii  libatk1.0-01.12.4-3  The ATK accessibility toolkit
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4.1+etch1   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libfreetype6   2.2.1-5+etch2 FreeType 2 font engine, shared lib
ii  libgcc11:4.1.1-21GCC support library
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-7  The GTK+ graphical user interface
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG
ii  libmyspell3c2  1:3.1-18  MySpell spellchecking library
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxp6 1:1.0.0.xsf1-1X Printing Extension (Xprint) clie
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  psmisc 22.3-1Utilities that use the proc filesy
ii  zlib1g 1:1.2.3-13compression library - runtime

iceweasel recommends no packages.

-- no debconf information



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



Bug#481082: ITP: crypt++el -- Emacs-Lisp Code for handling compressed and encrypted files

2008-05-19 Thread Christoph Martin
Hi Mario,

Mario Lang schrieb:
 Christoph Martin [EMAIL PROTECTED] writes:
 
 Just for reference, I've dropped it since someone requested[1] and had
 a removal granted from the archive without letting me know at all.
 I was just about to do a new upload to fix some of the
 open bugs and especially get the debmake stuff resolved.  I saw it removed
 after the fact, and simply dropped it then due to lack of energy to persue the
 matter.
 
 Thanks for taking it over again, I've used it in the past and it has done
 a good job.

I try to get it back into the archive. Because I think the way it was
removed was no ok. Can you please send me your fixes you wanted to apply?

Thanks
Christoph

-- 

Christoph Martin, Leiter der EDV der Verwaltung, Uni-Mainz, Germany
 Internet-Mail:  [EMAIL PROTECTED]
  Telefon: +49-6131-3926337
  Fax: +49-6131-3922856



signature.asc
Description: OpenPGP digital signature


Bug#295526: libpam-unix2 only works as root

2008-05-19 Thread Steve Kemp
On Fri May 16, 2008 at 17:24:43 -0700, Ivan Kohler wrote:

 Please ask if members of the Security Audit project could review the 
 setuid program in the bugreport and Cc: [EMAIL PROTECTED] with any 
 findings or discussion.  (As this is a non-Debian mailing list requiring 
 subscription to post, I am unable to simply Cc: the list on the 
 bugreport as I would when asking a typical group to participate.)

  I saw no problems, and wouldn't object to the submitted attachment
 being a setuid binary.

Steve
-- 
# The Debian Security Audit Project.
http://www.debian.org/security/audit




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



Bug#481082: ITP: crypt++el -- Emacs-Lisp Code for handling compressed and encrypted files

2008-05-19 Thread Christoph Martin
Hi Daiki,

Daiki Ueno schrieb:
 Hi,
 
 In [EMAIL PROTECTED] 
  Christoph Martin [EMAIL PROTECTED] wrote:
 I intend to reintroduce crypt++el into Debian because I think we still
 need it. The mentioned alternatives jka-compr and easypg do not provide
 all the features which crypt++.el provides.
 
 I'm a bit curious about what features are missing in jka-compr and
 easypg, but present in crypt++.el.  EasyPG is now a part of development
 version of Emacs (version 23), and I'd love to improve it.

crypt++.el has a lot of predefined file extensions which jka-compr
misses. I did not check all the features of crypt++.el but I did not
find a way to open a .tar.gz.

In jka-compr I only found configuration for gzip compression.

crypt++ has compress, gzip, bzip, bzip2, freeze, compact, dos-unix
conversion, mac-unix conversion
crypt++ has crypt, des, des-ecb, pgp, pgp-pub, gpg, mcrypt, rc4.

crypt++ can use recursively the packer functions of emacs like tar and
zip mode together with dired.

If a package wants to replace crypt++el all these functions should work
out of the box without first having to be configured by the user.

If you tell me how all this will work with jka-compr and easypg I will
be more than happy.

Christoph

-- 

Christoph Martin, Leiter der EDV der Verwaltung, Uni-Mainz, Germany
 Internet-Mail:  [EMAIL PROTECTED]
  Telefon: +49-6131-3926337
  Fax: +49-6131-3922856



signature.asc
Description: OpenPGP digital signature


Bug#481885: Fixed (madwifi-source: can't build with linux-image-2.6.25-2-686)

2008-05-19 Thread Gijs Hillenius
Please ignore this bug report.

I reported this bug on madwifi-source, because it would not build on
linux-iamage-2.6.25-2-686. Well, I'm an oof. 

It would not build, because the madwifi package was deleted by me,
earlier. Aptitude reinstall madwifi-source fixed it.

oops.

My apologies,


Gijs

-- 
Marge: Hello, I'm Marge Simpson, and this is my husband, Homer.
  Jay: Oh, nice to meet you, Marge.  I saw your hair from the plane.
   And you must be the man who didn't know if he had a pimple or a
   boil.
Homer: It was a gummi bear.
-- An easy mistake to make, A Star is Burns



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



Bug#481884: libc-client2002edebian: kerberos_server_valid locks prevents changes of /etc/krb5.keytab

2008-05-19 Thread Soenke Schwardt
Package: libc-client2002edebian
Version: 7:2002edebian1-13.1
Severity: important
Tags: patch

Hi!

The function kerberos_server_valid() does not release some of the kerberos 
structures after 
checking /etc/krb5.keytab and therefore the lib keeps an open file handle to 
/etc/krb5.keytab. 
Kerberos tools like kadmin or ktutil are unable to gain a F_WRLCK unless 
another process has 
still an open file handle.
In the current case libc-client2002edebian is used by php5-imap. So if theres a 
running apache 
process that includes php5 with enabled imap support, changes to 
/etc/krb5.keytab are impossible.

 Soenke

-- System Information:
Debian Release: 4.0
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
--- uw-imap-2002edebian1.ORIGINAL/src/osdep/unix/kerb_mit.c	2003-03-05 06:05:24.0 +0100
+++ uw-imap-2002edebian1/src/osdep/unix/kerb_mit.c	2008-05-16 16:24:07.0 +0200
@@ -42,7 +42,10 @@
 /* get default keytab */
 if (!krb5_kt_default (ctx,kt)) {
 /* can do server if have good keytab */
-  if (!krb5_kt_start_seq_get (ctx,kt,csr)) ret = LONGT;
+  if (!krb5_kt_start_seq_get (ctx,kt,csr)) {
+		ret = LONGT;
+		krb5_kt_end_seq_get (ctx,kt,csr);
+	  }
   krb5_kt_close (ctx,kt);	/* finished with keytab */
 }
 krb5_free_context (ctx);	/* finished with context */


Bug#481856: claws-mail: Segmentation fault when verifying a GPG signature

2008-05-19 Thread Ricardo Mones
Hi,

On Mon, May 19, 2008 at 2:54 AM, Nelson A. de Oliveira
[EMAIL PROTECTED] wrote:
 Package: claws-mail
 Version: 3.4.0-2
 Severity: important

 Hi!

 I don't know if it applies to claws-mail or claws-mail-pgpmime, but I am
 getting the attached gdb backtrace, when trying to verify a GPG
 signature (the package was compiled with noopt and nostrip).

 Is something else that I can do to help, please?

Can you reproduce the crash while running without pt_BR language?
Run LANGUAGE=C LANG=C claws-mail without the quotes, of course :)
and post the backtrace too, if it crashes.

thanks in advance,
-- 
Ricardo Mones.
~
Never send a human to do a machine's job. -- Agent Smith



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



Bug#481883: slightly wrong example in python-pyparsing description

2008-05-19 Thread Kirill Smelkov
Package: python-pyparsing
Version: 1.4.11-2
Severity: minor

There is a slightly wrong example in the description:

  from parsing import Word, alphas
  ...

But the right imports would be

  from pyparsing import Word, alphas


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

Kernel: Linux 2.6.23.9-evo (PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-pyparsing depends on:
ii  python-support0.7.7  automated rebuilding support for P

python-pyparsing recommends no packages.

-- no debconf information



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



Bug#481887: evince: text selecting/highlighting issues

2008-05-19 Thread Karl Chen
Package: evince
Version: 2.20.2-1+b1
Severity: minor


Sample 1:

This PDF: 
http://www.tim-taylor.com/papers/thesis/thesis.pdf [5 MB]

renders fine with Evince.  However, when I select text with
the mouse, I see gibberish text in the highlighted region,
in a different font (some kind of sans serif).  The
gibberish seems to be the original text where each
character's encoding value is 2 less than it should be,
e.g. Copy shows up as Anmw, with each character
positioned where the original was, so that a lot of
characters overlap each other since the font and characters
are different.  This occurs when selecting text of any font
in this document.

With most PDFs I get the expected behavior of the same text
being rendered, in the same font.

Except for ff/fi ligatures, pdftotext converts the text
portions of the PDF fine, and in Evince despite the
gibberish appearing on screen, the selected text copies to
clipboard fine (both PRIMARY upon select and CLIPBOARD upon
Ctrl+C).  Acrobat Reader 8 works fine when selecting text in
this PDF (also except ligatures).

Pdfinfo output:
 
Title:  main.dvi
Creator:dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software
Producer:   Acrobat Distiller Daemon 3.01 for Solaris 2.3 and later 
(SPARC)
CreationDate:   Wed Aug 25 10:36:44 1999
Tagged: no
Pages:  317
Encrypted:  no
Page size:  595 x 842 pts (A4)
File size:  5344024 bytes
Optimized:  no
PDF version:1.2


Sample 2:

I also discovered in /usr/share/X11/doc/fonts/fonts.pdf
(found in Debian package xorg-docs), that selecting works as
expected, except when highlighting Courier-font XML text.
The XML tag name and first word after tags (i.e. matching
perl regexp /(?=[])\w+?(?=[]|$)/) disappears (as if
highlighting spaces) but the rest highlights fine;
everything copies to clipboard fine.  This is a modern
PDF-1.4 output by pdflatex.  This might be unrelated to the
issue above; could file a separate bugreport if that's
better.


These issues occurred identically on three different Debian
machines.


-- System Information:
Debian Release: lenny/sid
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'testing'), (500, 'stable'), (60, 
'unstable'), (40, 'experimental')
Architecture: i386 (i686)

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

Versions of packages evince depends on:
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  ghostscript-x [gs-esp] 8.62.dfsg.1-2 The GPL Ghostscript PostScript/PDF
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  libart-2.0-2   2.3.20-1  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-2simple interprocess messaging syst
ii  libdjvulibre21 3.5.20-6  Runtime support for the DjVu image
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgnome-keyring0  2.22.1-1  GNOME keyring services library
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libkpathsea4   2007.dfsg.1-2 TeX Live: path search library for 
ii  libnautilus-extension1 2.20.0-3  libraries for nautilus components 
ii  liborbit2  1:2.14.12-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libpoppler-glib2   0.6.4-1   PDF rendering library (GLib-based 
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstdc++6 4.3.0-3   The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-8   Tag 

Bug#465336: closed by Eduard Bloch [EMAIL PROTECTED] (Bug#465336: fixed in encfs 1.4.2-1)

2008-05-19 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

Am Mo den 19. Mai 2008 um  9:18 schrieb Debian Bug Tracking System:
 We believe that the bug you reported is fixed in the latest version of
 encfs, which is due to be installed in the Debian FTP archive:

No. It is not solved completely or a new build bug is introduced.

- --- build log ---
...

Now at patch gcc_fixes
touch debian/stamp-patched
dh_testdir
# Add here commands to configure the package.
CFLAGS=-Wall -g -O2 LDFLAGS=-Wl,--as-needed -lpthread 
-lboost_serialization-gcc42-1_34_1 ./configure --build=i486-linux-gnu 
--prefix=/usr --mandir=\${pr
efix}/share/man --infodir=\${prefix}/share/info
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for g++... g++
checking for C++ compiler default output file name... 
configure: error: C++ compiler cannot create executables
See `config.log' for more details.
make: *** [config.status] Error 77
- --- build log ---

- --- config.log ---
...
configure:2619: $? = 0
configure:2626: g++ -v 5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v 
--enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr 
--enable-shared --with-system-zlib --libexecdir=/u
sr/lib --without-included-gettext --enable-threads=posix --enable-nls 
--program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-de
bug --enable-mpfr --with-tune=i686 --enable-checking=release i486-linux-gnu
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
configure:2629: $? = 0
configure:2636: g++ -V 5
g++: '-V' option must have argument
configure:2639: $? = 1
configure:2662: checking for C++ compiler default output file name
configure:2689: g++   -Wl,--as-needed -lpthread 
-lboost_serialization-gcc42-1_34_1 conftest.cpp  5
/usr/bin/ld: cannot find -lboost_serialization-gcc42-1_34_1
collect2: ld returned 1 exit status
configure:2692: $? = 1
configure:2730: result: 
configure: failed program was:
...
- --- config.log ---

Gruß
   Klaus
- -- 
Klaus Ethgenhttp://www.ethgen.de/
pub  2048R/D1A4EDE5 2000-02-26 Klaus Ethgen [EMAIL PROTECTED]
Fingerprint: D7 67 71 C4 99 A6 D4 FE  EA 40 30 57 3C 88 26 2B
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iQEVAwUBSDFOqp+OKpjRpO3lAQJrhQf/WuHhBH/1THV2/o+Ops/ebCa84RzuZC1i
2db5mjdQ+J9nNRwq7a1BzbXSx38cAT9cwdraTfe2fpvNOLs2XgPFbTUIAkmg5VVG
5PrOU1J4c/1uqMbOum3/ue+XQsEACZpiUY0DEgFmOUFC56V4gXm3mqWQ9T5DAQGS
bUwPJiLy9IcKJjLHPgKN8KMw+NXaP9+sdq1E178M1QDefnt7DEGnKkC56A/pdDEz
IpNjDxghEnyxUXRbBceAnz6oAwyHTyWkbUZW72UJ2+PJqf6fnr4md+IzeHMfznKk
yXylnq8kEYWPHjHppJEY5CZjgsFhp1zWFi4CLgnEF+uEpFIa+8pKSQ==
=FyPa
-END PGP SIGNATURE-



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



Bug#481885: madwifi-source: can't build with linux-image-2.6.25-2-686

2008-05-19 Thread Gijs Hillenius
Package: madwifi-source
Version: 1:0.9.4~rc2-1
Severity: important
Justification: fails to build from source

m-a a-i madwifi fails. the log in /var/cache/modass/ is basically empty, 
apart from the build log starting line and the date. 



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

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

Versions of packages madwifi-source depends on:
ii  bzip2 1.0.5-0.1  high-quality block-sorting file co
ii  debhelper 7.0.8  helper programs for debian/rules
ii  module-assistant  0.10.11.0  tool to make module package creati

madwifi-source recommends no packages.

-- no debconf information



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



Bug#481886: Bugzilla bug report

2008-05-19 Thread Jonathan David Amery
The bugzilla bug report is at:
  https://bugzilla.mozilla.org/show_bug.cgi?id=434467

J.



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



Bug#481888: acpi-support: please depend on kbd|console-tools

2008-05-19 Thread Marc Haber
Package: acpi-support
Version: 0.109-1
Severity: wishlist

Hi,

a few months ago, the signs found in a discussion on debian-devel are
that console-tools is going to be replaced by kbd (again) in the near
future. Also, the installer prefers kbd in the initial installation.

Please consider depending on kbd | console-tools to avoid kbd being
replaced by console-tools during an acpi-support upgrade. kbd contains
an fgconsole binary as well.

If kbd does not satisfy acpi-support's needs, please consider adapting
acpi-support so that it can work with kbd, or relax the dependency to
a recommends (I have never missed any functionality in acpi-support
while having acpi-support installed with kbd).

Greetings
Marc

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

Kernel: Linux 2.6.25.4-scyw00225 (PREEMPT)
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 acpi-support depends on:
ii  acpi-support-base 0.109-1scripts for handling base ACPI eve
ii  acpid 1.0.6-5.1  Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-12user information lookup program
ii  hdparm8.6-1  tune hard disk parameters for high
ii  laptop-detect 0.13.6 attempt to detect a laptop
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  lsb-base  3.2-12 Linux Standard Base 3.2 init scrip
ii  nvclock   0.8b3-1Allows you to overclock your nVidi
ii  powermgmt-base1.30   Common utils and configs for power
ii  toshset   1.73-2 Access much of the Toshiba laptop 
ii  vbetool   1.0-3  run real-mode video BIOS code to a
ii  x11-xserver-utils 7.3+2  X server utilities

Versions of packages acpi-support recommends:
ii  radeontool1.5-5  utility to control ATI Radeon back

-- no debconf information



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



Bug#481876: openssh: [INTL:vi] Vietnamese debconf templates translation update

2008-05-19 Thread Colin Watson
tags 481876 pending
thanks

On Mon, May 19, 2008 at 05:07:00PM +0930, Clytie Siddall wrote:
 The updated Vietnamese translation for the debconf file: openssh

Committed, thanks.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#481889: Man page for sarg-reports

2008-05-19 Thread Juan Angulo Moreno

Package: sarg
Tags: patch



.\  Hey, EMACS: -*- nroff -*-
.\ First parameter, NAME, should be all caps
.\ Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\ other parameters are allowed: see man(7), man(1)
.TH SARG-REPORTS 1 may 17, 2008
.\ Please adjust this date whenever revising the manpage.
.\
.\ Some roff macros, for reference:
.\ .nhdisable hyphenation
.\ .hyenable hyphenation
.\ .ad l  left justify
.\ .ad b  justify to both left and right margins
.\ .nfdisable filling
.\ .fienable filling
.\ .brinsert line break
.\ .sp ninsert n+1 empty lines
.\ for manpage-specific macros, see man(7)
.SH NAME
sarg-reports \- Daily/Weekly/Monthly squid usage reports creation tool
.SH SYNOPSIS
.B sarg-reports
.RB [OPTIONS]
.SH DESCRIPTION
This manual page documents briefly the
.B sarg-reports
command.
.PP
.\ TeX users may be more comfortable with the \fBwhatever\fP and
.\ \fIwhatever\fP escape sequences to invode bold face and italics, 
.\ respectively.
\fBsarg-reports\fP is a script written to automate the SARG (a powerful
squid log analyzer) reports and log management.
Sarg it self, provide to end user a generic interface to create
reports based on squid access log (begin of log to current date).
sarg-reports is useful because it allow you to easly create and manage
Daily, Weekly and Monthly reports.
.SH OPTIONS
A summary of options is included below.
.TP
.B manual
.br 
Create Manual report
.TP
.B today
Create Today report
.TP
.B daily
Create Daily report
.TP
.B weekly
Create Weely report
.TP
.B monthly
Create Monthly report
.SH CRONTAB
If you want the reports can be generated automatically insert the 
following lines (the today report creation time depend mostly of 
your sarg server load average, tune it):
.PP
.br
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
.br
00 08-18/1 * * * sarg-reports today
.br
00 00  * * * sarg-reports daily
.br
00 01  * * 1 sarg-reports weekly 
.br
30 02  1 * * sarg-reports monthly
.br
.PP
REMEMBER: if you use logrotate, configure it to rotate the logs within 
MONTHLY basis, AFTER sarg-reports created the monthly html report.
.SH VARIABLES
Check before using the sarg-reports that the following variables are set 
to file /etc/sarg/sarg.conf
.TP
.B SARG
.br 
The sarg executable location
.TP
.B CONFIG
.br 
The sarg main configuration file location
.TP
.B HTMLOUT
.br 
Location where will be saved the reports
.TP
.B PAGETITLE
.br 
The title of main index page
.TP
.B LOGOIMG
.br 
Image logo to view in main index page
.TP
.B LOGOLINK
.br 
HTTP web page link of logo
.TP
.B DAILY
.br 
Word 'daily' translation, translate it to your language
.TP
.B WEEKLY
.br 
Word 'weekly' translation, translate it to your language
.TP
.B MONTHLY
.br 
Word 'monthly' translation, translate it to your language
.TP
.B EXCLUDELOG1
.br 
Exclude text from cron emails (normally, sarg, during cron activity,
if it don't find any valid records,
.TP
.B EXCLUDELOG2
.br 
It will output an error message (usually on 'today' reports). I 
don't want to be warned by email about this, so, i wrote the 'text' 
that will be never logged. This is useful to receive email of real
problems only.
.SH AUTHOR
sarg-reports was written by Ugo Viti [EMAIL PROTECTED]
.PP
This manual page was written by Juan Angulo Moreno [EMAIL PROTECTED],
for the Debian project (but may be used by others).


Bug#481601: Debian-specific patch to Polipo: please revert

2008-05-19 Thread DS
Hi Juliusz!

 You apply the following patch to Debian's polipo:

[skip]

 I have thought it over, and I hereby requests that you revert this
 patch.  There are just too many reasons why you should not have
 applied it.

 1. You did apply a patch relating to security without an explicit ack
 From upstream.

 I hope it is clear from the recent OpenSSL debacle why this must not
 be done.

I'm sorry Juliusz, but I have send you patch with ask to test it.
There was 10 days while package was in unstable. And then about 4
monthes.
And I think my patch is not the same as OpenSSL patch - they touch
very different things. Patch is correct with Debian policy and doesn't
have side effects.

 2. You did apply a patch without first trying to get it applied upstream.

 You did send me the patch, but only after you applied it.  You should
 only ever apply a patch *after* the patch was rejected upstream *and*
 you fully understand the reasons why, and believe that these reasons
 do not apply to Debian.

Ok.

 Sorry to beat a dead horse, but taking this approach would have
 avoided the recent OpenSSL debacle.

 3. You changed Polipo's behaviour without documenting it

Please see Debian changelog.

 The Debian binary of Polipo now behaves differently from the upstream
 binary.  This will confuse your users and will confuse your friendly
 upstream when he tries to help your users with debugging.

In commonly way users must contact with package maintainer or by
mailing lists, not private.
And again, changes are documented in changelog.

 What is more, it will create a rather glaring security hole for anyone
 who replaces his Debian binary with an upstream binary (which is
 something people sometimes do, when they need a more recent version).

It is not a Debian way, sorry. If they do that, they must understand
what they are doing.

 4. Your patch, while technically correct, will lead to bugs in the future.

 Your patch manipulates the process' *user* mask, which must never be
 manipulated by a program.  The umask is a global process feature.

It's changed only for one, fopen() function, and then changed back.
What is wrong?

 It will cause a rather glaring security hole if I ever decide to use
 threads in Polipo.

Yes. But in this case here must be thread locking code.

 The proper way to do what you need is to use open(O_CREAT) with the
 right permissions (but obeying the umask), then pass the file
 descriptor to fdopen.  Of course, the permissions should be
 configurable by a config variable.

Well, this looks some better. Will you apply this in the next version
or I may do another patch?

 Any one of the above reasons is enough to ask you to revert this
 patch.

Let's discuss it. At this time I didn't see any security problems
except using threads in the feature.

-- 
Denis



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



Bug#480533: uninitialized value warnings from Perl during install

2008-05-19 Thread Frans Pop
tag 480533 d-i
tag 478207 d-i
thanks

Now that perl etc. has migrated to testing I also see these on i386. They
show up as soon as packages get apt-installed during base-installer.

This could be a blocker for the D-I Beta2 release.

Log with debconf debugging for apt-install of eject attached.

Cheers,
FJP

May 19 10:13:09 in-target: debconf (db): making DbDriver of type File
May 19 10:13:09 in-target: debconf (db config): started; filename is /var/cache/debconf/config.dat
May 19 10:13:09 in-target: debconf (db config): loading database
May 19 10:13:09 in-target: debconf (db): making DbDriver of type File
May 19 10:13:09 in-target: debconf (db passwords): started; filename is /var/cache/debconf/passwords.dat
May 19 10:13:09 in-target: debconf (db passwords): loading database
May 19 10:13:09 in-target: debconf (db): making DbDriver of type Stack
May 19 10:13:09 in-target: debconf (db): making DbDriver of type File
May 19 10:13:09 in-target: debconf (db templatedb): started; filename is /var/cache/debconf/templates.dat
May 19 10:13:09 in-target: debconf (db templatedb): loading database
May 19 10:13:10 in-target: debconf (db): making DbDriver of type Pipe
May 19 10:13:10 in-target: debconf (db _ENV_REPLACE_templates): loading database
May 19 10:13:10 in-target: debconf (db): making DbDriver of type Stack
May 19 10:13:10 in-target: debconf (db): making DbDriver of type Pipe
May 19 10:13:10 in-target: debconf (db _ENV_OVERRIDE): loading database
May 19 10:13:10 in-target: debconf (db): making DbDriver of type Stack
May 19 10:13:10 in-target: debconf (developer): frontend started
May 19 10:13:10 in-target: debconf (user): trying frontend Passthrough
May 19 10:13:10 in-target: debconf (developer): Trying to find a templates file..
May 19 10:13:10 in-target: debconf (developer): Trying /usr/bin/debconf-apt-progress.templates
May 19 10:13:10 in-target: debconf (developer): Trying /usr/share/debconf/templates/debconf-apt-progress.templates
May 19 10:13:10 in-target: debconf (developer): Couldn't find a templates file.
May 19 10:13:10 in-target: debconf (developer): frontend running, package name is 
May 19 10:13:10 in-target: debconf (developer): starting /usr/bin/debconf-apt-progress --no-progress --logstderr -- apt-get -o APT::Install-Recommends=false -q -y --no-remove install eject
May 19 10:13:10 in-target: debconf (developer): -- GET debconf/priority
May 19 10:13:10 in-target: debconf (db _ENV_stack): trying to getfield(debconf/priority value) ..
May 19 10:13:10 in-target: debconf (db _ENV_OVERRIDE): cache miss on debconf/priority
May 19 10:13:10 in-target: debconf (db configdb): trying to getfield(debconf/priority value) ..
May 19 10:13:10 in-target: debconf (db configdb): getfield done by config
May 19 10:13:10 in-target: debconf (db _ENV_stack): getfield done by configdb
May 19 10:13:10 in-target: debconf (db _ENV_stack): trying to getfield(debconf/priority value) ..
May 19 10:13:10 in-target: debconf (db _ENV_OVERRIDE): cache miss on debconf/priority
May 19 10:13:10 in-target: debconf (db configdb): trying to getfield(debconf/priority value) ..
May 19 10:13:10 in-target: debconf (db configdb): getfield done by config
May 19 10:13:10 in-target: debconf (db _ENV_stack): getfield done by configdb
May 19 10:13:10 in-target: debconf (developer): -- 0 high
May 19 10:13:10 in-target: Reading package lists...
May 19 10:13:10 in-target: 
May 19 10:13:10 in-target: Building dependency tree...
May 19 10:13:10 in-target: 
May 19 10:13:10 in-target: Reading state information...
May 19 10:13:10 in-target: 
May 19 10:13:10 in-target: Suggested packages:
May 19 10:13:10 in-target:   cdtool setcd
May 19 10:13:10 in-target: The following NEW packages will be installed:
May 19 10:13:10 in-target:   eject
May 19 10:13:10 in-target: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
May 19 10:13:10 in-target: Need to get 50.7kB of archives.
May 19 10:13:10 in-target: After this operation, 319kB of additional disk space will be used.
May 19 10:13:10 in-target: Get:1 http://www lenny/main eject 2.1.5-7 [50.7kB]
May 19 10:13:11 in-target: debconf (db): making DbDriver of type File
May 19 10:13:11 in-target: debconf (db config): started; filename is /var/cache/debconf/config.dat
May 19 10:13:11 in-target: debconf (db config): loading database
May 19 10:13:11 in-target: debconf (db): making DbDriver of type File
May 19 10:13:11 in-target: debconf (db passwords): started; filename is /var/cache/debconf/passwords.dat
May 19 10:13:11 in-target: debconf (db passwords): loading database
May 19 10:13:11 in-target: debconf (db): making DbDriver of type Stack
May 19 10:13:11 in-target: debconf (db): making DbDriver of type File
May 19 10:13:11 in-target: debconf (db templatedb): started; filename is /var/cache/debconf/templates.dat
May 19 10:13:11 in-target: debconf (db templatedb): loading database
May 19 10:13:11 in-target: debconf (user): trying frontend Passthrough
May 19 10:13:11 in-target: debconf (db config): no 

Bug#481713: Bug#481806: Bug#481713: pristine-tar: Fails when more than one ref matches upstream

2008-05-19 Thread Guido Günther
Hi Andres,
On Mon, May 19, 2008 at 03:14:58AM -0400, Andres Mejia wrote:
 On Monday 19 May 2008 3:08:32 am Guido Günther wrote:
  On Mon, May 19, 2008 at 02:38:50AM -0400, Andres Mejia wrote:
   I think it would be better if it called the tag object instead of the
   upstream branch name, since in the latter case, it will always fail since
   it's finding a local upstream branch (refs/heads/upstream) and a remote
   upstream branch (refs/remotes/origin/upstream).
 
  Since the branch passed to git-import-orig needs to be a local branch
  anyway we can simply prefix with 'refs/heads' to make pristine-tar
  happy.
   -- Guido
 
 That should work too.
Could you check if this patch helps:

diff --git a/git-import-dsc b/git-import-dsc
index c8e34a5..aece7f9 100755
--- a/git-import-dsc
+++ b/git-import-dsc
@@ -47,7 +47,7 @@ def import_initial(src, dirs, options):
 gbpc.GitBranch()(options.upstream_branch)
 if options.pristine_tar:
 gbpc.PristineTar().commit(os.path.join(dirs['top'], src.tgz),
-  options.upstream_branch)
+  'refs/heads/%s' % 
options.upstream_branch)
 except gbpc.CommandExecFailed:
 print sys.stderr, Creation of git repository failed
 return False
diff --git a/git-import-orig b/git-import-orig
index 17744f2..e540880 100755
--- a/git-import-orig
+++ b/git-import-orig
@@ -203,7 +203,7 @@ on howto create it otherwise use --upstream-branch to 
specify it.
 if options.pristine_tar:
 upstream_branch = [ options.upstream_branch, 'master' 
][is_empty]
 if pristine_orig:
-gbpc.PristineTar().commit(pristine_orig, upstream_branch)
+gbpc.PristineTar().commit(pristine_orig, 'refs/heads/%s' % 
upstream_branch)
 else:
 print sys.stderr, Warning: '%s' not an archive, 
skipping pristine-tar % archive
 gbpc.GitTag(options.sign_tags, 
options.keyid)(build_tag(options.upstream_tag, version),

Cheers,
 -- Guido



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



Bug#481890: gnupg-agent: gpg-agent asks for gpg private key password when using ssh key

2008-05-19 Thread Alex Samad
Package: gnupg-agent
Version: 2.0.9-2
Severity: normal

I have started up gpg-agent as a ssh-key agent as well, when i ssh into
a remote box it asks for my gpg private key password, it should realise
it is a ssh request and try the ssh keys first


alex


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

Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnupg-agent depends on:
ii  libc62.7-10jasp1 GNU C Library: Shared libraries
ii  libgcrypt11  1.4.1-1 LGPL Crypto library - runtime libr
ii  libgpg-error01.4-2   library for common error values an
ii  libpth20 2.0.7-10The GNU Portable Threads
ii  libreadline5 5.2-3   GNU readline and history libraries
ii  pinentry-curses [pinentry]   0.7.5-2 curses-based PIN or pass-phrase en

Versions of packages gnupg-agent recommends:
ii  gnupg 1.4.6-2.2  GNU privacy guard - a free PGP rep

-- no debconf information



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



Bug#480822: Don't build depend on libxul-dev

2008-05-19 Thread Alan Woodland
2008/5/17 Mike Hommey [EMAIL PROTECTED]:
 On Sat, May 17, 2008 at 11:32:49AM +0200, Mike Hommey wrote:
 tag 480822 + patch
 thanks

 On Mon, May 12, 2008 at 09:07:27AM +0200, Mike Hommey wrote:
  Package: mozilla-traybiff
  Severity: wishlist
  User: [EMAIL PROTECTED]
  Usertags: xulrunner-transition
 
  With the upcoming xulrunner transition, libxul-dev is going to disappear.
 
  I already sent instructions on what you should be doing in
  http://lists.debian.org/debian-release/2008/05/msg9.html
 
  This bug report is mostly to help follow the transition going.
 
  FYI, I will start NMUing plugins and components next week, and will break
  the remaining packages by uploading xulrunner 1.9 in unstable on May 25.
 
  Though help will be appreciated, I'll also prepare updated packages for
  these during this week and next.

 Here is the patch to implement the change. Please upload a new package
 with the patch applied ASAP. Without action from your part within the
 next week, I'll upload a NMU.

 With the patch, this time.

Hi, I'm away in Austria at the moment until the end of the week, so an
upload from me isn't very likely.  Feel free to NMU, at your
convenience.

Thanks,
Alan



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



Bug#481870: trimmed ${HOST_KEYS}

2008-05-19 Thread Colin Watson
tags 481870 pending
thanks

On Mon, May 19, 2008 at 10:07:17AM +0300, Damyan Ivanov wrote:
 I've sent the first update too quickly to remember that there was an
 ammendment. Please use this one. It is the same as the last one, but
 omits the (now not present) ${HOST_KEYS} string.

Committed, thanks.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#481473: openoffice.org-calc: erf() and erfc() always return zero

2008-05-19 Thread Ilja Makkonen
You are right. The functions work in the etch-backports version of
openoffice.org on the above mentioned mixed etch/sid amd64 system. They also
work on an ia32 etch system.


Bug#481891: Segmentation fault - no property named `idle-timeout'

2008-05-19 Thread Mark Purcell
Package: gupnp-tools
Version: 0.3-1
Severity: grave

Ross,

I am getting a segmentation fault on both powerpc and i386 arch's.

$ gupnp-network-light

[EMAIL PROTECTED]:~$ gupnp-network-light

(gupnp-network-light:30481): GLib-GObject-WARNING **: IA__g_object_set_valist: 
object class `SoupSessionAsync' has no property named `idle-timeout'
Segmentation fault
[EMAIL PROTECTED]:~$ gupnp-universal-cp

(gupnp-universal-cp:30497): GLib-GObject-WARNING **: IA__g_object_set_valist: 
object class `SoupSessionAsync' has no property named `idle-timeout'
Segmentation fault
[EMAIL PROTECTED]:~$   

Mark

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

Kernel: Linux 2.6.18-5-powerpc
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gupnp-tools depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-11GNU C Library: Shared libraries
ii  libcairo2  1.6.4-2   The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libgssdp-1.0-0 0.6-1 GObject-based library for SSDP
ii  libgtk2.0-02.12.9-4  The GTK+ graphical user interface 
ii  libgupnp-1.0-0 0.10-1GObject-based library for UPnP
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libsoup2.2-8   2.2.105-4 an HTTP library implementation in 
ii  libxml22.6.32.dfsg-2 GNOME XML library

gupnp-tools recommends no packages.

-- no debconf information



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



Bug#481844: [Debootloaders-yaboot] Bug#481844: yaboot: fails to boot on Mac Mini 1.42 GHz (PPC)

2008-05-19 Thread Aurélien GÉRÔME
Hi,

On Mon, May 19, 2008 at 12:46:04AM +0200, Per Andersson wrote:
 After installing the current Etch (4.0r3), PowerPC, the system wont
 boot. During install yaboot-installer says it succeeds (installation
 logs attached).
 
 Entering the Open Firmware with the Cmd-option-o-f and typing 'boot
 hd:1,yaboot' gives the following warning:
 
 0  boot hd:1,yaboot
 Warning: sector size mismatch! can't OPEN: hd:1,yaboot
 Can't open device or file
  ok

The log you posted indicates your NewWorld bootstrap partition
is /dev/hda1. Thus I am quite surprised to notice hd:1 as OF boot
device. Can you try issuing boot hd:0?

Cheers,
-- 
 .''`.   Aurélien GÉRÔME
: :'  :
`. `'`   Debian Developer
  `- Unix Sys  Net Admin


signature.asc
Description: Digital signature


Bug#479431: Should D-I upgrade packages during pkgsel?

2008-05-19 Thread Thijs Kinkhorst
Hi,

Thanks for your input on the matter. I would find it no problem to make it
optional or to be able to cancel it. If APT doesn't have the functionality
then a question before the process is started could work as well (I'd
prefer if it defaulted to yes though - secure by default).

The recent openssl issue, although hopefully rare, is a prime example
where we would have greatly benefited from a security update being
installed before users actually started to use the system.


cheers,
Thijs




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



  1   2   3   4   >