Bug#525072: initramfs-tools: update-initramfs failure resulted in broken dpkg and presumably unbootable system

2009-04-21 Thread maximilian attems
On Tue, Apr 21, 2009 at 10:49:25PM +0100, Jon Dowland wrote:
> 
> ~# dpkg --configure -a
> Setting up initramfs-tools (0.93.2) ...
> update-initramfs: deferring update (trigger activated)
> Setting up linux-image-2.6.26-1-686 (2.6.26-13) ...
> Running depmod.
> Running mkinitramfs-kpkg.
> Deprecation WARNING: use update-initramfs(8)
> cpio: ./etc/modprobe.d/arch-aliases.conf: Cannot stat: No such file or 
> directory
> mkinitramfs-kpkg failed to create initrd image.
> Failed to create initrd image.
> dpkg: error processing linux-image-2.6.26-1-686 (--configure):
>  subprocess post-installation script returned error exit status 9
> dpkg: dependency problems prevent configuration of linux-image-2.6-686:
>  linux-image-2.6-686 depends on linux-image-2.6.26-2-686; however:
>   Package linux-image-2.6.26-2-686 is not installed.
> dpkg: error processing linux-image-2.6-686 (--configure):
>  dependency problems - leaving unconfigured
> Processing triggers for initramfs-tools ...
> update-initramfs: Generating /boot/initrd.img-2.6.28-1-686
> cpio: ./etc/modprobe.d/arch-aliases.conf: Cannot stat: No such file or 
> directory
> update-initramfs: failed for /boot/initrd.img-2.6.28-1-686
> dpkg: subprocess post-installation script returned error exit status 1
> 
> 
> 
> I'm a bit stumped how to get myself out of this one. At the
> moment I cannot do any dpkg operations and I'm not too
> confident my system will boot this kernel if I restart it.

please post the output of those commands:
sh -x mkinitramfs -o /tmp/foo
ls -l /etc/modprobe.d/arch-aliases.conf
cat /etc/kernel-img.conf





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



Bug#525048: [PATCH] sort -m: don't segfault when output file is also an input file

2009-04-21 Thread Jim Meyering
Thanks to Otavio Salvador for finding/reporting this.

Here's the patch I'm considering:

>From 570beb56f58bb087a614af885bec7e9cf6b19423 Mon Sep 17 00:00:00 2001
From: Jim Meyering 
Date: Wed, 22 Apr 2009 08:45:27 +0200
Subject: [PATCH] sort -m: don't segfault when output file is also an input file

* src/sort.c (avoid_trashing_input): Fix an off-by-one error and
guard the use of memmove.
* NEWS (Bug fixes): Mention it.
* tests/misc/sort: Add tests to exercise the offending code.
* THANKS: Update.
Reported by Otavio Salvador in http://bugs.debian.org/525048.
---
 NEWS|6 +-
 THANKS  |1 +
 src/sort.c  |   10 ++
 tests/misc/sort |   17 -
 4 files changed, 28 insertions(+), 6 deletions(-)

diff --git a/NEWS b/NEWS
index 5951bb5..ee44a23 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,13 @@
 GNU coreutils NEWS-*- outline -*-

-* Noteworthy changes in release ?.? (-??-??) [?]
+* Noteworthy changes in release 7.3 (-??-??) [?]

 ** Bug fixes

+  sort -m no longer segfaults when its output file is also an input file.
+  E.g., with this, touch 1; sort -m -o 1 1, sort would segfault.
+  [introduced in coreutils-7.2]
+
   ls now aligns output correctly in the presence of abbreviated month
   names from the locale database that have differing widths.

diff --git a/THANKS b/THANKS
index fe523fe..876a6b6 100644
--- a/THANKS
+++ b/THANKS
@@ -435,6 +435,7 @@ Ole Laursen o...@hardworking.dk
 Oliver Kiddle   okid...@yahoo.co.uk
 Ørn E. Hansen   oehan...@daimi.aau.dk
 Oskar Liljeblad o...@hem.passagen.se
+Otavio Salvador ota...@ossystems.com.br
 Pádraig Brady   p...@draigbrady.com
 Patrick Mauritz oxyg...@studentenbude.ath.cx
 Paul D. Smith   psm...@gnu.org
diff --git a/src/sort.c b/src/sort.c
index 2e6ce87..f48d727 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -1,5 +1,5 @@
 /* sort - sort lines of text (with all kinds of options).
-   Copyright (C) 1988, 1991-2008 Free Software Foundation, Inc.
+   Copyright (C) 1988, 1991-2009 Free Software Foundation, Inc.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -2602,18 +2602,20 @@ avoid_trashing_input (struct sortfile *files, size_t 
ntemps,
  pid_t pid;
  char *temp = create_temp (&tftp, &pid);
  size_t num_merged = 0;
- while (i + num_merged < nfiles)
+ do
{
  num_merged += mergefiles (&files[i], 0, nfiles - i, tftp, temp);
  files[i].name = temp;
  files[i].pid = pid;

- memmove(&files[i], &files[i + num_merged],
- num_merged * sizeof *files);
+ if (i + num_merged < nfiles)
+   memmove(&files[i + 1], &files[i + num_merged],
+   num_merged * sizeof *files);
  ntemps += 1;
  nfiles -= num_merged - 1;;
  i += num_merged;
}
+ while (i < nfiles);
}
 }

diff --git a/tests/misc/sort b/tests/misc/sort
index 4f377df..a27f47a 100755
--- a/tests/misc/sort
+++ b/tests/misc/sort
@@ -1,6 +1,6 @@
 #!/usr/bin/perl

-# Copyright (C) 2008 Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009 Free Software Foundation, Inc.

 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -339,6 +339,21 @@ my @Tests =
 ["sort-numeric", '--sort=numeric', {IN=>".01\n0\n"}, {OUT=>"0\n.01\n"}],
 ["sort-gennum", '--sort=general-numeric',
   {IN=>"1e2\n2e1\n"}, {OUT=>"2e1\n1e2\n"}],
+
+# -m with output file also used as an input file
+# In coreutils-7.2, this caused a segfault.
+# This test looks a little strange.  Here's why:
+# since we're using "-o f", standard output will be empty, hence OUT=>''
+# We still want to ensure that the output file, "f" has expected contents,
+# hence the added CMP=> directive.
+["output-is-input", '-m -o f', {IN=> {f=> "a\n"}}, {OUT=>''},
+ {CMP=> ["a\n", {'f'=> undef}]} ],
+["output-is-input-2", '-m -o f', {OUT=>''},
+ {IN=> {f=> "a\n"}}, {IN=> {g=> "b\n"}}, {IN=> {h=> "c\n"}},
+ {CMP=> ["a\nb\nc\n", {'f'=> undef}]} ],
+["output-is-input-3", '-m -o f', {OUT=>''},
+ {IN=> {g=> "a\n"}}, {IN=> {h=> "b\n"}}, {IN=> {f=> "c\n"}},
+ {CMP=> ["a\nb\nc\n", {'f'=> undef}]} ],
 );

 # Add _POSIX2_VERSION=199209 to the environment of each test
--
1.6.3.rc1.205.g37f8



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



Bug#524566: Non-DFSG files distributed in fluidsynth package

2009-04-21 Thread Luk Claes

David Henningsson wrote:

Hello Release team,

while working on adopting my first package (fluidsynth), non-DFSG files
were discovered in all releases of fluidsynth, both unstable, testing,
stable and oldstable. (bug: #524566)

The non-DFSG files is a soundfont and some documentation, and is only
included in the upstream tarball, so no binary packages are affected.

I could use some advice on how to proceed, and possibly some assistance
as well.


I would propose to fix it first in unstable (by repacking upstream 
tarball by removing the files an recreating the tarball and using 
another upstream version in debian/changelog like adding .dfsg.1). If 
that worked out ok, feel free to do similar things for the version in 
stable and oldstable.


Cheers

Luk



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



Bug#525098: [INTL:ja] Update po-debconf template translation (ja.po)

2009-04-21 Thread Hideki Yamane (Debian-JP)
Package: glide
Version: 2002.04.10-19
Severity: wishlist
Tags: patch l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear glide maintainer,

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

- --
Regards,

 Hideki Yamane henrich @ debian.or.jp
 http://wiki.debian.org/HidekiYamane


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

iEYEARECAAYFAknuvqkACgkQIu0hy8THJktlhwCeMapA7GLqgTAsSV0svaWVu1a+
sHYAnjPyP/BTmVCNkECU3BfSwgPQcNLB
=LVUY
-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: glide 2002.04.10-19\n"
"Report-Msgid-Bugs-To: gl...@packages.debian.org\n"
"POT-Creation-Date: 2009-04-21 07:55+0200\n"
"PO-Revision-Date: 2009-04-21 17:48+0900\n"
"Last-Translator: Hideki Yamane (Debian-JP) \n"
"Language-Team: Japanese \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../libglide2.templates:2001 ../libglide3.templates:2001
msgid "Manually select driver for 3Dfx card?"
msgstr "3Dfx カードのドライバを手動で選択しますか?"

#. Type: boolean
#. Description
#: ../libglide2.templates:2001
msgid ""
"No 3Dfx card that is supported by glide2 was found. This package supports "
"cards based on the following 3Dfx chipsets: Voodoo 2, Voodoo Banshee, and "
"Voodoo 3."
msgstr ""
"glide2 でサポートされている 3Dfx カードは見つかりませんでした。このパッケージ"
"がサポートしているのは次の 3Dfx チップセットベースのカードです: Voodoo 2、"
"Voodoo Banshee、Voodoo 3"

#. Type: boolean
#. Description
#: ../libglide2.templates:2001 ../libglide3.templates:2001
msgid ""
"If the graphics card in this computer does not use one of these chipsets, "
"and you are not compiling programs against glide, this package will not be "
"useful."
msgstr ""
"このコンピュータ内のグラフィックカードがこれらのチップセットのいずれかを使って"
"おらず、プログラムを glide に対してコンパイルしていないのであれば、このパッケージ"
"は役に立たないでしょう。"

#. Type: boolean
#. Description
#: ../libglide2.templates:2001 ../libglide3.templates:2001
msgid ""
"If the graphics card is based on one of these chipsets, you should file a "
"bug report against this package, including the output from the \"lspci -vm\" "
"command."
msgstr ""
"グラフィックカードがこれらのチップセットのいずれかを使る場合は、バグ報告に "
"'lspci -vm' コマンドの出力を含めて、このパッケージに対してバグを登録してくださ"
"い。"

#. Type: boolean
#. Description
#: ../libglide2.templates:2001 ../libglide3.templates:2001
msgid ""
"Please choose whether you want to manually select the driver to use for now."
msgstr ""
"これから使うドライバを手動で選択するかどうかを選んでください。"

#. Type: select
#. Description
#: ../libglide2.templates:3001 ../libglide3.templates:3001
msgid "Driver for 3D acceleration:"
msgstr "3D アクセラレーション用ドライバ:"

#. Type: select
#. Description
#: ../libglide2.templates:3001
msgid ""
"Please select the driver you would like to use for 3D acceleration:\n"
" * cvg: Voodoo 2;\n"
" * h3 : Voodoo Banshee and Voodoo 3."
msgstr "3D アクセラレーションを使いたいカードを選択してください:\n"
" * cvg: Voodoo 2;\n"
" * h3 : Voodoo Banshee および Voodoo 3"

#. Type: select
#. Description
#: ../libglide2.templates:4001 ../libglide3.templates:4001
msgid "Card to use for 3D acceleration:"
msgstr "3D アクセラレーションを使うカード:"

#. Type: select
#. Description
#: ../libglide2.templates:4001
msgid ""
"Multiple 3Dfx-based cards were detected based on one of the following 3Dfx "
"chipsets: Voodoo 2, Voodoo Banshee, and Voodoo 3."
msgstr ""
"以下の 3Dfx チップセットベースのビデオカードを複数検出しました: Voodoo 2、"
"Voodoo Banshee、そして Voodoo 3 です。"

#. Type: select
#. Description
#: ../libglide2.templates:4001 ../libglide3.templates:4001
msgid "Please select the card you would like to use for 3D acceleration."
msgstr "3D アクセラレーションを使いたいカードを選択してください。"

#. Type: boolean
#. Description
#: ../libglide3.templates:2001
msgid ""
"No 3Dfx card that is supported by glide3 was found. This package supports "
"cards based on the following 3Dfx chipsets: Voodoo Banshee, Voodoo 3, Voodoo "
"4, and Voodoo 5."
msgstr ""
"glide3 でサポートされている 3Dfx カードが見つかりませんでした。このパッケージ"
"は以下の 3Dfx チップセットベースのカードに対応しています: Voodoo "
"Banshee、Voodoo 3、Voodoo 4、そして Voodoo 5です。"

#. Type: select
#. Description
#: ../libglide3.templates:3001
msgid ""
"Please select the driver you would like to use for 3D acceleration:\n"
" * h3: Voodoo Banshee and Voodoo 3;\n"
" * h5: Voodoo 4 and Voodoo 5."
msgstr "3D アクセラレーションを使いたいカードを選択してください:\n"
" * h3: Voodoo Banshee および Voodoo 3;\n"
" * h5: Voodoo 4 および Voodoo 5"

#. Type: select
#. Description
#: ../libglide3.templates:4001
msgid ""
"Multiple 3Dfx-based cards were detected based on one of the following 3Dfx "
"chipsets: Voodoo 2, Voodoo Banshee, Voodoo 3, Voodoo 4, and Vood

Bug#525097: libapache2-authcassimple-perl: REMOTE_USER not set in ENV

2009-04-21 Thread Yves AGOSTINI
Package: libapache2-authcassimple-perl
Version: 0.07
Severity: important

Since the use of CGI to parse query, REMOTE_USER is mysteriously no more
set in ENV by $r->user($user)

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

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



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



Bug#525073: log time != kern time - sorry

2009-04-21 Thread Thomas Renard
Oups, I selected the wrong part of the log (time discrepancy). But...

... the NetworkManager log 07:41:18 looks the same so it is needless to send
it too ;-)

Thomas





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



Bug#521394: Pre-approval for heartbeat stable-proposed-updates upload (2.1.3-6lenny3)

2009-04-21 Thread Luk Claes

Simon Horman wrote:

Hi,

I would like to upload a(nother) fresh version of heartbeat to fix
a but in the o2cf resource. Without the simple fix suggested
by Michel, the script is completely broken - though I should
not that the script was first deprecated and more recently
removed from upstream.


So maybe it's better to not fix it in stable as it's deprecated anyway?

Cheers

Luk



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



Bug#525096: get-config-dir never called if -z $monserver

2009-04-21 Thread Michael Tautschnig
Package: fai-client
Version: 3.2.18
Severity: serious
Tags: patch
Justification: major component is broken

A small code re-arrangement in r5338 caused fai to skip the call to
get-config-dir if the following return is taken (from task_confdir in
subroutines-linux):
 
 78 # check if monitor server is available
 79 [ -z "$monserver" ] && monserver=$SERVER
 80 if [ -z "$monserver" ]; then
 81   echo "No monitor daemon defined."
 82   return
 83 fi

As of r5338, get-config-dir is called in task_confdir, but _after_ these lines
of code. Therefore it will never be called and no config space is fetched. Note
that monserver will be empty on softupdates, dirinstalls or installs using a
fixed IP configuration, unless set explicitly.

Of course, softupdates without an updated config space are quite useless (note
that there is _some_ config space available when using a storage other than NFS,
its just not up-to-date).

A bugfix for this issue is attached and also included in 3.2.18+experimental27.

Best,
Michael

2009-04-22  Michael Tautschnig  

* subroutines-linux: get-config-dir was never run if -z $monserver, 
which may
be the case when no DHCP was done (dirinstall, softupdates, or 
install using
fixed IP); problem was introduced by patch in r5338.
Index: trunk/lib/subroutines-linux
===
--- trunk.orig/lib/subroutines-linux
+++ trunk/lib/subroutines-linux 
@@ -79,8 +79,8 @@
 [ -z "$monserver" ] && monserver=$SERVER
 if [ -z "$monserver" ]; then
echo "No monitor daemon defined."
-   return
-fi
+  faimond=0
+else
 faimond=1
 sendhostname=$HOSTNAME # save current hostname
 if sendmon check; then
@@ -90,6 +90,7 @@
faimond=0
echo "Can't connect to monserver on $monserver port 4711. Monitoring 
disabled."
 fi
+fi
 
 get-config-dir || {
echo "Problems accessing the config space."


pgpxNjTE8uhn2.pgp
Description: PGP signature


Bug#433091: CVE id assigned

2009-04-21 Thread Thijs Kinkhorst
This is CVE-2009-1358.
Please reference it in the appropriate changelog entry.

Thanks,
Thijs


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


Bug#525079: stale 10_hur file

2009-04-21 Thread Christoph Anton Mitterer
Hi.

On Wed, 2009-04-22 at 06:07 +0200, Felix Zielcke wrote:
> Am Mittwoch, den 22.04.2009, 01:05 +0200 schrieb Christoph Anton
> Mitterer:
> What 10_grub file? There was never such a file.
Sorry ... I mean 10_hurd ^^ ;) Was already quite late yesterday ;)

> The only files which won't get installed anymore are /etc/grub.d/10_hurd
> and 10_freebsd on Linux systems and likewise for 10_linux on non Linux
> system like Hurd and kFreebsd.
> They won't yet removed on an upgrade but for this we already have a
> bugreport.
Ah,.. ok,.. I must have overseen that one,... then you can mark this as
duplicate.


Best wishes,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Bug#524821: /usr/bin/plasma: Plasma loses minimized windows when "show only minimized windows" is selected.

2009-04-21 Thread Hakan "Silent|Storm" BAYINDIR
No, I'm using KWin. It suddenly appeared. It was working before and
after some point it started to lose them. I was unable to find a
related configuration item too. Restarting KDE didn't solve the
problem either. I think it's connected to bug #523862.

On Tue, Apr 21, 2009 at 18:09, George Kiagiadakis
 wrote:
> 2009/4/20 Hakan BAYINDIR :
>> Package: kdebase-workspace-bin
>> Version: 4:4.2.2-2
>> Severity: normal
>> File: /usr/bin/plasma
>>
>> When "show only tasks that are minimized" is selected under taskbar settings 
>> in plasma, all window buttons including minimized windows disappear. Present 
>> windows plugin is still able to present all windows. It's notable that some 
>> GTK applications' windows (such as pidgin's chat windows) vanish to 
>> background of the desktop rather than the taskbar area when the option is 
>> selected and the window is minimized. This behaviour is not observed in QT4 
>> applications such as konsole under same circumstances.
>
>
> Maybe you are using compiz instead of kwin? It sounds like a window
> manager issue. It works for me using kwin.
>



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



Bug#485242: bibledit: FTBFS when converted to new source format 3.0 (quilt): require -p0 for some patches

2009-04-21 Thread Raphael Hertzog
On Tue, 21 Apr 2009, Jonathan Marsden wrote:
> Raphael,
>
> I *think* this issue is fixed in the bibledit 3.7-1 packages recently  
> uploaded to unstable.  However, I'm not 100 %sure, being somewhat new to  
> Debian package maintenance.  The patches that needed -p0 in the  
> debian/patches/series file are no longer present.
>
> Because I am unsure, I did not put a Closes: #485242 in the changelog  
> for bibledit 3.7-1.
>
> Could you please either: (a) confirm for me that this bug is now fixed,  
> or (b) let me know specifically how to test for it and what is still  
> needed to get this closed?  The instructions in this bug report and  
> those in bug #457345 about how to create a package in this new source  
> format appear to be different -- which ones should I really be using?

There are no instructions in #457345 as far as I can see. To create a 
new format source package do the following:
$ mkdir -p debian/source
$ echo "3.0 (quilt)" >debian/source/format
$ dpkg-buildpackage -S

Then remove the source directory and try to extract the new source package
and do a normal rebuild. If it works, the bug is fixed.

Everything about those new formats is documented in dpkg-source's manual
page.

Cheers,
-- 
Raphaël Hertzog

Contribuez à Debian et gagnez un cahier de l'admin Debian Lenny :
http://www.ouaza.com/wp/2009/03/02/contribuer-a-debian-gagner-un-livre/



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



Bug#525050: junior-gnome: Won't install. Missing ccd.conf

2009-04-21 Thread Andreas Tille

On Tue, 21 Apr 2009, vesposit wrote:


It is actually installed, see below

vitto...@guevara13:~$ dpkg -l junior*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Nome   Versione   Descrizione
+++-==-==-
iF  junior-config  1.13   Debian Jr. Project common package
iU  junior-gnome   1.13   Debian Jr. for GNOME
ii  junior-tasks   1.13   Debian-Junior tasks for tasksel
vitto...@guevara13:~$


Hmmm, I was confused by the information reportbug provided.


Please install junior-config first or give more information about
your specific installation.


Ok, I tried a reinstall of junior-config, but it still complains about the 
missing file, output is as follows (sorry, it is in italian):


Fine for now - because I can parse the relevant part.  For the future doing an
  unset LANG
or something like that is a good idea when reporting problems.


Configuro junior-config (1.13) ...
Custom Debian Distribution configuration file /etc/cdd/cdd.conf is missing.


Yesterday evening a seemed to be blind because the problem is not in
junior-config but rather ion cdd-common.  I'm afraid you detected a
flaw in the upgrade path I tried to provide from cdd-common to blends-common.
You might have noticed that Custom Debian Distributions are now called
Debian Pure Blends and thus I renamed the package.  To gain compatibility
a dummy package cdd-common was builded - but it just contains links to
the blends tools.

I think what I was missing is to provide links to the new config files
as well and honestly - I wonder whether we are asking for even more
trouble if I'm doing so.

IMHO your very specific problem is that you are trying to install the
junior packages which were builded against the old cdd-dev tools while
the new blends-dev tools just hit testing.  I currently have no better
idea than suggesting to try the junior-* packages that currently sit
in unstable (and will move to testing next week most probably).  This
should work fine and than the issue you observed should be void.

I don't think that I can do more about this problem in the current state
than suggesting to use the metapackages from unstable (and only these -
they should work perfectly with a testing system) ... and say sorry
for the confusion.

Thanks for your bug report anyway

 Andreas.

--
http://fam-tille.de



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



Bug#523703: update-manager: Patch to fix the problem

2009-04-21 Thread Diego Escalante Urrelo
Package: update-manager
Version: 0.68.debian-7
Severity: normal

Inline, a patch to fix this:

--- UpdateManager.py2009-04-22 01:08:19.0 -0500
+++ UpdateManager.new.py2009-04-22 01:08:47.0 -0500
@@ -159,7 +159,7 @@
 # assume "main" section 
 src_section = "main"
 # use the section of the candidate as a starting point
-section = pkg._depcache.GetCandidateVer(pkg._pkg).Section
+section = self._depcache.GetCandidateVer(pkg._pkg).Section
 
 # get the source version, start with the binaries version
 binver = pkg.candidateVersion

Simple!

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

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
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 update-manager depends on:
ii  gconf2   2.26.0-1GNOME configuration database syste
ii  libgnome2-perl   1.042-2 Perl interface to the GNOME librar
ii  python   2.5.4-2 An interactive high-level object-o
ii  python-dbus  0.83.0-1simple interprocess messaging syst
ii  python-glade22.14.1-2GTK+ bindings: Glade support
ii  python-gnome22.22.3-3Python bindings for the GNOME desk
ii  python-support   1.0.2   automated rebuilding support for P
ii  python-vte   1:0.17.4-2+b1   Python bindings for the VTE widget
ii  software-properties-gtk  0.60.debian-1.1 manage the repositories that you i
ii  synaptic 0.62.5+b1   Graphical package manager
ii  update-manager-core  0.68.debian-7   APT update manager core functional

update-manager recommends no packages.

Versions of packages update-manager suggests:
ii  update-notifier  0.70.7.debian-5 Daemon which notifies about packag

-- no debconf information



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



Bug#525073: [Pkg-utopia-maintainers] Bug#525073: network-manager: umts dialin: Total system crash

2009-04-21 Thread Thomas Renard
And here we have the syslog output of the session (attachment again)

Thomas
Apr 22 07:25:22 bigend NetworkManager:   Activation (ttyUSB0) starting 
connection 'Fonic'
Apr 22 07:25:22 bigend NetworkManager:   (ttyUSB0): device state change: 
3 -> 4
Apr 22 07:25:22 bigend NetworkManager:   Activation (ttyUSB0) Stage 1 of 
5 (Device Prepare) scheduled...
Apr 22 07:25:22 bigend NetworkManager:   Activation (ttyUSB0) Stage 1 of 
5 (Device Prepare) started...
Apr 22 07:25:22 bigend NetworkManager:  [1240377922.270046] 
nm_serial_device_open(): (ttyUSB0) opening device...
Apr 22 07:25:22 bigend NetworkManager:   Activation (ttyUSB0) Stage 1 of 
5 (Device Prepare) complete.
Apr 22 07:25:46 bigend NetworkManager:   (ttyUSB0): device state change: 
4 -> 9
Apr 22 07:25:46 bigend NetworkManager:  [1240377946.027065] 
nm_serial_device_close(): Closing device 'ttyUSB0'
Apr 22 07:25:46 bigend NetworkManager:   Activation (ttyUSB0) failed.
Apr 22 07:25:46 bigend NetworkManager:   (ttyUSB0): device state change: 
9 -> 3
Apr 22 07:25:46 bigend NetworkManager:   (ttyUSB0): deactivating device 
(reason: 0).


Bug#511250: serious bug

2009-04-21 Thread Artur

This is very serious bug.

Because of it our couriertcpd hangs every few hour.

We used a workaround suggested by Marcus Pereira here:
http://www.nabble.com/couriertcpd-hangs-to22823968.html


Best regards,
Artur







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



Bug#524745: [Pkg-octave-devel] Bug#524745: Bug#524745: Postinst seems to run forever on mipsel

2009-04-21 Thread Rafael Laboissiere
* Stephen Gran  [2009-04-21 23:55]:

> This one time, at band camp, Rafael Laboissiere said:
> > * Martin Zobel-Helas  [2009-04-21 21:17]:
> > 
> > > here some more infos:
> > > 
> > > 21029 ?S  0:00  \_ sh -c /usr/bin/sudo /usr/bin/apt-get 
> > > --purge -o 
> > > Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status 
> > > -o DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o DPkg::R
> > > 21030 ?S  0:03  \_ /usr/bin/apt-get --purge -o 
> > > Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status 
> > > -o DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o 
> > > DPkg::Run-Directory=/ho
> > > 22519 pts/0Ss+0:00  \_ /usr/bin/dpkg 
> > > --root=/home/buildd/build/chroot-unstable --force-confold --status-fd 14 
> > > --configure libmagic1 file gettext-base libkeyutils1 libkrb5support0 
> > > libk5crypto3 libkrb5-3 libgss
> > > 23967 pts/0S+ 0:00  \_ /bin/sh -e 
> > > /var/lib/dpkg/info/octave3.0.postinst configure 
> > > 23976 pts/0R+   1987:42  \_ octave-3.0.5 --silent 
> > > --no-history --no-init-file --eval pkg ('rebuild');
> > > 
> > > strace -p 23976
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > > [...] runs infitive
> > 
> > Thanks for the info.  Is the hanging due to some file Octave is trying to
> > open/read/close?  Could you please run lsof on the octave-3.0.5 process
> > and post the results?  In the case above, it would be:
> > 
> > lsof -p 23976
> 
> The process has been killed, so we no longer have that information for
> you.

Yes, I know, but could you try to launch the offending command:

octave-3.0.5 --silent --no-history --no-init-file --eval "pkg ('rebuild');"

in one of the machines where it fails and see what happens?

-- 
Rafael



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



Bug#525073: [Pkg-utopia-maintainers] Bug#525073: network-manager: umts dialin: Total system crash

2009-04-21 Thread Thomas Renard
I tried it with an 2.6.26-2-686. Here the crash is not as hard as with
the 2.6.29...

So, here is a backtrace (attachment)

Thomas
Apr 22 07:41:18 bigend kernel: [ 1754.235431] [ cut here ]
Apr 22 07:41:18 bigend kernel: [ 1754.235431] WARNING: at drivers/usb/serial/usb-serial.c:307 serial_write+0x58/0x6f [usbserial]()
Apr 22 07:41:18 bigend kernel: [ 1754.235431] Modules linked in: tun sg sr_mod cdrom option usbserial usb_storage i915 drm ppdev parport_pc lp parport rfcomm l2cap bluetooth ipv6 acpi_cpufreq cpufreq_userspace cpufreq_ondemand cpufreq_powersave cpufreq_conservative cpufreq_stats freq_table binfmt_misc pciehp pci_hotplug fuse loop snd_hda_intel snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device iTCO_wdt serio_raw snd psmouse rng_core intel_agp soundcore snd_page_alloc agpgart video output eeepc_laptop battery ac button evdev ext3 jbd mbcache sha256_generic aes_i586 aes_generic cbc dm_crypt crypto_blkcipher dm_mirror dm_log dm_snapshot dm_mod sd_mod ata_generic ide_pci_generic ide_core uhci_hcd ata_piix libata scsi_mod dock ehci_hcd usbcore atl1e thermal processor fan thermal_sys
Apr 22 07:41:18 bigend kernel: [ 1754.235431] Pid: 0, comm: swapper Tainted: GW 2.6.26-2-686 #1
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] warn_on_slowpath+0x40/0x66
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] qh_append_tds+0x34f/0x412 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] ehci_urb_enqueue+0xf8/0xd05 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] ehci_urb_enqueue+0x15c/0xd05 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] option_write+0xac/0xf8 [option]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] serial_write+0x58/0x6f [usbserial]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] tty_put_char+0x22/0x25
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] sysctl_check_table+0x462/0x463
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] n_tty_receive_buf+0x82b/0xc7d
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] enqueue_task+0x52/0x5d
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] activate_task+0x1b/0x26
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] try_to_wake_up+0xe8/0xf1
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] autoremove_wake_function+0xd/0x2d
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] __wake_up_common+0x2e/0x58
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] tty_buffer_request_room+0x106/0x111
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] flush_to_ldisc+0xd6/0x160
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] option_indat_callback+0x36/0x64 [option]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] usb_hcd_giveback_urb+0x64/0x8f [usbcore]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] ehci_urb_done+0x6b/0x77 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] qh_completions+0x7b/0x304 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] ehci_work+0x95/0x681 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] tick_program_event+0x1f/0x23
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] getnstimeofday+0x37/0xbc
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] lapic_next_event+0xc/0x10
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] clockevents_program_event+0xc4/0xd2
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] ehci_irq+0x108/0x128 [ehci_hcd]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] tick_dev_program_event+0x1e/0x82
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] usb_hcd_irq+0x37/0x73 [usbcore]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] handle_IRQ_event+0x23/0x51
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] handle_fasteoi_irq+0x71/0xa4
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] do_IRQ+0x4d/0x63
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] common_interrupt+0x23/0x28
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] param_attr_store+0x1b/0x1d
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] acpi_idle_enter_bm+0x2a9/0x317 [processor]
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] cpuidle_idle_call+0x5b/0x86
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] cpuidle_idle_call+0x0/0x86
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  [] cpu_idle+0xab/0xcb
Apr 22 07:41:18 bigend kernel: [ 1754.235431]  ===
Apr 22 07:41:18 bigend kernel: [ 1754.235431] ---[ end trace 46bd34d2385a2284 ]---
Apr 22 07:41:18 bigend kernel: [ 1754.235431] [ cut here ]


Bug#525095: python-sphinx: sphinx fails with exception

2009-04-21 Thread Adrian von Bidder
Package: python-sphinx
Version: 0.6.1-1
Severity: normal

Hi,

(Alsmost Severity: important, but since I'm just blindly follow
instructions, I haven't...)

Trying to build the current documentation fetched from the Turbogears svn
(Turbogears 2) as well as the current documentation fetched from the Pylons
hg repository (I tried the 0.9.7.x branch documentation at tip), sphinx
fails with
+++
...pylons/doc/en$ make html
mkdir -p _build/html _build/doctrees
sphinx-build -b html -d _build/doctrees   . _build/html
Running Sphinx v0.6.1
loading pickled environment... failed: 'module' object has no attribute 
'RedirStream'
building [html]: targets for 77 source files that are out of date
updating environment: 77 added, 0 changed, 0 removed
Exception occurred:[ 58%] thirdparty/formencode_apicmandsd_plugins
  File "/usr/lib/pymodules/python2.5/sphinx/ext/autodoc.py", line 487, in 
get_object_members
for mname in self.get_attr(self.object, '__dict__')])
RuntimeError: dictionary changed size during iteration
The full traceback has been saved in /tmp/sphinx-err-xoWxoP.log, if you want to 
report the issue to the author.
Please also report this if it was a user error, so that a better error message 
can be provided next time.
Send reports to sphinx-...@googlegroups.com. Thanks!
make: *** [html] Error 1
+++

This is from a working dir I got by:
$ hg clone https://www.knowledgetap.com/hg/pylons-dev Pylons
$ cd Pylons; hg update 0.9.7.x

Building the TurgboGears 2 documentation fails similarly while building
the documentation inside a tg2 documentation svn working dir.

In both cases building the documentation with python-sphinx 0.5.2-1
succeeds (I did test by just up-/downgrading the python-sphinx package
without changing other packages.)

cheers
-- vbi

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (800, 'stable'), (700, 'testing'), (600, 'unstable'), (60, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-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 python-sphinx depends on:
ii  libjs-jquery  1.2.6-2JavaScript library for dynamic web
ii  python2.5.2-3An interactive high-level object-o
ii  python-docutils   0.5-2  Utilities for the documentation of
ii  python-jinja  1.2-2  small but fast and easy to use sta
ii  python-pygments   0.10-1 syntax highlighting package writte
ii  python-support1.0.2  automated rebuilding support for P

Versions of packages python-sphinx recommends:
ii  python2.5.2-3An interactive high-level object-o
ii  python-imaging1.1.6-3Python Imaging Library
ii  python-simplejson 2.0.9-1Simple, fast, extensible JSON enco

Versions of packages python-sphinx suggests:
pn  jsmath (no description available)

-- no debconf information



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


Bug#524469: xprint: also occuring on -686

2009-04-21 Thread Arthur Marsh
Package: xprint
Version: 2:1.4.2-11
Severity: normal


I also had a segfault on -686 with xprint shortly after startup.

Any suggestions on how to narrow down where the problem lies 
appreciated.

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

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

Versions of packages xprint depends on:
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libfontenc1  1:1.0.4-3   X11 font encoding library
ii  libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib
ii  libhal1  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libpixman-1- 0.14.0-1pixel-manipulation library for X a
ii  libx11-6 2:1.2.1-1   X11 client-side library
ii  libxau6  1:1.0.4-2   X11 authorisation library
ii  libxdmcp61:1.0.2-3   X11 Display Manager Control Protoc
ii  libxfont11:1.4.0-1   X11 font rasterisation library
ii  xprint-commo 2:1.4.2-11  Xprint - the X11 print system (con
ii  zlib1g   1:1.2.3.3.dfsg-13   compression library - runtime

Versions of packages xprint recommends:
ii  xprint-utils  7.1-1  utilities for Xprint, the X11 prin

xprint suggests no packages.

-- debconf-show failed



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



Bug#522346: closed by Alejandro Garrido Mota (Bug#522346: fixed in gbackground 1.1-2)

2009-04-21 Thread Marc Graham
Hi Alejandro,

Respectfully, shouldn't openoffice do something other than crash in the case
of not being able to find the right file to display its dialog?

Marc

2009/4/22 Debian Bug Tracking System 

>
> This is an automatic notification regarding your Bug report
> which was filed against the gbackground package:
>
> #522346: error starting gbackground looks for Dialog.pm but can't find
>
> It has been closed by Alejandro Garrido Mota .
>
> 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 Alejandro Garrido Mota
>  by
> replying to this email.
>
>
> --
> 522346: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522346
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems
>
>
> -- Forwarded message --
> From: Alejandro Garrido Mota 
> To: 522346-cl...@bugs.debian.org
> Date: Wed, 22 Apr 2009 03:32:05 +
> Subject: Bug#522346: fixed in gbackground 1.1-2
> Source: gbackground
> Source-Version: 1.1-2
>
> We believe that the bug you reported is fixed in the latest version of
> gbackground, which is due to be installed in the Debian FTP archive:
>
> gbackground_1.1-2.diff.gz
>  to pool/main/g/gbackground/gbackground_1.1-2.diff.gz
> gbackground_1.1-2.dsc
>  to pool/main/g/gbackground/gbackground_1.1-2.dsc
> gbackground_1.1-2_all.deb
>  to pool/main/g/gbackground/gbackground_1.1-2_all.deb
>
>
>
> A summary of the changes between this version and the previous one is
> attached.
>
> Thank you for reporting the bug, which will now be closed.  If you
> have further comments please address them to 522...@bugs.debian.org,
> and the maintainer will reopen the bug report if appropriate.
>
> Debian distribution maintenance software
> pp.
> Alejandro Garrido Mota  (supplier of updated
> gbackground package)
>
> (This message was generated automatically at their request; if you
> believe that there is a problem with it please contact the archive
> administrators by mailing ftpmas...@debian.org)
>
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Format: 1.8
> Date: Sat, 11 Apr 2009 18:10:46 -0430
> Source: gbackground
> Binary: gbackground
> Architecture: source all
> Version: 1.1-2
> Distribution: unstable
> Urgency: low
> Maintainer: Alejandro Garrido Mota 
> Changed-By: Alejandro Garrido Mota 
> Description:
>  gbackground - Program to change GNOME background periodically
> Closes: 522346
> Changes:
>  gbackground (1.1-2) unstable; urgency=low
>  .
>   * Add libui-dialog-perl package to Depends field (Closes: #522346)
> Checksums-Sha1:
>  59f0c01e2477b8bdf0a7c724d91d4b2045d9784f 1039 gbackground_1.1-2.dsc
>  fbd125ecd45460b1ee819e8c2e6da48b7b630230 2094 gbackground_1.1-2.diff.gz
>  c936656337230c7e0d30035bd2e19c1a7bbcf16f 13384 gbackground_1.1-2_all.deb
> Checksums-Sha256:
>  af1d3b995d1933a22271136f5a37bff6a36274d213aabe37fb614275eafdbd06 1039
> gbackground_1.1-2.dsc
>  adde2392320dce52d8dd5b389340f741bdfbf4fcb335e5971cf046b6ce2a1b19 2094
> gbackground_1.1-2.diff.gz
>  f1344bb6367adafe385b2872aab4ee4f378b268aaebc5ed4dd7b344752630496 13384
> gbackground_1.1-2_all.deb
> Files:
>  2ace4d3f425b48c1de74aa9321ba8f47 1039 gnome optional gbackground_1.1-2.dsc
>  7ee9d5ffd2c524f9cabbc95df6158a09 2094 gnome optional
> gbackground_1.1-2.diff.gz
>  559475c09ae269429692dfb5dff7bf57 13384 gnome optional
> gbackground_1.1-2_all.deb
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
>
> iEYEARECAAYFAknujvgACgkQgY5NIXPNpFURawCfc0b9DKE804sKRKDgPYgFlDZL
> iQAAoJ9J7afldVkAVlqYM4vHfVR21SHp
> =gUqZ
> -END PGP SIGNATURE-
>
>
>
>
> -- Forwarded message --
> From: Marc Graham 
> To: Debian Bug Tracking System 
> Date: Fri, 03 Apr 2009 10:20:55 +1100
> Subject: error starting gbackground looks for Dialog.pm but can't find
> Package: gbackground
> Version: 1.1-1
> Severity: grave
> Justification: renders package unusable
>
>
> Just installed gbackground and it won't run. Returns with the following
>
> Can't locate UI/Dialog.pm in @INC (@INC contains: /etc/perl
> /usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5
> /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10
> /usr/local/lib/site_perl .) at /usr/bin/gbackground line 5.
> BEGIN failed--compilation aborted at /usr/bin/gbackground line 5.
>
>
> Marc
>
> -- System Information:
> Debian Release: squeeze/sid
>  APT prefers testing
>  APT policy: (500, 'testing')
> Architecture: i386 (i686)
>
> Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
> Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/bash
>
> Versions of packages gbackground depends on:
> ii  libglib-perl  1:1.190-2  Perl interface to the GLib and
> GOb
> ii  libgtk2-gladexml-perl 1.007-1Perl interface to use user
> interfa
> ii  libgtk2-perl  1:1.190-1  Perl interface to the 2.x
> series o
> ii  libp

Bug#523660: dmraid: RAID not activated after upgrading to 1.0.0.rc15-6

2009-04-21 Thread Asier
El Martes 21 Abril 2009, Giuseppe Iuculano escribió:

> >> Do you have a separate /usr partition ?
> >
> > Yes:
>
> Please test again with dmraid-debug.tar.gz but copy the attached
> dmraid-activate-debug in /sbin/

It works!

When detecting the array it reports wrong size, but it detects de isw array, 
activate it, and gets mounted.

Thanks for your support. Now I know my fakeRAID has a strange configuration 
(isw and pdc signatures). I can rebuild the array so... what do you suggest? 
leave it as it is now or recreate the array with pdc only?

Thanks again
-- 
Asier.
+ set -v
# Arguments: $1 = Name of array you want activated.
activate_array ()
{
	Raid_Setinfo=$(dmraid -i -si "$1")
	if [ -z "$Raid_Setinfo" ]; then
		log_error "Cannot retrieve RAID set information for $1"
		return 1
	fi

	dmraid -i -si -ct "$1" >> /dev/dmraid.log 2>&1
	dmraid -i -si -cd "$1" >> /dev/dmraid.log 2>&1
	Raid_Type=$(dmraid -i -si -ct "$1")
	Raid_Nodevs=$(dmraid -i -si -cd "$1")

	case "$Raid_Type" in
		stripe)
			if [ "$Raid_Nodevs" -lt 2 ]; then
if [ -n "$Degraded" ]; then
	log_error "Cannot bring up a RAID0 array in degraded mode, not all devices present."
fi
return 2
			fi
			;;
		mirror)
			if [ "$Raid_Nodevs" -lt 2 ]; then
if [ -z "$Degraded" ]; then
	log_error "Raid set $Raid_Name is degraded. Not activating"
	return 2
else
	log_warning "Activating $Raid_Name in degraded mode"
	Return_Val=3
fi
			fi
			;;
		raid5_*)
			modprobe -q dm_raid45
			if [ "$Raid_Nodevs" -lt 3 ]; then
if [ -z "$Degraded" ]; then
	log_error "Raid set $Raid_Name is degraded. Not activating"
	return 2
else
	log_warning "Activating $Raid_Name in degraded mode"
	Return_Val=3
fi
			fi
			;;
	esac

	# At this point we have the required number of devs, or the user wants the
	# array brought up in degraded mode, except in the case of striped arrays.
	dmraid -i -ay -Z "$1"
	return $Return_Val
}

log_warning()
{
	if type logger > /dev/null ; then
		logger -t dmraid-activate "WARNING: $1"
	else
		echo "dmraid-activate: WARNING: $1"
	fi
}

log_error()
{
	if type logger > /dev/null ; then
		logger -t dmraid-activate "ERROR: $1"
	else
		echo "dmraid-activate: ERROR: $1"
	fi
}

modprobe -q dm_mod
+ modprobe -q dm_mod
+ set -v
# Arguments: $1 = Name of array you want activated.
activate_array ()
{
	Raid_Setinfo=$(dmraid -i -si "$1")
	if [ -z "$Raid_Setinfo" ]; then
		log_error "Cannot retrieve RAID set information for $1"
		return 1
	fi

	dmraid -i -si -ct "$1" >> /dev/dmraid.log 2>&1
	dmraid -i -si -cd "$1" >> /dev/dmraid.log 2>&1
	Raid_Type=$(dmraid -i -si -ct "$1")
	Raid_Nodevs=$(dmraid -i -si -cd "$1")

	case "$Raid_Type" in
		stripe)
			if [ "$Raid_Nodevs" -lt 2 ]; then
if [ -n "$Degraded" ]; then
	log_error "Cannot bring up a RAID0 array in degraded mode, not all devices present."
fi
return 2
			fi
			;;
		mirror)
			if [ "$Raid_Nodevs" -lt 2 ]; then
if [ -z "$Degraded" ]; then
	log_error "Raid set $Raid_Name is degraded. Not activating"
	return 2
else
	log_warning "Activating $Raid_Name in degraded mode"
	Return_Val=3
fi
			fi
			;;
		raid5_*)
			modprobe -q dm_raid45
			if [ "$Raid_Nodevs" -lt 3 ]; then
if [ -z "$Degraded" ]; then
	log_error "Raid set $Raid_Name is degraded. Not activating"
	return 2
else
	log_warning "Activating $Raid_Name in degraded mode"
	Return_Val=3
fi
			fi
			;;
	esac

	# At this point we have the required number of devs, or the user wants the
	# array brought up in degraded mode, except in the case of striped arrays.
	dmraid -i -ay -Z "$1"
	return $Return_Val
}

log_warning()
{
	if type logger > /dev/null ; then
		logger -t dmraid-activate "WARNING: $1"
	else
		echo "dmraid-activate: WARNING: $1"
	fi
}

log_error()
{
	if type logger > /dev/null ; then
		logger -t dmraid-activate "ERROR: $1"
	else
		echo "dmraid-activate: ERROR: $1"
	fi
}

modprobe -q dm_mod
+ modprobe -q dm_mod

if [ -z "$1" ] || [ "$1" = "--degraded" ] && [ "$#" -lt 2 ]; then
	echo "Node name not specified." >&2
	exit 1
fi
+ '[' -z sdc ']'
+ '[' sdc = --degraded ']'

if [ "$1" = "--degraded" ]; then
	Degraded=1
	Node_Name=$2
else
	Node_Name=$1
fi
+ '[' sdc = --degraded ']'
+ Node_Name=sdc

dmraid -i -r -cr /dev/$Node_Name | grep -vi "No RAID disks" | grep -vi "formats discovered" >> /dev/dmraid.log 2>&1
+ grep -vi 'No RAID disks'
+ dmraid -i -r -cr /dev/sdc
+ grep -vi 'formats discovered'

if [ -z "$1" ] || [ "$1" = "--degraded" ] && [ "$#" -lt 2 ]; then
	echo "Node name not specified." >&2
	exit 1
fi
+ '[' -z sdb ']'
+ '[' sdb = --degraded ']'

if [ "$1" = "--degraded" ]; then
	Degraded=1
	Node_Name=$2
else
	Node_Name=$1
fi
+ '[' sdb = --degraded ']'
+ Node_Name=sdb

dmraid -i -r -cr /dev/$Node_Name | grep -vi "No RAID disks" | grep -vi "formats discovered" >> /dev/dmraid.log 2>&1
+ grep -vi 'formats discovered'
+ set -v
# Arguments: $1 = Name of array you want activated.
activate_array ()
{
	Raid_Setinfo=$(dmraid -i -

Bug#480430: merkaartor 0.0.11~svn7913+lenny-1 does not seem to work, despite the "Use 0.6 API" option

2009-04-21 Thread Sebastian Niehaus
Nicolas Boullis  writes:

> On Tue, Apr 21, 2009 at 09:19:02PM +0200, Sebastian Niehaus wrote:

[...]
 
>> However. the Openstreetmap servers where (nearly) overloaded today and
>> things did not run smoothly all the time.
>> 
>> Therefore I did not repeat my bug report. 

Server load at openstreetmap.org has dropped now. I tried to upload a
change which again did not work ("Bad Request").

Uploading with JOSM works fine. 

[...]

>  Hence, I don't think it is a problem with the overloaded servers...

Yes, indeed. 

> Bernd, please consider uploading a new merkaartor package. An upload to 
> stable-proposed-updates (or volatile) might be a good idea.

+1 

Cheers, 


Sebastian 



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



Bug#524993: [pkg-cli-apps-team] Bug#524993: gnome-do-plugins: directly only suggests evolution, indirectly pulls it in

2009-04-21 Thread Christopher James Halse Rogers
As it currently stands, this can't be done in a policy-compliant way -
the Evolution plugin requires libevolution5.0-cil, and
libevolution5.0-cil links against a library only provided in the
evolution package.  We *also* can't split the gnome-do-plugins package
due to the way gnome-do uses mono.addins.

The next gnome-do upstream release will change the mono.addins usage,
making it possible to split the plugins package so plugins with long
dependency chains like evolution will be split out.


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


Bug#525094: linux-image-2.6.26-2-amd64: initrd image creation fails

2009-04-21 Thread Karl Magdsick


Package: linux-image-2.6.26-2-amd64Version: 2.6.26-15Severity: important

In the course of sudo apt-get update; sudo apt-get upgrade, I get:
Setting up linux-image-2.6.26-2-amd64 (2.6.26-15) ...Running depmod.Running 
mkinitramfs-kpkg.Deprecation WARNING: use update-initramfs(8)cpio: 
./etc/udev/rules.d/libmtp8.rules: Cannot stat: No such file 
ordirectorymkinitramfs-kpkg failed to create initrd image.Failed to create 
initrd image.dpkg: error processing linux-image-2.6.26-2-amd64 (--configure): 
subprocess post-installation script returned error exit status 9

-- Package-specific info:
-- System Information:Debian Release: squeeze/sid  APT prefers testing  APT 
policy: (500, 'testing')Architecture: amd64 (x86_64)
Kernel: Linux 2.6.26-1-amd64 (SMP w/1 CPU core)Locale: LANG=en_US.UTF-8, 
LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)Shell: /bin/sh linked to /bin/bash
Versions of packages linux-image-2.6.26-2-amd64 depends on:ii  debconf 
[debconf-2.0] 1.5.26 Debian configuration management syii  
initramfs-tools [linux-initra 0.93.2 tools for generating an initramfsii  
module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo
linux-image-2.6.26-2-amd64 recommends no packages.
Versions of packages linux-image-2.6.26-2-amd64 suggests:ii  grub   
   0.97-53GRand Unified Bootloader (Legacy vpn  linux-doc-2.6.26
   (no description available)
-- debconf information:  shared/kernel-image/really-run-bootloader: true  
linux-image-2.6.26-2-amd64/postinst/bootloader-error-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/preinst/lilo-initrd-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/postinst/depmod-error-2.6.26-2-amd64: false  
linux-image-2.6.26-2-amd64/postinst/old-dir-initrd-link-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/postinst/create-kimage-link-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/preinst/initrd-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/preinst/lilo-has-ramdisk:  
linux-image-2.6.26-2-amd64/preinst/abort-install-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/postinst/old-initrd-link-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/postinst/depmod-error-initrd-2.6.26-2-amd64: false  
linux-image-2.6.26-2-amd64/postinst/bootloader-test-error-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/preinst/overwriting-modules-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/postinst/kimage-is-a-directory:  
linux-image-2.6.26-2-amd64/preinst/failed-to-move-modules-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/prerm/would-invalidate-boot-loader-2.6.26-2-amd64: 
true  linux-image-2.6.26-2-amd64/postinst/old-system-map-link-2.6.26-2-amd64: 
true  linux-image-2.6.26-2-amd64/preinst/abort-overwrite-2.6.26-2-amd64:  
linux-image-2.6.26-2-amd64/preinst/bootloader-initrd-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/preinst/elilo-initrd-2.6.26-2-amd64: true  
linux-image-2.6.26-2-amd64/prerm/removing-running-kernel-2.6.26-2-amd64: true

_
Windows Live™ SkyDrive™: Get 25 GB of free online storage.  
http://windowslive.com/online/skydrive?ocid=TXT_TAGLM_WL_skydrive_042009


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



Bug#525081: xserver-xorg-input-kbd: keycode for windows keys has changed

2009-04-21 Thread Brice Goglin
Noah Meyerhans wrote:
> Package: xserver-xorg-input-kbd
> Version: 1:1.3.2-3
> Severity: normal
>
> Hello.  I'm not 100% sure that I'm submitting this bug against the right
> package, but figure this is a good place to start.  Please feel free to
> re-assign.
>
> Sometime between lenny and current sid, the keycode and keysym generated
> by the Windows key on my Thinkpad X300 changed.  On the same hardware,
> if I boot to a lenny installation and run xev, I see the following
> output when pressing the windows key:
>   

Please send your xorg.conf and Xorg.0.log

Brice




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



Bug#522598: work around to improve the situation a bit - NOT

2009-04-21 Thread H. S.
After I sent my previous post, I experimented a bit more. Even though
the work around that I posted earlier worked in audacious, it did not
work later in the day when I tested with mplayer and flash videos on
some websites. Just though to clear this up and exclude any false
leads.

Thanks.



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



Bug#525079: stale 10_hur file

2009-04-21 Thread Felix Zielcke
Am Mittwoch, den 22.04.2009, 01:05 +0200 schrieb Christoph Anton
Mitterer:

> It seems that you no longer install 10_grub per default since some version.
> 
> However the user was not even warned (NEWS.Debian) about this nor is  
> the file automatically deleted... which leads to never-deleted stale  
> legacy files...

What 10_grub file? There was never such a file.
The only files which won't get installed anymore are /etc/grub.d/10_hurd
and 10_freebsd on Linux systems and likewise for 10_linux on non Linux
system like Hurd and kFreebsd.
They won't yet removed on an upgrade but for this we already have a
bugreport.
-- 
Felix Zielcke




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



Bug#524984: does not handle HEAD requests

2009-04-21 Thread Matthew Palmer
On Tue, Apr 21, 2009 at 10:56:16PM -0400, Eric Cooper wrote:
> package approx
> tag 524984 confirmed
> thanks
> 
> > I've just discovered that approx does not gracefully handle HEAD
> > requests, as used by d-i (via the wget --spider command).  This
> > makes it rather tricky to use an approx cache to back d-i
> > development.
> 
> You're right, it only supports GETs currently.
> 
> It seems to me that if approx gets a HEAD for something not in the
> cache, it will have to download it from the remote repository just so
> it can report that it exists (or confirm that it doesn't).  Is that
> the desired behavior?

I would imagine it would only have to do a HEAD request upstream, not do a
full download.  I could live with those HEADs not being cached.

The specific use case of d-i is it just HEADs the Release file to confirm
that the repo URL is something that smells roughly like a Debian package
repo; in normal operation, the Release file will get retrieved fully (by
another part of the d-i build process) shortly thereafter, along with all
the packages.

A brief thinking session leads me to think that a 404 response to a HEAD
when the file isn't in the cache and we're in offline mode is the least
worst option.

- Matt



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



Bug#525093: ITP: libzoom-ruby -- Ruby binding to the Z39.50 Object-Orientation Model

2009-04-21 Thread Ryan Niebur
Package: wnpp
Owner: Ryan Niebur 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: libzoom-ruby
  Version : 0.4.1
  Upstream Author : Laurent Sansonetti 
* URL : http://ruby-zoom.rubyforge.org/
* License : LGPL-2.1
  Programming Lang: Ruby
  Description : Ruby binding to the Z39.50 Object-Orientation Model
 Ruby/ZOOM provides a Ruby binding to the Z39.50 Object-Orientation
 Model (ZOOM), an abstract object-oriented programming interface to a
 subset of the services specified by the Z39.50 standard, also known
 as the international standard ISO 23950.
 .
 Z39.50 is a client-server protocol for searching and retrieving
 information from remote computer databases. It is covered by ANSI/NISO
 standard Z39.50, and ISO standard 23950. The standard's maintenance
 agency is the Library of Congress.


-- 
_
Ryan Niebur
ryanrya...@gmail.com


signature.asc
Description: Digital signature


Bug#524968: apticron: Apticron mail subject ignores value of $SYSTEM instead using `/bin/hostname`

2009-04-21 Thread Tiago Bortoletto Vaz
tag 524968 +moreinfo
thanks

Hi Andrew,

On Tue, Apr 21, 2009 at 09:30:49AM +0100, Andrew Robert Nicols wrote:
> Package: apticron
> Version: 1.1.27
> Severity: normal
> 
> 
> Although /etc/apticron/apticron.conf allows setting of the SYSTEM variable
> to override the hostname used in apticron mails, it does not make use of
> this variable in the mail subject. Further more, it doesn't even use the
> FQDN of the server which can be frustrating when dealing with servers whose
> names have colliding name spaces.
> 
> I propose either an additional variable for the subject hostname, or making
> use of the existing SYSTEM variable in the mail subject.

Thanks for reporting, but I can't see your point here. The script seems to give
to $SYSTEM a FQDN when calling "hostname -f":

# Set the SYSTEM
SYSTEM=`/bin/hostname -f`

Later it loads the config file and overrides the $SYSTEM value in case it's set
in apticron.conf:

# Source the config file
[ -e /etc/apticron/apticron.conf ] && . /etc/apticron/apticron.conf

Finally, it uses $SYSTEM on email subject:

   ) 2>&1 | /usr/bin/mailx -a "Content-type: text/plain; charset=UTF-8" -s 
"$DISTRIB_ID package updates on $SYSTEM" $EMAIL

Could you re-check whether this problem really happens there? If so, please try
to echo $SYSTEM before and after loading the config file (line above) and give
me the output.

Regards,

-- 
Tiago Bortoletto Vaz
http://tiagovaz.org
0xA504FECA - http://pgp.mit.edu




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



Bug#525092: [openoffice.org] clicking the new document button results in crash, selecting the type of document is ok

2009-04-21 Thread Marc Graham
Package: openoffice.org
Version: 1:3.0.1-9
Severity: important

--- Please enter the report below this line. ---

If i click the new doc button in writer and also in spreadsheet it crashes.
If i click the drop down menu and select the type of file its ok though.

Sorry, couldn't download dbg package as i'm on dial up connection.

Sorry also that I'm such a newbie in case i've missed something important.

Marc

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

Debian Release: squeeze/sid
  500 testing www.debian-multimedia.org 
  500 testing security.debian.org 
  500 testing ftp.au.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-==
openoffice.org-core   (= 1:3.0.1-9) | 1:3.0.1-9
openoffice.org-writer   | 1:3.0.1-9
openoffice.org-calc | 1:3.0.1-9
openoffice.org-impress  | 1:3.0.1-9
openoffice.org-draw | 1:3.0.1-9
openoffice.org-math | 1:3.0.1-9
openoffice.org-base | 1:3.0.1-9
openoffice.org-report-builder-bin   | 1:3.0.1-9
ttf-dejavu  | 2.29-2
openoffice.org-officebean   | 1:3.0.1-9
openoffice.org-writer2latex | 0.5.0.2-4
openoffice.org-filter-mobiledev | 1:3.0.1-9
liblucene2-java  (>= 2.3.2) | 2.4.0+ds1-5
openoffice.org-java-common (>> 2.2.0-4) | 1:3.0.1-9







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



Bug#525090: plasma-widgets-addons: bball widget missing default image (invisible)

2009-04-21 Thread Lisandro Damián Nicanor Pérez Meyer
forwarded 252090 https://bugs.kde.org/show_bug.cgi?id=190320
thanks

On Mar 21 Abr 2009 23:03:51 Tarek Soliman escribió:
> Package: plasma-widgets-addons
> Version: 4:4.2.2-1
> Severity: normal
>
> bouncy ball plasmoid (BbalL) starts out with no image defined, making it
> invisible.
>
> There are a couple of svgz files in /usr/share/kde4/apps/bball/ that look
> like they're supposed to be the images.
>
> A workaround I'm using for now is to "catch" the ball (even though it's
> invisible) and configure it to use another image, making it visible.

The Open File dialog of BBall does not open .svgz, while the images provided 
by the package are compressed svg :-/



-- 
6 - ¿Cuál es el botón del mouse que permite acceder a las acciones más
comunes de archivos?
a- El derecho
b- El izquierdo
c- El central
...
¿PORQUÉ no puedo ver la cara de un usuario de Macintosh?, ¿EH?
  Guillermo Marraco
  http://mx.grulic.org.ar/lurker/message/20080307.112156.460149a2.es.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/



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


Bug#525048: sort: sefaults

2009-04-21 Thread Bob Proulx
Michael Stone wrote:
> Otavio Salvador wrote:
>> Michael Stone wrote:
>>> you wrote:
 $: sort -um -o list list work
>>>
>>> I'll look at the segfault, but I'm not sure that was ever guaranteed to give
>>> a useful result (you're overwriting an input file).
>>
>> Yes, it works nicely in stable release (hence the notfound usage) so it
>> qualifies as a regression IMO.
>
> I didn't say it didn't work, I said "I'm not sure that was ever  
> guaranteed to give a useful result".

In this case it is guaranteed to provide a meaning result.  Both
traditional implementations and POSIX require -o to buffer output so
that it can also be an input file.  (I think that is virtually the
entire reason for the -o instead of simply using output redirection.)

  http://www.opengroup.org/onlinepubs/009695399/utilities/sort.html

  -o  output
  Specify the name of an output file to be used instead of the
  standard output. This file can be the same as one of the input files.

In any case it shouldn't segfault.

Bob



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



Bug#493185: v86d doesn't work from initramfs

2009-04-21 Thread Alban Browaeys
I workedaround this issue by removing the "vga=..." from the kernel 
command line .
Having it with the video="" switch made it fails this way under my 
setup (could be a conflict with vesafb legacy).


Is this the same issue ?

Cheers,
Alban




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



Bug#426481: lynx cookies still not supported

2009-04-21 Thread Atsuhito Kohda
Hi all,

On Sun, 19 Apr 2009 12:49:58 +0200, Philippe Coval wrote:

> I am afraid this bug is still present...
> Do you need help to fix it?

Sorry but I overlooked the bug (because this was for
lynx but not for lynx-cur ;-)

It looked very simple to fix this so I'll fix it in the 
next upload.

Thanks for your interest in lynx(-cur).

Regards,2009-4-22(Wed)

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda 
 Department of Math., Univ. of Tokushima



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



Bug#524984: does not handle HEAD requests

2009-04-21 Thread Eric Cooper
package approx
tag 524984 confirmed
thanks

> I've just discovered that approx does not gracefully handle HEAD
> requests, as used by d-i (via the wget --spider command).  This
> makes it rather tricky to use an approx cache to back d-i
> development.

You're right, it only supports GETs currently.

It seems to me that if approx gets a HEAD for something not in the
cache, it will have to download it from the remote repository just so
it can report that it exists (or confirm that it doesn't).  Is that
the desired behavior?

-- 
Eric Cooper e c c @ c m u . e d u



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



Bug#475051: Perfect time to fix this

2009-04-21 Thread Atsuhito Kohda
Hi Helge,

On Tue, 21 Apr 2009 21:23:46 +0200, Helge Kreutzmann wrote:

> I think this would be a perfect time to fix this, given that Squeeze
> is now in full developement. You might contact debian-l10n-english for
> a review before. If unsure, contact Christian Perrier.

Thanks for your advice but I believe this package should 
be simply removed from Debian or (better?) should be replaced 
with mathematica-fonts or something.

I already build a test package of mathematica-fonts and
am wondering what is the best way to do at present.

Regards,  2009-4-22(Wed)

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda 
 Department of Math., Univ. of Tokushima



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



Bug#514055: [Cbe-oss-dev] Bug#514055: debian still not working on PS3

2009-04-21 Thread thegame4121982
This is great news. Is this only for the testing version of Debian codename 
squeeze or will this fix also be included in the next point release of 
Debian Lenny?  Last time I tried to do an install of Debian using the Debian 
CD for powerpc, it would not install because the installer was missing the 
drivers for the optical drive, hard drive, and network card as far as I 
know.


--
From: "Wartan Hachaturow" 
Sent: Tuesday, April 21, 2009 4:00 PM
To: "Geoff Levand" 
Cc: "Wouter Verhelst" ; <514...@bugs.debian.org>; "Martin 
Michlmayr" ; "Wartan Hachaturow" ; 


Subject: Re: [Cbe-oss-dev] Bug#514055: debian still not working on PS3


On Thu, Apr 16, 2009 at 01:23:35PM -0700, Geoff Levand wrote:


Did these changes get committed?  If not, could you please commit
them, or post what you have so Wouter can do that?


I have commited them a while ago. We've had problems with daily-built 
images, so
the ones you tried were actually quite old :) It is currently being fixed, 
so

the recent ones should include the changes.

--
Regards, Vartan.
"Be different: conform."
___
cbe-oss-dev mailing list
cbe-oss-...@ozlabs.org
https://ozlabs.org/mailman/listinfo/cbe-oss-dev





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



Bug#525091: [nvidia-graphics-drivers] New drivers available (180.51)

2009-04-21 Thread Jason Heeris
Package: nvidia-graphics-drivers
Version: 180.44
Severity: wishlist

There is a new set of drivers out (180.51).

http://www.nvidia.com/object/linux_display_amd64_180.51.html

Among other things, includes support for new GPUs :)

--- System information. ---
Architecture: amd64
Kernel: Linux 2.6.29-3 (custom)

Debian Release: squeeze/sid
500 testing security.debian.org
500 testing ftp.debian-unofficial.org
500 testing ftp.au.debian.org
500 testing debian-multimedia.org
500 squeeze www.lamaresh.net

--- Package information. ---
Depends (Version) | Installed
===-+-===
|


Bug#525088: xtables-addons-source: should depend on pkg-config

2009-04-21 Thread John Wright
My patch won't apply, since I ran into this while attempting a backport.
Sorry about that.  Still, the solution is simple enough: add pkg-config
to the dependency list of xtables-addons-source.

-- 
John Wright 



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



Bug#524567: resize2fs: -M does not work as expected

2009-04-21 Thread Theodore Tso
On Sun, Apr 19, 2009 at 09:59:55PM +0200, Wouter Verhelst wrote:
> I tried, but those patches do not cleanly apply to the version in
> Debian. I presume there's a git repository somewhere that I can clone?
> I'll happily try compiling and running that one, if necessary.

There's a git repository here:

git://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
http://www.kernel.org/pub/scm/fs/ext2/e2fsprogs.git

But the fix should be in the latest e2fsprogs version 1.41.4-2 which I
uploaded to unstable.  If you can give that a try and see if that
fixes things, then I'll close this bug.

Thanks!!

- Ted



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



Bug#525090: plasma-widgets-addons: bball widget missing default image (invisible)

2009-04-21 Thread Tarek Soliman
Package: plasma-widgets-addons
Version: 4:4.2.2-1
Severity: normal

bouncy ball plasmoid (BbalL) starts out with no image defined, making it
invisible.

There are a couple of svgz files in /usr/share/kde4/apps/bball/ that look
like they're supposed to be the images.

A workaround I'm using for now is to "catch" the ball (even though it's
invisible) and configure it to use another image, making it visible.

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

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

Versions of packages plasma-widgets-addons depends on:
ii  kdebase-runtime   4:4.2.2-1  runtime components from the offici
ii  kdebase-workspace-libs4+5 4:4.2.2-2  libraries provided by the KDE 4 ba
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE 4 appli
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libgl1-mesa-glx [libgl1]  7.4-2  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]7.4-2  The OpenGL utility library (GLU)
ii  libkexiv2-7   4:4.2.2-1  Qt like interface for the libexiv2
ii  libphonon44:4.3.1-1  Phonon multimedia framework for Qt
ii  libplasma34:4.2.2-2  library for the KDE 4 Plasma deskt
ii  libqt4-dbus   4.4.3-2Qt 4 D-Bus module
ii  libqt4-svg4.4.3-2Qt 4 SVG module
ii  libqt4-webkit 4.4.3-2Qt 4 WebKit module
ii  libqt4-xml4.4.3-2Qt 4 XML module
ii  libqtcore44.4.3-2Qt 4 core module
ii  libqtgui4 4.4.3-2Qt 4 GUI module
ii  libstdc++64.3.3-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.2.1-1  X11 client-side library
ii  phonon4:4.3.1-1  metapackage for Phonon multimedia 
ii  plasma-dataengines-addons 4:4.2.2-1  addons for KDE 4 Plasma - data eng
ii  plasma-dataengines-workspace  4:4.2.2-2  KDE 4 base workspace Plasma data e

Versions of packages plasma-widgets-addons recommends:
ii  plasma-widget-lancelot4:4.2.2-1  addons for KDE 4 Plasma - lancelot

plasma-widgets-addons suggests no packages.

-- no debconf information



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



Bug#525089: xtables-addons-source: should allow building against other kernels

2009-04-21 Thread John Wright
Package: xtables-addons-source
Version: 1.14-1
Severity: important
Tags: patch

When I use module-assistant to build the xtables-addons modules, no
matter what kernel version I specify, it wants to build against the
currently-running kernel.  I have attached a patch that passes the
$(KSRC) make variable on to the configure script.

Thanks,
-- 
John Wright 
diff --git a/debian/rules b/debian/rules
index bd6d51a..d5b09ad 100755
--- a/debian/rules
+++ b/debian/rules
@@ -115,7 +115,8 @@ binary-modules:
 	./configure --prefix=/usr \
 		--mandir=\$${prefix}/share/man \
 		--infodir=\$${prefix}/share/info \
-		--libexecdir=/lib
+		--libexecdir=/lib \
+		--with-kbuild=$(KSRC)
 
 	# Build the module
 	$(MAKE)


Bug#525088: xtables-addons-source: should depend on pkg-config

2009-04-21 Thread John Wright
Package: xtables-addons-source
Version: 1.14-1
Severity: serious
Tags: patch

The configure script in xtables-addons-source requires pkg-config to be
available:


checking for libxtables... configure: error: in 
`/usr/src/modules/xtables-addons':
configure: error: The pkg-config script could not be found or is too old.  Make 
sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Alternatively, you may set the environment variables libxtables_CFLAGS
and libxtables_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

To get pkg-config, see .
See `config.log' for more details.
make[1]: *** [binary-modules] Error 1
make[1]: Leaving directory `/usr/src/modules/xtables-addons'
make: *** [kdist_build] Error 2
BUILD FAILED!


I have attached a patch.

Thanks,
-- 
John Wright 
diff --git a/debian/control b/debian/control
index 0c4d347..11e3cf4 100644
--- a/debian/control
+++ b/debian/control
@@ -15,6 +15,7 @@ Depends: module-assistant,
 debhelper (>= 5),
 make,
 bzip2,
+pkg-config,
 iptables-dev
 Description: Source for the xtables-addons driver
  This package provides the source code for the xtables-addons kernel modules.


Bug#255008: MPB returns "Error" in some times

2009-04-21 Thread Hirokazu Kubota

Dear Thorsten,

Thank you for kind reply.
I haven't see the error in debian-based OS (KNOPPIX and Ubuntu) on  
recent days.

Your package works fine and it helps me very much.


I'm very sorry that I have not included information about OS when I  
reported the error.
According to the date I reported the error, the version may be the  
1st or 2nd

update of debian woody.
I cannot reproduce the error as I replaced all of those PCs.


FYI.
Linking ACML(64bit) to MPB package gains about 30 % speed up when I  
run check.ctl in Opteron workstation.
I simply added "--with-blas=acml" line at a end of CONFIGOPTION of  
riles file to link ACML.




Best regards

Hirokazu Kubota


On 2009/04/22, at 2:51, Thorsten Alteholz wrote:


Hi Hirokazu,

it has been a long time since you reported that bug. I just run  
this check.ctl abount fifty times on a Intel(R) Pentium(R) D CPU  
2.80GHz and could not reproduce your error. Did you ever see that  
bug after your report again?


Best regards
Thorsten








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



Bug#525087: Documentation: man page error re: find_all_inputs method

2009-04-21 Thread John Pearson
Package: libwww-mechanize-perl
Version: 1.34-2
Severity: normal


The man page for WWW::Mechanize shows the find_all_inputs method
accepting a single hash reference argument.  It actually requires
a flat list of attribute => value pairs.



John Pearson

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

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

Versions of packages libwww-mechanize-perl depends on:
ii  libhtml-parser-perl3.56-1+b1 A collection of modules that parse
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  libwww-perl5.813-1   WWW client/server library for Perl
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 

Versions of packages libwww-mechanize-perl recommends:
ii  libio-socket-ssl-perl 1.16-1 Perl module implementing object or

libwww-mechanize-perl suggests no packages.

-- no debconf information



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



Bug#524999: libpam-modules: memlock setting from limits.conf ignored in 1.0.1-9

2009-04-21 Thread Steve Langasek
tags 524999 moreinfo unreproducible
thanks

On Tue, Apr 21, 2009 at 02:08:15PM +0200, Daniel Kraft wrote:

> I have a manually changed setting for memlock in /etc/security/limits.conf:

> myselfhardmemlock 10

> After upgrading to 1.0.1-9 (maybe already with 1.0.1-7, though I
> didn't notice) this setting was ignored and the default of 64K used
> instead.  Downgrading to 1.0.1-5+lenny1 (without changing limits.conf
> or anything else) fixed the problem.

I have quite specifically tested pam_limits with memlock prior to this
upload, and cannot reproduce the problem in question.

Please post your full /etc/security/limits.conf file.

Also, what PAM service are you seeing this with?

Finally, the reportbug template shows that you're running a pre-lenny
kernel.  Does this problem persist if you upgrade to the lenny release
kernel (or at least, to 2.6.26)?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org



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



Bug#286456: Man page no longer maintained?

2009-04-21 Thread Ralf Treinen
Hello Helge and Junichi,

On Tue, Apr 21, 2009 at 09:11:22PM +0200, Helge Kreutzmann wrote:

> quite some time ago I provided a patch to the advi man page which did
> not receive a single reply. Is this man page no longer maintained?

the problem is rather that the package itself is practically
unmaintained. There is a new upstream version available since
quite some time, and noone of us cared so far to update the package.
I think there are several reasons for this:

- noone of the pkg-ocaml team seems to use advi any more
- the previous version of advi contains a long list of debian patches,
  and most of them do not apply to the newest upstream version. So 
  updating the package would mean quite some work, and probably good
  knowledge of advi.
- There is a security issue with advi, so one needs to carefully patch
  the upstream source here.

Would you (Junichi and/or Helge) be interested in taking over 
maintenance of advi ? be aware that this will require, for the reasons
outlined above, require some skills in the OCaml language.

-Ralf
-- 
Ralf Treinen
Laboratoire Preuves, Programmes et Systèmes
Université Paris Diderot, Paris, France.
http://www.pps.jussieu.fr/~treinen/



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



Bug#525086: ikiwiki: 3.10 postinst fails on Lenny

2009-04-21 Thread Axel Beckert
Package: ikiwiki
Version: 3.10
Severity: normal

When installing ikiwiki 3.10 on Lenny, postinst fails:

Setting up ikiwiki (3.10) ...
Usage: update-python-modules [-v] [-c] package_directory [...]
   update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f|-p]

update-python-modules: error: /usr/share/python-support/ikiwiki.private is not 
a directory
dpkg: error processing ikiwiki (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 ikiwiki

ikiwiki has no dependency on python-support (to which
update-python-modules belongs) and the only indirect dependency is via
python-docutils which isn't installed on this machine.

So I assume that at least a versioned "conflicts" against Lennys
version of python-support (0.8.4) is missing, but probably also a
dependency (or recommends or suggests) of python-support because
ikiwiki uses it in its postinst script.

The error doesn't happen on Sid which has python-support 1.0.2.

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (990, 'stable'), (600, 'unstable'), (110, 'experimental')
Architecture: i386 (i686)

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

Versions of packages ikiwiki depends on:
ii  libhtml-parser-perl3.56-1+b1 A collection of modules that parse
ii  libhtml-scrubber-perl  0.08-4Perl extension for scrubbing/sanit
ii  libhtml-template-perl  2.9-1 HTML::Template : A module for usin
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  markdown   1.0.1-7   Text-to-HTML conversion tool
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 

Versions of packages ikiwiki recommends:
ii  bzr   1.5-1.1easy to use distributed version co
ii  gcc [c-compiler]  4:4.3.2-2  The GNU C compiler
ii  gcc-4.3 [c-compiler]  4.3.2-1.1  The GNU C compiler
ii  git-core  1:1.5.6.5-3+lenny1 fast, scalable, distributed revisi
pn  libauthen-passphrase-  (no description available)
ii  libc6-dev [libc-dev]  2.7-18 GNU C Library: Development Librari
pn  libcgi-formbuilder-pe  (no description available)
pn  libcgi-session-perl(no description available)
pn  liblwpx-paranoidagent  (no description available)
ii  libmail-sendmail-perl 0.79-5 Send email from a perl script
pn  libnet-openid-consume  (no description available)
pn  libterm-readline-gnu-  (no description available)
ii  libtimedate-perl  1.1600-9   Time and date functions for Perl
ii  libxml-simple-perl2.18-1 Perl module for reading and writin
ii  mercurial 1.0.1-5.1  Scalable distributed version contr
ii  subversion1.5.1dfsg1-2   Advanced version control system

Versions of packages ikiwiki suggests:
ii  dvipng 1.11-1convert DVI files to PNG graphics
ii  graphviz   2.20.2-3  rich set of graph drawing tools
ii  libcrypt-ssleay-perl   0.57-1+b1 Support for https protocol in LWP
ii  libdigest-sha1-perl2.11-2+b1 NIST SHA-1 message digest algorith
pn  libfile-mimeinfo-perl  (no description available)
ii  libhtml-tree-perl  3.23-1represent and create HTML syntax t
ii  liblocale-gettext-perl 1.05-4Using libc functions for internati
ii  libmailtools-perl  2.03-1Manipulate email in perl programs
pn  libnet-amazon-s3-perl  (no description available)
pn  librpc-xml-perl(no description available)
pn  libsearch-xapian-perl  (no description available)
pn  libsort-naturally-perl (no description available)
pn  libtext-csv-perl   (no description available)
pn  libtext-textile-perl   (no description available)
pn  libtext-typography-perl(no description available)
pn  libtext-wikicreole-perl(no description available)
pn  libtext-wikiformat-perl(no description available)
pn  libxml-feed-perl   (no description available)
pn  perlmagick (no description available)
pn  polygen(no description available)
ii  python 2.5.2-3   An interactive high-level object-o
pn  python-docutils(no description available)
pn  sparkline-php  (no description available)
ii  texlive2007.dfsg.1-5 TeX Live: A decent selection of th
ii  tidy   20080116cvs-2 HTML syntax checker and reformatte
pn  viewvc | gitweb | viewcvs  (no description available)
pn  xapian-omega   (

Bug#522598: work around to improve the situation a bit

2009-04-21 Thread H. S.
Hello,

Just a little followup. Discovered from
https://fedoraproject.org/wiki/Features/GlitchFreeAudio that following
helps the situation a bit:

The PulseAudio sound server has been rewritten to use timer-based
audio scheduling instead of the traditional interrupt-driven approach.
Timer-based scheduling may expose issues in some Alsa drivers. To turn
timer-based scheduling off, replace the line

load-module module-hal-detect

in /etc/pulse/default.pa by

load-module module-hal-detect tsched=0


After the above modification, I still get following messages in syslog:
Apr 21 20:36:31 red pulseaudio[16799]: module-alsa-sink.c: ALSA woke
us up to write new data to the device, but there was actually nothing
to write! Most likely this is an ALSA driver bug. Please report this
issue to the PulseAudio developers.
Apr 21 20:37:02 red last message repeated 14 times


but the sound chopping appears to have gone and sound plays smoothly now.


Regards.



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



Bug#505071: [Pkg-shadow-devel] Bug#505071: closed ... fixed in shadow 1:4.1.3-1

2009-04-21 Thread Paul Szabo
Dear Nicolas,

Had a quick look at src/login.c and libmisc/utmp.c, and see the "plain"
(not security) issues below. - The enspent() block should be moved up
in newgrp.c also.

Cheers, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia


--- login.c.bak 2009-04-22 09:34:08.0 +1000
+++ login.c 2009-04-22 10:32:53.0 +1000
@@ -533,6 +533,7 @@
(void) puts (_("No utmp entry.  You must exec \"login\" from 
the lowest level \"sh\""));
exit (1);
}
+   /* Take note that utent may be NULL after this... */
 
tmptty = ttyname (0);
if (NULL == tmptty) {
@@ -625,15 +626,13 @@
 
if (rflg || hflg) {
cp = hostname;
-   } else {
 #ifdef HAVE_STRUCT_UTMP_UT_HOST
-   if ('\0' != utent->ut_host[0]) {
-   cp = utent->ut_host;
-   } else
+/* Take care with utent that may be NULL */
+   } else if (utent != NULL && '\0' != utent->ut_host[0]) {
+   cp = utent->ut_host;
 #endif /* HAVE_STRUCT_UTMP_UT_HOST */
-   {
-   cp = "";
-   }
+   } else {
+   cp = "";
}
 
if ('\0' != *cp) {
--- utmp.c.bak  2009-04-22 09:34:34.0 +1000
+++ utmp.c  2009-04-22 10:32:55.0 +1000
@@ -93,6 +93,7 @@
  * Return NULL if no entries exist in utmp for the current process.
  */
 struct utmp *get_current_utmp (void)
+/* May return NULL. Should it return an "empty" (zeroed) something instead? */
 {
struct utmp *ut;
struct utmp *ret = NULL;
@@ -109,6 +110,13 @@
&& (   (LOGIN_PROCESS == ut->ut_type)
|| (USER_PROCESS  == ut->ut_type))
 #endif
+/*
+ * We use HAVE_STRUCT_UTMP_UT_ID above (surely utmp has that??!!)
+ * Should we use
+ *   HAVE_STRUCT_UTMP_UT_LINE below, or use
+ *   HAVE_STRUCT_UTMP_UT_PID above
+ * (are defined anywhere?)
+ */
/* A process may have failed to close an entry
 * Check if this entry refers to the current tty */
&& is_my_tty (ut->ut_line)) {
@@ -117,6 +125,7 @@
}
 
if (NULL != ut) {
+   /* malloc, or xmalloc as everywhere else? */
ret = malloc (sizeof (*ret));
memcpy (ret, ut, sizeof (*ret));
}
@@ -200,6 +209,7 @@
 
assert (NULL != name);
assert (NULL != line);
+   /* BUG: utent in login.c may be NULL (in prepare_utmpx also) */
assert (NULL != ut);
 
 
@@ -234,6 +244,7 @@
strncpy (utent->ut_line, line,  sizeof (utent->ut_line));
 #ifdef HAVE_STRUCT_UTMP_UT_ID
strncpy (utent->ut_id,   ut->ut_id, sizeof (utent->ut_id));
+   /* BUG: set "correct" ut_id based on "line", in case we did not get any 
(in prepare_utmpx also) */
 #endif /* HAVE_STRUCT_UTMP_UT_ID */
 #ifdef HAVE_STRUCT_UTMP_UT_NAME
strncpy (utent->ut_name, name,  sizeof (utent->ut_name));



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



Bug#489141: me too

2009-04-21 Thread Andrew Ruthven
Hi,

I'm getting the same issue with X apps not being able to access
~/.Xauthority with /home being mounted from a NFS server.

I find that cat'ing .Xauthority in another window fixes the problem.

I also find that this issue can stop the gnome-screensaver password
dialog from displaying.  This requires switching to a console, logging
in and then running `cat .Xauthority`. 

Unfortunately I can't pinpoint exactly when this started happening, my
workstation runs unstable, it was sometime last year.

Cheers!

-- 
Andrew Ruthven, Wellington, New Zealand
At home: and...@etc.gen.nz |  linux.conf.au 2010 
   | Follow the signs.  Visit Wellington!
   |  http://www.penguinsvisiting.org.nz


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


Bug#522416: Bug#524915: intent to NMU

2009-04-21 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Apr 22, 2009 at 01:51:31AM +0200, Nico Golde wrote:
>Hi,
>attached is a patch that fixes the described issues which I 
>am going to upload as a 0-day NMU as there was no reaction 
>on these bugs yet.

Thanks a lot!  Your work is much appreciated.


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknuZW4ACgkQn7DbMsAkQLgOyQCfe0Wgp1uQsZuixXBFc7A7VV/y
I7AAniSGIBqgO7x8vmU+jB2tiNpZkF3t
=2yrz
-END PGP SIGNATURE-



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



Bug#522824: upstream trac

2009-04-21 Thread Clint Adams
forwarded 522824 http://trac.videolan.org/vlc/ticket/2683
quit

j-b just opened a ticket in upstream trac for this issue



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



Bug#519028: linux-image-686: Doesn't work for me...

2009-04-21 Thread Shai Berger
Package: linux-image-686
Version: 2.6.26+17
Severity: normal


This version (as its number implies) still depends on 2.6.26,
but 2.6.29 is in unstable.

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

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

Versions of packages linux-image-686 depends on:
ii  linux-image-2.6.26-1-686  2.6.26-13  Linux 2.6.26 image on PPro/Celeron

linux-image-686 recommends no packages.

linux-image-686 suggests no packages.

-- no debconf information



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



Bug#524915: intent to NMU

2009-04-21 Thread Nico Golde
Hi,
attached is a patch that fixes the described issues which I 
am going to upload as a 0-day NMU as there was no reaction 
on these bugs yet.

It will be also archived on:
http://people.debian.org/~nion/nmu-diff/ghostscript-8.64~dfsg-1_8.64~dfsg-1.1.patch

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -u ghostscript-8.64~dfsg/debian/changelog ghostscript-8.64~dfsg/debian/changelog
--- ghostscript-8.64~dfsg/debian/changelog
+++ ghostscript-8.64~dfsg/debian/changelog
@@ -1,3 +1,20 @@
+ghostscript (8.64~dfsg-1.1) unstable; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * This update fixes various security issues:
+- CVE-2009-0792: multiple integer overflows in the icc library
+  can cause a heap-based buffer overflow possibly leading to arbitray
+  code execution.
+- CVE-2009-0584/CVE-2009-0583: Multiple integer overflows causing an
+  application crash or possibly arbitrary code execution.
+- CVE-2009-0196: heap-based buffer overflow in big2_decode_symbol_dict()
+  leading to arbitrary code execution via a crafted JBIG2 symbol
+  dictionary segment.
+  .
+  (Closes: #524915, #522416, #524803)
+
+ -- Nico Golde   Wed, 22 Apr 2009 00:19:51 +0200
+
 ghostscript (8.64~dfsg-1) unstable; urgency=low
 
   * New upstream release.
diff -u ghostscript-8.64~dfsg/debian/patches/00list ghostscript-8.64~dfsg/debian/patches/00list
--- ghostscript-8.64~dfsg/debian/patches/00list
+++ ghostscript-8.64~dfsg/debian/patches/00list
@@ -8,0 +9,2 @@
+73_CVE-2009-0792_CVE-2009-0584_CVE-2009-0583
+74_CVE-2009-0196
only in patch2:
unchanged:
--- ghostscript-8.64~dfsg.orig/debian/patches/74_CVE-2009-0196.dpatch
+++ ghostscript-8.64~dfsg/debian/patches/74_CVE-2009-0196.dpatch
@@ -0,0 +1,26 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 74_CVE-2009-0196.dpatch by Nico Golde 
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: CVE-2009-0196
+
+...@dpatch@
+diff -urNad ghostscript-8.64~dfsg~/jbig2dec/jbig2_symbol_dict.c ghostscript-8.64~dfsg/jbig2dec/jbig2_symbol_dict.c
+--- ghostscript-8.64~dfsg~/jbig2dec/jbig2_symbol_dict.c	2007-12-11 09:29:58.0 +0100
 ghostscript-8.64~dfsg/jbig2dec/jbig2_symbol_dict.c	2009-04-21 23:57:26.0 +0200
+@@ -699,6 +699,15 @@
+ exrunlength = params->SDNUMEXSYMS;
+   else
+ code = jbig2_arith_int_decode(IAEX, as, &exrunlength);
++  if (exrunlength > params->SDNUMEXSYMS - j) {
++jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
++  "runlength too large in export symbol table (%d > %d - %d)\n",
++  exrunlength, params->SDNUMEXSYMS, j);
++jbig2_sd_release(ctx, SDEXSYMS);
++/* skip to the cleanup code and return SDEXSYMS = NULL */
++SDEXSYMS = NULL;
++break;
++  }
+   for(k = 0; k < exrunlength; k++)
+ if (exflag) {
+   SDEXSYMS->glyphs[j++] = (i < m) ? 
only in patch2:
unchanged:
--- ghostscript-8.64~dfsg.orig/debian/patches/73_CVE-2009-0792_CVE-2009-0584_CVE-2009-0583.dpatch
+++ ghostscript-8.64~dfsg/debian/patches/73_CVE-2009-0792_CVE-2009-0584_CVE-2009-0583.dpatch
@@ -0,0 +1,1159 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 73_CVE-2009-0792.dpatch by Nico Golde 
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: fixing various integer overflows
+
+...@dpatch@
+diff -urNad ghostscript-8.64~dfsg~/icclib/icc.c ghostscript-8.64~dfsg/icclib/icc.c
+--- ghostscript-8.64~dfsg~/icclib/icc.c	2008-05-09 06:12:01.0 +0200
 ghostscript-8.64~dfsg/icclib/icc.c	2009-04-22 01:44:37.0 +0200
+@@ -152,6 +152,8 @@
+  *  Various bug fixes and enhancements.
+  */
+ 
++#include 
++#include 
+ #include 
+ #include 
+ #include 
+@@ -313,8 +315,11 @@
+ 	icmFileMem *p = (icmFileMem *)pp;
+ 	size_t len;
+ 
++	if (count > 0 && size > SIZE_MAX / count)
++		return 0;
++
+ 	len = size * count;
+-	if ((p->cur + len) >= p->end) {		/* Too much */
++	if (len > (p->end - p->cur)) { /* Too much */
+ 		if (size > 0)
+ 			count = (p->end - p->cur)/size;
+ 		else
+@@ -1634,6 +1639,8 @@
+ 
+ 	/* Allocate a file write buffer */
+ 	len = p->get_size((icmBase *)p);
++	if (icp->errc)
++		return icp->errc;
+ 	if ((buf = (char *) icp->al->malloc(icp->al, len)) == NULL) {
+ 		sprintf(icp->err,"icmUInt8Array_write malloc() failed");
+ 		return icp->errc = 2;
+@@ -1698,7 +1705,7 @@
+ 	if (p->size != p->_size) {
+ 		if (p->data != NULL)
+ 			icp->al->free(icp->al, p->data);
+-		if ((p->data = (unsigned int *) icp->al->malloc(icp->al, p->size * sizeof(unsigned int))) == NULL) {
++		if ((p->data = (unsigned int *) icp->al->calloc(icp->al, p->size, sizeof(unsigned int))) == NULL) {
+ 			sprintf(icp->err,"icmUInt8Array_alloc: malloc() of icmUInt8Array data failed");
+ 			return icp->errc = 2;
+ 		}
+@@ -1749,6 +1756,10 @@
+ 	icmUInt16Array *p = (icmUInt16Array *)pp;
+ 	u

Bug#525085: nss-ldapd: [INTL:ja] updated Japanese debconf translation

2009-04-21 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: nss-ldapd
Severity: wishlist
Version: 0.6.8
Tags: l10n patch

Hi,

I updated Japanese translation of debconf messages (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
km...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ 

iEYEARECAAYFAknuXJcACgkQQKW+7XLQPLGPywCgnJGOzmFYQRypX5w7yUsXjLen
la4AnRBCHTfWtt0B2t2o5UO5ySSe4zIN
=PXzU
-END PGP SIGNATURE-


ja.po
Description: Binary data


Bug#524998: ITP: libmqdb-perl -- MappedQueryDB toolkit for federated databases

2009-04-21 Thread Charles Plessy
Le Tue, Apr 21, 2009 at 03:27:51PM +0200, Adeodato Simó a écrit :
> + Charles Plessy (Tue, 21 Apr 2009 20:49:27 +0900):
> 
> > Files: debian/*
> > Copyright: 2009, Charles Plessy 
> > License: PD
> >  Please treat this packaging work as if it were in public domain.
> 
> Is such a wording actually appropriate for this, “as if”?

Hi Adeodato,

I thought so, since anyway in many countries one can not abandon his rights
and put his work under the public domain.

But if there is a problem, I will fall back on the poetic license:


Files: debian/*
Copyright: 2009, Charles Plessy 
License: Poetic
 This work ‘as-is’ we provide.
 No warranty, express or implied.
 We’ve done our best,
 to debug and test.
 Liability for damages denied.
 .
 Permission is granted hereby,
 to copy, share, and modify.
 Use as is fit,
 free or for profit.
 On this notice these rights rely.
Comment: The text of this license is © 2005 Alexander E Genaud,
 see `http://genaud.net/2005/10/poetic-license/'.


Have a nice day,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan



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



Bug#525083: gcc-defaults: Please enable java on hurd-i386

2009-04-21 Thread Samuel Thibault
Oops, I overwrote the patch with something else in between, here is the
proper patch.

Samuel
Index: debian/control
===
--- debian/control  (révision 3602)
+++ debian/control  (copie de travail)
@@ -4,7 +4,7 @@
 Maintainer: Debian GCC Maintainers 
 Uploaders: Matthias Klose , Arthur Loiret 
 Standards-Version: 3.8.0
-Build-Depends: m4, debhelper (>= 5), dpkg-dev (>= 1.13.9), gcj-4.3-base (>= 
4.3.3-2) [!hurd-i386 !alpha !arm !hppa !sh3 !sh4], gcc-4.2-base (>= 4.2.4-1), 
gcc-4.3-base (>= 4.3.3-2), gnat-4.3-base (>= 4.3.3-2) [alpha amd64 hppa i386 
ia64 lpia mips mipsel powerpc ppc64 s390 sparc kfreebsd-i386], lsb-release
+Build-Depends: m4, debhelper (>= 5), dpkg-dev (>= 1.13.9), gcj-4.3-base (>= 
4.3.3-2) [!alpha !arm !hppa !sh3 !sh4], gcc-4.2-base (>= 4.2.4-1), gcc-4.3-base 
(>= 4.3.3-2), gnat-4.3-base (>= 4.3.3-2) [alpha amd64 hppa i386 ia64 lpia mips 
mipsel powerpc ppc64 s390 sparc kfreebsd-i386], lsb-release
 
 Package: cpp
 Priority: optional
Index: debian/rules
===
--- debian/rules(révision 3602)
+++ debian/rules(copie de travail)
@@ -206,7 +206,7 @@
   no_packages += gnat
 endif
 
-java_no_archs := arm hurd-i386 sh3 sh4
+java_no_archs := arm sh3 sh4
 ifneq (,$(filter $(DEB_HOST_ARCH),$(java_no_archs)))
   no_packages += gcj gij libgcj-bc
 endif


Bug#525084: clamav: [INTL:ja] updated Japanese debconf translation

2009-04-21 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: clamav
Version: 0.95.1+dfsg-2
Severity: wishlist
Tags: l10n patch

Hi,

I updated Japanese translation of debconf messages (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
km...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ 

iEYEARECAAYFAknuWuMACgkQQKW+7XLQPLEjewCeIyIU/XsBDrjMaCJyT9fQT5L/
aOIAmwQIaBsxeDvkAU/ZC8nCRQLSQZeq
=chwN
-END PGP SIGNATURE-


ja.po
Description: Binary data


Bug#524998: ITP: libmqdb-perl -- MappedQueryDB toolkit for federated databases

2009-04-21 Thread Charles Plessy
Le Tue, Apr 21, 2009 at 06:22:39PM +0200, Cyril Brulebois a écrit :
> Charles Plessy  (21/04/2009):
> > > >   libdbd-sqlite3-perl (>= 1.14), libdbi-perl (>= 1.51), perl (>= 
> > > > 5.6.0-12)
> > >   
> > > ^^
> > > WTH?
> > 
> > aqwa『~』$ zgrep -A1 -B1 '5.6.0-12' /usr/share/doc/dh-make-perl/changelog.gz 
> >   * when module has no specific perl version requirements, fall back to 
> > "perl
> > (>= 5.6.0-12)" for B-D-I, like dh_perl. Remove retrieval of (now unised)
> > information about the available perl version.
> 
> Well.

I try to refresh my control and rules files with latest versions of
dh-make-perl when I upload new upstream releases. Be sure that this depenancy
will be removed after the patches that you will send to the Policy and to
dh-make-perl will be accepted.

Happy patching,

-- 
Charles



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



Bug#441166: procps: Weird CPU utilization

2009-04-21 Thread Craig Small
On Sun, Apr 12, 2009 at 02:45:38PM -0700, Stewart W. Putnam wrote:
> Updating my driver from 32 bit etch to 64 bit lenny I've found similar  
> 'errors' in reported % cpu values.
Thankyou very much for your analysis.  I too had it vaguely down to
"something is wrong in the kernel" but you've gone much further than
that.

> I think it affects both 32 bit and 64 bit kernels, both distribution  
> kernels and my custom kernels, and that magnitude and consistency of the  
> errors vary with kernel .config ( processor type and features,  
> scheduler? cpu-freq scaling ? powernow ? virtialization ? guest os? )  
> options.  I do not see a clear pattern to the error.
Nor do I.  You could be onto something about what is configured or, for
modules, loaded though.  It would explain why I am seeing the "right"
numbers and you and others are not.

It could also be related to #517108 where the "cpu numbers" are 0.
4576 (mplayer) S 4210 4576 4210 34817 4576 4202496 4784 0 0 0 0 0 0 0 20 0 1
  ^^^
Are you getting sensible figures for these numbers in /proc//stat?

 - Craig
-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 



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



Bug#525083: gcc-defaults: Please enable java on hurd-i386

2009-04-21 Thread Samuel Thibault
Package: gcc-defaults
Version: 1.80
Severity: normal
Tags: patch

Hello,

Now that hurd-i386 has gcj-4.3, could you enable java for it as per
attached patch?

Thanks
Samuel

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

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

-- 
Samuel
 pour moi le seul qui est autorisé à fasciser, c moi :-)
diff -ur espeak-1.40.02/debian/rules 
/home/samy/brl/speech/espeak-1.40.02/debian/rules
--- espeak-1.40.02/debian/rules 2009-04-04 14:17:41.0 +0200
+++ /home/samy/brl/speech/espeak-1.40.02/debian/rules   2009-04-04 
17:28:06.0 +0200
@@ -65,6 +65,7 @@
cd $(CURDIR)/debian/libespeak1/usr/lib && ln -s $(soname).$(version) 
$(soname)
cd $(CURDIR)/debian/libespeak1/usr/lib && ln -s $(soname).$(version) 
libespeak.so 
mv $(CURDIR)/debian/libespeak1/usr/lib/libespeak.so 
$(CURDIR)/debian/libespeak-dev/usr/lib
+   install -m 644 -o root -g root src/libespeak.a 
$(CURDIR)/debian/libespeak-dev/usr/lib
install -m 644 -o root -g root src/speak_lib.h 
$(CURDIR)/debian/libespeak-dev/usr/include/espeak
 
 # Build architecture-independent files here.


Bug#525082: bash default differs from manpage description

2009-04-21 Thread Christoph Anton Mitterer

Package: bash
Version: 3.2-5
Severity: normal

Hi.

bash(1) says:

hostcomplete
If set, and readline is being used, bash will attempt to
perform hostname completion when a word containing  a  @
is   being  completed  (see  Completing  under  READLINE
above).  This is enabled by default.


However,... on my Debian,.. this is always deactivated per default,  
unless I set it in bashrc or so.


Regards,
Chris.


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




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



Bug#518157: gftp hides directories

2009-04-21 Thread Michelle Konzack
Am 2009-04-22 01:21:06, schrieb Xavier Oswald:
> Well, Im using this version since about two months without a segfault or any 
> kind
> of other bug. Thus for my point of view, it looks safe.

OK, installed...  since I need it now daily I hpe I will
get results fast or better NO (negative) results.  ;-)

Thanks, Greetings and nice Day/Evening
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
+49/177/935194750, rue de Soultz MSN LinuxMichi
+33/6/61925193 67100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Bug#518157: gftp hides directories

2009-04-21 Thread Xavier Oswald
On 01:11 Wed 22 Apr , Michelle Konzack wrote:
> Am 2009-04-22 00:50:00, schrieb Xavier Oswald:
> > Aurélien is no longer the maintainer of gftp. It's me ;)
> 
> Gratulations...

Thanks :)

> Currently I have no unstable System available, only my Lenny which is my
> Office-Station and production system and I don not like to  kick  me  of
> because I am in creation of my new  enterprise  
> and have to work arround 16 hours a day.
> 
> Is it secure to install the unstable version on Lenny?

Well, Im using this version since about two months without a segfault or any 
kind
of other bug. Thus for my point of view, it looks safe.

Greetings,
-- 
  ,''`.  Xavier Oswald
 : :' :  GNU/LINUX Debian Developer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 


signature.asc
Description: Digital signature


Bug#500329: Patch to dh_clideps which corrects false positive

2009-04-21 Thread Chow Loong Jin
Attached is a patch which fixes the dh_clideps behaviour, as well as
adds checking for b-d(-i) on cli-common-dev for versions greater than
0.4.4 (e.g. cli-common-dev (>= 0.5) also works).
-- 
Regards,
Chow Loong Jin
From 0eb16ea1c68ec7acafdab160131386d83e926d13 Mon Sep 17 00:00:00 2001
From: Chow Loong Jin 
Date: Wed, 22 Apr 2009 05:48:48 +0800
Subject: [PATCH] Fix cli-common-dev build-dep(-indep) detection logic

* dh_clideps:
  + Fix cli-common-dev build-dep(-indep) detection logic
---
 debian/changelog |7 +++
 dh_clideps   |7 ---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 515b33f..ba9f1ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cli-common (0.6.3) UNRELEASED; urgency=low
+
+  * dh_clideps:
++ Fix cli-common-dev build-dep(-indep) detection logic
+
+ -- Chow Loong Jin   Wed, 22 Apr 2009 05:46:33 +0800
+
 cli-common (0.6.2) unstable; urgency=low
 
   * cli-nant.make
diff --git a/dh_clideps b/dh_clideps
index 296d218..edf9e70 100755
--- a/dh_clideps
+++ b/dh_clideps
@@ -156,10 +156,11 @@ if (defined($dh{INTERNAL_MONO_FLAG}) ||
 {
   local $/="";
   open(FILE, 'debian/control');
-  my @filedata = ;
+  my $srcblock = ;
   close(FILE);
-  if (!($filedata[0] =~ /Build-Depends(-Indep)?: .*cli-common-dev \(>= 0\.4\.4\)/)) {
-  warning("Warning! No Build-Depends(-Indep) on cli-common-dev (>= 0.4.4)!");
+  unless ($srcblock =~ m/Build-Depends(?:\-Indep)?\:[^:]*cli\-common\-dev\s*\(>=\s*([^\)]+)\)/
+  && system("dpkg", "--compare-versions", $1, ">=", "0.4.4") == 0) {
+warning("Warning! No Build-Depends(-Indep) on cli-common-dev (>= 0.4.4)!");
   }
 }
 
-- 
1.5.6.3



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


Bug#525081: xserver-xorg-input-kbd: keycode for windows keys has changed

2009-04-21 Thread Noah Meyerhans
Package: xserver-xorg-input-kbd
Version: 1:1.3.2-3
Severity: normal

Hello.  I'm not 100% sure that I'm submitting this bug against the right
package, but figure this is a good place to start.  Please feel free to
re-assign.

Sometime between lenny and current sid, the keycode and keysym generated
by the Windows key on my Thinkpad X300 changed.  On the same hardware,
if I boot to a lenny installation and run xev, I see the following
output when pressing the windows key:

KeyPress event, serial 31, synthetic NO, window 0x361,
root 0x69, subw 0x0, time 50752, (-302,603), root:(610,631),
state 0x0, keycode 115 (keysym 0xffeb, Super_L), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False

KeyRelease event, serial 34, synthetic NO, window 0x361,
root 0x69, subw 0x0, time 51048, (-302,603), root:(610,631),
state 0x40, keycode 115 (keysym 0xffeb, Super_L), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False

On a sid system, the same thing shows the different keysym and keycode
values:

KeyPress event, serial 31, synthetic NO, window 0x3e1,
root 0xb4, subw 0x0, time 833661, (-348,734), root:(484,759),
state 0x0, keycode 133 (keysym 0xff20, Multi_key), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: True

KeyRelease event, serial 34, synthetic NO, window 0x3e1,
root 0xb4, subw 0x0, time 833901, (-348,734), root:(484,759),
state 0x0, keycode 133 (keysym 0xff20, Multi_key), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False

This breaks the ability to use xkb to map useful functionality to the
windows keys (e.g. setxkbmap -option altwin:meta_win)

Please don't hesitate to ask for more info.

noah

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

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

Versions of packages xserver-xorg-input-kbd depends on:
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  xserver-xorg-core 2:1.6.1-1  Xorg X server - core server

xserver-xorg-input-kbd recommends no packages.

xserver-xorg-input-kbd suggests no packages.

-- no debconf information



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



Bug#525080: miscellaneous problems with the defualt bash config in /etc/skel

2009-04-21 Thread Christoph Anton Mitterer

Package: bash
Version: 3.2-5
Severity: normal

Hi.

Shouldn't all these files start with a #!/bin/bash ?

In the default .bash_logout you only check for the existance of  
clear_console and do nothing if it doesn't exist.

Wouldn't it be better to either try reset or at least print a warning?

In .bashrc:
1)
export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
# ... or force ignoredups and ignorespace
export HISTCONTROL=ignoreboth
=> The 2nd one overwrites the 1st one,.. so that should perhaps be  
commented (just a cosmetic change, though).


2) Colour-Prompt:
I've never seen a term that actually sets TERM to xterm-color. So one  
always have to set force_color_prompt, which seems to do some checking  
anyway.
Why not simply drop that stuff and just rely on the tput-check? And  
perhaps allow to set force_no_colors or so?


3) The aliases should be actually moved to that .bash_aliases file  (IMHO)

4)
# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
=> Please expand this for lessfile :-)



Thanks,
Chris.

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

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

Versions of packages bash depends on:
ii  base-files5.0Debian base system  
miscellaneous f
ii  debianutils   3.0.1  Miscellaneous utilities  
specific t

ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libncurses5   5.7+20090404-1 shared libraries for  
terminal hand


Versions of packages bash recommends:
ii  bash-completion   1:1.0-2programmable completion  
for the ba


Versions of packages bash suggests:
ii  bash-doc  3.2-5  Documentation and  
examples for the


-- no debconf information



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




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



Bug#524995: libxine1-misc-plugins: Does not install on amd64 - missing dependency: libmagick10

2009-04-21 Thread Darren Salt
I demand that nido may or may not have written...

> Package libxine1-misc-plugins cannot be installed - it depends on
> libmagick10 which is unavailable

There's an ongoing transition involving imagemagick. You should either
rebuild the .debs locally or install libmagick10 from testing for now.

-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
|   Let's keep the pound sterling

How do you keep a turkey in suspense?



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



Bug#518157: gftp hides directories

2009-04-21 Thread Michelle Konzack
Am 2009-04-22 00:50:00, schrieb Xavier Oswald:
> Aurélien is no longer the maintainer of gftp. It's me ;)

Gratulations...

> Thanks for these informations, I will have a look as soon as possible!
> 
> Can you maybe test it with my latest upload of gftp?
> I have uploaded a new version to unstable today.

Currently I have no unstable System available, only my Lenny which is my
Office-Station and production system and I don not like to  kick  me  of
because I am in creation of my new  enterprise  
and have to work arround 16 hours a day.

Is it secure to install the unstable version on Lenny?

Thanks, Greetings and nice Day/Evening
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
+49/177/935194750, rue de Soultz MSN LinuxMichi
+33/6/61925193 67100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Bug#522477: Patch for inkscape FTBFS

2009-04-21 Thread Daniel Schepler
package inkscape
tags 522477 + patch
thanks

I'm attaching a patch which makes inkscape build on my system; just drop it 
into debian/patches and add it to debian/patches/00list.
-- 
Daniel Schepler

#! /bin/sh /usr/share/dpatch/dpatch-run
## 11_early-png-header.dpatch by Daniel Schepler 
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.

@DPATCH@
diff -urNad inkscape-0.46~/src/dialogs/export.cpp inkscape-0.46/src/dialogs/export.cpp
--- inkscape-0.46~/src/dialogs/export.cpp	2009-04-21 22:26:34.0 +
+++ inkscape-0.46/src/dialogs/export.cpp	2009-04-21 22:26:44.0 +
@@ -20,6 +20,7 @@
 # include "config.h"
 #endif
 
+#include 
 #include 
 #include 
 #include 
@@ -60,7 +61,6 @@
 #include "io/sys.h"
 
 #include "helper/png-write.h"
-#include 
 
 
 #define SP_EXPORT_MIN_SIZE 1.0
diff -urNad inkscape-0.46~/src/main.cpp inkscape-0.46/src/main.cpp
--- inkscape-0.46~/src/main.cpp	2009-04-21 22:18:48.0 +
+++ inkscape-0.46/src/main.cpp	2009-04-21 22:27:00.0 +
@@ -28,6 +28,8 @@
 #endif
 #include "path-prefix.h"
 
+#include 
+
 #include 
 
 #ifdef HAVE_IEEEFP_H
@@ -111,7 +113,6 @@
 
 #include "main-cmdlineact.h"
 
-#include 
 #include 
 
 enum {
diff -urNad inkscape-0.46~/src/sp-image.cpp inkscape-0.46/src/sp-image.cpp
--- inkscape-0.46~/src/sp-image.cpp	2009-04-21 22:26:34.0 +
+++ inkscape-0.46/src/sp-image.cpp	2009-04-21 22:26:44.0 +
@@ -17,6 +17,7 @@
 # include "config.h"
 #endif
 
+#include 
 #include 
 #include 
 #include 
@@ -41,7 +42,6 @@
 #include "libnr/nr-matrix-fns.h"
 
 #include "io/sys.h"
-#include 
 #if ENABLE_LCMS
 #include "color-profile-fns.h"
 #include "color-profile.h"


Bug#478145: 2009 Winner

2009-04-21 Thread Notification Centre
You Email Won 750,000GBP.

Send Name,Age,Occupation,Country.

To Mr Ryan Nevill ryannevilleoff...@btinternet.com




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



Bug#522630: prelimenary Icedove 3.0b3pre packages

2009-04-21 Thread Alexander Sack
On Wed, Apr 22, 2009 at 01:01:29AM +0200, Alexander Sack wrote:
> 
> so ... can you send whoever worked on that to me ;)

which is  you! ;)

 - Alexander




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



Bug#525079: stale 10_hur file

2009-04-21 Thread Christoph Anton Mitterer

Package: grub-pc
Version: 1.96+20090317-1
Severity: normal

Hi.

It seems that you no longer install 10_grub per default since some version.

However the user was not even warned (NEWS.Debian) about this nor is  
the file automatically deleted... which leads to never-deleted stale  
legacy files...


Cheers,
Chris.


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




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



Bug#522630: prelimenary Icedove 3.0b3pre packages

2009-04-21 Thread Alexander Sack
On Wed, Apr 22, 2009 at 12:30:01AM +0200, Guido Günther wrote:
> Hi,
> there are very preliminary Icedove 3.0 packages out at:
>   http://pkg-mozext.alioth.debian.org/packages/sid/

> These do contain most of the rebranding and are based on the Ubuntu
> daily builds (so they are installable in parallel to icedove 2.0 until
> we at least have some release candidates). I send some patches on top of
> the Ubuntu packages for rebranding but it seems they didn't get to the
> list. Git is here:
> http://git.debian.org/?p=users/agx/icedove-3.0.git;a=summary
> Everything up to f48a80d8d63d7fb4549163a26aa9de99fb278ea6 should be o.k.
> for
> https://code.launchpad.net/~ubuntu-mozilla-daily/thunderbird/thunderbird-3.0.head.daily

It would be really easier to maintain this icedove stuff next to our
tbird bits in bzr. as we can just merge back/forward and so on ... we
can even use bzr in alioth if folks dont like launchpad - though i
dont really see a reason not to do that.

so ... can you send whoever worked on that to me ;)

> 
> Alexander, could you have a look? We have some more patches pending that
> move the 3.0 packages closer to the 2.0 ones (move files to /usr/share,
> /etc), readd debug package.

We intentionally didnt put that stuff in /usr/share as its pretty
senseless to do that if the non-binary stuff isn't shipped in a arch
all package - which also causes more maintenance pain than its worth
it imo.

Anyway, thanks for your work. I will look closer at that git thing
after ubuntu jaunty is out.

 - Alexander




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



Bug#525048: sort: sefaults

2009-04-21 Thread Michael Stone

On Tue, Apr 21, 2009 at 05:36:20PM -0300, Otavio Salvador wrote:

On Tue, Apr 21, 2009 at 4:02 PM, Michael Stone  wrote:

On Tue, Apr 21, 2009 at 03:43:21PM -0300, you wrote:


$: sort -um -o list list work


I'll look at the segfault, but I'm not sure that was ever guaranteed to give
a useful result (you're overwriting an input file).


Yes, it works nicely in stable release (hence the notfound usage) so it
qualifies as a regression IMO.


I didn't say it didn't work, I said "I'm not sure that was ever 
guaranteed to give a useful result".


Mike Stone



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



Bug#505071: [Pkg-shadow-devel] Bug#505071: closed ... fixed in shadow 1:4.1.3-1

2009-04-21 Thread Nicolas François
Hello,

I've committed a new utmp handling for login.
I also hope it fixes other concerns raised in the thread.

I would appreciate if you could have a look:
http://svn.debian.org/viewsvn/pkg-shadow/upstream/trunk/

Thanks in advance,
-- 
Nekral 



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



Bug#518157: gftp hides directories

2009-04-21 Thread Xavier Oswald
On 00:40 Wed 22 Apr , Michelle Konzack wrote:
> Salut Aurélien,

Salut,

Aurélien is no longer the maintainer of gftp. It's me ;)

> sorry for the late answer, but It seems, it was an error with the Server
> (Gentoo) of my old hoster.  Now I have my own one  running  Debian/Lenny
> with proFTPd and it just works.
> 
> However, under Lenny "gftp-gtk" crash  all  the  time  while  trying  to
> transfer multiple directories...
> 
> "coredumps" are availlable here:
> 
>
> 
> Please choose one of the yougest ones.

Thanks for these informations, I will have a look as soon as possible!

Can you maybe test it with my latest upload of gftp?
I have uploaded a new version to unstable today.

Greetings,
-- 
  ,''`.  Xavier Oswald
 : :' :  GNU/LINUX Debian Developer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 


signature.asc
Description: Digital signature


Bug#524994: [bug #26281] find -depth sometimes visits nodes in the wrong order

2009-04-21 Thread James Youngman

Follow-up Comment #2, bug #26281 (project findutils):

There is a second alternative interpretation of events, I think.   The POSIX
description for -depth is:

-depth
The primary shall always evaluate as true; it shall cause descent of the
directory hierarchy to be done so that all entries in a directory are acted on
before the directory itself. If a -depth primary is not specified, all entries
in a directory shall be acted on after the directory itself. If any -depth
primary is specified, it shall apply to the entire expression even if the
-depth primary would not normally be evaluated.


One reading of this is that the paragraph above only requires that
"dir/m4/Makefile.am"  and "dir/Makefile.am" are both processed before "dir"
itself, but that no guarantee need be made about the relative ordering of the
visits to the two files.



___

Reply to this item at:

  

___
  Message sent via/by Savannah
  http://savannah.gnu.org/




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



Bug#524745: [Pkg-octave-devel] Bug#524745: Postinst seems to run forever on mipsel

2009-04-21 Thread Stephen Gran
This one time, at band camp, Rafael Laboissiere said:
> * Martin Zobel-Helas  [2009-04-21 21:17]:
> 
> > here some more infos:
> > 
> > 21029 ?S  0:00  \_ sh -c /usr/bin/sudo /usr/bin/apt-get 
> > --purge -o 
> > Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status 
> > -o DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o DPkg::R
> > 21030 ?S  0:03  \_ /usr/bin/apt-get --purge -o 
> > Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status 
> > -o DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o 
> > DPkg::Run-Directory=/ho
> > 22519 pts/0Ss+0:00  \_ /usr/bin/dpkg 
> > --root=/home/buildd/build/chroot-unstable --force-confold --status-fd 14 
> > --configure libmagic1 file gettext-base libkeyutils1 libkrb5support0 
> > libk5crypto3 libkrb5-3 libgss
> > 23967 pts/0S+ 0:00  \_ /bin/sh -e 
> > /var/lib/dpkg/info/octave3.0.postinst configure 
> > 23976 pts/0R+   1987:42  \_ octave-3.0.5 --silent 
> > --no-history --no-init-file --eval pkg ('rebuild');
> > 
> > strace -p 23976
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> > [...] runs infitive
> 
> Thanks for the info.  Is the hanging due to some file Octave is trying to
> open/read/close?  Could you please run lsof on the octave-3.0.5 process
> and post the results?  In the case above, it would be:
> 
> lsof -p 23976

The process has been killed, so we no longer have that information for
you.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#525036: dc: Feature Request: string manipulation and file i/o

2009-04-21 Thread John Hasler
I will forward your patch upstream.
-- 
John Hasler 
j...@dhh.gt.org
Elmwood, WI USA



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



Bug#518157: gftp hides directories

2009-04-21 Thread Michelle Konzack
Salut Aurélien,

sorry for the late answer, but It seems, it was an error with the Server
(Gentoo) of my old hoster.  Now I have my own one  running  Debian/Lenny
with proFTPd and it just works.

However, under Lenny "gftp-gtk" crash  all  the  time  while  trying  to
transfer multiple directories...

"coredumps" are availlable here:

   

Please choose one of the yougest ones.

Thanks, Greetings and nice Day/Evening
Michelle Konzack
Systemadministrator
24V Electronic Engineer
Tamay Dogan Network
Debian GNU/Linux Consultant




Am 2009-03-05 12:40:59, schrieb Aurélien GÉRÔME:
> Hi,
> 
> On Wed, Mar 04, 2009 at 01:47:17PM +0100, Michelle Konzack wrote:
> > while I can login to my server with  "mc"  and  CAN  see  the  directory
> >   can  up  load  or   whatelse,
> > "gftp" is hideing the directory and if I try to  access  it  manualy  by
> > typing the path it tell me, the directory does not exist.
> 
> Can you attach strace to the gftp process and post the result here?
> 
> Cheers,
> -- 
>  .''`.   Aurélien GÉRÔME
> : :'  :
> `. `'`   Debian Developer
>   `- Unix Sys & Net Admin
 END OF REPLIED MESSAGE 



-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
+49/177/935194750, rue de Soultz MSN LinuxMichi
+33/6/61925193 67100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Bug#524994: [bug #26281] find -depth sometimes visits nodes in the wrong order

2009-04-21 Thread James Youngman

Follow-up Comment #1, bug #26281 (project findutils):

It appears that find is using gnulib's ftp() implementation in a way that
isn't guaranteed to order visits to files and subdirectories in any given
order.  FTS_D and FTS_DP can be used to consider subdirectores before parent
directories, but this does not guarantee anything about the relative ordering
of return of files in the parent directory, as compared to sudirectories in
that parent.   

Here is an illustration of a possible execution of 
"find dir -depth -name Makefile.am -print".  

The table has 3 columns.   The first is the value of fts_info when fts_read
returns.  The second is the filename (fts_info->fts_path).   The third is
PRINT if the -print succeeds there.

FTS_D dir 
FTS_NSOK  dir/foo
FTS_NSOK  dir/Makefile.am  PRINT
FTS_D dir/m4
FTS_NSOK  dir/m4/Makefile.am PRINT
FTS_DPdir/m4
FTS_NSOK  dir/bar
FTS_DPdir

So here, find will print ...
  dir/Makefile.am
  dir/m4/Makefile.am
... when clearly the user expected the opposite order.

The correct approach may well be simply to pass an appropriate comparison
function to fts_open, so that files are visited last in -depth traversals. 
>From my reading of the documentation FTS_NSOK is never returned for
directories, which would be a required property in order for this strategy to
work. 


___

Reply to this item at:

  

___
  Message sent via/by Savannah
  http://savannah.gnu.org/




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



Bug#525078: insufficient path escaping when opening fies

2009-04-21 Thread Sam Hocevar
Package: amule
Version: 2.2.4-1+b1
Severity: normal
Tags: security upstream

   src/DownloadListCtrl.cpp does the following (code edited for
clarification):

command = wxT("xterm -T \"aMule Preview\" -iconic -e mplayer '$file'");
[...]
wxString rawFileName = file->GetFullName().GetRaw();
command.Replace(wxT("$file"), rawFileName);
[...]
wxExecute(command, wxEXEC_ASYNC, p);

   Although file->GetFullName() is sanitised by removing :/<> and
probably other characters, the single tick (') is neither filtered
away nor escaped. Thus it is possible to craft a file name that
passes remotely defined arguments to the video player.

   A side effect is that it is impossible to open a downloaded file that
has a "'" character in its name.

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

Kernel: Linux 2.6.28.7 (SMP w/2 CPU cores; PREEMPT)
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 amule depends on:
ii  amule-common   2.2.4-1   common files for the rest of aMule
ii  libc6  2.9-7 GNU C Library: Shared libraries
ii  libcrypto++8   5.6.0-1   General purpose cryptographic libr
ii  libgcc11:4.3.3-8 GCC support library
ii  libgeoip1  1.4.6.dfsg-2  A non-DNS IP-to-country resolver l
ii  libstdc++6 4.3.3-8   The GNU Standard C++ Library v3
ii  libupnp3   1:1.6.6-3 Portable SDK for UPnP Devices (sha
ii  libwxbase2.8-0 2.8.7.1-1.1   wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-0  2.8.7.1-1.1   wxWidgets Cross-platform C++ GUI t
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages amule recommends:
ii  amule-utils   2.2.4-1+b1 utilities for aMule (command-line 

Versions of packages amule suggests:
ii  amule-utils-gui   2.2.4-1+b1 graphic utilities for aMule

-- no debconf information



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



Bug#524951: closed by Sebastien Delafond (Bug#524951: fixed in org-mode 6.26a-3)

2009-04-21 Thread Ben Finney
package org-mode
reopen 524951
thanks

On 21-Apr-2009, Debian Bug Tracking System wrote:
> Closes: 524951
> Changes: 
>  org-mode (6.26a-3) unstable; urgency=low
>  .
>* Do not support emacs21 and xemacs21 anymore; upstream author mentioned
>  he will "not willingly break Emacs 21 support, but no longer will make
>  any effort to adapt code for it" (Closes: #524951).

Since the package fails to install properly while ‘emacs21’ is also
installed, this package should ‘Conflicts: emacs21’ or something to
that effect.

-- 
 \  “Any intelligent fool can make things bigger and more complex… |
  `\It takes a touch of genius – and a lot of courage – to move in |
_o__)the opposite direction.” —Albert Einstein |
Ben Finney 


signature.asc
Description: Digital signature


Bug#523620: miro crashes when using xulrunner

2009-04-21 Thread Christian Kuka
Package: miro
Version: 2.0.3-1
Severity: normal


Hi,
Looks like this bug is the same as #523620 but just in case you need
some more information. On this system miro only crahes when i reload the
page on "Miro Guide" (as no page is displayed there).
After running miro with the --debug flag I get the following output:

2009-04-22 00:23:50,901 INFO Starting up Miro
2009-04-22 00:23:50,902 INFO Version:2.0.3
2009-04-22 00:23:50,912 INFO OS: Linux 2.6.26-2-686 i686
2009-04-22 00:23:50,913 INFO Revision:   
https://svn.participatoryculture.org/svn/dtv/tags/Miro-2.0.3/tv/resources - 9307
2009-04-22 00:23:50,914 INFO Builder:u...@greenwood
2009-04-22 00:23:50,914 INFO Build Time: 1237224895.24
2009-04-22 00:23:50,915 INFO Starting event loop thread
[New Thread 0xb4529b90 (LWP 28994)]
[New Thread 0xb3d28b90 (LWP 28995)]
[New Thread 0xb3527b90 (LWP 28996)]
[New Thread 0xb2d26b90 (LWP 28997)]
2009-04-22 00:23:50,946 INFO Python version:2.5.4 (r254:67916, Feb 17 
2009, 20:16:45) 
[GCC 4.3.3]
2009-04-22 00:23:50,947 INFO Gtk+ version:  (2, 14, 7)
2009-04-22 00:23:50,947 INFO PyGObject version: (2, 16, 1)
2009-04-22 00:23:50,947 INFO PyGtk version: (2, 14, 1)
2009-04-22 00:23:50,948 INFO Language:  [('LANG', 'de_DE.UTF-8')]
2009-04-22 00:23:50,948 INFO set_renderer: trying to add xinerenderer
2009-04-22 00:23:50,994 INFO Xine version:  1.1.16.2
[New Thread 0xb1484b90 (LWP 28998)]
2009-04-22 00:23:52,467 INFO Xine video driver: xv
2009-04-22 00:23:52,492 INFO set_renderer: successfully loaded xinerenderer
2009-04-22 00:23:52,534 INFO Restoring database...
[New Thread 0xb0c83b90 (LWP 28999)]
2009-04-22 00:23:52,543 INFO Connecting to /home/ckuka/.miro/sqlitedb
[New Thread 0xb0c42b90 (LWP 29000)]
[Thread 0xb0c42b90 (LWP 29000) exited]
2009-04-22 00:23:52,800 TIMING   Database load slow: 0.258
2009-04-22 00:23:52,801 INFO Database size on disk (in bytes): 1317888
2009-04-22 00:23:52,801 INFO Database object count: 156
2009-04-22 00:23:52,928 INFO Checking movies directory 
'/home/ckuka/.miro/Movies/'...
[New Thread 0xb0c42b90 (LWP 29001)]
[New Thread 0xaf6e7b90 (LWP 29002)]
[New Thread 0xaeee6b90 (LWP 29003)]
[New Thread 0xae6e5b90 (LWP 29004)]
[New Thread 0xade13b90 (LWP 29005)]
[Thread 0xade13b90 (LWP 29005) exited]
[New Thread 0xade13b90 (LWP 29006)]
[New Thread 0xad612b90 (LWP 29007)]
2009-04-22 00:23:54,614 WARNING  Ignoring Dialog -- title:  text: 
(ssl_error_ssl_disabled)
2009-04-22 00:23:56,428 INFO Starting auto downloader...
2009-04-22 00:23:56,440 TIMING   Icon clear: 0.000
2009-04-22 00:23:56,440 INFO Starting movie data updates
[New Thread 0xacdb1b90 (LWP 29010)]
[New Thread 0xac5b0b90 (LWP 29011)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7d308d0 (LWP 28983)]
0xb4b1f1da in ?? () from /usr/lib/xulrunner-1.9/libxul.so
(gdb)

Greets
Christian

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

Kernel: Linux 2.6.26-2-686 (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 miro depends on:
ii  libboost-python1.37.0  1.37.0-8  Boost.Python Library
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libgcc11:4.3.3-3 GCC support library
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libnspr4-0d4.7.1-4   NetScape Portable Runtime Library
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  libxine1   1.1.16.2-1+b1 the xine video/media player librar
ii  libxine1-plugins   1.1.16.2-1the xine video/media player librar
ii  libxine1-x 1.1.16.2-1+b1 X desktop video output plugins for
ii  miro-data  2.0.3-1   GTK+ based RSS video aggregator da
ii  python 2.5.4-2   An interactive high-level object-o
ii  python-dbus0.83.0-1  simple interprocess messaging syst
ii  python-glade2  2.14.1-1  GTK+ bindings: Glade support
ii  python-gnome2  2.22.3-3  Python bindings for the GNOME desk
ii  python-gtk22.14.1-1  Python bindings for the GTK+ widge
ii  python-gtkmozembed 2.25.3-1  Python bindings for the GtkMozEmbe
ii  python-libtorrent  0.14.2-2+b1   Python bindings for libtorrent-ras
ii  python-pysqlite2   2.5.0-2   Python interface to SQLite 3
ii  python-support 0.8.7 automated rebuilding support for P
ii  xulrunner-1.9  1.9.0.7-1 XUL + XPCOM application runner

Versions of packa

Bug#524745: [Pkg-octave-devel] Bug#524745: Postinst seems to run forever on mipsel

2009-04-21 Thread Rafael Laboissiere
* Martin Zobel-Helas  [2009-04-21 21:17]:

> here some more infos:
> 
> 21029 ?S  0:00  \_ sh -c /usr/bin/sudo /usr/bin/apt-get 
> --purge -o 
> Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status -o 
> DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o DPkg::R
> 21030 ?S  0:03  \_ /usr/bin/apt-get --purge -o 
> Dir::State::status=/home/buildd/build/chroot-unstable/var/lib/dpkg/status -o 
> DPkg::Options::=--root=/home/buildd/build/chroot-unstable -o 
> DPkg::Run-Directory=/ho
> 22519 pts/0Ss+0:00  \_ /usr/bin/dpkg 
> --root=/home/buildd/build/chroot-unstable --force-confold --status-fd 14 
> --configure libmagic1 file gettext-base libkeyutils1 libkrb5support0 
> libk5crypto3 libkrb5-3 libgss
> 23967 pts/0S+ 0:00  \_ /bin/sh -e 
> /var/lib/dpkg/info/octave3.0.postinst configure 
> 23976 pts/0R+   1987:42  \_ octave-3.0.5 --silent 
> --no-history --no-init-file --eval pkg ('rebuild');
> 
> strace -p 23976
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> ioctl(0, TIOCNXCL, {0x1000 /* B??? */ -opost -isig -icanon echo ...}) = 0
> [...] runs infitive

Thanks for the info.  Is the hanging due to some file Octave is trying to
open/read/close?  Could you please run lsof on the octave-3.0.5 process
and post the results?  In the case above, it would be:

lsof -p 23976

Thanks,

-- 
Rafael



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



Bug#523953: Got some clarifications

2009-04-21 Thread Apelete Seketeli
I have made some research on the state of the 2.7.0 Intel driver.
>From what I've read, the problems I have come from my using of
Metacity's compositing manager. The new intel driver currently has
some tearing and framerate (among others) problems while watching
videos in a composited environment. The good news is that upstream
seems to be fully aware of the problem, and the bad is there's no way
to know (AFAIK) how much time (and effort) it will take before the
driver improves.
Disabling compositing helps with the video (not with the general
redraw speed on the desktop though), for those seeking for a
workaround.

Thanks for the hard work,
Keep it up.
--
Apelete Seketeli 



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



Bug#432143: Gnus and emacs22

2009-04-21 Thread Ben Finney
On 19-Dec-2007, Matthias Julius wrote:
> There is currently nothing that prevents gnus from being installed
> when emacs22 is installed.  And if emacs22 is there gnus will be
> pre-compiled for emacs22 and it will not run with emacs21.
> 
> So, if emacs22 is installed emacs21 is useless, but emacs21 can not be
> removed because of gnus' dependency on it.

Yes. I now have the situation where some packages (‘org-mode’, for
example) are uninstallable while ‘emacs21’ is installed. I want to
remove ‘emacs21’, but ‘gnus’ requires it; and there is no indication
that the package is obsoleted by ‘emacs22’.

If the ‘gnus’ package is obsoleted by the ‘emacs22’ package, please
release a new ‘gnus’ package that makes this clear so we can remove
‘emacs21’.

-- 
 \   “There is no reason anyone would want a computer in their |
  `\ home.” —Ken Olson, president, chairman and founder of Digital |
_o__)Equipment Corp., 1977 |
Ben Finney 


signature.asc
Description: Digital signature


Bug#523476: pptp-linux: pptpsetup permissions

2009-04-21 Thread Nico Golde
reopen 523476
notfixed 1.7.2-2
thanks

Hi Ola,
your fix is already better than the unfixed version before 
but still is buggy:
open( FILE, ">$chap_file" )
or die "$0: can't write '$chap_file': $!\n";
print FILE $new_chap;
close FILE;
system("chmod 600 $chap_file");

The above is not race free, an attacker still has the chance (though unlikely)
to get the credentials after the file was closed but before the system call.
Instead set a proper umask before opening the file.

Cheers
Nico

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


pgpQQnSVihKKW.pgp
Description: PGP signature


Bug#459344: closed by Michael Vogt (Bug#459344: fixed in apt 0.7.14)

2009-04-21 Thread Francesco Poli
On Thu, 29 May 2008 00:45:52 +0200 Francesco Poli wrote:

[...]
> The attached patch should fix this little issue.
> 
> 
> Usual legal details:
> I don't know if my patch constitutes a contribution creative enough to
> be copyrighted, but anyway, should it turn out to be actually
> copyrighted, I hereby release it under the same terms of
> /etc/cron.daily/apt, that is to say, under the terms of the GNU General
> Public License (GPL), version 2 or later, as published by the Free
> Software Foundation.

This last little issue appears to still affect current apt.
What's wrong with my patch [1] ?
Why wasn't it applied?

If my patch was rejected, I would like to know why, so that I can
possibly prepare a rectified patch.
Otherwise I would like to see my patch accepted.

Thanks in advance for considering.

[1] See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459344#165

-- 
 New location for my website! Update your bookmarks!
 http://www.inventati.org/frx
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpIm1eHw6h3n.pgp
Description: PGP signature


Bug#480430: merkaartor 0.0.11~svn7913+lenny-1 does not seem to work, despite the "Use 0.6 API" option

2009-04-21 Thread Bernd Zeimetz
Nicolas Boullis wrote:
> On Tue, Apr 21, 2009 at 09:19:02PM +0200, Sebastian Niehaus wrote:
>> That is exact what I experienced today. 
>>
>> However. the Openstreetmap servers where (nearly) overloaded today and
>> things did not run smoothly all the time.
>>
>> Therefore I did not repeat my bug report. 
> 
> To go a little further, I just compiled Merkaartor 0.13.1. Then I tried 


> to upload a change with both Merkaartor 0.0.11~svn7913+lenny-1 and 
> 0.13.1. It failed with 0.0.11~svn7913+lenny-1 but worked with 0.13.1. 
> Hence, I don't think it is a problem with the overloaded servers...

0.13.1 and the version from svn I build a few days ago both fail with 403
errors... I still don;t know what the problem is here :( Do you have any hints?

> Bernd, please consider uploading a new merkaartor package. An upload to 
> stable-proposed-updates (or volatile) might be a good idea.

yeah, I'm thinking about this already, but I have to get a working uptodate
version first...

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



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



Bug#524987: gmpc: Clicking on volume control icon changes the volume

2009-04-21 Thread Arnaud Cornet
reassign 524987 libgtk2.0-0
forcemerge 501398 524987
thanks

This is a upstream-reported gtk bug.
-- 
Arnaud Cornet




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



Bug#522630: prelimenary Icedove 3.0b3pre packages

2009-04-21 Thread Guido Günther
Hi,
there are very preliminary Icedove 3.0 packages out at:
  http://pkg-mozext.alioth.debian.org/packages/sid/
These do contain most of the rebranding and are based on the Ubuntu
daily builds (so they are installable in parallel to icedove 2.0 until
we at least have some release candidates). I send some patches on top of
the Ubuntu packages for rebranding but it seems they didn't get to the
list. Git is here:
http://git.debian.org/?p=users/agx/icedove-3.0.git;a=summary
Everything up to f48a80d8d63d7fb4549163a26aa9de99fb278ea6 should be o.k.
for
https://code.launchpad.net/~ubuntu-mozilla-daily/thunderbird/thunderbird-3.0.head.daily

Alexander, could you have a look? We have some more patches pending that
move the 3.0 packages closer to the 2.0 ones (move files to /usr/share,
/etc), readd debug package.
Cheers,
 -- Guido



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



Bug#412858: not a bug: default upstream behaviour

2009-04-21 Thread Jon Dowland
This is not a bug. As previous poster has indicated, the
print options are disabled by default in iceweasel and the
pref can be tweaked via about:config.

This is the default setting for the upstream firefox builds
too.


signature.asc
Description: Digital signature


Bug#525071: 2.2.4-1+b1 automatically rebuilt against libcrypto++8 segfaults on start

2009-04-21 Thread Stanislav Maslovski
On Втр, 2009-04-21 at 23:50 +0200, Adeodato Simó wrote:
> + Stanislav Maslovski (Wed, 22 Apr 2009 01:37:09 +0400):
> 
> > Package: amule
> > Version: 2.2.4-1+b1
> > Severity: normal
> 
> > For your information: after todays upgrade to automatically rebuilt
> > amule 2.2.4-1+b1 it segfaults on start. The problem seems to be related
> > with libcrypto++8, as returning back to 2.2.4-1 built with libcrypto++7
> > solves the problem. 
> 
> I’ve been running 2.2.4-1+b1 myself since available for several days,
> and in fact I did built amule locally against libcrypto++8 before the
> libcrypto++ maintainer uploaded the new version to unstable. However,
> I’m on amd64 and not i386.
> 
> I’m CC'ing debian-user in case there are people with i386/unstable/amule
> who can confirm or deny the segfault. Please CC 525...@bugs.debian.org
> if you do so.
> 
> Also, do you get any kind of backtrace, or can obtain one?

Not sure that it helps, but here is it:

% gdb amule
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show
copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(no debugging symbols found)
(gdb) run
Starting program: /usr/bin/amule 
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
---Type  to continue, or q  to quit---
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
---Type  to continue, or q  to quit---
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[New Thread 0xb6761970 (LWP 17354)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb6761970 (LWP 17354)]
0x36f51a11 in ?? ()
(gdb) bt
#0  0x36f51a11 in ?? ()
#1  0xccbc1c43 in ?? ()
#2  0x1220 in ?? ()
#3  0xb7da6836 in CryptoPP::IteratedHashBase::TruncatedFinal () from /usr/lib/libcrypto
++.so.8
#4  0xb7dd5c88 in CryptoPP::RandomPool::IncorporateEntropy ()
   from /usr/lib/libcrypto++.so.8
#5  0xb7dc94ba in CryptoPP::AutoSeededRandomPool::Reseed ()
   from /usr/lib/libcrypto++.so.8
#6  0x0823645c in ?? ()
#7  0x082c1f1d in ?? ()
#8  0x08080f34 in wxGenericListCtrl::SetItemPtrData ()
#9  0x083fa364 in ?? ()
#10 0xbfb418e8 in ?? ()
#11 0x0807e5c0 in _init ()
Backtrace stopped: frame did not save the PC
(gdb) 





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



Bug#525073: [Pkg-utopia-maintainers] Bug#525073: network-manager: umts dialin: Total system crash

2009-04-21 Thread Michael Biebl

Am 22.04.2009 00:02, schrieb Thomas Renard:

Package: network-manager
Version: 0.7.1-1
Severity: normal

When trying to connect to my umts/3g provider via a Huawei 160G (Fonic) with
network-manager/network-manager-gnome the whole system crashes. Once I had
a kernel-crash-notify on the desktop then the total crash. No
logging/dmesg/other stuff possible because of the crash :-(

worked with former  0.7.0.100 but I am not shure if the former test was with
kernel 2.6.26-1-686...



Please test with an older kernel.
Please also check the contents of /var/log/kern.log and 
/var/log/(syslog,messages) regarding kernel messages and output of 
NetworkManager.


Thanks,
Michael





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



Bug#428178: iceowl-extension

2009-04-21 Thread Guido Günther
Version: 2.0.0.19-1

You want to install the iceowl-extension package.
Cheers,
 -- Guido



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



  1   2   3   4   5   >