Bug#493934: /etc/bash_completion.d/git: Completing ref name with trailing '.' gives '..' rather than refs

2008-08-05 Thread Josh Triplett
Package: git-core
Version: 1:1.5.6.2-1
Severity: normal
File: /etc/bash_completion.d/git

With bash completion turned on, completing a partial branch name with
a trailing '.' assumes that the '.' represents the start of ".." to
separate two refs in a range.  Thus, if I tab-complete "v2.6." in a
kernel tree, I get "v2.6.." rather than a much more useful list of
tags or branches starting with "v2.6.".

- Josh Triplett

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

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

Versions of packages git-core depends on:
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcurl3-gnutls7.18.2-7  Multi-protocol file transfer libra
ii  libdigest-sha1-perl2.11-2+b1 NIST SHA-1 message digest algorith
ii  liberror-perl  0.17-1Perl module for error/exception ha
ii  libexpat1  2.0.1-4   XML parsing C library - runtime li
ii  perl-modules   5.10.0-11.1   Core Perl modules
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages git-core recommends:
ii  less  418-1  Pager program similar to more
ii  openssh-client [ssh-client]   1:5.1p1-2  secure shell client, an rlogin/rsh
ii  patch 2.5.9-5Apply a diff file to an original
ii  rsync 3.0.3-2fast remote file copy program (lik

Versions of packages git-core suggests:
pn  git-arch   (no description available)
pn  git-cvs(no description available)
pn  git-daemon-run (no description available)
pn  git-doc(no description available)
pn  git-email  (no description available)
pn  git-gui(no description available)
ii  git-svn  1:1.5.6.2-1 fast, scalable, distributed revisi
ii  gitk 1:1.5.6.2-1 fast, scalable, distributed revisi
pn  gitweb (no description available)

-- no debconf information



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



Bug#493865: cttyhack does not handle other serial devices than ttySn (was: Bug booting from console)

2008-08-05 Thread Jérémy Bobbio
On Tue, Aug 05, 2008 at 07:42:30PM +0200, Frans Pop wrote:
> On Tuesday 05 August 2008, Jérémy Bobbio wrote:
> > reassign 493865 busybox-udeb
> > retitle 493865 cttyhack does not handle other serial devices than ttySn
> > tags 493865 + d-i patch
> > severity 493865 important
> > thanks
> 
> Any reason for not merging this with #484366?

I just did not thought of looking at rootskel bug list.

The patch is against busybox-udeb.  From the tests I have made using
qemu for armel/versatile this patch won't be enough, as I now get:
  cttyhack: can't open '/dev/ttyAMA0': No such file or directory

And indeed, there is no such file as /dev/ttyAMA0 when cttyhack is run.

Good news is that after creating /dev/ttyAMA0 manually in a BOOT_DEBUG
shell, everything goes fine.

Bad news is that we probably have to modify
/lib/debian-installer/init-udev-devices to create a file for every misc.
serial line device.

If that sounds like a good plan to solve this issue, feel free to block
#484366 by #493865.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#493834: setting package to pymsnt, tagging 493834

2008-08-05 Thread Sam Morris
# Automatically generated email from bts, devscripts version 2.10.34
# via tagpending 
#
# pymsnt (0.11.3-2) unstable; urgency=low
#
#  * Work around MSN protocol changes (closes: #493834). 

package pymsnt
tags 493834 + pending




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



Bug#493711: me too

2008-08-05 Thread jidanni
I got the same error, but then later dpkg -L unifont showed it was cleared.



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



Bug#493933: bash: bad handeling of negative return values

2008-08-05 Thread Colomban Wendling
Package: bash
Version: 3.2-4
Severity: normal

Negative return values from functions/programs are badly handled.
I dunno if SH shells should accept negative return values, but BaSH 
fails on handeling it.

E.g. if a function returns -1, the $? shell variable is set to 255. It 
looks like a unsigned variable overflow.
A simple way to see it:
First define a function for esayly make tests:
$ AA() { return $1; }
Then try with negative values:
$ AA -1; echo $?
255
$ AA -25; echo $?
231
$ AA -255; echo $?
1


I've tryed out with DaSH and it gave me an error message and resets the 
value to an internal error code, that seems better to me:
With DaSH:
$ AA() { return $1; }
$ AA -1; echo $?
return: 5: Illegal number: -1
$ echo $?
2
$ AA -255; echo $?
return: 7: Illegal number: -255
$ echo $?
2


Cheers,
Colomban W.

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

Kernel: Linux 2.6.25-2-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

Versions of packages bash depends on:
ii  base-files4.0.4  Debian base system miscellaneous f
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libncurses5   5.6+20080713-1 shared libraries for terminal hand

Versions of packages bash recommends:
ii  bash-completion   20080705   programmable completion for the ba

Versions of packages bash suggests:
pn  bash-doc   (no description available)

-- no debconf information



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



Bug#491457: can't shake bash_completion

2008-08-05 Thread jidanni
> I ended up manually removing bash_completion and reinstalling both bash
> and bash_completion so can't test this now.

I can.
$ grep /etc/bash_completion /var/lib/dpkg/info/bash.conffiles 
/var/lib/dpkg/info/bash.list
/var/lib/dpkg/info/bash.list:/etc/bash_completion

I then tried to remove both packages ***dumb***, as that is $SHELL on
my system... OK, I recovered with dpkg -i ...bash.deb.

Now all back in order, grep finds no matches.

But I don't use it anyway, so
# dpkg-purge bash-completion
# apt-get dselect-upgrade
# apt-get dist-upgrade
which then tires to install it again.



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



Bug#493751: Doesn't detect any device

2008-08-05 Thread Aurelien Jarno
reassign 493751 libc6
retitle 493751 libc6: mknod() only allow 8-bit minors on mips
thanks

On Tue, Aug 05, 2008 at 08:19:16AM +0200, Giuseppe Sacco wrote:
> On Tue, 5 Aug 2008 01:54:27 +0200 Aurelien Jarno <[EMAIL PROTECTED]> wrote:
> [...]
> > Oh, and BTW, 133 + 256 = 389. Maybe this rule doesn't apply to all
> > architectures, I gave the formula from my powerpc and my amd64 machines,
> > maybe there is a different one on mips. Or maybe that's why accessing to
> > USB devices doesn't work.
> 
> I don't know exactly what happened, but after upgrading udev to unstable
> version and a reboot, lsusb works correctly.
> 
> When I rebooted the machine, I used sane-find-scanner to detect scanners.
> It worked. Then I used "xscanimage" but this did not worked because it got
> a problem connecting to the scanner.

I have found the problem: the glibc on mips only allow 8-bits for the
minor, and strips the upper bits. That's why it works when your device
appears on bus 1. This bugs has been fixed very recently upstream. I am
therefore reassigning this bug to the libc6 package.

> From that moment, I cannot use any USB device via libusb: when trying again
> to identify the device I get a lot of "Operation not permitted" and

"Operation not permitted" messages are normal, given that you are not 
root. Also some operations are not allowed on some USB devices, it is
safe to ignore them.

> "Connection timed out":

This looks more problematic, please first try to run sane-find-scanner
as root, to make sure it is not a permission issue. If it doesn't work,
it looks like a kernel issue. Also the device can be in autosuspend
mode, try to tweak /sys/bus/usb/devices/usb1/power/autosuspend .


-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net



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



Bug#493915: [Pkg-scicomp-devel] Bug#493915: python-opencv: highgui import problem

2008-08-05 Thread Ólafur Jens Sigurðsson
On Tue, Aug 05, 2008 at 11:09:57PM -0300, Nicolas wrote:
> Package: python-opencv

This should have been filed against libhighgui or libavecodec51,
libhighgui-dev does have a duplicate bug, see bug #490700

> Version: 1.0.0-5
> Severity: normal
> 
> [EMAIL PROTECTED]:~$ python
> Python 2.5.2 (r252:60911, May 28 2008, 08:35:32)
> [GCC 4.2.4 (Debian 4.2.4-1)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> >>> from opencv import highgui
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/var/lib/python-support/python2.5/opencv/highgui.py", line 5, in 
> 
> import _highgui
> ImportError: /usr/lib/libhighgui.so.1: undefined symbol: img_convert

This is caused by you probably having the packages of Christian
Marillat (which are not official Debian packages) installed, specially
the libavecodec51 package which is the package that provides the
img_convert function the libhighgui.so.1 is looking for.

Cheers

Oli



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



Bug#493932: libtomcat5-java: Shared classes not searched, but common classes

2008-08-05 Thread Daniel Migowski
Package: libtomcat5-java
Severity: normal


Classes in $CATALINA_HOME/shared/classes are not found from webapps, while
classes in $CATALINE_HOME/common/classes are. This breaks usual expectations
for tomcat.

To validate this, create a simple jsp in the ROOT-Application which the
following content:

<%=Thread.currentThread().getContextClassLoader().getResourceAsStream("hello.txt")%>

Call this. It returns "null" as expected. Now

 touch /usr/share/tomcat5.5/shared/classes/hello.txt

Call the jsp. It still returns "null", which is wrong in my opinion.

 touch /usr/share/tomcat5.5/common/classes/hello.txt

The jsp returns [EMAIL PROTECTED] now or something like that. This is
the expected behaviour for the previous case, too, and works like a charm on
other platforms like windows.

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



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



Bug#493134: xserver-xorg-video-ati: no resolution higher than 640x480 possible

2008-08-05 Thread Alex Deucher
On Mon, Aug 4, 2008 at 12:19 PM, Eike Nicklas <[EMAIL PROTECTED]> wrote:
> Hi Julien and Alex,
>
> thanks for your feedback. The panelsize hint was a good one, I think. At
> least I have the same symptoms as other people with a missing panelsize
> option. However, adding it to xorg.conf (see attachment) only resulted in
> a blank screen. According to the log (also attached), the options is read,
> but for some reason not used...
>

Please try again with the driver from git.  I fixed up several RS4xx
issues today.

Alex



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



Bug#487691: user-setup: endless loop after entering empty root passwords

2008-08-05 Thread Jérémy Bobbio
On Tue, Aug 05, 2008 at 10:42:13PM +0200, Frans Pop wrote:
> > debconf receives:
> >   INPUT critical user-setup/password-empty
> >   INPUT low passwd/shadow
> >   INPUT medium passwd/root-login
> >   GO
> >
> > So actually, the behaviour of the "Go back" button is right for the
> > newt frontend according to the questions asked.
> 
> This analysis looks incomplete to me and the part you show here is out of 
> context, so impossible to draw conclusions from. I still don't see how 
> this explains why you'd get the error dialog displayed *again* after 
> choosing  from the "Allow root" question. And I also still don't 
> see if this is a state machine error or a cdebconf issue.
> 
> An attachment with the full syslog including 'set -x' output *and* debconf 
> debugging, or at least for the relevant part from the start of user-setup 
> would have been helpful.

First, the state machine loop ends with:

  if db_go; then
  STATE=$(($STATE + 1))
  else
  STATE=$(($STATE - 1))
  fi

So we have a db_go upon when reaching the end of the case statement executing
the code relevant to the current state.

The state machine starts at state 0, with:

  0)
  # Ask how the password files should be set up.
  db_input low passwd/shadow || true
  # Ask if root should be allowed to login.
  db_input medium passwd/root-login || true
  ;;

After the case, db_go is run so two questions are asked.  When answered, we
move to state 1:

  1)
  […parts handling passwd/root-login and preseeding skipped…]
  if ! root_password; then
  db_input critical passwd/root-password || true
  db_input critical passwd/root-password-again || true
  fi
  ;;

Two more questions asked.  When answered, we move to state 2:

  2)
  […parts handling passwd/root-login and preseeding skipped…]
  if ! root_password; then
  # Compare the two passwords, loop back if not
  # identical, or if empty.
  db_get passwd/root-password
  ROOT_PW="$RET"
  if [ -z "$ROOT_PW" ]; then
  db_fset user-setup/password-empty seen false
  db_input critical user-setup/password-empty
  db_fset passwd/root-password seen false
  db_fset passwd/root-password-again seen false
  STATE=0
  continue
  fi
  […part about password mismatch skipped…]
  fi
  ;;

Normal case (root password contains something): we move to the db_go, no
questions asked, and we advance to state 3.

In case of error (empty root password), we first "ask"
user-setup/password-empty using db_input.  And then we switch directly
to state 0 _without_ executing db_go (by use of the "continue"
statement).  We are then back executing:

  0)
  # Ask how the password files should be set up.
  db_input low passwd/shadow || true
  # Ask if root should be allowed to login.
  db_input medium passwd/root-login || true
  ;;

So, two other db_input, and then we move on to the db_go.

Hence, three questions are asked in one row, namely
"user-setup/password-empty", "passwd/shadow", "passwd/root-login".

The user is thus first showed the error message.  Then, after pressing
"Continue", "passwd/shadow" or "passwd/root-login" is displayed
(depending on the priority).  When pressing "Go back", the previous
question is displayed, which actually is the error message (again).

So, I thought of two different ways to fix this:
 * Change user-setup-ask to show the error messages with their own db_go,
   which could be inserted right below the relevant db_input.
 * Make the text and newt cdebconf frontends skip questions with the
   "error" type when rewinding through the question list after "Go
   back" has been preseed.

I have an implementation ready and tested for this second option.

In the hope to made myself clear enough,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#493931: Release-Notes: Include Information about Live images

2008-08-05 Thread Daniel Baumann
Package: release-notes

Hi,

please don't forget to include something about live images which lenny
is going to be released with. I'm happy to provide such information/text
 at later point.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#493104: cups-client: Confirming for HP Color LaserJet 2605 PPD

2008-08-05 Thread Sebastian Rittau
Package: cups-client
Version: 1.3.8-1
Followup-For: Bug #493104

I can confirm this bug for the HP Color LasetJet 2605 PPD:

  [EMAIL PROTECTED]:~$ LANG=C cupstestppd 
/usr/share/ppd/postscript/HP/HP_Color_LaserJet_2605.ppd.gz 
  /usr/share/ppd/postscript/HP/HP_Color_LaserJet_2605.ppd.gz: FAIL
**FAIL**  Unable to open PPD file - Missing value string on line 122.
  REF: Page 20, section 3.4.

The relevant section:

*OpenUI *HPCollateSupported/Collation in Printer: PickOne
*DefaultHPCollateSupported: False128
*HPCollateSupported True128/Yes<3A> Total RAM<3E>=128MB: ""
*HPCollateSupported False128/No<3A> Total RAM<3C>128MB: ""
*?HPCollateSupported: "
  save 
  mark
  <> >> setpagedevice
  { <> setpagedevice
  } stopped
  { (False128) }
  { (True128) } ifelse = flush
  cleartomark
  restore
"
*End
*CloseUI *HPCollateSupported

Line 122 is the last line. Commenting out this section makes the printer
work again. This PPD used to work.

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

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

Versions of packages cups-client depends on:
ii  adduser3.109 add and remove users and groups
ii  cups-common1.3.8-1   Common UNIX Printing System(tm) - 
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcups2   1.3.8-1   Common UNIX Printing System(tm) - 
ii  libcupsimage2  1.3.8-1   Common UNIX Printing System(tm) - 
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

cups-client recommends no packages.

Versions of packages cups-client suggests:
ii  cups  1.3.8-1Common UNIX Printing System(tm) - 
ii  cups-bsd  1.3.8-1Common UNIX Printing System(tm) - 
pn  cups-pt(no description available)
pn  gtklp  (no description available)
pn  kdeprint   (no description available)
pn  xpp(no description available)

-- no debconf information



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



Bug#477140: nozomi-source: Oops loading the module

2008-08-05 Thread Michael Prokop
* Frederik Schueler <[EMAIL PROTECTED]> [20080428 17:50]:
> On Wed, Apr 23, 2008 at 01:07:54PM +0200, Michael Prokop wrote:

> > Is this oops reproducable for you? If so: how?

> It is reproducable, just inserting the card in the laptop after booting
> th 2.6.24-1-amd64 from sid Oopses.

> > A snapshot of Debian's kernel version 2.6.25-1 is considered to be
> > uploaded tomorrow (2008-04-24), as nozomi got part of mainline
> > kernel 2.5.25 it would be great if you coud test the kernel then.

> 2.6.25-trunk-amd64 works:
[...]

I guess you are using 2.6.26[-1-amd64] already?
I assume the nozomi issue is resolved for you with the kernel
targeted for Lenny as well? If so I'd close this bugreport.

Thanks!

regards,
-mika-


signature.asc
Description: Digital signature


Bug#492724: setting package to beep-udeb beep, tagging 493842, tagging 493535, tagging 492969, tagging 492792 ...

2008-08-05 Thread Gerfried Fuchs
# Automatically generated email from bts, devscripts version 2.10.34
# via tagpending 
#
# beep (1.2.2-22) unstable; urgency=low
#
#  * New translation:
#- Finish by Esko Arajärvi (closes: #492724, #493220)
#- Romanian by Eddy Petrișor (closes: #493764)
#- Euskara by Piarres Beobide (closes: #493842)
#  * Updated translations:
#- Galician by Jacobo Tarrio (closes: #492792, #493305)
#- Japanese by Hideki Yamane (closes: #492969, #493535)
#- French by Daniel Déchelotte (closes: #493072)
#- Swedish by Martin Bagge (closes: #493344)
#- Portuguese by Miguel Figueiredo (closes: #493264)
#- Russian by Yuri Kozlov (closes: #493280)
#- Czech by Miroslav Kure (closes: #493596)
#

package beep-udeb beep
tags 493842 + pending
tags 493535 + pending
tags 492969 + pending
tags 492792 + pending
tags 493344 + pending
tags 493764 + pending
tags 493305 + pending
tags 493280 + pending
tags 493072 + pending
tags 493264 + pending
tags 493220 + pending
tags 492724 + pending
tags 493596 + pending




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



Bug#493716: ITP: uboot-envtools -- Tools for reading/modifying the environment for Das U-Boot

2008-08-05 Thread Per Andersson
On Tue, Aug 5, 2008 at 1:16 AM, Frank Lichtenheld <[EMAIL PROTECTED]> wrote:
> On Mon, Aug 04, 2008 at 03:10:12PM +0200, Per Andersson wrote:
>> * URL :
>> http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=tree;f=tools/env;hb=HEAD
>
> http://git.denx.de/?p=u-boot.git;a=tree;f=tools/env;hb=HEAD
> is the same and a bit shorter ;)
> 

Thanks, I'll use that then. :)


>> License: other
>>This software is provided 'as-is', without any express or implied
>>warranty.  In no event will the authors be held liable for any damages
>>arising from the use of this software.
>>  .
>>Permission is granted to anyone to use this software for any purpose,
>>including commercial applications, and to alter it and redistribute it
>>freely, subject to the following restrictions:
>>  .
>>1. The origin of this software must not be misrepresented; you must not
>>   claim that you wrote the original software. If you use this software
>>   in a product, an acknowledgment in the product documentation would be
>>   appreciated but is not required.
>>2. Altered source versions must be plainly marked as such, and must not be
>>   misrepresented as being the original software.
>>3. This notice may not be removed or altered from any source distribution.
>>  .
>>Jean-loup GaillyMark Adler
>
> This seems to be the license of the zlib code in U-Boot. Do you really
> need that?

Indeed it is. The file crc32.c is taken from those sources
and has that copyright. (The function crc32() is used in
fw_env to calculate the crc for the environment.)


-- Per



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



Bug#461106: Reproduced it with gnome-panel from experimental

2008-08-05 Thread Thadeu Lima de Souza Cascardo
I've reproduced this bug with debian sid and gnome-panel 2.20.3. Then, I
installed gnome-panel 2.22.2 from experimental, restarted gnome and
reproduced it again, in the same way.


signature.asc
Description: Digital signature


Bug#491480: further information

2008-08-05 Thread Daniel Gibson
Hi,

I tried to find out more about the problem and collected some
information. I built the plugin "manually" and with --enable-debug
After adding it (followed by an immediate crash of the plugin) the
following was in .xsession-errors:
---
(...)
TRACE[sensors.c:2221] sensors_create_options(): enters sensors_create_options
TRACE[sensors.c:1571] init_widgets(): enters init_widgets
TRACE[sensors.c:1149] fill_gtkTreeStore(): enters fill_gtkTreeStore
TRACE[acpi.c:451] refresh_acpi(): enters refresh_acpi
TRACE[acpi.c:532] get_acpi_zone_value(): enters get_acpi_zone_value for thermal_
zone/THRM/temperature
TRACE[acpi.c:553] get_acpi_value(): enters get_acpi_value for
/proc/acpi/thermal_zone/THRM/temperature
TRACE[acpi.c:564] get_acpi_value(): leaves get_acpi_value with 44 C
TRACE[acpi.c:537] get_acpi_zone_value(): leaves get_acpi_zone_value
with correctly converted value
TRACE[acpi.c:487] refresh_acpi(): leaves refresh_acpi
TRACE[acpi.c:451] refresh_acpi(): enters refresh_acpi
TRACE[acpi.c:553] get_acpi_value(): enters get_acpi_value for fan/FAN1/state

** Message: Sensor-Plugin: screen changed: 0

** Message: No valid plug window.

(xfce4-panel:2893): Gtk-CRITICAL **: gtk_socket_get_id: assertion
`GTK_WIDGET_ANCHORED (socket)' failed

** (xfce4-panel:2893): CRITICAL **: Ein Element wurde unerwartet
entfernt: »Sensor-Plugin«.
---

Furthermore I googled for »"gtk_socket_get_id: assertion
`GTK_WIDGET_ANCHORED (socket)' failed" +sensors« and found a gentoo
bugreport[1] suggesting to deactivate acpi-support.
So I built the plugin with
./configure --enable-debug --disable-procacpi --prefix=/usr/
--libexecdir=/usr/lib/
and it worked (at least the hddtemp-part, sensors don't work for me
anyway) - so most probably the acpi-support is broken.

I hope this can be fixed because the plugin is almost useless for me
without acpi-support.

Cheers,
- Daniel

[1] http://bugs.gentoo.org/224443



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



Bug#493914: kernel trace when stopping openafs-client

2008-08-05 Thread Russ Allbery
Felix Koop <[EMAIL PROTECTED]> writes:

> Package: openafs-client
> Version: 1.4.7.dfsg1-5
> Severity: normal
>
> When stopping the openafs-client directly after a reboot, I get the following
> trace in kern.log:
>
> Aug  5 23:04:07 sabine kernel: [   91.106245] [ cut here 
> ]
> Aug  5 23:04:07 sabine kernel: [   91.106245] WARNING: at 
> fs/proc/generic.c:799 remove_proc_entry+0x115/0x132()

This didn't include the actual error message.  Could you include the
kernel logs immediately prior to this?

-- 
Russ Allbery ([EMAIL PROTECTED])   



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



Bug#493930: fbpanel: segfaults due to german umlauts in window title

2008-08-05 Thread Michael Prokop
Package: fbpanel
Version: 4.12-1.1
Severity: normal


fbpanel already crashed several times on my machine, now I had the
chance to get some debugging information.

That's what I can find in the core file:

[...]
Core was generated by `fbpanel'.
Program terminated with signal 11, Segmentation fault.
[New process 32069]
#0  0xb7a4b978 in g_markup_escape_text () from /usr/lib/libglib-2.0.so.0
(gdb) bt
#0  0xb7a4b978 in g_markup_escape_text () from /usr/lib/libglib-2.0.so.0
#1  0xb7f33555 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#2  0x08c96640 in ?? ()
#3  0x in ?? ()
#4  0xbf87df08 in ?? ()
#5  0xb7af8957 in g_value_transform () from /usr/lib/libgobject-2.0.so.0
#6  0xb7adbad6 in g_object_set_valist () from /usr/lib/libgobject-2.0.so.0
#7  0xb7adbf36 in g_object_set () from /usr/lib/libgobject-2.0.so.0
#8  0xb7f27541 in gtk_widget_set_tooltip_text () from 
/usr/lib/libgtk-x11-2.0.so.0
#9  0xb7229e6e in ?? () from /usr/lib/fbpanel/plugins/taskbar.so
#10 0x08b2ddb0 in ?? ()
#11 0x08c966c8 in ?? ()
#12 0x08c966c8 in ?? ()
#13 0x in ?? ()
(gdb)   

Looking at the output of 'wmctrl -l' (comparing the listing of a
"working" desktop setup with the one where fbpanel segfaults) it
seems to be the following line that's causing problems for fbpanel:

0x048a  7 fuchsiatard Amarok - Feelgood Production Vs. Eve - Funky Plüsch

Notice the german umlaut 'ü' in the last word of the above line, I
guess it's the one being responsable for the segfaulting fbpanel.

As a reference:

% grep Amarok /tmp/wmctrl.broken | hexdump -C
  30 78 30 34 38 30 30 30  30 61 20 20 37 20 66 75  |0x048a  7 fu|
0010  63 68 73 69 61 74 61 72  64 20 41 6d 61 72 6f 6b  |chsiatard Amarok|
0020  20 2d 20 46 65 65 6c 67  6f 6f 64 20 50 72 6f 64  | - Feelgood Prod|
0030  75 63 74 69 6f 6e 20 56  73 2e 20 45 76 65 20 2d  |uction Vs. Eve -|
0040  20 46 75 6e 6b 79 20 50  6c fc 73 63 68 0a| Funky Pl.sch.|
004e

regards,
-mika-



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



Bug#493929: awesome: can't spawn an xterm with older xcb-util

2008-08-05 Thread Clint Adams
Package: awesome
Version: 3.0~rc1-1
Severity: serious

awesome crashes with
x-window-manager: symbol lookup error: x-window-manager: undefined symbol: 
xcb_wm_hints_get_urgency

Upgrading from libxcb-icccm0 0.2+git36-1 to 0.2+git41-1 fixes the
problem.



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



Bug#492986: audacious: also with -r and -f

2008-08-05 Thread Kevin Mitchell
Package: audacious
Version: 1.5.1-3
Followup-For: Bug #492986


Same thing with -r and -f options. It should be added that this only
happens if audacious is not already running.

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

Kernel: Linux 2.6.26-amd64.015-wl (SMP w/2 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_GB)
Shell: /bin/sh linked to /bin/bash

Versions of packages audacious depends on:
ii  audacious-plugins 1.5.1-2Base plugins for audacious
ii  dbus  1.2.1-3simple interprocess messaging syst
ii  gtk2-engines-pixbuf   2.12.11-3  Pixbuf-based theme for GTK+ 2.x
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libaudclient1 1.5.1-3audacious dbus remote control libr
ii  libaudid3tag1 1.5.1-3audacious id3 tag manipulation lib
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libmcs1   0.7.1-1Abstraction library to store confi
ii  libmowgli10.6.1-1a high performance development fra
ii  libpango1.0-0 1.20.5-1   Layout and rendering of internatio
ii  libsamplerate00.1.4-1audio rate conversion library
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libx11-6  2:1.1.4-2  X11 client-side library

Versions of packages audacious recommends:
ii  audacious-plugins-extra   1.5.1-2Various extra plugins for audaciou
ii  unzip 5.52-12De-archiver for .zip files

audacious suggests no packages.

-- no debconf information



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



Bug#493928: linux-image-2.6.26-1-686: driver snd-cs46xx.ko should be compiled by default.

2008-08-05 Thread Guanghao Hu

Subject: linux-image-2.6.26-1-686: driver snd-cs46xx.ko should be compiled by 
default.
Package: linux-image-2.6.26-1-686
Version: 2.6.26-1
Severity: normal

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


-- Package-specific info:

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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=zh_CN.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.26-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.23 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92e  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.26-1-686 recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.26-1-686 suggests:
ii  grub  0.97-44GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.26   (no description available)

-- debconf information:
  linux-image-2.6.26-1-686/preinst/abort-overwrite-2.6.26-1-686:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.26-1-686/postinst/bootloader-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/postinst/depmod-error-initrd-2.6.26-1-686: false
  linux-image-2.6.26-1-686/prerm/removing-running-kernel-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-system-map-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/abort-install-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.26-1-686/preinst/bootloader-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/prerm/would-invalidate-boot-loader-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/elilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/kimage-is-a-directory:
  linux-image-2.6.26-1-686/postinst/old-dir-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/create-kimage-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/lilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/overwriting-modules-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/depmod-error-2.6.26-1-686: false
  linux-image-2.6.26-1-686/postinst/bootloader-test-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/failed-to-move-modules-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/initrd-2.6.26-1-686:

_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE



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



Bug#493927: kicker-applets: add support for Audacious

2008-08-05 Thread Andrew O. Shadoura
Package: kicker-applets
Severity: wishlist
Tags: patch

Hello.

I've just added Audacious support to mediacontrol applet.
Here's the patch which enables this.
Note that you have to re-generate configure script as I added modifications to 
kicker-applets/mediacontrol/configure.in.in and thus they are in 
configure.in.

-- 
WBR, Andrew
diff -u kdeaddons-3.5.9/config.h.in kdeaddons-3.5.9/config.h.in
--- kdeaddons-3.5.9/config.h.in	2008-02-13 16:57:15.0 +0200
+++ kdeaddons-3.5.9/config.h.in	2008-08-06 00:53:07.0 +0300
@@ -3,6 +3,9 @@
 /* Define if you have Berkeley DB++ installed */
 #undef BERKELEY_DB
 
+/* Define if you have Audacious libraries and header files. */
+#undef HAVE_AUDACIOUS
+
 /* Define to 1 if you have the  header file. */
 #undef HAVE_CARBON_CARBON_H
 
diff -u kdeaddons-3.5.9/configure.in kdeaddons-3.5.9/configure.in
--- kdeaddons-3.5.9/configure.in	2008-08-06 01:16:07.0 +0300
+++ kdeaddons-3.5.9/configure.in	2008-08-06 00:09:24.0 +0300
@@ -156,6 +156,51 @@
 
 AC_SUBST(XMMS_LIBS)
 AC_SUBST(XMMS_INCLUDES)
+
+
+AC_DEFUN([AC_CHECK_AUDACIOUS],
+[
+  AC_MSG_CHECKING([for libaudclient])
+  AC_CACHE_VAL(ac_cv_have_audacious,
+  [
+ac_save_libs="$LIBS"
+LIBS="`pkg-config --libs audclient`"
+ac_CPPFLAGS_save="$CPPFLAGS"
+CPPFLAGS="$CPPFLAGS $all_includes `pkg-config --cflags audclient 2> /dev/null`"
+ac_LDFLAGS_save="$LDFLAGS"
+LDFLAGS="$LDFLAGS $all_libraries"
+AC_TRY_LINK(
+  [#include ],
+  [audacious_remote_play_pause(0);],
+  [ac_cv_have_audacious="yes"],
+  [ac_cv_have_audacious="no"]
+)
+LIBS="$ac_save_libs"
+LDFLAGS="$ac_LDFLAGS_save"
+CPPFLAGS="$ac_CPPFLAGS_save"
+  ])
+  AC_MSG_RESULT($ac_cv_have_audacious)
+  if test "$ac_cv_have_audacious" = "yes"; then
+AUDACIOUS_LIBS="`pkg-config --libs audclient`"
+AUDACIOUS_INCLUDES="`pkg-config --cflags audclient`"
+AC_DEFINE(HAVE_AUDACIOUS, 1, [Define if you have Audacious libraries and header files.])
+  fi
+])
+
+AC_ARG_WITH(audacious,
+  [AC_HELP_STRING([--with-audacious],[enable Audacious control applet @<:@default=check@:>@])],
+  [], with_audacious=check)
+
+if test "x$with_audacious" != xno; then
+  AC_CHECK_AUDACIOUS
+
+  if test "x$with_audacious" != xcheck && test "x$ac_cv_have_audacious" != xyes; then
+AC_MSG_ERROR([--with-audacious was given, but test for Audacious failed])
+  fi
+fi
+
+AC_SUBST(AUDACIOUS_LIBS)
+AC_SUBST(AUDACIOUS_INCLUDES)
 dnl ===
 dnl FILE: ./konq-plugins/sidebar/metabar/configure.in.in
 dnl ===
diff -u kdeaddons-3.5.9/Makefile.in kdeaddons-3.5.9/Makefile.in
--- kdeaddons-3.5.9/Makefile.in	2008-08-06 01:16:07.0 +0300
+++ kdeaddons-3.5.9/Makefile.in	2008-08-06 00:28:11.0 +0300
@@ -89,6 +78,8 @@
 AMTAR = @AMTAR@
 AR = @AR@
 ARTSCCONFIG = @ARTSCCONFIG@
+AUDACIOUS_INCLUDES = @AUDACIOUS_INCLUDES@
+AUDACIOUS_LIBS = @AUDACIOUS_LIBS@
 AUTOCONF = @AUTOCONF@
 AUTODIRS = @AUTODIRS@
 AUTOHEADER = @AUTOHEADER@
diff -u kdeaddons-3.5.9/kicker-applets/Makefile.in kdeaddons-3.5.9/kicker-applets/Makefile.in
--- kdeaddons-3.5.9/kicker-applets/Makefile.in	2008-08-06 01:16:07.0 +0300
+++ kdeaddons-3.5.9/kicker-applets/Makefile.in	2008-08-05 23:38:14.0 +0300
@@ -72,6 +72,8 @@
 AMTAR = @AMTAR@
 AR = @AR@
 ARTSCCONFIG = @ARTSCCONFIG@
+AUDACIOUS_INCLUDES = @AUDACIOUS_INCLUDES@
+AUDACIOUS_LIBS = @AUDACIOUS_LIBS@
 AUTOCONF = @AUTOCONF@
 AUTODIRS = @AUTODIRS@
 AUTOHEADER = @AUTOHEADER@
diff -uN kdeaddons-3.5.9/kicker-applets/mediacontrol/audaciousInterface.cpp kdeaddons-3.5.9/kicker-applets/mediacontrol/audaciousInterface.cpp
--- kdeaddons-3.5.9/kicker-applets/mediacontrol/audaciousInterface.cpp	1970-01-01 03:00:00.0 +0300
+++ kdeaddons-3.5.9/kicker-applets/mediacontrol/audaciousInterface.cpp	2008-08-06 01:08:03.0 +0300
@@ -0,0 +1,202 @@
+/***
+  Interface to access Audacious
+ ---
+begin: Tue Apr 25 11:53:11 CEST 2000
+copyright: (C) 2000-2002 by Stefan Gehn
+email: metz {AT} gehn {DOT} net
+ ***/
+
+/***
+ * *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or *
+ *   (at your option) any later version.   *
+ * *
+ ***/
+
+#ifdef HAVE_

Bug#493452: [Pkg-puppet-devel] Bug#493452: Bug#493452: Downcasing of facts

2008-08-05 Thread martin f krafft
also sprach Russ Allbery <[EMAIL PROTECTED]> [2008.08.05.1724 -0300]:
> > It says the same on my 0.24.4 system, but I'm still getting
> > case-insensitive case statements and selectors.  *puzzled look*
> 
> Sorry, ignore me, I read the option as the reverse of what it was.

So things changed?

-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
a Hooloovoo is a superintelligent shade of the color blue.
-- douglas adams, "the hitchhiker's guide to the galaxy"


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


Bug#493926: linux-image-2.6.26-1-686: driver snd-cs46xx.ko should be compiled by default.

2008-08-05 Thread Crisson
Package: linux-image-2.6.26-1-686
Version: 2.6.26-1
Severity: normal



-- Package-specific info:

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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=zh_CN.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.26-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.23 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92e  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.26-1-686 recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.26-1-686 suggests:
ii  grub  0.97-44GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.26   (no description available)

-- debconf information:
  linux-image-2.6.26-1-686/preinst/abort-overwrite-2.6.26-1-686:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.26-1-686/postinst/bootloader-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/postinst/depmod-error-initrd-2.6.26-1-686: false
  linux-image-2.6.26-1-686/prerm/removing-running-kernel-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-system-map-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/abort-install-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.26-1-686/preinst/bootloader-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/prerm/would-invalidate-boot-loader-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/elilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/kimage-is-a-directory:
  linux-image-2.6.26-1-686/postinst/old-dir-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/create-kimage-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/lilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/overwriting-modules-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/depmod-error-2.6.26-1-686: false
  linux-image-2.6.26-1-686/postinst/bootloader-test-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/failed-to-move-modules-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/initrd-2.6.26-1-686:



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



Bug#493925: binary firmware in drivers/char/drm/mga_ucode.h

2008-08-05 Thread Robert Millan
Package: linux-2.6
Version: 2.6.26-1
Severity: serious

Hi,

Now that it seems clear 2.6.26 will be the version used for the release, I'd
like to bring back attention on pruning it from code under DFSG violation,
GPL-incompatible, or unlicensed blobs.

Based on maks mail in:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=242866#308

  "file a separate report on each issue that you find and we'll analyse your
  findings"

I'll file a separate report on each issue I find.  Will try to make them as
detailed as possible.



drivers/char/drm/mga_ucode.h (licensed under BSD-style terms) is entirely
composed of binary code, such as:

static unsigned char warp_g200_tgz[] = {

0x00, 0x80, 0x00, 0xE8,
0x00, 0x80, 0x00, 0xE8,
[...]

drivers/char/drm/mga_warp.c relies on those chunks of non-free code.

Since the licensing terms allow redistribution, shipping it is not illegal but
is a DFSG violation.

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



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



Bug#493924: linux-image-2.6.25-2-686: driver snd-cs46xx.ko should be compiled by default.

2008-08-05 Thread Guanghao Hu

Subject: linux-image-2.6.25-2-686: driver snd-cs46xx.ko should be compiled by 
default.
Package: linux-image-2.6.25-2-686
Version: 2.6.25-7
Severity: normal

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


-- Package-specific info:

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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=zh_CN.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.25-2-686 depends on:
ii  debconf [debconf-2.0] 1.5.23 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92e  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.25-2-686 recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.25-2-686 suggests:
ii  grub  0.97-44GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.25   (no description available)

-- debconf information:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.25-2-686/preinst/abort-install-2.6.25-2-686:
  linux-image-2.6.25-2-686/preinst/overwriting-modules-2.6.25-2-686: true
  linux-image-2.6.25-2-686/prerm/would-invalidate-boot-loader-2.6.25-2-686: true
  linux-image-2.6.25-2-686/preinst/elilo-initrd-2.6.25-2-686: true
  linux-image-2.6.25-2-686/postinst/bootloader-test-error-2.6.25-2-686:
  linux-image-2.6.25-2-686/postinst/depmod-error-initrd-2.6.25-2-686: false
  linux-image-2.6.25-2-686/preinst/bootloader-initrd-2.6.25-2-686: true
  linux-image-2.6.25-2-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.25-2-686/postinst/old-initrd-link-2.6.25-2-686: true
  linux-image-2.6.25-2-686/prerm/removing-running-kernel-2.6.25-2-686: true
  linux-image-2.6.25-2-686/postinst/bootloader-error-2.6.25-2-686:
  linux-image-2.6.25-2-686/preinst/initrd-2.6.25-2-686:
  linux-image-2.6.25-2-686/preinst/lilo-initrd-2.6.25-2-686: true
  linux-image-2.6.25-2-686/postinst/old-system-map-link-2.6.25-2-686: true
  linux-image-2.6.25-2-686/postinst/create-kimage-link-2.6.25-2-686: true
  linux-image-2.6.25-2-686/postinst/old-dir-initrd-link-2.6.25-2-686: true
  linux-image-2.6.25-2-686/preinst/abort-overwrite-2.6.25-2-686:
  linux-image-2.6.25-2-686/preinst/failed-to-move-modules-2.6.25-2-686:
  linux-image-2.6.25-2-686/postinst/kimage-is-a-directory:
  linux-image-2.6.25-2-686/postinst/depmod-error-2.6.25-2-686: false

_
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE



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



Bug#483650: linux-image-2.6.25-2-686: 'Xen kernel' breaks 'nvidia-kernel-legacy-71xx-source'.

2008-08-05 Thread Lennart Sorensen
On Wed, Aug 06, 2008 at 01:16:45AM +0300, Jari Aalto wrote:
> Any news on this patch moving forward? I'm unable to build the nvidia
> driver (for Riva TNT) against the latest kernel as well.

Oh, I forgot to do that one.  I will try and get that done this week
then.

-- 
Len Sorensen



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



Bug#489835: seccure-* FATAL: Cannot obtain memory lock

2008-08-05 Thread Adeodato Simó
* James Westby [Tue, 05 Aug 2008 13:28:04 +0100]:

> Hi debian-release,

Hi James,

> I would like permission to upload a fix for the above to unstable
> with the aim of transitioning to testing for inclusion in lenny.

> I have since upgraded this bug to grave, as the above error happens
> on any invocation of the program.

> If you give me the go-ahead then I will seek a sponsor for this
> upload.

> The debdiff is attached, hopefully the patch and changelog comments
> will give you enough information about the problem.

Yes, please upload.

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
   Listening to: Polar - Nothing left to say




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



Bug#493923: nautilus hangs while browsing windows (smb) shares

2008-08-05 Thread Michal R. Hoffmann
Package: nautilus
Version: 2.20.0-6
Severity: important


Recently I have problems opening windows 2000 share in nautilus. The share 
opens, but after a few 
directory changes (expanding, going into) nautilus hangs and I have to force it 
quit. Then I cannot 
reconnect to smb share anymore (until I logout/login). I tried both with menu 
[File/Connect To Server] 
or with Ctrl-L smb://[EMAIL PROTECTED]/share_name) - all the same.

The interesting part is that KDE smb connection works (at least I can start 
Krusader, connect to the 
share and copy files over) even when nautilus had hanged on the connection 
already so it seems to be 
a nautilus problem.

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

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

Versions of packages nautilus depends on:
ii  desktop-file-utils 0.15-1Utilities for .desktop files
ii  gnome-control-center   1:2.22.2.1-1  utilities to configure the GNOME d
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libeel2-2.20   2.20.0-7  Eazel Extensions Library (for GNOM
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libexempi3 2.0.1-1   library to parse XMP metadata (Lib
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libgail-common 1.22.3-1  GNOME Accessibility Implementation
ii  libgail18  1.22.3-1  GNOME Accessibility Implementation
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.5-1  The GLib library of C routines
ii  libgnome-desktop-2 2.22.3-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-4GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libnautilus-extension1 2.20.0-6  libraries for nautilus components 
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  librsvg2-2 2.22.2-2  SAX-based renderer library for SVG
ii  libselinux12.0.65-4  SELinux shared libraries
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libtrackerclient0  0.6.6-2   metadata database, indexer and sea
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  nautilus-data  2.20.0-6  data files for nautilus
ii  shared-mime-info   0.30-2FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  app-install-data2008.07.28   Application Installer Data Files
ii  desktop-base4.0.7common files for the Debian Deskto
ii  eject   2.1.5+deb1-1 ejects CDs and operates CD-Changer
ii  libgnomevfs2-extra  1:2.22.0-4   GNOME Virtual File System (extra m
ii  librsvg2-common 2.22.2-2 SAX-based renderer library for SVG
ii  nautilus-cd-burner  2.20.0-1 CD Burning front-end for Nautilus
ii  synaptic0.62.1   Graphical package manager

Versions of packages nautilus suggests:
ii  eog 2.22.3-1 Eye of GNOME graphics viewer progr
ii  evince [pdf-viewer] 2.22.2-2 Document (postscript, pdf) viewer
pn  fam(no description available)
ii  kghostview [pdf-viewer] 4:3.5.9-1+b1 PostScript viewer for KDE
ii  kpdf [pdf-viewer]   4:3.5.9-1PDF viewer for KDE
ii  okular [pdf-viewer] 0.6.90-1 document viewer for KDE 4
ii  totem   2.22.2-3 A simple media player for the GNOM
pn  tracker(no description available)

-- no debconf information



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



Bug#493922: apt: missing space in greek .po

2008-08-05 Thread Serafeim Zanikolas
Package: apt
Version: 0.7.14+b1
Severity: minor
Tags: patch l10n

Just a missing space from el.po (see attached patch).
--- po/el.po-orig	2008-08-05 23:14:30.0 +0100
+++ po/el.po	2008-08-05 23:14:42.0 +0100
@@ -1008,7 +1008,7 @@
 #: cmdline/apt-get.cc:1193
 #, c-format
 msgid "Release '%s' for '%s' was not found"
-msgstr "Η έκδοση %s για το%s δεν βρέθηκε"
+msgstr "Η έκδοση %s για το %s δεν βρέθηκε"
 
 #: cmdline/apt-get.cc:1195
 #, c-format


Bug#483650: linux-image-2.6.25-2-686: 'Xen kernel' breaks 'nvidia-kernel-legacy-71xx-source'.

2008-08-05 Thread Jari Aalto

Any news on this patch moving forward? I'm unable to build the nvidia
driver (for Riva TNT) against the latest kernel as well.

Jari



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



Bug#493920: lintian: debconf-error-requires-versioned-depends test apparently obsolete

2008-08-05 Thread Scott Kitterman
Package: lintian
Version: 1.24.2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

According to the extended description in 
debconf-error-requires-versioned-depends,
it is only relevant for oldstable (Sarge) backports.  Since Sarge is no longer
supported, it would seem this test can be removed.

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

Kernel: Linux 2.6.24-19-generic (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 lintian depends on:
ii  binutils 2.18.1~cvs20080103-0ubuntu1 The GNU assembler, linker and bina
ii  diffstat 1.45-2  produces graph of changes introduc
ii  dpkg-dev 1.14.16.6ubuntu4package building tools for Debian
ii  file 4.21-3ubuntu1   Determines file type using "magic"
ii  gettext  0.17-2ubuntu1   GNU Internationalization utilities
ii  intltool-deb 0.35.0+20060710.1   Help i18n of RFC822 compliant conf
ii  libdigest-sh 5.45-1  Perl extension for SHA-1/224/256/3
ii  libparse-deb 1.1.1-2 parse Debian changelogs and output
ii  libtimedate- 1.1600-9Time and date functions for Perl
ii  liburi-perl  1.35.dfsg.1-1   Manipulates and accesses URI strin
ii  man-db   2.5.1-3 on-line manual pager
ii  perl [libdig 5.8.8-12Larry Wall's Practical Extraction 

lintian recommends no packages.

- -- no debconf information

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

iD8DBQFImM9QHajaM93NaGoRAq8uAJ9zyEFGJm05FocHwIEiZWLPpSu+TgCfT/U7
0aAqgW+b9w7y1X2eMDWYVAQ=
=wxOI
-END PGP SIGNATURE-



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



Bug#493921: lintian: file-in-unusual-dir redundant in /opt due to dir-or-file-in-opt

2008-08-05 Thread Scott Kitterman
Package: lintian
Version: 1.24.2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Since any file in /opt will already trigger the Error dir-or-file-in-opt,
also firing off the Warning file-in-unusual-dir seems redundant and
distracting.

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

Kernel: Linux 2.6.24-19-generic (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 lintian depends on:
ii  binutils 2.18.1~cvs20080103-0ubuntu1 The GNU assembler, linker and bina
ii  diffstat 1.45-2  produces graph of changes introduc
ii  dpkg-dev 1.14.16.6ubuntu4package building tools for Debian
ii  file 4.21-3ubuntu1   Determines file type using "magic"
ii  gettext  0.17-2ubuntu1   GNU Internationalization utilities
ii  intltool-deb 0.35.0+20060710.1   Help i18n of RFC822 compliant conf
ii  libdigest-sh 5.45-1  Perl extension for SHA-1/224/256/3
ii  libparse-deb 1.1.1-2 parse Debian changelogs and output
ii  libtimedate- 1.1600-9Time and date functions for Perl
ii  liburi-perl  1.35.dfsg.1-1   Manipulates and accesses URI strin
ii  man-db   2.5.1-3 on-line manual pager
ii  perl [libdig 5.8.8-12Larry Wall's Practical Extraction 

lintian recommends no packages.

- -- no debconf information

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

iD8DBQFImM9UHajaM93NaGoRApFXAJ9J/o7vzmqAVLSxGaRtWVRCslvnaQCbB6KB
/zs7zdk10eBxe8k9CeCEz5s=
=zJf9
-END PGP SIGNATURE-



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



Bug#493919: emacs22: python mode would not start (upgrade issue?)

2008-08-05 Thread Ross Boylan
Package: emacs22
Version: 22.2+2-3
Severity: normal

This issue might affect those upgrading from earlier versions of
emacs.  I am submitting it mostly with an eye to the upcoming
release.  The problem prevent emacs from entering python-mode.

When I tried to open a python (.py) file or execute M-x python-mode, I
was getting this error (shown in the form in *Messages* buffer):
File mode specification error: (file-error "Cannot open load file" 
"python-mode")

This occurred even with emacs -q starts.

/etc/emacs/site-start.d/50python-mode.el was present, and seems to be
the culprit.  When I removed it everything worked.  I guess this is a
left-over from some earlier version of emacs (or the python-mode
package).

I know package installation/upgrade is supposed to respect settings in
/etc, but perhaps there is some solution for this.  Failing that,
maybe a note in README.Debian could give a hint about the problem.

It is possible I encountered this because of something weird about
this particular system.  I did not encounter it with a newer system.

I don't need a fix, since removing 50python-mode.el seems to make
things work.

For reference, here's the contents of the offending file:
--
;-*-emacs-lisp-*-

(autoload 'python-mode "python-mode" "Python editing mode." t)

(setq load-path (cons (concat "/usr/share/"
  (symbol-name debian-emacs-flavor)
  "/site-lisp/python-elisp")
  load-path))

(setq auto-mode-alist
(cons '("\\.py$" . python-mode) auto-mode-alist))

(setq interpreter-mode-alist
(cons '("python" . python-mode) interpreter-mode-alist))

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

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

Versions of packages emacs22 depends on:
ii  emacs22-bin-common 22.2+2-3  The GNU Emacs editor's shared, arc
ii  libasound2 1.0.16-2  ALSA library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libgif44.1.6-5   library for GIF images (library)
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libncurses55.6+20080713-1shared libraries for terminal hand
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libtiff4   3.8.2-10  Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  xaw3dg 1.5+E-17  Xaw3d widget set
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

emacs22 recommends no packages.

Versions of packages emacs22 suggests:
ii  emacs22-common-non-dfsg   22.2+2-1.1 GNU Emacs shared, architecture ind

-- no debconf information



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



Bug#493917: new upstream version of sat4j available

2008-08-05 Thread Daniel Le Berre

Package: sat4j
Version: 2.0.2

SAT4J 2.0.2 fixes a few minor issues in the code of both the core solver and
the pseudo boolean solver.

--
Daniel Le Berre mailto:[EMAIL PROTECTED]
MCF,CRIL-CNRS UMR 8188,Universite d'Artois
http://www.cril.univ-artois.fr/~leberre




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



Bug#493918: billard-gl: Debian package should include the language pack

2008-08-05 Thread theo
Package: billard-gl
Version: 1.75-10
Severity: wishlist
Tags: l10n

Hi,

I think that the billard-gl Debian package should include the language
pack. Right now, the package can only be set in 3 languages instead of
11.

The steps i did to make it work : get the language pack ( 
http://www.tobias-nopper.de/BillardGL/download-en.html ) unzip it and
copy all 9*.lang to /usr/share/games/billard-gl.

Have a nice day,
-- 
regards,
theo

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

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

Versions of packages billard-gl depends on:
ii  billard-gl-data   1.75-103D billards game - data files
ii  freeglut3 2.4.0-6.1  OpenGL Utility Toolkit
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.1-2  GCC support library
ii  libgl1-mesa-glx [libgl1]  7.0.3-5A free implementation of the OpenG
ii  libglu1-mesa [libglu1]7.0.3-5The OpenGL utility library (GLU)
ii  libstdc++64.3.1-2The GNU Standard C++ Library v3

billard-gl recommends no packages.

billard-gl suggests no packages.

-- no debconf information



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



Bug#493798: notfound 493798 in 1.1.2-1, found 493798 in 1:1.1.2-1

2008-08-05 Thread Frank Lichtenheld
# Automatically generated email from bts, devscripts version 2.10.35
# fix missing epoch
notfound 493798 1.1.2-1
found 493798 1:1.1.2-1




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



Bug#481592: (no subject)

2008-08-05 Thread Iain Lane
tag 485631 + fixed
tag 485631 + fixed-upstream
tag 481592 + fixed-upstream
thanks

Hi,

This bug has been fixed in binutils upstream at [0, 1], and therefore
should go away at the next binutils update.

[0] http://sourceware.org/bugzilla/show_bug.cgi?id=6656
[1]
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/dwarf2dbg.c.diff?cvsroot=src&r1=1.97&r2=1.98



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



Bug#472846: closed by Thijs Kinkhorst <[EMAIL PROTECTED]> (Re: Bug#472846: busybox: Regression in pidof: no longer lists 'debian-installer' processes)

2008-08-05 Thread Frans Pop
On Tuesday 05 August 2008, Bernhard Fischer wrote:
> Can you please check if this is fixed for d-i with the current stable
> branch:
> $ svn co svn://svn.busybox.net/branches/busybox_1_11_stable

I'm afraid it is not fixed in the SVN version either.

The reason may be that the debian-installer script gets run as follows 
from /etc/inittab:
::respawn:/bin/cttyhack /sbin/debian-installer

In older versions of busybox 'pidof debian-installer' _did_ return its pid 
when started in basically the same way (also under respawn in inittab), 
but we did not (need to) use cttyhack then.

Removing cttyhack does _not_ fix the issue. I tried that (by editing
/etc/inittab before init is executed) but also with just
::respawn:/sbin/debian-installer
the pid for the debian-installer script is not displayed.

Cheers,
FJP



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



Bug#492861: Progress bar rewinds when running pre-pkgsel.d/10popcon

2008-08-05 Thread Jérémy Bobbio
On Tue, Aug 05, 2008 at 06:33:12PM +0200, Frans Pop wrote:
> Because not only is there absolutely no need for them to do so, it is also 
> seriously fragile to expect random hook scripts to output nothing else 
> than their progress bar end position.

The patch handles any script output and log it.  The progress bar end
position must be on the last line of the output to be considered,
though.

> Remember that anybody (think preseeding) can drop in hook scripts.

I actually decided to go that way thinking about custom hook scripts…

> With the proposed patch a hook script can blow up the whole postinst by 
> just "leaking" some output to STDOUT.
> 
> Example
> ---
> Hook script has:
> if grep "GenuineIntel" /proc/cpuinfo; then
>  
> fi
> exit 0
> 
> Due to the minor bug of the forgotten '-q' progress_to will be equal to
> vendor_id   : GenuineIntel
> 
> And with 'set -e'
> if [ "$progress_to" -gt $progress_from ]; then
> will make the postinst go BM!

Actually, it won't as the test is run inside an "if" expression.
"/usr/bin/[" will simply return false and go on.  An unpretty error
message [1] will be displayed but that could be mitigated by redirecting
stderr to /dev/null.

[1] sh: vendor_id   : GenuineIntel: bad number

Anyway, I am open to any solutions that would actually fix #492861.
The one discussed here could be one of them.  But I don't see it as
anymore fragile than the current code.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#474692: Looking at the package

2008-08-05 Thread Hilko Bengen
retitle 474692 Subject: ITP: libdevel-perlysense-perl -- Perl IDE with Emacs 
frontend
thanks

I am currently working on the package (and its dependencies). If my
testing turns out well, I'll prepare uploads within the next ten days.

-Hilko



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



Bug#492861: Progress bar rewinds when running pre-pkgsel.d/10popcon

2008-08-05 Thread Jérémy Bobbio
On Tue, Aug 05, 2008 at 06:45:19PM +0200, Frans Pop wrote:
> In all other cases where we use hook scripts we advance the progress
> bar by some fixed amount per hook script. The only additional feature
> here is that some hook scripts can usefully subdivide their allotted
> bit.

I have only took a quick look, but are you aware of any other hooks that
allow the use of debconf-apt-progress?

debconf-apt-progress interface really is what make the pre-pkgsel.d hook
special here, as far as I have been able to dug up.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#493016: libc6: ldd doesn't work with ACLs

2008-08-05 Thread Aurelien Jarno
On Thu, Jul 31, 2008 at 01:03:19PM -0700, Jefferson Cowart wrote:
> $ sh -x /usr/bin/ldd pdficon
> + TEXTDOMAIN=libc
> + TEXTDOMAINDIR=/usr/share/locale
> + RTLDLIST='/lib/ld-linux.so.2 /lib64/ld-linux-x86-64.so.2'
> + warn=
> + bind_now=
> + verbose=
> + filename_magic_regex='((^|/)lib|.so$)'
> + test 1 -gt 0
> + case "$1" in
> + break
> + add_env='LD_TRACE_LOADED_OBJECTS=1 LD_WARN= LD_BIND_NOW='
> + add_env='LD_TRACE_LOADED_OBJECTS=1 LD_WARN= LD_BIND_NOW= 
> LD_LIBRARY_VERSION=$verify_out'
> + add_env='LD_TRACE_LOADED_OBJECTS=1 LD_WARN= LD_BIND_NOW= 
> LD_LIBRARY_VERSION=$verify_out LD_VERBOSE='
> + test '' = yes
> + set -o pipefail
> + case $# in
> + single_file=t
> + result=0
> + for file in '"$@"'
> + test t = t
> + case $file in
> + file=./pdficon
> + test '!' -f ./pdficon
> + test -r ./pdficon

According to this debugging output, test -r thinks the file is not
readable, that's why ldd bails out with this error message.

To get more details, could you please run the following command and send
me the output?

  echo "test -r ./pdficon" | strace /bin/sh -x

-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net



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



Bug#493915: python-opencv: highgui import problem

2008-08-05 Thread Nicolas
Package: python-opencv
Version: 1.0.0-5
Severity: normal

[EMAIL PROTECTED]:~$ python
Python 2.5.2 (r252:60911, May 28 2008, 08:35:32)
[GCC 4.2.4 (Debian 4.2.4-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from opencv import highgui
Traceback (most recent call last):
  File "", line 1, in 
  File "/var/lib/python-support/python2.5/opencv/highgui.py", line 5, in 

import _highgui
ImportError: /usr/lib/libhighgui.so.1: undefined symbol: img_convert
>>>

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

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

Versions of packages python-opencv depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libcv11.0.0-5computer vision library
ii  libgcc1   1:4.3.1-2  GCC support library
ii  libgomp1  4.3.1-2GCC OpenMP (GOMP) support library
ii  libhighgui1   1.0.0-5computer vision GUI library
ii  libstdc++64.3.1-2The GNU Standard C++ Library v3
ii  python2.5.2-1An interactive high-level object-o
ii  python-support0.8.4  automated rebuilding support for P
ii  python2.5 2.5.2-6An interactive high-level object-o

python-opencv recommends no packages.

python-opencv suggests no packages.

-- no debconf information



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



Bug#493916: Fails to build on hurd

2008-08-05 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: libphysfs
Version: 1.0.0-5
Severity: wishlist

Hello maintainer,

your package fail to build on hurd-i386 - it's not a depend for the
Lenny release, but it would be nice if you could fix it, because many
reverse depends waiting on it, for example tmw.

Build log: http://buildd.debian-ports.org/status/package.php?p=libphysfs


- --
/*
Mit freundlichem Gruß / With kind regards,
Patrick Matthäi

E-Mail: [EMAIL PROTECTED]

Comment:
Always if we think we are right,
we were maybe wrong.
*/

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

iEYEARECAAYFAkiYxS4ACgkQ2XA5inpabMezNgCfTGhv4kN796Jn+Y0M34RL3yyv
dbkAn1UYfKaITFIz6WNzeEtQnmacQDzU
=z5le
-END PGP SIGNATURE-



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



Bug#491407: libmysql5.0-cil: cannot connect to mysql-server using mono C#

2008-08-05 Thread Mirco Bauer
tags 491407 + confirmed
thanks

I can reproduce this bug and will fix it shortly with a 5.2.1+dfsg-2
upload.

-- 
Regards,

Mirco 'meebey' Bauer

PGP-Key ID: 0xEEF946C8

FOSS Developer[EMAIL PROTECTED]  http://www.meebey.net/
PEAR Developer[EMAIL PROTECTED] http://pear.php.net/
Debian Developer  [EMAIL PROTECTED]  http://www.debian.org/




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



Bug#493906: setting package to deborphan, tagging 493906

2008-08-05 Thread Carsten Hey
# Automatically generated email from bts, devscripts version 2.10.29~bpo40+1
#
# deborphan (1.7.26) unstable; urgency=low
#
#  * Translation updates. Many thanks to:
#- Miroslav Kure for the updated Czech translation.  (Closes: #492487)
#- Javier Fernandez-Sanguino Peña for the updated Spanish translation.
#  (Closes: #492803)
#- Thijs Kinkhorst for the updated Dutch translation.  (Closes: #493091)
#- Helge Kreutzman for the updated German translation.  (Closes: #493906)
#- Yuri Kozlov for the new Russian translation.  (Closes: #493564)
#- Pedro Ribeiro for the new Portuguese  translation.  (Closes: #493785)
#

package deborphan
tags 493906 + pending




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



Bug#431326: #431326: This bug has probably never been fixed

2008-08-05 Thread Raphael Champeimont (Almacha)
In fact I have no experience at all in the debian way of building
packages. Should I apply this patch to the debian source package
xserver-xorg-video-intel from lenny ? from sid ? Or should I apply it to
the debian xorg source package ? Or should I download the original
X11R7.3 source from X.org and apply the patch to it?

Independant note: I have just also noticed that the same bug also occurs
when using the intel X driver in etch (newly made available due to
etchnhalf). Until now I have used i810 on etch which still works (I have
both an etch installation on this machine for production use and a lenny
installation for tests).

Almacha

Julien Cristau wrote:
> On Tue, Aug  5, 2008 at 20:56:14 +0200, Raphael Champeimont (Almacha) wrote:
> 
>> My problem exactly matches this bug description, I have a
>> fujitsu-siemens Lifebook S6010 laptop with an intel 82830 chip and X
>> does not start.
>>
> Can you try the patch at
> https://bugs.freedesktop.org/show_bug.cgi?id=16997 and report the
> results?
> 
> Thanks,
> Julien



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



Bug#493912: ITP: liblingua-stopwords-perl -- Stop words for several languages

2008-08-05 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves <[EMAIL PROTECTED]>

* Package name: liblingua-stopwords-perl
  Version : 0.08
  Upstream Author : Marvin Humphrey <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/dist/Lingua-StopWords/
* License : Dual GPL/Artistic
  Programming Lang: Perl
  Description : Stop words for several languages

In keyword search, it is common practice to suppress a collection of
"stopwords": words such as "the", "and", "maybe", etc. which exist in in
a large number of documents and do not tell you anything important about
any document which contains them. This module provides such "stoplists"
in several languages.



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



Bug#493914: kernel trace when stopping openafs-client

2008-08-05 Thread Felix Koop
Package: openafs-client
Version: 1.4.7.dfsg1-5
Severity: normal


When stopping the openafs-client directly after a reboot, I get the following
trace in kern.log:

Aug  5 23:04:07 sabine kernel: [   91.106245] [ cut here 
]
Aug  5 23:04:07 sabine kernel: [   91.106245] WARNING: at fs/proc/generic.c:799 
remove_proc_entry+0x115/0x132()
Aug  5 23:04:07 sabine kernel: [   91.106245] Modules linked in: tcp_diag 
inet_diag radeon drm openafs(P-) rfcomm l2cap bluetooth ppdev lp autofs4 video 
output ac battery speedstep_lib cpufreq_powersave cpufreq_conservative 
cpufreq_userspace cpufreq_stats cpufreq_ondemand freq_table ipv6 fuse sbp2 loop 
snd_cmipci snd_seq_dummy snd_cs4232 snd_opl3_lib snd_hwdep snd_cs4231_lib 
snd_seq_oss snd_mpu401 snd_seq_midi snd_seq_midi_event snd_mpu401_uart snd_seq 
parport_pc parport snd_pcm_oss snd_mixer_oss snd_pcm snd_rawmidi snd_seq_device 
ns558 gameport rtc_cmos rtc_core rtc_lib snd_timer snd_page_alloc snd soundcore 
pcspkr button i2c_i801 i2c_core iTCO_wdt rng_core shpchp pci_hotplug intel_agp 
agpgart evdev ext3 jbd mbcache ide_cd_mod cdrom ide_disk ide_pci_generic usbhid 
hid ff_memless piix ide_core 8139too floppy ata_generic libata 8139cp mii 
ohci1394 ieee1394 uhci_hcd usbcore scsi_mod dock thermal processor fan 
thermal_sys
Aug  5 23:04:07 sabine kernel: [   91.111494] Pid: 4197, comm: rmmod Tainted: P 
 2.6.26-1-686 #1
Aug  5 23:04:07 sabine kernel: [   91.111555]  [] 
warn_on_slowpath+0x40/0x66
Aug  5 23:04:07 sabine kernel: [   91.111686]  [] 
__wake_up_common+0x2e/0x58
Aug  5 23:04:07 sabine kernel: [   91.111794]  [] __wake_up+0x29/0x39
Aug  5 23:04:07 sabine kernel: [   91.111898]  [] 
wake_up_klogd+0x2b/0x2d
Aug  5 23:04:07 sabine kernel: [   91.112071]  [] 
native_smp_call_function_mask+0x46/0x123
Aug  5 23:04:07 sabine kernel: [   91.112164]  [] 
native_smp_call_function_mask+0x56/0x123
Aug  5 23:04:07 sabine kernel: [   91.112260]  [] 
do_flush_tlb_all+0x0/0x3c
Aug  5 23:04:07 sabine kernel: [   91.112359]  [] printk+0x14/0x18
Aug  5 23:04:07 sabine kernel: [   91.112451]  [] 
remove_proc_entry+0x115/0x132
Aug  5 23:04:07 sabine kernel: [   91.112581]  [] 
cleanup_module+0x44/0x69 [openafs]
Aug  5 23:04:07 sabine kernel: [   91.112726]  [] 
default_wake_function+0x0/0x8
Aug  5 23:04:07 sabine kernel: [   91.112823]  [] 
__try_stop_module+0x0/0x5d
Aug  5 23:04:07 sabine kernel: [   91.112912]  [] 
kthread_stop+0x68/0x6c
Aug  5 23:04:07 sabine kernel: [   91.112997]  [] 
put_online_cpus+0x18/0x40
Aug  5 23:04:07 sabine kernel: [   91.113080]  [] 
stop_machine_run+0x2e/0x34
Aug  5 23:04:07 sabine kernel: [   91.113175]  [] 
sys_delete_module+0x194/0x1dd
Aug  5 23:04:07 sabine kernel: [   91.113277]  [] remove_vma+0x3e/0x43
Aug  5 23:04:07 sabine kernel: [   91.113368]  [] 
do_munmap+0x181/0x19b
Aug  5 23:04:07 sabine kernel: [   91.113488]  [] 
sysenter_past_esp+0x78/0xb1
Aug  5 23:04:07 sabine kernel: [   91.113601]  [] 
init_intel_cacheinfo+0x95/0x467
Aug  5 23:04:07 sabine kernel: [   91.113711]  ===
Aug  5 23:04:07 sabine kernel: [   91.113755] ---[ end trace 703b62404cbd2932 
]---

If I can provide any additional info, please feel free to ask.


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages openafs-client depends on:
ii  debconf [debconf-2.0] 1.5.23 Debian configuration management sy
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libncurses5   5.6+20080726-1 shared libraries for terminal hand

Versions of packages openafs-client recommends:
ii  lsof  4.78.dfsg.1-4  List open files
ii  openafs-modules-2 1.4.7.dfsg1-5+2.6.25-7 AFS distributed filesystem kernel 
ii  openafs-modules-2 1.4.7.dfsg1-5+2.6.26-1 AFS distributed filesystem kernel 
ii  openafs-modules-s 1.4.7.dfsg1-5  AFS distributed filesystem kernel 

Versions of packages openafs-client suggests:
pn  openafs-doc(no description available)
ii  openafs-krb5   1.4.7.dfsg1-5 AFS distributed filesystem Kerbero

-- debconf information excluded



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



Bug#431326: #431326: This bug has probably never been fixed

2008-08-05 Thread Raphael Champeimont (Almacha)
Julien Cristau wrote:
> On Tue, Aug  5, 2008 at 23:01:12 +0200, Raphael Champeimont (Almacha) wrote:
> 
>> In fact I have no experience at all in the debian way of building
>> packages. Should I apply this patch to the debian source package
>> xserver-xorg-video-intel from lenny ? from sid ? Or should I apply it to
>> the debian xorg source package ? Or should I download the original
>> X11R7.3 source from X.org and apply the patch to it?
> 
> I'll try to build some packages with that patch so you could test them,
> I guess that would be easiest.
> 

Ok, thanks :-)

Cheers,
Almacha



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



Bug#493913: rosegarden: Depends on xterm

2008-08-05 Thread Torquil Macdonald Sørensen
Package: rosegarden
Version: 1:1.7.2svn-1
Severity: normal

Hi! Could rosegarden depend on x-terminal-emulator instead of xterm? Wouldn't
any of the many different terminal programs work, at least if rosegarden could
use the command x-terminal-emulator instead of xterm whereever it occurs?

Best regards,
Torquil Sørensen

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

Kernel: Linux 2.6.26.080303-2 (PREEMPT)
Locale: LANG=nb_NO.UTF-8, LC_CTYPE=nb_NO.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rosegarden depends on:
ii  flac   1.2.1-1.2 Free Lossless Audio Codec - comman
ii  iceweasel  3.0.1-1   lightweight web browser based on M
ii  kdebase-bi 4:4.1.0-1 core binaries for the KDE 4 base m
ii  kdelibs4c2 4:3.5.9.dfsg.1-6  core libraries and binaries for al
ii  khelpcente 4:4.0.0.really.3.5.9.dfsg.1-5 help center for KDE
ii  konqueror  4:4.1.0-1 KDE 4's advanced file manager, web
ii  libasound2 1.0.16-2  ALSA library
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libfftw3-3 3.1.2-3.1 library for computing Fast Fourier
ii  libfontcon 2.6.0-1   generic font configuration library
ii  libgcc11:4.3.1-8 GCC support library
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjack0   0.109.2-3 JACK Audio Connection Kit (librari
ii  liblo0ldbl 0.23-2.2  Lightweight OSC library
ii  liblrdf0   0.4.0-1.1 a library to manipulate RDF files 
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime v
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstdc++6 4.3.1-8   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxft22.1.12-3  FreeType-based font drawing librar
ii  libxml-twi 1:3.32-1  Perl module for processing huge XM
ii  lynx-cur [ 2.8.7dev9-1.2 Text-mode WWW Browser with NLS sup
ii  rosegarden 1:1.7.2svn-1  music editor and MIDI/audio sequen
ii  sndfile-pr 1.0.17-4  Sample programs that use libsndfil
pi  xterm  235-1 X terminal emulator

Versions of packages rosegarden recommends:
ii  blop [ladspa-plugin] 0.2.8-5 Bandlimited wavetable-based oscill
ii  caps [ladspa-plugin] 0.4.2-1 C* Audio Plugin Suite
ii  cmt [ladspa-plugin]  1.15-3.1Computer Music Toolkit (cmt) a col
ii  jackd0.109.2-3   JACK Audio Connection Kit (server 
ii  ladspa-sdk [ladspa-plugin]   1.1-6   sample tools for linux-audio-dev p
ii  lilypond 2.10.33-2.2 A program for typesetting sheet mu
ii  swh-plugins [ladspa-plugin]  0.4.15-0.2  Steve Harris's LADSPA plugins
ii  tap-plugins [ladspa-plugin]  0.7.0-2 Tom's Audio Processing LADSPA plug

Versions of packages rosegarden suggests:
ii  qjackctl  0.3.2-1User interface for controlling the

-- no debconf information



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



Bug#431326: #431326: This bug has probably never been fixed

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 23:01:12 +0200, Raphael Champeimont (Almacha) wrote:

> In fact I have no experience at all in the debian way of building
> packages. Should I apply this patch to the debian source package
> xserver-xorg-video-intel from lenny ? from sid ? Or should I apply it to
> the debian xorg source package ? Or should I download the original
> X11R7.3 source from X.org and apply the patch to it?

I'll try to build some packages with that patch so you could test them,
I guess that would be easiest.

> Independant note: I have just also noticed that the same bug also occurs
> when using the intel X driver in etch (newly made available due to
> etchnhalf). Until now I have used i810 on etch which still works (I have
> both an etch installation on this machine for production use and a lenny
> installation for tests).
> 
Yeah that's not surprising.

Cheers,
Julien



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



Bug#493911: qa.debian.org: less scary notice for remove-from-unstable bugs for only some architectures

2008-08-05 Thread Zack Weinberg
Package: qa.debian.org
Severity: wishlist

Right now, when there's a pending remove-from-unstable bug filed against
ftp.debian.org, the packages.qa.debian.org page for the source package
to be removed has a big scary warning at the top of it, like so:

This package has been requested to be removed. This means that, when
this request gets processed by an ftp-master, this package will no
longer be in unstable, and will automatically be removed from testing
too afterwards. If for some reason you want keep this package in
unstable, please discuss so in the bug. Please see bug number #nn
for more information. 

It would be nice if this warning were toned down a little when the
remove-from-unstable bug applies only to a subset of Debian's
architectures and/or a subset of the binary packages built from the
source package.

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

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



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



Bug#493910: ITP: liblingua-stem-snowball-perl -- Perl interface to Snowball stemmers

2008-08-05 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves <[EMAIL PROTECTED]>

* Package name: liblingua-stem-snowball-perl
  Version : 0.941
  Upstream Author : Marvin Humphrey <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/dist/Lingua-Stem-Snowball/
* License : Dual GPL/Artistic, portions BSD
  Programming Lang: Perl, C
  Description : Perl interface to Snowball stemmers

Stemming reduces related words to a common root form. For instance,
"horse", "horses", and "horsing" all become "hors". Most commonly,
stemming is deployed as part of a search application, allowing searches
for a given term to match documents which contain other forms of that
term.

This module is very similar to Lingua::Stem -- however, Lingua::Stem
is pure Perl, while Lingua::Stem::Snowball is an XS module which
provides a Perl interface to the C version of the Snowball stemmers.
(http://snowball.tartarus.org).



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



Bug#493887: xserver-xorg-video-glint: Crash after start message output ****INVALID MEM ALLOCATION****

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 22:39:35 +0200, Daniel Smolik wrote:

> Julien Cristau napsal(a):
>> On Tue, Aug  5, 2008 at 20:14:38 +0200, Dan Smolik wrote:
>>
>>> Package: xserver-xorg-video-glint
>>> Version: 1:1.1.1-3
>>> Severity: grave
>>> Justification: renders package unusable
>>>
>>> This driver was long time unusable on multidomain PCI platform like Sun
>>> E250/450. But after rewrote PCI code in Xorg situation goes to better.
>>
>> The PCI code rewrite you're talking about lands in xserver 1.5, which
>> you don't seem to be using.
> Sorry I don't uderstand Xserver versioning very well. I hope than Xserver 
> version 1.5 will go to SID now or in near future. Because now Xserver 
> crashed from version to version diferently.
>
It's in experimental now, and will be in sid after lenny releases.

Cheers,
Julien



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



Bug#487691: user-setup: endless loop after entering empty root passwords

2008-08-05 Thread Frans Pop
On Monday 28 July 2008, Jérémy Bobbio wrote:
> > The following sequence (at medium priority) will result in an
> > apparent loop:
> > 1 Allow root -> yes
> > 2 Root password -> empty
> > 3 Confirm passwd -> empty
> > 4 Error dialog -> continue
> > 5 Back to 1: Allow root -> go back
> >
> > This should result in the menu being displayed, but does result in a
> > loop:
> > 4 Error dialog -> continue 
> > 5 Back to 1: Allow root -> go back
> >
> > It's possible to break out of the loop by using go back instead of
> > continue, but that's not obvious.
> >
> > This may well be a cdebconf error instead of an error in user-setup.
> > Possibly the queue is not cleared correctly/completely.
> > A cdebconf trace is probably needed here.
>
> debconf receives:
>   INPUT critical user-setup/password-empty
>   INPUT low passwd/shadow
>   INPUT medium passwd/root-login
>   GO
>
> So actually, the behaviour of the "Go back" button is right for the
> newt frontend according to the questions asked.

This analysis looks incomplete to me and the part you show here is out of 
context, so impossible to draw conclusions from. I still don't see how 
this explains why you'd get the error dialog displayed *again* after 
choosing  from the "Allow root" question. And I also still don't 
see if this is a state machine error or a cdebconf issue.

An attachment with the full syslog including 'set -x' output *and* debconf 
debugging, or at least for the relevant part from the start of user-setup 
would have been helpful.



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



Bug#493909: ITP: libkinosearch-perl -- search engine library

2008-08-05 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves <[EMAIL PROTECTED]>

* Package name: libkinosearch-perl
  Version : 0.162
  Upstream Author : Marvin Humphrey <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/dist/KinoSearch/
* License : Dual GPL/Artistic
  Programming Lang: Perl, C
  Description : search engine library

KinoSearch is a loose port of the Java search engine library Apache
Lucene, written in Perl and C. The archetypal application is website
search, but it can be put to many different uses.



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



Bug#472360: closed by Petter Reinholdtsen <[EMAIL PROTECTED]> (Bug#472360: fixed in pam-devperm 1.6-1)

2008-08-05 Thread José Alburquerque
I know this bug report has been closed, but I don't see a difference on 
this system.  I log in as a guest user, put in a CD, logout and login as 
myself.  If I try to eject the CD, I get an error message saying:


umount: only guest can unmount /dev/hda from /media/cdrom0

Are you sure this is fixed?  If not, could you re-open and investigate 
further?  Thanks so much.


--
José Alburquerque




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



Bug#476612: intent to NMU

2008-08-05 Thread Sven Joachim
found 476612 21.4a+1-5.4
found 476612 21.4a+1-5.5
tags 476612 + patch
thanks

Sorry for coming a bit late to the party, but today I found out that
this issue is not yet fixed, because ...

On 2008-04-28 12:49 +0200, Nico Golde wrote:

> Hi,
> uploading an NMU to fix this bug, debdiff attached and also
> archived on:
> http://people.debian.org/~nion/nmu-diff/emacs21-21.4a+1-5.3_21.4a+1-5.4.patch
>
> diff -u emacs21-21.4a+1/debian/changelog emacs21-21.4a+1/debian/changelog
> --- emacs21-21.4a+1/debian/changelog
> +++ emacs21-21.4a+1/debian/changelog
> @@ -1,3 +1,11 @@
> +emacs21 (21.4a+1-5.4) unstable; urgency=high
> +
> +  * Non-maintainer upload by the Security Team.
> +  * Fix insecure temporary file creation in vcdiff script leading to
> +possible symlink attacks (CVE-2008-1694; Closes: #476612).
> +
> + -- Nico Golde <[EMAIL PROTECTED]>  Mon, 28 Apr 2008 12:46:35 +0200
> +
>  emacs21 (21.4a+1-5.3) unstable; urgency=high
>  
>* Non-maintainer upload.
> diff -u emacs21-21.4a+1/debian/patches/00list 
> emacs21-21.4a+1/debian/patches/00list
> --- emacs21-21.4a+1/debian/patches/00list
> +++ emacs21-21.4a+1/debian/patches/00list

... 00list is the wrong file, it is only used by dpatch while the
package has been switched to quilt. :-(

> @@ -30,0 +31 @@
> +CVE-2008-1694
> only in patch2:
> unchanged:
> --- emacs21-21.4a+1.orig/debian/patches/CVE-2008-1694.diff
> +++ emacs21-21.4a+1/debian/patches/CVE-2008-1694.diff
> @@ -0,0 +1,20 @@
> +diff -Nurad emacs21-21.4a+1.orig/lib-src/vcdiff 
> emacs21-21.4a+1/lib-src/vcdiff
> +--- emacs21-21.4a+1.orig/lib-src/vcdiff  2008-04-28 12:44:53.0 
> +0200
>  emacs21-21.4a+1/lib-src/vcdiff   2008-04-28 12:45:46.0 +0200
> +@@ -86,14 +86,14 @@
> + case $f in
> + s.* | */s.*)
> + if
> +-rev1=/tmp/geta$$
> ++rev1=$(mktemp /tmp/geta.)
> + get -s -p -k $sid1 "$f" > $rev1 &&
> + case $sid2 in
> + '')
> + workfile=`expr " /$f" : '.*/s.\(.*\)'`
> + ;;
> + *)
> +-rev2=/tmp/getb$$
> ++rev2=$(mktemp /tmp/getb.)
> + get -s -p -k $sid2 "$f" > $rev2
> + workfile=$rev2
> + esac

A debdiff which adds the patch to the series file and deletes the
redundant and confusing 00list file follows:

--8<---cut here---start->8---
diff -u emacs21-21.4a+1/debian/changelog emacs21-21.4a+1/debian/changelog
--- emacs21-21.4a+1/debian/changelog
+++ emacs21-21.4a+1/debian/changelog
@@ -1,3 +1,13 @@
+emacs21 (21.4a+1-5.6) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches/series: Add CVE-2008-1694.diff
+(CVE-2008-1694; really Closes: #476612).
+  * debian/patches/00list: Remove to ensure that patches are added to
+debian/patches/series instead.
+
+ -- Sven Joachim <[EMAIL PROTECTED]>  Tue, 05 Aug 2008 17:25:20 +0200
+
 emacs21 (21.4a+1-5.5) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -u emacs21-21.4a+1/debian/patches/series 
emacs21-21.4a+1/debian/patches/series
--- emacs21-21.4a+1/debian/patches/series
+++ emacs21-21.4a+1/debian/patches/series
@@ -34,6 +34,7 @@
 ldapsearch-output.diff
 CVE-2007-6109.diff
 CVE-2007-2833.diff
+CVE-2008-1694.diff
 fix-dumping.diff
 arch-kfreebsd.diff
 CVE-2008-2142.diff
reverted:
--- emacs21-21.4a+1/debian/patches/00list
+++ emacs21-21.4a+1.orig/debian/patches/00list
@@ -1,31 +0,0 @@
-autoconf-updates
-misc-unseparated
-arch-hppa
-arch-mipsel
-arch-s390
-fix-batch-mode-signal-handling
-browse-url
-bzero-and-have-stdlib
-detect-coding-iso2022
-movemail-mailspool
-version-mention-debian
-hurd-libio-glibc
-battery-acpi-support
-scroll-margin
-save-buffer
-emacsclient-alternate-editor
-startup-auto-save-file-name-transforms
-python-completion-ignored-extensions
-xfree86-4.3-modifiers
-coding-region-leak
-remote-files-permissions
-pcl-cvs-format
-arch-amd64
-#arch-ppc64
-multibyte-char-key-modifiers
-xorg-altgr-fix
-whitespace-readonly-infloop
-fix-x-vs-no-x-diffs
-autofiles
-CVE-2007-2833
-CVE-2008-1694
--8<---cut here---end--->8---

Cheers,
   Sven




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



Bug#493168: gpm: Segfaults on boot.

2008-08-05 Thread Kurt Roeckx
On Tue, Aug 05, 2008 at 08:50:54PM +0200, Nico Schottelius wrote:
> > > 
> > > Hmm, strange. Can you try attaching the client programs:
> > > 
> 
> Indeed, they look good.
> 
> Can you please test it using
>http://home.schottelius.org/~nico/temp/gpm-1.99.7-2-g86f8b28.tar.bz2
> and gpm -D ... >LOG 2>&1 and send this log to me?
> 
> I do not expect this version to display the cursor, but at least to get
> some impression, why selection_copy() does not enable the cursor.


It still looks the same to me like before.  I've also attached gdb and
set a breakpoint in selection_copy and never got there.  The problem
seems to be that in old_main.c line 236, event.vc is 1, and cinfo[1] is
NULL.  In fact, cinfo is completly filled with NULL.

PS: The new tar has a src/daemon/selection_copy.c~ in it.


Kurt




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



Bug#493907: ntpdate: incomplete logcheck entry

2008-08-05 Thread Uwe Storbeck
Package: ntpdate
Version: 1:4.2.2.p4+dfsg-2
Severity: minor

Please adjust the logcheck entry in /etc/logcheck/ignore.d.server/ntpdate
to also filter the following type of messages:

Aug  5 20:56:03 c2 ntpdate[21553]: adjust time server 130.149.17.21 offset 
0.068867 sec

(change 'step' to '(adjust|step)')

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (850, 'stable'), (750, 'testing'), (650, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages ntpdate depends on:
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libcap11:1.10-14 support for getting/setting POSIX.
ii  libssl0.9.80.9.8c-4etch3 SSL shared libraries
ii  netbase4.29  Basic TCP/IP networking system

ntpdate recommends no packages.

-- debconf information excluded



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



Bug#493819: dwm: Make source package more useful for custom configs

2008-08-05 Thread Daniel Baumann
David Spreen wrote:
> What about a dwm helper package that looks for config.h's in /etc and
> then built s dwm for those? that way, the dwm binary package remains
> minimal and people who want to customize will save work.

in addition, there could be such a script to do that, yes (in the
dwm-alternatives package). but the other alternatives (such as e.g. web)
should still be available pre-compiled.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#493908: python-msn: No longer connects to MSN servers (fixed upstream in 0.3.3)

2008-08-05 Thread Simon McVittie
Package: python-msn
Version: 0.3.1-2
Severity: grave
Justification: renders package unusable

The MSN servers have changed their DNS server in a way that exposes a
bug in pymsn's DNS resolution. Also, their response to the CVR command
has changed, causing additional problems.

Today's upstream version 0.3.3 fixes both bugs. pkg-telepathy are
aware of this, and we'll investigate how we can best get the fix into lenny.

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

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

Versions of packages python-msn depends on:
ii  python   2.5.2-2 An interactive high-level object-o
ii  python-adns  1.1.0-3.1   Python bindings to the asynchronou
ii  python-central   0.6.8   register and build utility for Pyt
ii  python-crypto2.0.1+dfsg1-2.3 cryptographic algorithms and proto
ii  python-ctypes1.0.2-5 Python package to create and manip
ii  python-elementtree   1.2.6-12Light-weight toolkit for XML proce
ii  python-gobject   2.14.2-1Python bindings for the GObject li
ii  python-openssl   0.7-2   Python wrapper around the OpenSSL 

python-msn recommends no packages.

python-msn suggests no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#493887: xserver-xorg-video-glint: Crash after start message output ****INVALID MEM ALLOCATION****

2008-08-05 Thread Daniel Smolik

Julien Cristau napsal(a):

On Tue, Aug  5, 2008 at 20:14:38 +0200, Dan Smolik wrote:


Package: xserver-xorg-video-glint
Version: 1:1.1.1-3
Severity: grave
Justification: renders package unusable

This driver was long time unusable on multidomain PCI platform like Sun
E250/450. But after rewrote PCI code in Xorg situation goes to better.


The PCI code rewrite you're talking about lands in xserver 1.5, which
you don't seem to be using.
Sorry I don't uderstand Xserver versioning very well. I hope than Xserver version 1.5 will go to SID now or in near 
future. Because now Xserver crashed from version to version diferently.





Now is card detected but Xserver crashed with 
(EE) Failed to load module "type1" (module does not exist, 0)

(WW) INVALID MEM ALLOCATION b: 0x2 e: 0x3 correcting
(WW) INVALID MEM ALLOCATION b: 0x80 e: 0xff correcting
(WW) INVALID MEM ALLOCATION b: 0x100 e: 0x17f correcting

Backtrace:

Fatal server error:
Caught signal 11.  Server aborting

NeúspϚnÏ ukonèen (SIGABRT)

In reportbug is system impropertly detected:
Right is:
Linux sunik 2.6.26 #2 SMP Mon Jul 21 19:49:01 CEST 2008 sparc64 GNU/Linux


davem probably changed something in the kernel that broke this. *shrug*
Use an old kernel, I guess.

Yes I know. But it doesn't work on any 2.6 on Sun platform I mean.


Cheers
Dan




Cheers,
Julien



--
Mydatex s r.o.
http://www.mydatex.cz
email: [EMAIL PROTECTED]
mob: 604200362
tel: 226210085




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



Bug#493452: [Pkg-puppet-devel] Bug#493452: Bug#493452: Downcasing of facts

2008-08-05 Thread Russ Allbery
Russ Allbery <[EMAIL PROTECTED]> writes:

> martin f krafft <[EMAIL PROTECTED]> writes:
>
>> puppetd on 0.24.5 says, with the comment characters:
>>
>> # casesensitive = false
>> # downcasefacts = false
>
> It says the same on my 0.24.4 system, but I'm still getting
> case-insensitive case statements and selectors.  *puzzled look*

Sorry, ignore me, I read the option as the reverse of what it was.

-- 
Russ Allbery ([EMAIL PROTECTED])   



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



Bug#493819: dwm: Make source package more useful for custom configs

2008-08-05 Thread David Spreen
Daniel Baumann wrote:
> David Spreen wrote:
>
> yep; will look into it soon. also, i'd like to keep the dwm package as
> small as possible in order to allow people to have pretty minimal
> systems (there is no point of using a tiny windowmanager but bloating
> the system with having 10 alternatives arround). that's why i'm thinking
> of keeping the 'original' dwm in dwm, and move every alternative (and
> patched version of dwm) in an additional package like dwm-alternatives
> or dwm-patched.
>
>   
What about a dwm helper package that looks for config.h's in /etc and
then built s dwm for those? that way, the dwm binary package remains
minimal and people who want to customize will save work.

best,

David



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



Bug#493835: cannot write to ~/wikiwc/.ikiwiki/lockfile: No such file or directory

2008-08-05 Thread Paul Menzel
Dear Joey,


Am Dienstag, den 05.08.2008, 12:35 -0400 schrieb Joey Hess:
> Paul Menzel wrote:
> > ~/wikiwc$ ikiwiki --verbose $SRCDIR $DESTDIR --wikiname="ikiwiki-name" 
> > --rebuild --url=http://example.org/ --dumpsetup ../.config/ikiwiki/
> > Unknown option: --dumpsetup
> 
> --dumpsetup is a new option in version 2.60 of ikiwiki, which is not
> released yet.

That was my comment above this line suppose to mean.

> > ~/.config/ikiwiki$ vim ikiwiki.setup # edit the relevant sections
> > ~/.config/ikiwiki$ LANG=C ikiwiki --setup ikiwiki.setup 
> > cannot write to ~/wikiwc/.ikiwiki/lockfile: No such file or directory
> 
> You seem to have configured ikiwiki with paths that contain "~/". Such
> paths only work at the shell prompt, since the shell expands them.
> Therefore, it's trying to use ./~/wikiwc/ or something like that.
> 
> I'd have to see your setup file, which you didn't include in this bug
> report, to tell for sure.

Your crystal bowl is working quite well. This was it I adapted the
appropriate lines and got (just for reference) then

$ LANG=C ikiwiki --setup .config/ikiwiki/ikiwiki.setup --verbose
generating wrappers..
failed to write ~/wiki.git/hooks/post-update.c: No such file or directory

Same thing here. So change this in the wrapper section for git.

Everything is fine now. I wanted to attach a patch that would reword the
comment in ikiwiki.setup a bit, but I could not find it in the current
git repository and I am guessing, that it was deleted because of the new
dumpsetup feature.

/tmp/git.ikiwiki.info$ grep -i -e "Be sure to" -r .
./doc/w3mmode/ikiwiki.setup:# Be sure to customise these..
./doc/smileys.mdwn:will work if it's copied to other pages on the wiki. So be 
sure to include the
./doc/download.mdwn:Here's how to get ikiwiki. See [[setup]] for how to use it, 
and be sure to
./doc/setup.mdwn:`ikiwiki --setup ikiwiki.setup`. Be sure to browse through all 
the
./doc/setup.mdwn:you chose to use. Be sure to set `svnrepo` to $REPOSITORY, if 
using
./doc/examples/softwaresite/contact.mdwn:Be sure to read the [[doc/FAQ]] first.
./doc/plugins/attachment.mdwn:If you enable this plugin, be sure to lock it 
down, via the
./IkiWiki/Plugin/calendar.pm:# that if they are removed, the calendar 
will be sure to be updated.
./underlays/smiley/smileys.mdwn:will work if it's copied to other pages on the 
wiki. So be sure to include the


Thanks again for your help and please close this report as you wish.

Paul


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#493906: deborphan: [INTL:de] updated German po file translation

2008-08-05 Thread Helge Kreutzmann
Package: deborphan
Version: 1.7.25
Severity: wishlist
Tags: patch l10n

Please find the updated German po file translation for deborphan
attached.

If you update your template, please use 
'msgfmt --statistics '
to check the po-files for fuzzy or untranslated strings.

If there are such strings, please contact me so I can update the 
German translation.

Greetings
Helge
# German translations for deborphan package.
# Copyright (C) 2004 THE deborphan'S COPYRIGHT HOLDER
# This file is distributed under the same license as the deborphan package.
# Florian Ernst <[EMAIL PROTECTED]>, 2004.
# Helge Kreutzmann <[EMAIL PROTECTED]>, 2008
#
msgid ""
msgstr ""
"Project-Id-Version: deborphan 1.7.25\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-07-25 21:23+0200\n"
"PO-Revision-Date: 2008-08-04 22:20+0200\n"
"Last-Translator: Helge Kreutzmann <[EMAIL PROTECTED]>\n"
"Language-Team: de <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: src/exit.c:70
#, c-format
msgid ""
"\n"
"The following options are available:\n"
msgstr ""
"\n"
"Die folgenden Optionen sind verfügbar:\n"

#: src/exit.c:73
#, c-format
msgid "-hThis help.\n"
msgstr "-hDiese Hilfe.\n"

#: src/exit.c:76
#, c-format
msgid "-f FILE   Use FILE as statusfile.\n"
msgstr "-f DATEI  Benutzt DATEI als Statusdatei.\n"

#: src/exit.c:79
#, c-format
msgid "-vVersion information.\n"
msgstr "-vVersions-Informationen.\n"

#: src/exit.c:84
#, c-format
msgid "-dShow dependencies for packages that have them.\n"
msgstr "-dZeigt Abhängigkeiten für Pakete, die welche haben.\n"

#: src/exit.c:87
#, c-format
msgid "-PShow priority of packages found.\n"
msgstr "-PZeigt die Prioritäten der gefundenen Pakete.\n"

#: src/exit.c:90
#, c-format
msgid "-sShow the sections the packages are in.\n"
msgstr "-sZeigt die Bereiche, in welchen die Pakete sind.\n"

#: src/exit.c:92
#, c-format
msgid "--no-show-section   Do not show sections.\n"
msgstr "--no-show-section   Zeigt die Bereiche nicht an.\n"

#: src/exit.c:95
#, c-format
msgid "-zShow installed size of packages found.\n"
msgstr "-zZeigt den Platzverbrauch der gefundenen Pakete.\n"

#: src/exit.c:100
#, c-format
msgid "-aCompare all packages, not just libs.\n"
msgstr "-aVergleicht alle Pakete, nicht nur Bibliotheken.\n"

#: src/exit.c:103
#, c-format
msgid "-e LIST   Work as if packages in LIST were not installed.\n"
msgstr ""
"-e LISTE  Funktioniert, als ob Pakete in LISTE nicht installiert wären.\n"

#: src/exit.c:106
#, c-format
msgid "-HIgnore hold flags.\n"
msgstr "-HIgnoriert »hold«-Markierungen.\n"

#: src/exit.c:110
#, c-format
msgid "-nDisable checks for `recommends' and `suggests'.\n"
msgstr "-nPrüft nicht auf »Recommends« und »Suggests«.\n"

#: src/exit.c:112
#, c-format
msgid "-nEnable checks for `recommends' and `suggests'.\n"
msgstr "-nPrüft auf »Recommends« und »Suggests«.\n"

#: src/exit.c:116
#, c-format
msgid "-p PRIOR  Select only packages with priority >= PRIOR.\n"
msgstr "-p PRIO   Wählt nur Pakete mit einer Priorität >= PRIO aus.\n"

#: src/exit.c:118
#, c-format
msgid "--find-config   Find \"orphaned\" configuration files.\n"
msgstr ""
"--find-config   Findet »verwaiste« Konfigurationsdateien.\n"

#: src/exit.c:120
#, c-format
msgid ""
"--libdevel  Search in libdevel in addition to libs and "
"oldlibs.\n"
msgstr ""
"--libdevel  Sucht zusätzlich zu »libs« und »oldlibs« in "
"»libdevel«.\n"

#: src/exit.c:125
#, c-format
msgid "-A PKGS.. Never report PKGS.\n"
msgstr "-A PKT..  Melde niemals PKT.\n"

#: src/exit.c:128
#, c-format
msgid "-k FILE   Use FILE to get/store info about kept packages.\n"
msgstr ""
"-k DATEI  Benutzt DATEI als Informationsspeicher für zu behaltende Pakete.\n"

#: src/exit.c:131
#, c-format
msgid "-LList the packages that are never reported.\n"
msgstr "-LListet die Pakete auf, die nie gemeldet werden.\n"

#: src/exit.c:134
#, c-format
msgid "-R PKGS.. Report PKGS if there are no dependencies.\n"
msgstr "-R PKT..  Melde PKT, falls keine Abhängigkeiten bestehen.\n"

#: src/exit.c:137
#, c-format
msgid "-ZRemove all packages from the \"keep\" file.\n"
msgstr "-ZEntfernt alle Pakete aus der »keep«-Datei.\n"

#: src/exit.c:140
#, c-format
msgid "--df-keep   Read debfoster's \"keepers\" file.\n"
msgstr "--df-keep   Liest die »keepers«-Datei von debfoster.\n"

#: src/exit.c:141
#, c-format
msgid "--no-df-keepDo not read debfoster's \"keepers\" file.\n"
msgstr ""
"--no-df-keepLiest nicht die »keepers«-Datei von debfoster.\n"

#. guessing
#: src/exit.c:146
#, c-format
msgid "--guess-common  Try to report common packages

Bug#493876: [Pkg-openmpi-maintainers] Bug#493876: Bug#493876: openmpi-bin adds conflicting alternative 'mpiexec'

2008-08-05 Thread Dirk Eddelbuettel

On 5 August 2008 at 21:58, Tilman Koschnick wrote:
| On Tue, 2008-08-05 at 12:52 -0500, Dirk Eddelbuettel wrote:
| > In which case we wouldn't need alternative's for mpiexec?  Sounds too good 
to
| > be true.  Maybe all MPI variants just handle it via alternatives.  Manuel 
may
| > know this best.
| 
| I was looking into this some time ago, and gave up in despair...
| 
| Alternatives work well if all participating packages agree on the same
| 'master' alternative and exactly the same 'slaves'. As soon as a package
| deviates from this, things get messy, e.g. it depends on in which order
| you add, remove or change alternatives.
| 
| One example: package A has files a.foo, a.bar and a.baz, and B has
| b.foo, b.bar (but not b.baz). Both agree to handle these files via
| alternatives, using foo as the master link.
| 
| While A is active, we have:
| 
| foo -> a.foo
| bar -> a.bar
| baz -> a.baz
| 
| Now activate B. The result is:
| 
| foo -> b.foo
| bar -> b.bar
| baz -> a.baz
| 
| IIRC, if both packages are removed, we are left with a dangling baz ->
| a.baz... They other way round, going from B to A, would be fine.
| 
| Across MPICH, MPICH2 (never made it into the archive), LAM and OpenMPI,
| a variety of files is handled via alternatives: mpiexec & Co, mpicc &
| Co, headers, man pages... Some spread the files across two packages
| (-bin, -dev), other have only one. Some have mpirun, some mpiexec, some
| both. Some have mpic++, some mpicxx, some mpiCC. Some have a full set of
| man pages, some not.
| 
| I think alternatives would need a thorough redesign to handle things
| like this sanely. Until then, they are only good for very close packages
| (one binary + man page, doing exactly the same in both packages), and
| it's probably not worth the bother banging all MPI implementations into
| the same shape.
| 
| As for the problem with migration brought up by the original poster: In
| a similar situation, we found it was easiest to ignore alternatives
| altogether and ask all users to use the "qualified" binary names, e.g.
| mpicc.openmpi. This way, every user could switch implementations
| conciously, at any time, without being dependent on whatever the admin
| thought the default should be at the time.

Excellent post, thanks Til.  So to mark a corner case: maybe we should just
stick this into a README and be done with it?

Dirk

-- 
Three out of two people have difficulties with fractions.



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



Bug#493900: [Pkg-utopia-maintainers] Bug#493900: hal-info: video quirk for Lenovo Thinkpad T61 8897 wrong

2008-08-05 Thread Yves-Alexis Perez
On mar, 2008-08-05 at 21:33 +0200, Michael Biebl wrote:
> quirks for Intel graphics cards are still needed. For the other
> cases, 
> pm-utils will filter out any quirks, so no changes to the fdi files
> are 
> necessary (see /usr/lib/pm-utils/sleep.d/98smart-kernel-video)

Ok I just rebooted under the 2.6.26 debian kernel and powersave -u works
as well as sudo pm-suspend.

The other kernels I was trying were one 2.6.26 based on debian one but
with mipv6 patches, and one based on git linux-acpi-2.6.

I guess situation will change again with 2.6.27 which would explains
problems with the git one, but I really don't know about the 2.6.26
+mip6, and what puzzles me is the fact that pm-suspend works in both
cases, while powersave -u doesn't work with quirks and works without
(while it's supposed to call pm-suspend).

I guess you can close the bug if you want, but I'd like to investigate a
bit more wrt. this issues (and maybe reassign to powersave if needed).

Cheers,
-- 
Yves-Alexis


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


Bug#493637: insserv_1.12.0-1(m68k/unstable): alignment issues.

2008-08-05 Thread Wouter Verhelst
On Tue, Aug 05, 2008 at 04:14:07PM +0200, Petter Reinholdtsen wrote:
> [Wouter Verhelst]
> > it's usually safe to trust the compiler to know what will be
> > fastest.
> 
> I agree.
> 
> > Why have them in the first place? If you just remove them all, that
> > will surely fix the issue.
> 
> To me it is more a question of how to be sure all of them are removed
> in a way that get insserv working.  For that, I would like someone
> with m68k access to come up with a patch, thus making sure the patch
> actually solve the problem on m68k.  Because of this, I hope you or
> someone else with m68k machines can provide a tested patch.

'grep -r attribute *' in the source directory only comes up with four
lines. One of them is a macro that makes things align on
sizeof(something*), which isn't likely to be a problem in the real world
(I've yet to see an architecture where alignment on the size of a
pointer is going to be problematic), and two of the others align on
sizeof(char*). The last two are the problematic ones in this
bugreport...

But, sure, I can test-build on an m68k machine. I'll let you know what
the results are.

> >>   What is the value of sizeof(regex_t) on m68k?  What is the alignment
> >>   calculated for the struct?
> > 
> > sizeof(regex_t) is 30 on m68k, so I guess that's also what the
> > calculated alignment is.
> 
> Now I am confused.  The error complained that the alignment wasn't on
> 2-byte boundaries, if I understood it correctly.

Actually, it complained about it not being aligned on a power-of-two
boundary. 30 isn't a power of two.

Your confusion is a result of my confusion in this bugreport, where I
confused the fact that m68k, occasionally, also requires alignment on a
2-byte boundary on the frame pointer -- but that is so entirely and
utterly different from what we're talking about here that it isn't even
funny. Sorry about that.

In reality, m68k requires access aligned to the length of a data type;
i.e., 1-byte for char, 2-byte for short, and 4-byte for
int/float/pointer (though it gets less clear after that). In order to be
able to enforce this requirement, the ABI introduces a requirement that
structs be aligned to the size of their largest member, and gcc turns
that into a power-by-two alignment requirement (if I read the ABI docs
correctly). In any case, aligning on 30 bytes will surely break the
4-byte requirement of pointers and ints, which regex_t does contain.

> 30 is divisable by 2, and thus aligning on 30 byte boundaries should
> also be on 2-byte boundaries.

Indeed. But that's not the problem.

-- 
 Home is where you have to wash the dishes.
  -- #debian-devel, Freenode, 2004-09-22



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



Bug#493905: totem: GLib-ERROR **: /tmp/buildd/glib2.0-2.16.4/glib/gmem.c:136: failed to allocate 192000 bytes

2008-08-05 Thread user
Package: totem
Version: 2.22.2-3
Severity: normal

Download this video http://video.thisamericanlife.org/radio/338_silverts.mov 
and play it. Crash after ca. 16 sec.

[EMAIL PROTECTED]:~/Desktop$ totem 338_silverts.mov 

GLib-ERROR **: /tmp/buildd/glib2.0-2.16.4/glib/gmem.c:136: failed to
allocate 192000 bytes
aborting...



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

Kernel: Linux 2.6.25-2-486
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 totem depends on:
ii  totem-gstreamer   2.22.2-3   A simple media player for the GNOM
ii  totem-plugins 2.22.2-3   Plugins for the Totem media player

totem recommends no packages.

totem suggests no packages.

Versions of packages totem-gstreamer depends on:
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.19-2 GStreamer plugin for ALSA
ii  gstreamer0.10-gnomevfs 0.10.19-2 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins- 0.10.19-2 GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins- 0.10.8-4  GStreamer plugins from the "good" 
ii  gstreamer0.10-x0.10.19-2 GStreamer plugins for X11 and Pang
ii  iso-codes  3.1-1 ISO language, territory, currency,
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-2   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-1   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.1-2 GCC support library
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.16.4-2  The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-4GNOME Virtual File System (runtime
ii  libgstreamer-plugins-b 0.10.19-2 GStreamer libraries from the "base
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.10-2 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libnautilus-extension1 2.20.0-6  libraries for nautilus components 
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libstdc++6 4.3.1-2   The GNU Standard C++ Library v3
ii  libtotem-plparser102.22.3-1  Totem Playlist Parser library - ru
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension 
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  python 2.5.2-1   An interactive high-level object-o
ii  python2.5  2.5.2-6   An interactive high-level object-o
ii  totem-common   2.22.2-3  Data files for the Totem media pla
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

-- no debconf information



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



Bug#493876: [Pkg-openmpi-maintainers] Bug#493876: openmpi-bin adds conflicting alternative 'mpiexec'

2008-08-05 Thread Tilman Koschnick
On Tue, 2008-08-05 at 12:52 -0500, Dirk Eddelbuettel wrote:
> In which case we wouldn't need alternative's for mpiexec?  Sounds too good to
> be true.  Maybe all MPI variants just handle it via alternatives.  Manuel may
> know this best.

I was looking into this some time ago, and gave up in despair...

Alternatives work well if all participating packages agree on the same
'master' alternative and exactly the same 'slaves'. As soon as a package
deviates from this, things get messy, e.g. it depends on in which order
you add, remove or change alternatives.

One example: package A has files a.foo, a.bar and a.baz, and B has
b.foo, b.bar (but not b.baz). Both agree to handle these files via
alternatives, using foo as the master link.

While A is active, we have:

foo -> a.foo
bar -> a.bar
baz -> a.baz

Now activate B. The result is:

foo -> b.foo
bar -> b.bar
baz -> a.baz

IIRC, if both packages are removed, we are left with a dangling baz ->
a.baz... They other way round, going from B to A, would be fine.

Across MPICH, MPICH2 (never made it into the archive), LAM and OpenMPI,
a variety of files is handled via alternatives: mpiexec & Co, mpicc &
Co, headers, man pages... Some spread the files across two packages
(-bin, -dev), other have only one. Some have mpirun, some mpiexec, some
both. Some have mpic++, some mpicxx, some mpiCC. Some have a full set of
man pages, some not.

I think alternatives would need a thorough redesign to handle things
like this sanely. Until then, they are only good for very close packages
(one binary + man page, doing exactly the same in both packages), and
it's probably not worth the bother banging all MPI implementations into
the same shape.

As for the problem with migration brought up by the original poster: In
a similar situation, we found it was easiest to ignore alternatives
altogether and ask all users to use the "qualified" binary names, e.g.
mpicc.openmpi. This way, every user could switch implementations
conciously, at any time, without being dependent on whatever the admin
thought the default should be at the time.

Cheers, Til




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



Bug#344182: fd leak in mhstore

2008-08-05 Thread Peter Maydell
Brian Ristuccia wrote:
> When using mhstore on a large number of messages, and writing parts to a
> pipe, mhstore winds up with 'too many open files'
>
> in ~/.mh_profile:
>
> mhstore-store-message/rfc822: | sa-learn --no-sync --spam -
>
> (Directory has about 800 messages)
>
> $ /usr/bin/mh/mhstore * -type message/rfc822

Hi; I'm part of nmh's upstream dev team. I have created a bug in our
upstream BTS about this:
  https://savannah.nongnu.org/bugs/index.php?24004

As it happens, this isn't actually an fd leak; it's more of a design
error. The way mhstore is written it first opens all the messages it
is operating on, then it processes them all, and then it closes them
all. So it isn't a leak, it's just that it wants rather a lot of fds
if it's working on a lot of messages at once. Unfortunately, because
it isn't an easy fix it is unlikely to be addressed any time soon...

-- PMM



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



Bug#493901: xserver-xorg-core: X fails to start in a Xen DomU (using Xen Framebuffer)

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 21:32:03 +0200, Olivier Tétard wrote:

> Xen kernel could be compiled with framebuffer support
> (CONFIG_XEN_FRAMEBUFFER) which was introduced in Xen 3.0.4. Then, DomU
> should supports framebuffer output and should be able to get X running
> in it.
> 
> I tried this but it fails with this error:
> 
> ,[ /var/log/Xorg.0.log ]
> | [...]
> | (EE) FBDEV(0): FBIOPUT_VSCREENINFO succeeded but modified mode
> | (EE) FBDEV(0): mode initialization failed
> | 
> | Fatal server error:
> | AddScreen/ScreenInit failed for driver 0
> `
> 
> I found a way to solves this problem by patching the xorg-server
> package with this patch[1] which comes from Novel's bugtracker[2].
> 
> 1. 
> 2. 
> 
This is supposed to be addressed by patch 47_fbdevhw_magic_numbers.diff.
Figures.

Cheers,
Julien



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



Bug#493904: www.debian.org: consultants/reis-lima is not in English

2008-08-05 Thread Helge Kreutzmann
Package: www.debian.org
Severity: normal

consultants/reis-lima does not contain English content. It probably
needs to be moved to (Brazilian) portugese and a suitable translator
needs to provide an English version.

-- 
  Dr. Helge Kreutzmann [EMAIL PROTECTED]
   Dipl.-Phys.   http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
   Help keep free software "libre": http://www.ffii.de/


signature.asc
Description: Digital signature


Bug#491553: (flyspell-version) should say what version of flyspell this is

2008-08-05 Thread Agustin Martin
On Sun, Jul 20, 2008 at 07:10:32PM +0800, [EMAIL PROTECTED] wrote:
> Package: dictionaries-common
> Version: 0.98.10
> Severity: wishlist
> File: /usr/share/emacs/site-lisp/dictionaries-common/flyspell.el
> 
> This,
> (flyspell-version)
> "emacs22 + Debian `dictionaries-common' changes (like xemacs compatibility)"
> 
> Should be more like
> (ediff-version)
> "Ediff 2.81.1 of October 23, 2006"

> I.e., you should at least also mention what version number of flyspell this 
> is.

Thanks for the suggestion,

Since it is taken from FSF emacs CVS, there is no version number. So I have put 

FSF emacs CVS20080613 + Debian `dictionaries-common' changes (like xemacs
compatibility)

and commited to our git repo.

> Also perhaps add a variable, flyspell-version, not just a function, as
> most of the items in (apropos (quote ("version")) nil) have.

Actually, FSF emacs flyspell.el has neither flyspell-version function nor
variable. I added a function since it is what flyspell.el formerly had, and
because that is what flyspell.el maintainer had (now is unmaintained outside
FSF emacs), and so is what previous flyspell.el users expect. I prefer a
variable like ispell.el has, but for backwards compatibility a function is
expected.

-- 
Agustin



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



Bug#479915: Patch

2008-08-05 Thread Frank Lichtenheld
The following patch fixes the build error for me:
Index: debian/control
===
--- debian/control  (Revision 5240)
+++ debian/control  (Arbeitskopie)
@@ -4,7 +4,8 @@
 Maintainer: Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]>
 Uploaders: Pierre Machard <[EMAIL PROTECTED]>, Josip Rodin <[EMAIL 
PROTECTED]>, Joost van Baal <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 5)
-Build-Depends-Indep: debiandoc-sgml, tetex-bin, tetex-extra, latex-cjk-chinese
+Build-Depends-Indep: debiandoc-sgml, tetex-bin, tetex-extra, latex-cjk-chinese,
+ latex-cjk-chinese-arphic-bkai00mp, latex-cjk-chinese-arphic-bsmi00lp, 
latex-cjk-chinese-arphic-gbsn00lp, latex-cjk-chinese-arphic-gkai00mp
 Standards-Version: 3.7.3
 Vcs-Browser: http://svn.debian.org/wsvn/ddp/manuals/trunk/debian-faq/
 Vcs-Svn: svn://svn.debian.org/ddp/manuals/trunk/debian-faq/
Index: debian/changelog
===
--- debian/changelog(Revision 5240)
+++ debian/changelog(Arbeitskopie)
@@ -1,9 +1,14 @@
 debian-faq (4.0.3) UNRELEASED; urgency=low
 
+  [ Joost van Baal ]
   * NOT RELEASED YET
 
- -- Joost van Baal <[EMAIL PROTECTED]>  Thu, 29 May 2008 13:24:08 +0200
+  [ Frank Lichtenheld ]
+  * debian/control: Add the Recommends from latex-cjk-chinese to the
+Build-Dependencies to fix FTBFS. (Closes: #479915)
 
+ -- Frank Lichtenheld <[EMAIL PROTECTED]>  Tue, 05 Aug 2008 16:08:49 -0300
+
 debian-faq (4.0.2) unstable; urgency=low
 
   [ Changes by Joost van Baal ]


Gruesse,
-- 
Frank Lichtenheld <[EMAIL PROTECTED]>
www: http://www.djpig.de/



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



Bug#493389: update-grub: uses wrong ordering algorithm (sorts 1.2.3-foo before 1.2.3.1-foo)

2008-08-05 Thread Felix Zielcke
Am Dienstag, den 05.08.2008, 00:48 -0300 schrieb Henrique de Moraes
Holschuh:
> On Mon, 04 Aug 2008, Robert Millan wrote:
> > > Why would you want something in /sbin to call something in /usr/s?bin ?
> > > 
> > > You need to port the algorithm.
> > 
> > update-grub is in /usr.
> 
> Crap.  I just noticed it is just a wrapper.  Why the heck is it not a
> symlink, which we would notice at first glance?  That excessive hand-holding
> script you guys have is actually WORSE a solution, chances are someone isn't
> going to notice it until it is too late, NEWS.Debian or not.  It is too easy
> to forget about it after a while, when there is still an executable with the
> right name in /sbin.

The grub2 packages have only one update-grub the one in /usr/sbin
Ok and a update-grub2 which exec's update-grub but it's in /usr/sbin
too.

> If I have some time, I will prepare the patch.  But please don't wait on me
> for it, if someone else has the time to prepare the patch, please do so.

That's very kind of you, I looked shortly at the comparison code and
couldn't figure out how to change it so it uses the dpkg code for it :)
Luckly grub2's update-grub uses now the comparison code of grub-legacy
so it's not that hard to apply it then to both.




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



Bug#493903: lintian: please provide a way of limiting the checks run by lintian based on tags

2008-08-05 Thread Joerg Jaspert
Package: lintian
Version: 1.24.1
Severity: wishlist

Hi

please provide a way to limit the checks that get run by providing an
input file listing tags, one per line.

Use: ftpmaster side to limit runtime by lintian, enabling use of lintian
as an automated quality control tool run on every source upload, which
only needs to look for a certain amount of tags.

-- 
bye, Joerg
AM: Whats the best way to find out if your debian/copyright is correct?
NM: Upload package into the NEW queue.


pgpmeVuRTseCq.pgp
Description: PGP signature


Bug#493900: [Pkg-utopia-maintainers] Bug#493900: hal-info: video quirk for Lenovo Thinkpad T61 8897 wrong

2008-08-05 Thread Yves-Alexis Perez
On mar, 2008-08-05 at 21:33 +0200, Michael Biebl wrote:
> What graphics adapter do you have?

Intel X3100 (GMA 965)
> 
> According to
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488144
> and
> http://bugs.freedesktop.org/show_bug.cgi?id=16453
> 
> quirks for Intel graphics cards are still needed. For the other cases, 
> pm-utils will filter out any quirks, so no changes to the fdi files are 
> necessary (see /usr/lib/pm-utils/sleep.d/98smart-kernel-video)

Well, with quirks I can't resume while without it works fine. Maybe
powersaved mess something there, I'll try using only pm-utils.

Cheers,
-- 
Yves-Alexis


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


Bug#431326: #431326: This bug has probably never been fixed

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 20:56:14 +0200, Raphael Champeimont (Almacha) wrote:

> My problem exactly matches this bug description, I have a
> fujitsu-siemens Lifebook S6010 laptop with an intel 82830 chip and X
> does not start.
> 
Can you try the patch at
https://bugs.freedesktop.org/show_bug.cgi?id=16997 and report the
results?

Thanks,
Julien



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



Bug#493869: octave3.0: gaminv and gamcdf crash for big values of parameter A

2008-08-05 Thread Rafael Laboissiere
package octave3.0
tags 493869 upstream wontfix
forwarded 493869 
http://www.cae.wisc.edu/pipermail/bug-octave/2007-April/002103.html
merge 493869 418158
thanks

* Sébastien Villemot <[EMAIL PROTECTED]> [2008-08-05 16:47]:

> "Thomas Weber" <[EMAIL PROTECTED]> a écrit :
> > See
> > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=418158
> >
> > d9lgit.f needs an improvement, either directly or by completely
> > replacing it with something better.
> 
> Thanks for pointing me to this bug report. I hadn't noticed that the  
> bug in poisscdf() was indeed caused by the same problem in gammainc(),  
> itself caused by a problem in d9lgit.

I am hereby merging the two bug reports.

-- 
Rafael



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



Bug#493900: [Pkg-utopia-maintainers] Bug#493900: hal-info: video quirk for Lenovo Thinkpad T61 8897 wrong

2008-08-05 Thread Michael Biebl

Yves-Alexis Perez wrote:

Package: hal-info
Version: 20080508+git20080601-1
Severity: normal

Hi,

since Linux 2.6.26 (I guess) some quirks aren't need anymore for my Thinkpad,
T61 8897 CTO. I removed the acpi_sleep=s3_bios from the kernel commandline and
it worked great during some time.

But now it can't resume correctly. I run powersaved, which in turn uses hal to
suspend (iirc). I tried to use s2ram and it worked fine, so I try to remove
the 8897 for the Thinkpad list for the quirks, and it works fine.

So I guess the quirk should be removed, and maybe for other Thinkpads too (but
I can't exactly say which ones).

Attached patch fix the file for my thinkpad.



What graphics adapter do you have?

According to
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488144
and
http://bugs.freedesktop.org/show_bug.cgi?id=16453

quirks for Intel graphics cards are still needed. For the other cases, 
pm-utils will filter out any quirks, so no changes to the fdi files are 
necessary (see /usr/lib/pm-utils/sleep.d/98smart-kernel-video)


Cheers,
Michael


--
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#493902: Watchfile ignores stable releases

2008-08-05 Thread Sveinung Kvilhaugsvik
Package: iceweasel-torbutton
Severity: wishlist

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

Torbutton 1.2.0 is out now. Uscan only reports it to be rc6. I think it will 
work properly if you can change the watchfile to know that 
torbutton-1.2.0.xpi > torbutton-1.2.0rc6.xpi.

Sincerly
Sveinung Kvilhaugsvik



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



Bug#492970: (was: nfs-utils-1.1.3 released)

2008-08-05 Thread Rasmus Bøg Hansen
Chuck Lever <[EMAIL PROTECTED]> writes:

> On Aug 4, 2008, at 4:55 PM, Paul Collins wrote:
>> Chuck Lever <[EMAIL PROTECTED]> writes:
>>> On Aug 3, 2008, at 11:10 AM, J. Bruce Fields wrote:
 On Mon, Aug 04, 2008 at 12:37:19AM +1200, Paul Collins wrote:
> "J. Bruce Fields" <[EMAIL PROTECTED]> writes:
>
>> On Fri, Aug 01, 2008 at 11:15:33PM +1000, Aníbal Monsalve Salazar
>> wrote:
>>> On Mon, Jul 28, 2008 at 03:13:19AM -0400, Steve Dickson wrote:
 I just cut the 1.1.3 nfs-utils release. Unfortunately I'm having
 issues accessing my kernel.org account so for the moment the
 tar ball is only available on SourceForge:

   http://sourceforge.net/projects/nfs
 [...]
>>>
>>> 1.1.3 clients don't work with a 1.0.10 server anymore.
>>
>> Very weird--it might make sense if upgrading nfs-utils broke the
>> mount
>> itself, but here it seems the mount is succeeding and subsequent
>> file
>> access (which I'd expect to only involve the in-kernel client
>> code) is
>> failing.  Maybe there's some difference in the mount options?
>> What does
>> /proc/self/mounts say?  I assume these are all v2 or v3 mounts?
>
> I discovered today that I was no longer able to write to the v3
> mount on
> my 1.1.2 server.  I checked /proc/mounts and noticed sec=null on
> the
> mount.  Either adding sec=sys to the client's mount options or
> downgrading to nfs-common 1.1.2 on the client fixes the problem.

 That would do it!

 So it sounds like there's a bug that causes mount.nfs to get the
 default
 mount options wrong?
>>>
>>> I'm not sure I'm following this.  I can't think of a user-space
>>> mount.nfs change in 1.1.3 that would affect the sec= option.
>>>
>>> Paul, which kernel are you running on your clients?
>>
>> Either 2.6.26 or 2.6.27-rc1+.  I'll double-check.
>
> It would be interesting if you could try both.  I suspect 2.6.26
> doesn't exhibit this problem, as 27-rc1 has changes in the NFS mount
> parser that affect "sec=".

I had the problem with 2.6.26. I didn't try 2.6.27-rc1 on that
machine.

> Also, enabling NFS mount debugging messages when performing the mount
> that eventually doesn't work would be enlightening (for me).  Either:

I won't be around that machine for a week or so.

>> Whichever one it was, the problem was present with 1.1.3 installed,
>> and
>> not present with 1.1.2 installed.

Same here.

Regards
/Rasmus

-- 
Rasmus Bøg Hansen
MSC Aps
Bøgesvinget 8
2740 Skovlunde
44 53 93 66




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



Bug#493900: hal-info: video quirk for Lenovo Thinkpad T61 8897 wrong

2008-08-05 Thread Yves-Alexis Perez
Package: hal-info
Version: 20080508+git20080601-1
Severity: normal

Hi,

since Linux 2.6.26 (I guess) some quirks aren't need anymore for my Thinkpad,
T61 8897 CTO. I removed the acpi_sleep=s3_bios from the kernel commandline and
it worked great during some time.

But now it can't resume correctly. I run powersaved, which in turn uses hal to
suspend (iirc). I tried to use s2ram and it worked fine, so I try to remove
the 8897 for the Thinkpad list for the quirks, and it works fine.

So I guess the quirk should be removed, and maybe for other Thinkpads too (but
I can't exactly say which ones).

Attached patch fix the file for my thinkpad.

Cheers, and keep up the good work.
--
Yves-Alexis Perez


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

Kernel: Linux 2.6.26+mip6 (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

-- no debconf information
diff --git a/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi b/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi
index 85c9666..2db563d 100644
--- a/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi
+++ b/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi
@@ -5,7 +5,7 @@
 
 
   
-  
+  
 true
 true
   


Bug#493894: /usr/lib/dri/i965_dri.so: undefined symbol: _glapi_tls_Context

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 14:58:36 -0400, Yaroslav Halchenko wrote:

> drmOpenDevice: node name is /dev/dri/card0
> drmOpenDevice: open result is 10, (OK)
> drmOpenByBusid: Searching for BusID pci::00:02.0
> drmOpenDevice: node name is /dev/dri/card0
> drmOpenDevice: open result is 10, (OK)
> drmOpenByBusid: drmOpenMinor returns 10
> drmOpenByBusid: drmGetBusid reports pci::00:02.0
> (EE) AIGLX error: dlopen of /usr/lib/dri/i965_dri.so failed 
> (/usr/lib/dri/i965_dri.so: undefined symbol: _glapi_tls_Context)
> (EE) AIGLX: reverting to software rendering
> (II) Loading sub module "GLcore"
> 
> which might be also related to #491520 reported against libdrm2
> 
> not sure if I should jump into upgrading xserver itself (1:7.3) and or
> libdrm2(2.3.1+git+20080706+401f77a-1), recommendations are welcome (or fixes 
> in
> versioned depends ;-))
> 
We build mesa with TLS support in experimental, which breaks the
interface between the dri driver and whatever loads it (libGL or the X
server).  That means no AIGLX with xserver from sid and mesa from
experimental.  Both from experimental should get AIGLX working.  DRI
with libgl1-mesa-glx and libgl1-mesa-dri from experimental should work
with the sid xserver too, I think.

Cheers,
Julien



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



Bug#493899: libdirectfb-1.0-0: DirectFB fails to start ("Could not initialize 'system' core!")

2008-08-05 Thread Olivier Tétard
Package: libdirectfb-1.0-0
Version: 1.0.1-10
Severity: grave
Justification: renders package unusable

While trying to use libdirectfb-1.0-0, I encountered a big problem
that I resolved by disabling 92_reopen_console.patch. The problem
occurs when I try to use mplayer (both using sdl or directfb as video
output driver) or any directfb aware executable.

,[ dfbinfo using directfb-1.0.1-10 ]
|
|  ===|  DirectFB 1.0.1  |===
|   (c) 2001-2007  The DirectFB Organization (directfb.org)
|   (c) 2000-2004  Convergence (integrated media) GmbH
| 
| 
| (*) DirectFB/Core: Single Application Core. (2008-07-22 17:13) 
| (*) Direct/Memcpy: Using libc memcpy()
| (!) DirectFB/Core: Could not initialize 'system' core!
| --> Access denied!
| (#) DirectFBError [DirectFBCreate() failed]: Access denied!
`

I tried to enable DirectFB's debug output but it wasn't useful. I'm
available if you need more info.

Thanks,
Olivier;

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

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

Versions of packages libdirectfb-1.0-0 depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libsysfs2 2.1.0-4interface library to sysfs
ii  libts-0.0-0   1.0-4  touch screen library

libdirectfb-1.0-0 recommends no packages.

libdirectfb-1.0-0 suggests no packages.

-- no debconf information



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



Bug#493898: freebsd-buildutils: missing manpages

2008-08-05 Thread brian m. carlson

Package: freebsd-buildutils
Version: 7.0-1
Severity: wishlist

None of the programs that this package provides in /usr/bin have
manpages.  Since these programs don't necessarily act as the GNU
versions do, it's important to have manpages that describe how the
programs function.

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

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

Versions of packages freebsd-buildutils depends on:
ii  bsdmainutils6.1.10   collection of more utilities from 
ii  dash0.5.4-11 POSIX-compliant shell

ii  libbsd0 0.0.1-1  utility functions from BSD systems
ii  libc6   2.7-13   GNU C Library: Shared libraries
ii  make3.81-5   The GNU version of the "make" util
ii  original-awk2007-10-23-1 The original awk described in "The
ii  patchutils  0.2.31-4 Utilities to work with patches
ii  unzip   5.52-12  De-archiver for .zip files

freebsd-buildutils recommends no packages.

freebsd-buildutils suggests no packages.

-- no debconf information

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


signature.asc
Description: Digital signature


Bug#493641: xserver-xorg-video-intel: Same problem

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 20:34:19 +0200, Alexander Heinlein wrote:

> Furthermore, I think that bugrepots 464353, 465694, 469706, 470028, 478999
> etc. etc. have pretty much the same problem. Every time X dies due to a
> problem in I830WaitLpRing().
> 
That's a symptom of some bug in the 2d or 3d driver.  Same symptom (gpu
hang) can have vastly different causes (which incidentally makes it
harder to debug).

Cheers,
Julien



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



Bug#492861: Progress bar rewinds when running pre-pkgsel.d/10popcon

2008-08-05 Thread Otavio Salvador
Frans Pop <[EMAIL PROTECTED]> writes:

> On Thursday 31 July 2008, Otavio Salvador wrote:
>> > I don't really like the idea of hook scripts determining how the main
>> > script works.
>>
>> Could you clarify why?
>
> Because not only is there absolutely no need for them to do so, it is also 
> seriously fragile to expect random hook scripts to output nothing else 
> than their progress bar end position.

I don't agree that they are no need for them. They make things much
more flexible however your argument about the fragility convinced me.

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
-
"Microsoft sells you Windows ... Linux gives
 you the whole house."



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



Bug#493897: virtualbox-ose-modules-2.6-686: not installable due to wrong dependency

2008-08-05 Thread Goedson Teixeira Paixao
Package: virtualbox-ose-modules-2.6-686
Version: 2:2.6.26-1
Severity: normal


virtualbox-ose-modules-2.6-686 cannot be installed because it depends on the
non-existing package linux-latest-modules-2.6.26-1-686



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

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

Versions of packages virtualbox-ose-modules-2.6-686 depends on:
pn  linux-latest-modules   (no description available)
ii  virtualbox-ose-modul 2.6.26+1.6.2-dfsg-1 PC virtualization solution modules

virtualbox-ose-modules-2.6-686 recommends no packages.

virtualbox-ose-modules-2.6-686 suggests no packages.



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



Bug#493896: deborphan: hackish parser implementation in combination with abortion on parsing errors causes the package to be unusable in many cases

2008-08-05 Thread Carsten Hey
Package: deborphan
Version: 1.7.25
Severity: grave

Installing a package which control file contains "Standards-Version:" or
any other field that begins with "St" causes deborphan to think this
line would be the "Status:" line.

This parsing hack, which exists since many years, improves the
performance of deborphan, but in combination with the abortion if the
status line is not in a proper state it renders the package unusable in
many cases.

One package which has such a control file is the unofficial F-PROT
Antivirus Free Version.


Carsten



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



Bug#487532: please change priority of pidentd from standard to optional

2008-08-05 Thread Thijs Kinkhorst
Dear FTP-masters,

> Please change pidentd from standard to optional.

Do you think this change would be possible for Lenny? As I stated in the bug 
log I believe it would help ensure the security of a standard Debian install.


thanks,
Thijs


pgpOuPATdGq8x.pgp
Description: PGP signature


Bug#431326: #431326: This bug has probably never been fixed

2008-08-05 Thread Julien Cristau
On Tue, Aug  5, 2008 at 20:56:14 +0200, Raphael Champeimont (Almacha) wrote:

> My problem exactly matches this bug description, I have a
> fujitsu-siemens Lifebook S6010 laptop with an intel 82830 chip and X
> does not start.
> 
Hi Raphael,

Please send a copy of your video bios.  The following should work (as
root):
# cd /sys/bus/pci/devices/:00:02.0
# echo 1 > rom
# cat rom > /tmp/rom
# echo 0 > rom

Cheers,
Julien



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



Bug#493884: Bug#424428: Bug#493884: [bts] move version info to standard header

2008-08-05 Thread Adam D. Barratt
On Tue, 2008-08-05 at 20:56 +0200, Thijs Kinkhorst wrote:
> On Tuesday 5 August 2008 20:41, Adam D. Barratt wrote:
> > I believe when removing the comment
> > has been suggested in the past, people requested that it remain in order
> > to make it obvious that the mail was sent automagically and not
> > "manually" by a user who just hadn't bothered to add any comments.
> 
> A command without comments remains a command without comments, whether sent 
> with KMail or bts, right? Thanks for considering.

Indeed; hence the "I agree User-Agent is more appropriate" following
that paragraph. :-)

I'm just trying to think if there's a means of indicating that
tagpending was involved without then having the current comment in that
case grumbled about (the best idea I've come up with so far is an
undocumented "bts --tagpending" switch, but that's not exactly ideal).

Adam



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



  1   2   3   4   >