Bug#481714: git-import-orig: Fails importing when new version matches current version

2008-05-18 Thread Andres Mejia
Package: git-buildpackage

Hello,

git-import-orig fails on me with the following message.

dch: fatal error at line 963:
New version specified (1.4.8-1) is less than
the current version number (1.4.8-1)!  Use -b to force.
dch returned 25
Dch failed.
Import of ../ogre-contrib_1.4.8.orig.tar.gz failed

This happens when converting from an svn-buildpackage debian/ dir only layout, 
and I want to import the contents of the orig tarball.

I think an option to disable performing the 'dch' operation in git-import-orig 
would be good. Maybe this error should be turned into a warning instead, as 
updating the changelog is not critical.

-- 
Regards,
Andres


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


Bug#481684: Please enable CONFIG_LATENCYTOP so we can use the latencytop tool

2008-05-18 Thread Bastian Blank
severity 481684 wishlist
tags 481684 wontfix
thanks

On Sun, May 18, 2008 at 12:03:32AM +0200, Uwe Hermann wrote:
 please consider enabling CONFIG_LATENCYTOP in the kernel, as it's needed
 for the 'latencytop' utility to work. latencytop itself is already in
 unstable. See also http://latencytop.org/.

Latencytop support needs too much debug-only features. As we don't build
debug images, this is wontfix for now.

| config LATENCYTOP
| bool Latency measuring infrastructure
| select FRAME_POINTER if !MIPS
| select KALLSYMS
| select KALLSYMS_ALL
| select STACKTRACE
| select SCHEDSTATS
| select SCHED_DEBUG

 I must admit I do _not_ know if there are any negative effects when
 enabling that setting. However, I have rebuilt my kernel
 (Debian 2.6.25-3 version) with CONFIG_LATENCYTOP and it _did_ make
 latencytop work fine for me.

You should check the complete config for differences.

Bastian

-- 
If some day we are defeated, well, war has its fortunes, good and bad.
-- Commander Kor, Errand of Mercy, stardate 3201.7



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



Bug#459344: closed by Otavio Salvador [EMAIL PROTECTED] (Bug#459344: fixed in apt 0.7.13)

2008-05-18 Thread Torbj|rn Andersson
In my case it seems I get the error mail, not because the cache was 
locked by another process, but instead because I have a few unmet 
dependencies on my system.


This is, of course, entirely my own fault. It would be nice if the 
error message could be a bit more informative, though.


Torbjö  nAndersson




Bug#481715: xfsprogs: typos in man xfs_quota

2008-05-18 Thread Piotr Szydełko
Package: xfsprogs
Version: 2.8.11-1
Severity: minor


Second paragraph in section DIRECTORY TREE QUOTA incorrectly states that -c 
option setups project quota. In fact it is -s.
EXAMPLES:
there is:  xfs_quota -x -c ’projects -c logfiles’ /home
should be: xfs_quota -x -c ’project -c logfiles’ /home
Quotation marks could be changed for those who copy-paste example.

-- 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.24-1-amd64
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=UTF-8) (ignored: LC_ALL set to 
pl_PL.UTF-8)

Versions of packages xfsprogs depends on:
ii  lib 2.3.6.ds1-13etch5GNU C Library: Shared libraries
ii  lib 5.2-2GNU readline and history libraries
ii  lib 1.39+1.40-WIP-2006.11.14+dfsg-2etch1 universally unique id library

xfsprogs recommends no packages.

-- no debconf information



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



Bug#481716: dpkg-dev: Omit directory for Bugs Everywhere data from upstream and Debian source

2008-05-18 Thread Ben Finney
Package: dpkg-dev
Version: 1.14.18
Severity: minor
Tags: patch

Bugs Everywhere URL:http://bugseverywhere.org/ is a distributed bug 
tracking system that stores its data (by default) in a top-level 
directory in the project tree, called '.be'.

This directory is about as much interest as the VCS directories found 
in working trees: useful if one intends to collaborate with the 
upstream developer's tools, but useless cruft otherwise. It should be 
preserved in the tree, but not included in the Debian source package.

The attached patch (generated via 'git diff' against the dpkg source 
repository) extends the list of directories ignored by both 
'diff_ignore_default_regexp' and 'tar_default_ignore_pattern' to also 
omit the '.be' directory when generating Debian source packages.
diff --git a/scripts/Dpkg/Source/Package.pm b/scripts/Dpkg/Source/Package.pm
index f086e85..0c82738 100644
--- a/scripts/Dpkg/Source/Package.pm
+++ b/scripts/Dpkg/Source/Package.pm
@@ -47,7 +47,7 @@ our $diff_ignore_default_regexp = '
 (?:^|/)(?:DEADJOE|\.cvsignore|\.arch-inventory|\.bzrignore|\.gitignore)$|
 # File or directory names that should be ignored
 (?:^|/)(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn|\.hg|_darcs|\.git|
-\.shelf|_MTN|\.bzr(?:\.backup|tags)?)(?:$|/.*$)
+\.shelf|_MTN|\.bzr(?:\.backup|tags)?|\.be)(?:$|/.*$)
 ';
 # Take out comments and newlines
 $diff_ignore_default_regexp =~ s/^#.*$//mg;
@@ -81,6 +81,7 @@ RCS
 _MTN
 _darcs
 {arch}
+.be
 );
 
 # Private stuff


Bug#479711: eval require Foo with binary-incompatible XS modules

2008-05-18 Thread Rafael Garcia-Suarez
2008/5/17 Niko Tyni [EMAIL PROTECTED]:
 How about just documenting this a bit more with something like the
 attached patch? I still think it's unexpected that 'eval require Foo'
 isn't enough to trap the error.

Yes. Thanks, applied as change #33848.

 Some clarifications:

 - I'm not familiar with the reasons for choosing
  -Dvendorarch=/usr/lib/perl5, but I'll try to find out.

 - the circumstances where this shows up in the Debian context are
  somewhat a corner case where 'preinst upgrade' scripts that need XS
  modules may get run with a new XS module but the old perl. The
  package dependencies are not yet guaranteed to be met at the
  'preinst' time, hence the 'eval require Foo' construct.

I've heard that dpkg2 was going to support pre-inst and post-uninst
dependencies. (Just like rpm does, which creates approximately the same
number of problems than it solves)

 Hm, one option could be to have the packaging system (dpkg) set
 PERL_DL_NONLAZY=1 for all preinst script invocations...

I'm not 100% sure that's a good idea.



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



Bug#481717: Add Quick Database Manager (QDBM) files support

2008-05-18 Thread Benoît Sibaud
Package: file
Version: 4.24-2
Severity: normal
Tags: patch

#--
# qdbm:  file(1) magic for QDBM Quick Database Manager
#
0   string  \[depot\]\n\f   Quick Database Manager - little endian
0   string  \[DEPOT\]\n\f   Quick Database Manager - big endian

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

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

Versions of packages file depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libmagic1 4.24-2 File type determination library us

file recommends no packages.

-- no debconf information

-- 
Benoît Sibaud




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



Bug#481718: [pidgin] new version available

2008-05-18 Thread Matthias Krüger
Package: pidgin
Version: 2.4.1-1+b1
Severity: wishlist

--- Please enter the report below this line. ---
Please update pidgin to new version 2.4.2 .

Thank you for your fine work!Matthias Krüger
--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.24-1-amd64

Debian Release: lenny/sid
  500 testing security.debian.org
  500 testing 141.76.2.4

--- Package information. ---
Depends(Version) | Installed
-+-
pidgin-data   (= 2.4.1) | 2.4.1-1
pidgin-data ( 2.4.1-z) | 2.4.1-1
libatk1.0-0  (= 1.20.0) | 1.22.0-1
libc6 (= 2.7-1) | 2.7-10
libcairo2 (= 1.4.0) | 1.6.4-1+b1
libdbus-1-3   (= 1.0.2) | 1.2.1-2
libdbus-glib-1-2   (= 0.74) | 0.74-2
libglib2.0-0 (= 2.16.0) | 2.16.3-2
libgstreamer0.10-0  (= 0.10.10) | 0.10.19-3
libgtk2.0-0  (= 2.12.0) | 2.12.9-3
libgtkspell0 (= 2.0.10) | 2.0.10-4
libice6 (= 1:1.0.0) | 2:1.0.4-1
libpango1.0-0(= 1.20.2) | 1.20.2-2
libpurple0   (= 2.4.1-1+b1) | 2.4.1-1+b1
libsm6   | 2:1.0.3-1+b1
libstartup-notification0  (= 0.8-1) | 0.9-1
libx11-6 | 2:1.0.3-7
libxss1  | 1:1.1.3-1
gconf2 (= 2.10.1-2) | 2.22.0-1
perl   (= 5.8.8-12) | 5.8.8-12
perlapi-5.8.8|




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



Bug#481719: laptop-net: [INTL:ru] Russian debconf templates translation

2008-05-18 Thread Yuri Kozlov
Package: laptop-net
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation is attached.

-- 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.23-1-amd64
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to ru_RU.UTF-8)
# translation of ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Yuri Kozlov [EMAIL PROTECTED], 2008.
msgid 
msgstr 
Project-Id-Version: laptop-net new\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-05-15 07:47+0200\n
PO-Revision-Date: 2008-05-18 11:17+0400\n
Last-Translator: Yuri Kozlov [EMAIL PROTECTED]\n
Language-Team: Russian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms:  nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Overwrite laptop-net configuration files?
msgstr Переписать файлы настройки laptop-net?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
If you set this option, you will be asked a series of questions about your 
network configuration, and the answers to those questions will be used to 
generate new configuration files for laptop-net.  The new configuration 
files will overwrite any existing configuration files, and any changes you 
might have made to them in the past.
msgstr 
При утвердительном ответе вас попросят ответить на несколько 
вопросов о ваших сетевых настройках, а ответы будут использованы для 
создания новых файлов настройки для laptop-net. Новые файлы настройки 
перезапишут все существующие файлы настройки и все изменения, сделанные 
в них ранее.

#. Type: boolean
#. Description
#: ../templates:1001
msgid If you don't set this option, your configuration files will not be 
changed.
msgstr При отрицательном ответе ваши файлы настройки изменены не будут.

#. Type: string
#. Description
#: ../templates:2001
msgid Network-interface driver module:
msgstr Драйверный модуль сетевого интерфейса:

#. Type: string
#. Description
#: ../templates:2001
msgid 
If you are using a network interface adapter driver that lacks adequate 
power management support then it is best if the driver is built as a 
module.  See the documentation for details.  If your driver is built as a 
module, enter the module's name here.  (For example, on the HP OmniBook 500 
or 6000 computers, the correct module name is \3c59x\.)
msgstr 
Если вы используете драйвер сетевой карты, в котором нет 
поддержки управления питанием, то лучше собирать такой 
драйвер в виде модуля. Подробности смотрите в документации. Если 
драйвер собран как модуль, то введите его имя здесь. (Например, для 
компьютеров HP OmniBook 500 или 6000, правильное имя модуля \3c59x\.)

#. Type: string
#. Description
#: ../templates:2001
msgid If you do not need any module or if you are unsure, leave this blank.
msgstr Если вам не нужен модуль или вы не уверены, оставьте поле пустым.

#. Type: string
#. Description
#: ../templates:2001
msgid 
Be aware that if your driver lacks adequate power management support then it 
may not work properly after a suspend and resume cycle.
msgstr 
Если драйвер не поддерживает управление питанием, то он может 
неправильно работать c режимом приостановки компьютера.

#. Type: boolean
#. Description
#: ../templates:3001
msgid Does your network-interface driver support MII?
msgstr Драйвер сетевого интерфейса поддерживает MII?

#. Type: boolean
#. Description
#: ../templates:3001
msgid 
MII stands for \Media Independent Interface\.  Drivers that support MII 
can sense whether or not the network cable is plugged in and operating. If 
your hardware and driver support this then select this option here and this 
package will make use of this feature to detect cable insertion and 
removal.  Otherwise, do not select this option.
msgstr 
MII расшифровывается как \Media Independent Interface\. Драйверы с 
поддержкой 
MII могут определять, воткнут и работает ли сетевой кабель. Если ваше 
оборудование и драйвер поддерживают этот интерфейс, то ответьте 
утвердительно, и пакет будет использовать данное свойство для 
определения момента подключения и вытаскивания кабеля. 
Иначе, ответьте отрицательно.

#. Type: boolean
#. Description
#: ../templates:3001
msgid 
The following drivers support MII as of Linux 2.4.5: 3c59x 8139too eepro100 
epic100 fealnx hamachi ioc3-eth natsemi pcnet32 pegasus sis900 starfire 
sundance tlan tulip via-rhine winbond-840 yellowfin.
msgstr 
Следующие драйверы поддерживают MII в Linux с версии 2.4.5: 3c59x 8139too 
eepro100 
epic100 fealnx hamachi ioc3-eth natsemi pcnet32 pegasus sis900 starfire 
sundance tlan tulip via-rhine winbond-840 yellowfin.

#. Type: boolean
#. 

Bug#481720: xserver-xorg-input-wacom: (EE) Failed to load module wacom (module does not exist, 0)

2008-05-18 Thread Dirk Griesbach
Package: xserver-xorg-input-wacom
Version: 0.8.0.2-1
Severity: normal

Hi,

in this package the wacom xorg input driver is shipped as an ELF 32-bit
LSB relocatable where it should be an ELF 32-bit LSB shared object to be
loadable by xorg.

With kind regards,
Dirk

-- 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/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-input-wacom depends on:
ii  xserver-xorg-core  2:1.4.1~git20080507-1 Xorg X server - core server

xserver-xorg-input-wacom recommends no packages.

-- no debconf information



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



Bug#481721: openssh-server: sshd does not include a remote address when logging usage of blacklisted keys

2008-05-18 Thread Helmut Grohne
Package: openssh-server
Version: 1:4.7p1-10
Severity: wishlist

Hi,

sshd[0]: Public key 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00 
blacklisted (see ssh-vulnkey(1))

That's a line from sshd when one tries to use a blacklisted key. In
order to reduce the load on a server it would be great if one could use
fail2ban or denyhosts to stop people from trying blacklisted keys. This
would require an ip address to be logged. Please do it.

It would also be good if this could be changed in Etch, too.

Helmut



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



Bug#469718: interchange: Please add LSB formatted dependency info in init.d script

2008-05-18 Thread Petter Reinholdtsen
Hi.  The interchange is one of the remaining 9 packages missing init.d
script dependencies.  Any hope of having a fixed version in unstable
soon?

See URL:http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot
for more information on the status of dependency based boot
sequencing.

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#481112: pbuilder: no longer possible to specify PATH

2008-05-18 Thread Junichi Uekawa
Hi,

 
 i've been wondering why my builds have been taking longer in spite of
 having ccache installed and previously set up in my pbuilder chroot.
 for the longest time i just assumed i was doing something wrong and
 never bothered to look into it, but now i believe that this is a valid
 problem, perhaps caused by the fix for #439285 ?

Oh, erm, yeah.  I don't think it's a good idea to request everyone to
modify their /etc/profile inside chroot.  What would be a proper fix?
I was thinking of dumping PATH and sourcing the PATH value inside
chroot, but what else do I need to special-case? 

I'd like some input from ccache users.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project



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



Bug#481722: sbnc: Errors in German Debconf translation

2008-05-18 Thread Helge Kreutzmann
Package: sbnc
Version: 1.2-5
Severity: normal
Tags: patch l10n

Hello,
while checking for #478255 I noticed that the German translation is
inconsistent with the guidelines set up in debian-l10n-german (e.g.
consequent usage of Sie instead of Du, agreed terms on
wiki.debian.org/Wortliste) and is also missing a header line. The
attached patch fixes all issues I noticed. It also includes the fix
for #478255.

If you have any question about my patch do not hesitate to ask. I also
would welcome you to request a proofread on debian-l10n-german (where
also general questions regarding German localization can be directed
to).

It would be great if you could include this patch before your final
upload targetted for Lenny.

Thanks!

-- 
  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/
8c8
 Project-Id-Version: 1.2\n
---
 Project-Id-Version: sbnc 1.2-5\n
11c11
 PO-Revision-Date: 2008-04-13 22:34+0100\n
---
 PO-Revision-Date: 2008-05-18 09:43+0200\n
12a13
 Language-Team: de [EMAIL PROTECTED]\n
21c22
 msgstr shroudBNC beim Starten automatisch starten?
---
 msgstr shroudBNC beim Server-Hochfahren automatisch starten?
35c36
 msgstr IP auf der shroudBNC nach neuen Verbindungen suchen soll:
---
 msgstr IP auf der shroudBNC auf neuen Verbindungen warten soll:
44,45c45,46
 shroudBNC wird nur auf der gegebenen IP Adresse nach neuen Verbindungen 
 suchen.
---
 shroudBNC wird nur auf der angegebenen IP-Adresse auf neue Verbindungen 
 warten.
53,54c54,55
 Wenn du 0.0.0.0 als Adresse auswählst wird shroudBNC auf allen Interfaces 
 nach Verbindungen suchen.
---
 Falls Sie 0.0.0.0 als Adresse auswählen, wird shroudBNC auf allen Schnittstellen 
 auf Verbindungen warten.
60c61
 msgstr TCP/IP Port für shroudBNC:
---
 msgstr TCP/IP-Port für shroudBNC:
67c68
 shroudBNC wird nur auf dem angegebenen Port nach neuen Verbindungen suchen.
---
 shroudBNC wird nur auf dem angegebenen Port auf neue Verbindungen warten.
76,77c77,78
 Du musst einen Port wählen, der höher als 1023 ist und nicht von einem 
 anderem Programm bisher genutzt wird.
---
 Sie müssen einen Port auswählen, der höher als 1023 ist und nicht bereits von einem 
 anderem Programm genutzt wird.
83c84
 msgstr Benutzername für den administrativen Benutzer:
---
 msgstr Benutzername für den ersten administrativen Benutzer:
88,91d88
 #, fuzzy
 #| msgid 
 #| shroudBNC needs a first user with administrative rights. Enter here the 
 #| login name for your administrator.
96,97c93,94
 shroudBNC benötigt einen ersten Benutzer mit administrativen Rechten.Geben 
 Sie hier den ersten Benutzernamen an.
---
 shroudBNC benötigt einen ersten Benutzer mit administrativen Rechten. Geben 
 Sie hier den Anmeldenamen für Ihren Administrator an.
103c100
 msgstr Passwort für den neuen Benutzer:
---
 msgstr Passwort für den ersten Benutzer:
110c107
 Geben Sie hier ihr Passwort für den ersten administrativen Benutzer ein.
---
 Geben Sie hier Ihr Passwort für Ihr erstes administratives Benutzerkonto ein.


signature.asc
Description: Digital signature


Bug#481723: gspca-source: does not compile against 2.6.25+

2008-05-18 Thread Jan De Luyck
Package: gspca-source
Version: 01.00.20-1
Severity: normal


The package supplied with Debian Sid does not compile against 2.6.25.4.

The upstream version compiles cleanly.

errors:

make[1]: Entering directory `/usr/src/build/linux-2.6.25.4'
  CC [M]  /usr/src/modules/gspca/gspca_core.o
/usr/src/modules/gspca/gspca_core.c:2567: error: unknown field 'hardware' 
specified in initializer
/usr/src/modules/gspca/gspca_core.c: In function 'cd_to_spca50x':
/usr/src/modules/gspca/gmake[1]: Leaving directory 
`/usr/src/build/linux-2.6.25.4'
 pointer type
/usr/src/modules/gspca/gspca_core.c: In function 'spca50x_create_sysfs':
/usr/src/modules/gspca/gspca_core.c:2655: warning: passing argument 2 of 
'video_device_create_file' from incompatible pointer type
/usr/src/modules/gspca/gspca_core.c:2657: warning: passing argument 2 of 
'video_device_create_file' from incompatible pointer type
/usr/src/modules/gspca/gspca_core.c:2659: warning: passing argument 2 of 
'video_device_create_file' from incompatible pointer type
/usr/src/modules/gspca/gspca_core.c:2665: warning: passing argument 2 of 
'video_device_remove_file' from incompatible pointer type
/usr/src/modules/gspca/gspca_core.c:2667: warning: passing argument 2 of 
'video_device_remove_file' from incompatible pointer type
/usr/src/modules/gspca/gspca_core.c:2669: warning: passing argument 2 of 
'video_device_remove_file' from incompatible pointer type
make[2]: *** [/usr/src/modules/gspca/gspca_core.o] Error 1
make[1]: *** [_module_/usr/src/modules/gspca] Error 2
make: *** [default] Error 2


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

Kernel: Linux 2.6.25.4 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

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

gspca-source recommends no packages.

-- no debconf information



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



Bug#481401: mplayer:[PowerPC] MPlayer crashed by an 'Illegal Instruction'

2008-05-18 Thread A Mennucc
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

mancausoft ha scritto:
 Package: mplayer
 Version: 1.0~rc2-8+lenny1
 
 Severity: normal
 
 When start a video it crash.
 
 Message: 
 
 MPlayer interrupted by signal 4 in module: decode_video
 - MPlayer crashed by an 'Illegal Instruction'.
   It may be a bug in our new runtime CPU-detection code...
   Please read DOCS/HTML/en/bugreports.html.
 - MPlayer crashed by bad usage of CPU/FPU/RAM.
   Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
   disassembly. Details in
 DOCS/HTML/en/bugreports_what.html#bugreports_crash.
 - MPlayer crashed. This shouldn't happen.
   It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
   gcc version. If you think it's MPlayer's fault, please read
   DOCS/HTML/en/bugreports.html and follow the instructions there. We
 can't and won't help unless you provide this information when reporting
 a possible bug.
 

does your CPU have altivec? (I guess not)

mplayer is compiled with altivec support, and it crashes on non-altivec
powerpc CPUs.

This is a controversial decision we made some time ago. Compiling w/o
altivec would adversly affect people that have altivec. My hope was that
most CPUs nowdays would have altivec, but it seems there are exceptions
(this is the 3rd bug report).

Unfortunately AFAIK there is no run-time CPU detection currently for
altivec .

I am still hoping to find a better solution.


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

iD8DBQFIL+RU9B/tjjP8QKQRAm9IAKCkZ7jVBsl5VETD3GkpWWlE+Jbg5wCfaOyB
5hpl7PKcBjpivvyPq4mbdWA=
=HGvs
-END PGP SIGNATURE-



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



Bug#427697: Is sbackup maintained? If not, what to do?

2008-05-18 Thread Jose Carlos Garcia Sogo
sbackup has been merged and superseded by nssbackup, which is not yet
in Debian. I will see if I can get a version properly suited to be
packaged in Debian, and I will ask sbackup to be removed from archive.

On Thu, May 15, 2008 at 3:58 PM, Charles Plessy [EMAIL PROTECTED] wrote:
 Dear all,

 it is almost one year that sbackup was modified to use a group ID that
 exists on Ubuntu but not on Debian systems. As suggested on
 [EMAIL PROTECTED], I have increased the severity of the bug to
 'serious' three weeks ago. (#427697)

 sbackup is a native Debian package whose maintainer is also upstream
 developper. As a native package, it is translated by Debian voluteers,
 whose work is ignored by the maintainer. (#431936)

 The homepage of sbackup has not been updated recently, except by
 spammers (http://sbackup.sourceforge.net/RecentChanges).

 Despite the fact that the maintainer of sbackup is actively blogging on
 planet.d.o, I wonder if sbackup is maintained. From a user perspective
 (and I am a user of sbackup, that is why I feel concerned), I think that
 if there is no future for sbackup, it can be discussed wether it is
 better to remove it and save volunteer time to fix other bugs than the
 ones of sbackup.

 Have a nice day,

 --
 Charles Plessy
 http://charles.plessy.org
 Wakō, Saitama, Japan


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





-- 
José Carlos García Sogo
 [EMAIL PROTECTED]


Bug#481574: miro: Miro doesn't work since recent upgrade of python

2008-05-18 Thread Yannick Palanque
2008-05-18T01:04:43+0200, Uwe Hermann [EMAIL PROTECTED]:

 Cannot confirm, works fine here with the exact same versions of the
 python packages you listed (I dist-upgraded a few minutes ago).

Hmm, embarrassing. :-)

 How long did you wait? Do you have a proxy configured which might
 cause longer waiting times?

I can wait about 30s, 1 min.
No proxy.

 Please close miro, try 'mv ~/.miro ~/.miro.bak' and then restart miro
 in an xterm and see if it helps.

I did. There is no real difference but a few lines in xterm (file
miro1).

Just after this test, I launched again Miro and then it worked. :-o
(file miro2)

But trying to launch it again, it didn't work anymore. (file miro3)

And after another test and a rm -r .miro/, miro ran directly but was
frozen.
A bug pretty nasty, so. :-/

Greeting.

$ miro
INFO Starting up Miro
INFO Version:1.2.3
INFO Revision:   
https://svn.participatoryculture.org/svn/dtv/tags/Miro-1.2.3/tv/resources - 6787
INFO Builder:[EMAIL PROTECTED]
INFO Build Time: 1209245581.28
INFO Starting event loop thread
^CINFO Restoring database...
INFO Connecting to /home/yannick/.miro/sqlitedb
Traceback (most recent call last):
  File /usr/bin/miro.real, line 118, in module
startapp()
  File /usr/bin/miro.real, line 95, in startapp
startup()
  File /usr/bin/miro.real, line 32, in startup
Application().run()
  File 
/var/lib/python-support/python2.5/miro/platform/frontends/html/Application.py,
 line 59, in run
gtk.main()
  File /var/lib/python-support/python2.5/dbus/connection.py, line 509, in 
_signal_func
signal_name):
  File /var/lib/python-support/python2.5/dbus/connection.py, line 425, in 
_iter_easy_matches
for path in path_keys:
KeyboardInterrupt
TIMING   Database load slow: 0.317
TIMING   idle (finish startup) too slow (3.032 secs)
INFO Spawning global feed dtv:manualFeed
INFO Spawning global feed dtv:singleFeed
INFO Spawning global feed dtv:search
INFO Spawning global feed dtv:searchDownloads
INFO wbg: setting autodownload stuff initially to off
INFO Spawning global feed dtv:directoryfeed
INFO wbg: setting autodownload stuff initially to off
INFO Creating channel tab order
INFO Creating playlist tab order
INFO *** Launching Downloader Daemon 
INFO Spawning Miro Guide...
INFO Spawning auto downloader...
TIMING   Icon clear: 0.010
INFO Starting movie data updates
INFO Adding default feeds
INFO Displaying main frame...
INFO Creating video display...
INFO Finished startup sequence
/usr/bin/miro: line 2: 17593 Terminated  
LD_LIBRARY_PATH=/usr/lib/xulrunner miro.real $@
$ miro
INFO Starting up Miro
INFO Version:1.2.3
INFO Revision:   
https://svn.participatoryculture.org/svn/dtv/tags/Miro-1.2.3/tv/resources - 6787
INFO Builder:[EMAIL PROTECTED]
INFO Build Time: 1209245581.28
INFO Starting event loop thread
INFO Restoring database...
INFO Connecting to /home/yannick/.miro/sqlitedb
INFO Spawning global feed dtv:manualFeed
INFO Spawning global feed dtv:singleFeed
INFO Spawning global feed dtv:search
INFO Spawning global feed dtv:searchDownloads
INFO wbg: setting autodownload stuff initially to off
INFO Spawning global feed dtv:directoryfeed
INFO wbg: setting autodownload stuff initially to off
INFO Creating channel tab order
INFO Creating playlist tab order
INFO *** Launching Downloader Daemon 
INFO Spawning Miro Guide...
INFO Spawning auto downloader...
TIMING   Icon clear: 0.013
INFO Starting movie data updates
INFO Adding default feeds
INFO Displaying main frame...
INFO Creating video display...
WARNING  Menu item action RenameVideo not implemented
WARNING  Menu item action FastForward not implemented
WARNING  Menu item action Rewind not implemented
WARNING  Menu item action UpVolume not implemented
WARNING  Menu item action DownVolume not implemented
INFO Finished startup sequence
INFO loaded renderer 'xinerenderer'
TIMING   gtkAsyncMethod: function initRenderers at 0x934e5dc took too long: 
2.663
WARNING  Error setting up drag and drop dummy element
INFO got file:///tmp/tmpd_5t2N.html
TIMING   gtkSyncMethod: function getDisplay at 0x93b541c took too long: 3.089
INFO First URL is https://www.miroguide.com/firsttime
TIMING   idle (select initial tab) too slow (3.099 secs)
INFO *** Daemon ready ***
INFO got file:///tmp/tmpF5SIAB.html
INFO First URL is https://www.miroguide.com/
INFO got file:///usr/share/miro/resources/html/guide-navigation.html
INFO First URL is https://www.miroguide.com/
INFO got about:blank
INFO First URL is https://www.miroguide.com/
INFO got https://www.miroguide.com/firsttime
INFO First URL is https://www.miroguide.com/firsttime
TIMING   feed update for: http://feeds.pbs.org/pbs/kcet/wiredscience-video too 
slow (1.438 secs)
TIMING   idle (Thread Pool Callback 

Bug#473853: offering comaintainership (was: Re: Bug#473853: O: rplay -- network audio system)

2008-05-18 Thread Joost van Baal
Hi,

I'd really like this package to stay (maintained) in Debian, since fvwm
depends upon it, which I use.  I am willing to comaintain it, if someone
else steps up and is offering comaintainership too.

(I don't think fvwm should pass --with-rplay-library=no to ./configure,
should it?.)

Bye,

Joost



signature.asc
Description: Digital signature


Bug#481702: asterisk: Call quality on IAX significantly worse than SIP

2008-05-18 Thread Lionel Elie Mamane
On Sun, May 18, 2008 at 03:51:08AM +0200, Lionel Elie Mamane wrote:

 For calls between the same two asterisk boxes, IAX audio is choppy (a
 fraction of second of sudden silence every few seconds) (iax2 show
 netstats shows lost packets), but SIP audio is OK.

 this scenario is also choppy:

  ekiga behind boxA-SIP-boxB-IAX-boxA-ZAP

This scenario gives good audio:

 ekiga-SIP-boxA-IAX-boxB

Which made me think of a jitter buffer problem, because in this
scenario Asterisk is not supposed to do any dejittering. Indeed,
iax.conf on boxA had:

jitterbuffer=yes
forcejitterbuffer=no

with

jitterbuffer=no

it works *much* better. The ZAP channel also had a jitterbuffer
enabled, but not forced. Maybe the two jitterbuffers were being active
at the same time? This would be the bug then. On the other hand,
disabling the jitter buffer on the zap channel, but enabling it in
iax.conf also gives losses. So I think there is really something wrong
with the jitterbuffer in chan_iax. Note that iax2 show netstats
shows very little jitter, on the order of 3 (I suppose the unit is
ms?), even with the lost packets.

 I checked that this is not solved by 1.4.19.2. It did not happen
 before I upgraded to 1.4.19.

On the other hand, it is not solved by downgrading to 1.4.18.1
neither. So probably 1.4.19 is not to blame after all.

-- 
Lionel



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



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

2008-05-18 Thread Sedat Dilek
Package: kdebase-workspace
Version: 4.0.74-1 (UNRELEASED)
Severity: normal
Tags: patch

Hi,

I discovered a bug while building kdebase-workspace for kde4 v4.0.74-1.

$ tail -f BROKEN_kdebase-workspace_4.0.74-1_i386.build
/home/sd/src/kdebase-workspace_4.0.74-1_debianway/kdebase-workspace-4.0.74/krunner/startupid.cpp:324:
undefined reference to `XcursorGetDefaultSize'
collect2: ld returned 1 exit status
make[3]: *** [lib/libkdeinit4_krunner.so] Error 1
make[3]: Leaving directory
`/home/sd/src/kdebase-workspace_4.0.74-1_debianway/kdebase-workspace-4.0.74/obj-i486-linux-gnu'
make[2]: *** [krunner/CMakeFiles/kdeinit_krunner.dir/all] Error 2
make[2]: Leaving directory
`/home/sd/src/kdebase-workspace_4.0.74-1_debianway/kdebase-workspace-4.0.74/obj-i486-linux-gnu'
make[1]: *** [all] Error 2
make[1]: Leaving directory
`/home/sd/src/kdebase-workspace_4.0.74-1_debianway/kdebase-workspace-4.0.74/obj-i486-linux-gnu'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

I commented the parts concerning HAVE_XCURSOR and included
X11/Xcursor/Xcursor.h globally.
The attached patch is fixing the problem.

Kind Regards,
Sedat

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

Kernel: Linux 2.6.25-4.slh.2-sidux-686 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
(ignored: LC_ALL set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash
--- krunner/startupid.cpp.orig	2008-05-18 10:25:59.0 +0200
+++ krunner/startupid.cpp	2008-05-18 10:26:08.0 +0200
@@ -37,12 +37,15 @@
 #include X11/Xutil.h
 #include X11/Xatom.h
 #include X11/extensions/shape.h
+#include X11/Xcursor/Xcursor.h
 
 #define KDE_STARTUP_ICON kmenu
 
+/*
 #ifdef HAVE_XCURSOR
 #include X11/Xcursor/Xcursor.h
 #endif
+*/
 
 enum kde_startup_status_enum { StartupPre, StartupIn, StartupDone };
 static kde_startup_status_enum kde_startup_status = StartupPre;
@@ -320,9 +323,9 @@
 }
 QPoint c_pos( x, y );
 int cursor_size = 0;
-#ifdef HAVE_XCURSOR
+// #ifdef HAVE_XCURSOR
 cursor_size = XcursorGetDefaultSize( QX11Info::display());
-#endif
+// #endif
 int X_DIFF;
 if( cursor_size = 16 )
 X_DIFF = 8 + 7;


Bug#481112: pbuilder: no longer possible to specify PATH

2008-05-18 Thread sean finney
hi junichi,

On Sunday 18 May 2008 09:34:03 am Junichi Uekawa wrote:
 Oh, erm, yeah.  I don't think it's a good idea to request everyone to
 modify their /etc/profile inside chroot.  What would be a proper fix?
 I was thinking of dumping PATH and sourcing the PATH value inside
 chroot, but what else do I need to special-case?

 I'd like some input from ccache users.

that's the the only variable that i've seen with problems.  as i mentioned 
earlier setting other arbitrary variables works fine, so setting variables 
like CCACHE_UMASK CCACHE_DIR has no problem.  besides these variables and 
PATH, the only other things you need in a chroot is a bind mount of a ccache 
dir and ccache installed inside the chroot (both of which i've done via 
pbuilderrc)  therefore i don't think there's anything else that needs to be 
special cased.  PATH is special only because /etc/profile arbitrarily sets it 
without consideration to what it may already have been set.

So, if you have a way to get PATH set without needing to modify /etc/profile, 
i'm glad to hear it :)

sean


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


Bug#481689: should default to gksudo if root doesn't have a password

2008-05-18 Thread Jérémy Bobbio
On Sun, May 18, 2008 at 01:29:00AM +0200, Josselin Mouette wrote:
 Le samedi 17 mai 2008 à 18:26 -0400, Avery Fay a écrit :
  The latest snapshots of the debian installer allow root to have no 
  password (pure sudo system). Since gksu seems to default to su behavior 
  instead of sudo behavior, this breaks all of gnomes admin menu items. I 
  think gksu should check whether root has a password and if not it should 
  default to gksudo behavior.

Actually, this is not new at all.  Etch already fully supports
sudo-based system.

 In this case, I think the installer should globally set
 the /apps/gksu/sudo-mode GConf key.
 
 D-I team: which package is responsible for this? Fixing things this way
 should be quite simple.

When gksu is available in the target system at the end of the
installation (for example, by being installed by the desktop task),
it is properly configured to use sudo if no root password has been
entered.

See the user-setup-apply script in user-setup.

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


signature.asc
Description: Digital signature


Bug#481720: xserver-xorg-input-wacom: (EE) Failed to load module wacom (module does not exist, 0)

2008-05-18 Thread Ron

Aw CRAP.

Upstream seems to have an uncanny ability to regress this between
EVERY upload, no matter how many times I send patches that fix it.

I've bounced this back to the person who broke it again this time
to fix, in the meantime while we wait for that to happen, your best
shot at a workaround is to build it locally on a machine that has
a full working XOrg install.

The amd64 packages work, which I built and tested here, but probably
every arch that was built on the buildds will have suffered this
failure.

Sorry,
Ron


On Sun, May 18, 2008 at 09:30:43AM +0200, Dirk Griesbach wrote:
 Package: xserver-xorg-input-wacom
 Version: 0.8.0.2-1
 Severity: normal
 
 Hi,
 
 in this package the wacom xorg input driver is shipped as an ELF 32-bit
 LSB relocatable where it should be an ELF 32-bit LSB shared object to be
 loadable by xorg.
 
 With kind regards,
 Dirk
 
 -- 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/2 CPU cores)
 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 
 Versions of packages xserver-xorg-input-wacom depends on:
 ii  xserver-xorg-core  2:1.4.1~git20080507-1 Xorg X server - core server
 
 xserver-xorg-input-wacom recommends no packages.
 
 -- no debconf information
 
 
 



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



Bug#481642: libqt-perl: PerlQt-based applications refuse to start

2008-05-18 Thread Bart Martens
tags 481642 confirmed help
stop


The example perl progress.pl works with libqt-perl version 3.008-3 and
perl 5.8.  It does not work with libqt-perl version 3.008-3+b1 and perl
5.10.  0-day delay NMU to fix this bug is most welcome.



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


Bug#481604: daily armel (EABI) lenny on NSLU2

2008-05-18 Thread Martin Michlmayr
So I think we can close this bug report?
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#481398: /usr/bin/ssh-vulnkey: line number too, please

2008-05-18 Thread A Mennucc
Package: openssh-client
Version: 1:4.7p1-10
Followup-For: Bug #481398

it would also help a lot seeing the line number, 
for large files such as known_hosts and
authorized_keys

a.




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



Bug#481071: crashes freevo

2008-05-18 Thread A Mennucc
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hi

this bug crashes freevo on amd64 CPUs. This is why I added a blocks tag.

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

iD8DBQFIL+xU9B/tjjP8QKQRAtYQAJ49hTMh9YQUkBW2V/41cAbQWIhHtQCeKWfT
rm2bYlqHst7/gkzmUAMmWDM=
=XtET
-END PGP SIGNATURE-



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



Bug#481725: [git-svn] RA layer request failed: REPORT request failed on '/svn/!svn/vcc/default'

2008-05-18 Thread LI Daobing (李道兵)
Package: git-svn
Version: 1:1.5.5.1-1
Severity: normal

--- Please enter the report below this line. ---
how to reproduce:

$ rm -rf fqterm
$ git-svn clone -r HEAD http://fqterm.googlecode.com/svn/trunk fqterm
Initialized empty Git repository in .git/
A   cmake/FindQt4.cmake
A   VersionInfo
A   LICENSE
A   FQTermNSIS.nsi
A   INSTALL.txt
A   doc/RFC_lists.htm
...
A   src/terminal/internal/fqterm_telnet.cpp
RA layer request failed: REPORT request failed on '/svn/!svn/vcc/default': 
REPORT of '/svn/!svn/vcc/default': 200 OK (http://fqterm.googlecode.com) 
at /usr/bin/git-svn line 3833

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.25-1-amd64

Debian Release: lenny/sid
  500 unstable127.0.0.1 

--- Package information. ---
Depends (Version) | Installed
=-+-=
git-core   ( 1:1.5.5.1) | 1:1.5.5.1-1
git-core ( 1:1.5.5.1-.) | 1:1.5.5.1-1
libsvn-perl   | 1.4.6dfsg1-4
 OR libsvn-core-perl  | 
libwww-perl   | 5.812-1
libterm-readkey-perl  | 2.30-4




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



Bug#481144: open-vm-source does not compile: linux/autoconf.h not found

2008-05-18 Thread Lea Wiemann

Daniel Baumann wrote:

this is known old (broken) version of linux-kbuild. please, make sure
you have *current* sid by updating *all* packages and using *only* the
newest available packages.


Hi Daniel!  I have version 2.6.25-2 of linux-kbuild, linux-headers, and 
linux-image.  I tried booting into both 2.6.25-1 and 2.6.25-2, but under 
neither of them I could compile it successfully (the error message being 
the same).


Is there some way you could help me find out what's going wrong?  The 
error message is not very descriptive, so I guess it would be helpful to 
know at what point exactly things go wrong.


-- Lea



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



Bug#421359: #421359 patch submitted

2008-05-18 Thread Martin Michlmayr
* Marc Singer [EMAIL PROTECTED] [2008-05-17 18:27]:
 I'll upload a new version this weekend.

Thanks, that'd be great.  The base system is frozen alredy but I hope
we can get an exception for this APEX upload.  However, this means you
should make as few changes as possible.  Can you please make an upload
with only the patches for #451882 (ramdisk size) and #421359
(flash-apex script).  The other patch I've seen floating around sets
EABI for the Debian armeb and armel config.  This one might be a good
diea too (but please note that src/mach-ixp42x/debian-nslu2-armel_config
is a symlink to debian-nslu2-arm_config; so you'd have to remove the
symlink first, copy the file and then make the EABI change).

Thanks a lot for your work.  Once this upload is done and (hopefully)
moved to lenny, Kevin Price has a couple of other changes.  I asked
him to file bug reports for these.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



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

2008-05-18 Thread Bart Samwel
Hi Lea,

Lea Wiemann wrote:
 /etc/acpi/*/90-hdparm.sh sets the APM mode to 254 or 128 (-B 128 / -B
 254).  This fails in VMware guests, for both SCSI and IDE devices.  I
 suggest you apply the attached patch to 90-hdparm.sh, which prevents
 the APM mode from being set if Linux is running on a virtual machine.
 
 Also, there are 4 copies of 90-hdparm.sh in /etc/acpi:
 
 ac.d/90-hdparm.sh
 battery.d/90-hdparm.sh
 resume.d/90-hdparm.sh
 start.d/90-hdparm.sh
 
 I suggest you either apply the patch to all four, or you apply it to
 one of them and turn the other three scripts into symlinks.

Interesting. Could you do a hdparm -i on a VM's hard drive and show me
the results? The line:

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

is supposed to filter out hard drives that can't handle it. It might be
that VMWare's drives say they do AdvancedPM and then fail anyway if you
try it.

BTW, why are you running the acpi-support package on a VM? The
acpi-support package basically does suspend (which VMWare does very well
without OS support) and laptop hotkey translation, so either this is by
accident, or you have some special reason that I would definitely like
to know about.

It's a bit late to make the scripts symlinks now, so if I apply the
patch, they will need to be applied to all four. I think there was
originally a reason for not making them symlinks, I just can't remember
what that reason was. Maybe it was just that there is no script
repository directory in acpi-support, like there is for init scripts in
/etc/init.d/. I would have had to make a folder /etc/acpi/scripts.d. Too
much work at the time for just a single script, I guess. :-)

Cheers,
Bart



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



Bug#481726: ITP: libmath-calculus-expression-perl -- Algebraic Calculus Tools Expression Class

2008-05-18 Thread Deepak Tripathi
Package: wnpp
Severity: wishlist
Owner: Deepak Tripathi  [EMAIL PROTECTED]

* Package name : libmath-calculus-expression-perl
Version: 0.2.2
Upstream Author :Jonathan Worthington, [EMAIL PROTECTED]
* URL
:http://search.cpan.org/~jonathan/Math-Calculus-Expression-0.2.2/
* License  : Perl License
Programming Lang   : Perl
Description:Algebraic Calculus Tools Expression Class



-- 
Deepak Tripathi
E3 71V3 8Y C063 (We Live By Code)
http://deepkatripathi.blogspot.com


Bug#481230: mplayer 1.0~rc2-12 adds several seconds delay in stream

2008-05-18 Thread A Mennucc
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Marcos Daniel Marado Torres ha scritto:
 At least when watching TV via a TV capture card, mplayer 1.0~rc2-12 has
 a huge delay (more or less 5 seconds) in the stream. 

do you mean
1) delay between video and audio that mplayer is playing ,
or
2) delay between what is broadcast (by watching with a TV) and
   what mplayer is playing
?

if the answer is (1), can you correct it using the keys + and - ?

 This does not
 happen in less recent versions, like 1.0~rc2-8+lenny1 . 

does this change with the kernel as well

 If you want me
 to test some intermediate versions or something like that, just ask.

may you provide some more info,

- - the model of TV card and/or the kernel driver,
   and if it produces raw video or MPEG ?
- - the command line used for mplayer
- - /proc/cpuinfo

thanks for any info

a.

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

iD8DBQFIL/LI9B/tjjP8QKQRAk/PAJ0S4V1KENExbj/g/nx8I6qpAlD6CQCeJVUC
WRN9Pc1+CP3F2IkPBJgf638=
=EP5M
-END PGP SIGNATURE-



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



Bug#481144: open-vm-source does not compile: linux/autoconf.h not found

2008-05-18 Thread Daniel Baumann
Lea Wiemann wrote:
 Hi Daniel!  I have version 2.6.25-2 of linux-kbuild, linux-headers, and
 linux-image.  I tried booting into both 2.6.25-1 and 2.6.25-2, but under
 neither of them I could compile it successfully (the error message being
 the same).

linux-headers-2.6.25-2-686 (or whatever flavour your using): version
2.6.25-3
linux-kbuild-2.6.25: version 2.6.25-2
open-vm-source: version 2008.05.02-90473-1

m-a build -l 2.6.25-2-686 (or whatever flavour your using).

 Is there some way you could help me find out what's going wrong?

no, just install above versions (which are the *current* versions from
sid) and it works as expected.

 The
 error message is not very descriptive, so I guess it would be helpful to
 know at what point exactly things go wrong.

the error message shows that you're not using the current sid versions,
or that your system is fucked up in some other way.

attached is a build log of said versions.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/
dpatch  deapply-all  
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
rm -f build-stamp
rm -f config.guess config.sub
# Cleaning package
[ ! -f Makefile ] || /usr/bin/make distclean
make[1]: Entering directory `/usr/src/modules/open-vm'
/usr/bin/make -C modules/linux/vmblock clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmblock'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmblock'
/usr/bin/make -C modules/linux/vmhgfs clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
/usr/bin/make -C modules/linux/vmmemctl clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
/usr/bin/make -C modules/linux/vmsync clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmsync'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmsync'
/usr/bin/make -C modules/linux/vmxnet clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmxnet'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmxnet'
make[1]: Leaving directory `/usr/src/modules/open-vm'
rm -rf user
dh_clean
/usr/bin/make  KERNELDIR=/lib/modules/2.6.25-2-686/build clean
make[1]: Entering directory `/usr/src/modules/open-vm'
/usr/bin/make -C modules/linux/vmblock clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmblock'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmblock'
/usr/bin/make -C modules/linux/vmhgfs clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
/usr/bin/make -C modules/linux/vmmemctl clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
/usr/bin/make -C modules/linux/vmsync clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmsync'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmsync'
/usr/bin/make -C modules/linux/vmxnet clean
make[2]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmxnet'
rm -rf 
make[2]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmxnet'
make[1]: Leaving directory `/usr/src/modules/open-vm'
/usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
make[1]: Entering directory `/usr/src/modules/open-vm'
dpatch  deapply-all  
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
rm -f build-stamp
rm -f config.guess config.sub
# Cleaning package
[ ! -f Makefile ] || /usr/bin/make distclean
make[2]: Entering directory `/usr/src/modules/open-vm'
/usr/bin/make -C modules/linux/vmblock clean
Using 2.6.x kernel build system.
make[3]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmblock'
rm -rf 
make[3]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmblock'
/usr/bin/make -C modules/linux/vmhgfs clean
Using 2.6.x kernel build system.
make[3]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
rm -rf 
make[3]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
/usr/bin/make -C modules/linux/vmmemctl clean
Using 2.6.x kernel build system.
make[3]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
rm -rf 
make[3]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmmemctl'
/usr/bin/make -C modules/linux/vmsync clean
Using 2.6.x kernel build system.
make[3]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmsync'
rm -rf 
make[3]: Leaving directory 

Bug#471476: Shouldn't pass rtc-x1205.probe=0,0x6f to the kernel

2008-05-18 Thread Martin Michlmayr
* Martin Michlmayr [EMAIL PROTECTED] [2008-03-18 14:05]:
 I get the following when I boot lenny on my NSLU2:
 
  Kernel command line: console=ttyS0,115200 rtc-x1205.probe=0,0x6f noirqdebug
  Unknown boot option `rtc-x1205.probe=0,0x6f': ignoring
 
 Passing this parameter is no longer needed since this is now directly
 done from the NSLU2 platform code.  Please remove it from the
 NSLU2/Debian config.

I just tried again with 2.6.24 and without the rtc-x1205.probe=0,0x6f
parameter, the kernel _cannot_ see RTC.  I'm not sure what has changed
again, but please do not remove this parameter.  This needs more
investigation.

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#448979: usplash: starts too late in the shutdown sequence

2008-05-18 Thread Petter Reinholdtsen

tags 448979 + patch
thanks

[David Härdeman]
 Would it perhaps be an idea to move the usplash startup to the
 usplash init.d script as it's stop action? Then the usplash init.d
 link could be moved from /etc/rc[06].d/K01usplash to
 /etc/rc[06].d/K02usplash (since gdm is at prio K01)?

I believe this is the correct approach to get usplash started on
systems without gdm and kdm installed.  Here is a patch to make sure
usplash is started during shutdown when the init.d script is executed.
With dependency based boot sequencing usplash is started very early in
the shutdown sequence, and this is sufficient to solve the issue.

This patch uses the new splash API presented to sysvinit, and rewrites
how the kernel arguments are parsed to make sure it is handled the
same way as in sendsigs.

diff -ur usplash-0.5.19/debian/usplash.init 
usplash-0.5.19-pere/debian/usplash.init
--- usplash-0.5.19/debian/usplash.init  2008-05-18 11:02:39.0 +0200
+++ usplash-0.5.19-pere/debian/usplash.init 2008-05-18 11:08:40.0 
+0200
@@ -32,6 +32,8 @@
 
 test -x $DAEMON || exit 0
 
+. /lib/init/splash-functions
+
 set -e
 
 usplash_quit() {
@@ -85,8 +87,20 @@
usplash_quit
;;
   stop)
-   if grep -q splash /proc/cmdline; then
-   usplash_write TIMEOUT 15
+   SPLASH=false
+   if [ -f /proc/cmdline ] ; then
+   for x in $(cat /proc/cmdline); do
+   case $x in
+   splash*)
+   SPLASH=true
+   ;;
+   esac
+   done
+   fi
+
+   if [ $SPLASH = true ] ; then
+   splash_start
+   splash_stop_indefinite
fi
;;
   *)

Please test this patch and let me know if it work.

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#466477: SSLv2 ldap servers

2008-05-18 Thread Nikos Mavrogiannopoulos
 $ gnutls-cli-debug -p 636 bluepages.ibm.com
 Resolving 'bluepages.ibm.com'...
 Connecting to '9.17.186.253:636'...
 Checking for TLS 1.1 support... no
(1)

 Checking fallback from TLS 1.1 to... failed
(2)

By the output of 1,2 I'd say that this server does not support 1.1 and
fails to fallback to a valid TLS version. Thus if TLS 1.1 and later are
disabled the server should be able to work.


regards,
Nikos





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



Bug#481731: abook.map detected as lost when lauching icedove.

2008-05-18 Thread jean-michel
Package: icedove
Version: 1.5.0.13+1.5.0.15b.dfsg1-0etch1
Severity: normal


When starting icedove, a dilog box tell that abook.mab is unreadable, so
renamed and an empty new one created.

This might be related to 
non available disk space when sending mail, during the previous session.

Now I have 2 files:
abook.mab  abook.mab.bak 

abook.mab  contains contactscreated since today
abook.mab.bak  contains some lines of texte (might be 20), but no email
adress.

Note: I have clasified this as grave due to data loss.
But data loss might be classified as critical?

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

Versions of packages icedove depends on:
ii  debconf [debconf-2.0]  1.5.11etch1   Debian configuration management sy
ii  libatk1.0-01.12.4-3  The ATK accessibility toolkit
ii  libc6  2.3.6.ds1-13etch4 GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgcc11:4.1.1-21GCC support library
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-7  The GTK+ graphical user interface 
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  myspell-en-us [myspell 1:2.0.4~rc1-3 English_american dictionary for my
ii  myspell-es [myspell-di 1.9-8 Spanish dictionary for myspell
ii  myspell-fr-gut [myspel 1:1.0-18  The French dictionary for myspell 
ii  zlib1g 1:1.2.3-13compression library - runtime

icedove recommends no packages.

-- debconf information:
* icedove/browser: GNOME



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



Bug#481732: FTBFS: /home/ice/SRC/cvsroot/xsidplay2/trunk/xsidplay/configure: No such file or directory

2008-05-18 Thread Riku Voipio
Package: xsidplay
Version: 2.0.2-2
Severity: serious

On Sun, May 18, 2008 at 05:57:06AM +0300, Build Daemon wrote:
 Automatic build of xsidplay_2.0.2-2 on all6500-2 by sbuild/armel 0.56

 Toolchain package versions: libc6-dev_2.7-10 linux-libc-dev_2.6.25-1 
 gcc-4.3_4.3.0-4 g++-4.3_4.3.0-4 binutils_2.18.1~cvs20080103-4 
 libstdc++6-4.3-dev_4.3.0-4 libstdc++6_4.3.0-4
  /usr/bin/fakeroot debian/rules clean
 dh_testroot
 dh_testdir debian/rules src
 rm -f build-stamp
 [ ! -f Makefile ] || /usr/bin/make distclean
 make[1]: Entering directory `/build/buildd/xsidplay-2.0.2'
 /bin/sh ./config.status --recheck
 running CONFIG_SHELL=/bin/sh /bin/sh 
 /home/ice/SRC/cvsroot/xsidplay2/trunk/xsidplay/configure  --enable-debug=full 
 --with-sidplay2 --with-sidbuilders=/usr/local/ CFLAGS=-O0 -g3  --no-create 
 --no-recursion
 /bin/sh: /home/ice/SRC/cvsroot/xsidplay2/trunk/xsidplay/configure: No such 
 file or directory
 make[1]: *** [config.status] Error 127
 make[1]: Leaving directory `/build/buildd/xsidplay-2.0.2'
 make: *** [clean] Error 2
 dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules clean gave error 
 exit status 2



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



Bug#481729: couchdb: couchdb cannot be started

2008-05-18 Thread Andreas J. Koenig
Package: couchdb
Version: 0.7.3~svn684-1
Severity: grave
I have all files in their default state. When I try to start couchdb it says:

  # couchdb   
  {init terminating in do_boot,{'cannot load',error_handler,get_file}}

  Crash dump was written to: erl_crash.dump
  init terminating in do_boot ()

The current directory does not contain an erl_crash.dump


Running it with strace -eopen I find:

open(/usr/lib/couchdb/erlang/lib/couch-0.7.3a684/ebin/error_handler.beam, 
O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open(/usr/lib/couchdb/erlang/lib/couch_inets-4.7.5/ebin/error_handler.beam, 
O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open(/usr/lib/erlang/lib/kernel-2.12.1/ebin/error_handler.beam, 
O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open(/usr/lib/erlang/lib/stdlib-1.15.1/ebin/error_handler.beam, 
O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)


What gives?


-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-k7 (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 couchdb depends on:
ii  adduser  3.105   add and remove users and groups
ii  erlang-base [erlang-abi- 1:12.b.2-dfsg-3 Concurrent, real-time, distributed
ii  erlang-nox   1:12.b.2-dfsg-3 Concurrent, real-time, distributed
ii  libc62.7-6   GNU C Library: Shared libraries
ii  libicu38 3.8.1-1 International Components for Unico
ii  lsb-base 3.2-11  Linux Standard Base 3.2 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types'  'mailcap

couchdb recommends no packages.

-- no debconf information

-- 
andreas



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



Bug#464625: please support OpenSSL-compatible ciphher nammes

2008-05-18 Thread Nikos Mavrogiannopoulos
 I think that both the openssl and the gnutls cipher name constructs are
 unnecessarily complex: there are maybe max 100 registered TLS
 ciphersuites.  A tiny portion of those are useful in normal situations.
 I think it would be simpler if the administrator simply specified
 exactly which TLS ciphersuite he wants, instead of trying to describe
 what ciphersuites he want using some complicated naming scheme.

The problem with direct ciphersuite setting, is that administrators
don't know what each ciphersuite does, offers or costs. Maybe they don't
even care. That's why I think that the new priority API should be used
for applications that want to provide configurable security levels such
as PERFORMANCE, NORMAL, SECURE128, SECURE256 and even set
individual ciphers if needed.

By forcing an administrator to learn what 100 TLS ciphersuites do, and
let him find the combinations he needs, it could have the negative
effect of having reduced security. If one doesn't know what ciphersuites
are he would just google and find a configuration that works no matter
if it is secure or not. Interface should be simple to use for non-TLS
experts.

For this reason I'd suggest to use and provide a reasonable default
(NORMAL, or HIGH and let others modify it).

The functions and syntax are discussed here:
http://www.gnu.org/software/gnutls/manual/html_node/Core-functions.html#gnutls_priority_init



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



Bug#315485:

2008-05-18 Thread Andy Shevchenko
There is a patchset for logjam with the desired fix.
http://www.smile.org.ua/~andy/prj/logjam/

-- 
With Best Regards,
Andy Shevchenko



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



Bug#481728: tuxguitar: Doesn't start

2008-05-18 Thread Christian Marillat
Package: tuxguitar
Version: 0.9.99~1.0rc4-1
Severity: grave
Justification: renders package unusable

Hi,

This version doesn't start at all :

$ tuxguitar 
Exception in thread main java.lang.NoClassDefFoundError:
org/eclipse/swt/widgets/Control
at org.herac.tuxguitar.gui.TGMain.main(Unknown Source)
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Control
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
... 1 more


Christian

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

Kernel: Linux 2.6.25 (SMP w/4 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 tuxguitar depends on:
ii  libitext-java 1.4.5-3Java Library to generate PDF on th
ii  libswt3.2-gtk-java3.2.2-5Fast and rich GUI toolkit for Java
ii  sun-java6-jre [java-virtual-m 6-06-1 Sun Java(TM) Runtime Environment (

Versions of packages tuxguitar recommends:
ii  iceweasel2.0.0.14-2  lightweight web browser based on M
ii  tuxguitar-alsa   0.9.99~1.0rc4-1 tuxguitar plugin for sound playbac
pn  tuxguitar-ossnone  (no description available)

-- no debconf information



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



Bug#481730: Remove failed database upgrades

2008-05-18 Thread Alberto

Package: clamav-freshclam
Version: 0.92.1~dfsg-1volatile2
Severity: normal

When for some reason the upgrade fails, it leaves a directory 
/var/lib/clamav/clamav-* with a size of several MBs.

This can be dangerous on small systems like av-proxies, with
limited disk resources.
I believe thet freshclam should delete them at each db upgrade.



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



Bug#452727: Unable to switch to a language if you don't have the locale installed

2008-05-18 Thread Mark de Wever
Mark de Wever wrote:
milio Pozuelo Monfort wrote:
Gerfried Fuchs wrote:
I've talked with upstream about this a while ago and we thought
about
   another approach: The languages that aren't enabled in the system
   will
   get greyed out and not selectable. This though needs a bit until it
   gets
   implemented.
  
  I look forward to see that!

 I added this in the upstream tracker[1] and assigned it to myself. It
 might take a while before I can fix it.

I just added experimental support for it, this is in the experimental
new widget toolkit which will be shipped with wesnoth-1.5.1. In order to
see the feature you'll have to start wesnoth with wesnoth --new-widgets.

Note this toolkit is _very_ experimental, please don't file bugs against
it since it's not finished yet. But it is the intention that at some
point in the future this toolkit will become the default.

Regards,
Mark de Wever
(Wesnoth developer)



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



Bug#481698: [debchange] multiple author entries better formatting

2008-05-18 Thread Sandro Tosi
Hi Mohammed,

On Sun, May 18, 2008 at 3:56 AM, Mohammed Adnène Trojette
[EMAIL PROTECTED] wrote:
 On Sun, May 18, 2008, Sandro Tosi wrote:
 Well, I think that dch should recognize that Author A has already a
 part of the changelog entry, and prompt right under it, like:
 [merging entries]

 Extract from dch(1):

 DEBCHANGE_MULTIMAINT_MERGE
  If set  to yes,  when adding  changes in  multiple-maintainer mode
  debchange  will  check whether  previous  changes  by the  current
  maintainer exist  and add  the new changes  to the  existing block
  rather than creating a new block. Default is no.

Great! that's exactly what I was looking for! I think it was added
since the last time I read the whole dch manpage ;)

Cheers,
Sandro

-- 
Sandro Tosi (aka morph, Morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#481727: fetchmail: Should create its user account with /bin/false as its shell

2008-05-18 Thread Francois Marier
Package: fetchmail
Version: 6.3.8-11
Severity: minor

The tiger security package reports a warning about the fetchmail user account:

  # Performing check of passwd files...
  NEW: --WARN-- [pass014w] Login (fetchmail) is disabled, but has a valid shell.

Setting the shell to /bin/false should at user creation time should fix this.

Francois



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



Bug#481736: Bogus upstream location in debian/copyright

2008-05-18 Thread Martin Michlmayr
Package: apex-nslu2
Version: 1.4.15

debian/copyright says:

| This program is written, maintained, and packaged for Debian by Marc
| Singer [EMAIL PROTECTED].  The upstream source may be found on this web
| site http://wiki.buici.com/ApexBootloader.

But I get: The requested URL /ApexBootloader was not found on this
server.

I guess this should be http://wiki.buici.com/wiki/Apex_Bootloader
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#481705: compiz-kde: kde-window-decorator crashes when using mouse wheel on window decoration crystal

2008-05-18 Thread Brice Goglin
reassign 481705 kwin-style-crystal
thank you


noother wrote:
 Package: compiz-kde
 Version: 0.6.3~git20080115.0ea58487-1
 Severity: normal

 kde-window-decorator crashes when I use the mouse wheel on the window 
 decoration Crystal installed by the package 
 kwin-style-crystal.
 The KDE Crash Handler Backtrace gives the following:
   

Given the backtrace, it doesn't look like a bug in Compiz, most of the
top backtrace comes from Kwin's Crystal theme. The same problem has been
reported to KDE's upstream at http://bugs.kde.org/show_bug.cgi?id=149179
but got closed because it's a third party software. I am reassign to
kwin-style-crystal

Brice


 (no debugging symbols found)
 (..)
 (no debugging symbols found)
 [Thread debugging using libthread_db enabled]
 [New Thread 0x7f674fc6e6f0 (LWP 23056)]
 (no debugging symbols found)
 (..)
 (no debugging symbols found)
 [KCrash handler]
 #5  0x7f674e1a2165 in raise () from /lib/libc.so.6
 #6  0x7f674e1a3610 in abort () from /lib/libc.so.6
 #7  0x7f674e1daedb in ?? () from /lib/libc.so.6
 #8  0x7f674e1dffad in ?? () from /lib/libc.so.6
 #9  0x7f674e1e1cb6 in free () from /lib/libc.so.6
 #10 0x7f674dda74d9 in XFree () from /usr/lib/libX11.so.6
 #11 0x7f67499da921 in CrystalClient::ClientWindows ()
from /usr/lib/kde3/kwin3_crystal.so
 #12 0x7f67499dad15 in CrystalClient::mouseWheelEvent ()
from /usr/lib/kde3/kwin3_crystal.so
 #13 0x7f67499de58f in CrystalClient::eventFilter ()
from /usr/lib/kde3/kwin3_crystal.so
 #14 0x7f674d22e972 in QObject::activate_filters ()
from /usr/lib/libqt-mt.so.3
 #15 0x7f674d22e9c7 in QObject::event () from /usr/lib/libqt-mt.so.3
 #16 0x7f674d25fdf3 in QWidget::event () from /usr/lib/libqt-mt.so.3
 #17 0x7f674d1d9953 in QApplication::internalNotify ()
from /usr/lib/libqt-mt.so.3
 #18 0x7f674d1dacd6 in QApplication::notify () from /usr/lib/libqt-mt.so.3
 #19 0x7f674f175ead in KApplication::notify ()
from /usr/lib/libkdecore.so.4
 #20 0x7f674d1768e1 in QETWidget::translateWheelEvent ()
from /usr/lib/libqt-mt.so.3
 #21 0x7f674d18201f in QETWidget::translateMouseEvent ()
from /usr/lib/libqt-mt.so.3
 #22 0x7f674d180b63 in QApplication::x11ProcessEvent ()
from /usr/lib/libqt-mt.so.3
 #23 0x0040eb17 in ?? ()
 #24 0x7f674d171a21 in ?? () from /usr/lib/libqt-mt.so.3
 #25 0x7f674d180190 in QApplication::x11ProcessEvent ()
from /usr/lib/libqt-mt.so.3
 #26 0x7f674d18fa59 in QEventLoop::processEvents ()
from /usr/lib/libqt-mt.so.3
 #27 0x7f674d1ee001 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3
 #28 0x7f674d1edeb2 in QEventLoop::exec () from /usr/lib/libqt-mt.so.3
 #29 0x0040cc31 in ?? ()
 #30 0x7f674e18f1c4 in __libc_start_main () from /lib/libc.so.6
 #31 0x0040bb59 in ?? ()
 #32 0x7fff57da08e8 in ?? ()
 #33 0x in ?? ()
   




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



Bug#421359: #421359 patch submitted

2008-05-18 Thread Martin Michlmayr
* Martin Michlmayr [EMAIL PROTECTED] [2008-05-18 11:15]:
 * Marc Singer [EMAIL PROTECTED] [2008-05-17 18:27]:
  I'll upload a new version this weekend.
 
 Thanks, that'd be great.  The base system is frozen alredy but I hope
 we can get an exception for this APEX upload.  However, this means you
 should make as few changes as possible.

Just to clarify, this also means that the upload should be 1.4.15 plus
those patches, not apex-1.5.13.  However, after the updated 1.4.15 is
in lenny, we should test 1.5.13 for the nslu2.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#353128: Maintainer

2008-05-18 Thread Noorul Islam
Hi,

Is this still require a maintainer?


Thanks
Noorul


Bug#396867: gnutls-bin: does not seem to properly handle rehandshake request

2008-05-18 Thread Nikos Mavrogiannopoulos
 I have one internal https server (running IIS on Windows Server 2003)
 which seems to request a rehandshake after the http request was
 transmitted. This seems to badly confuse gnutls-cli:

It is quite late for a reply but anyway.

It could be a server issue. A debug input from wireshark or tcpdump
might tell us what is happening.

There are three ways to reply to a rehandshake request.
1. ignore it
2. send a no renegotiation alert and continue normally
3. handshake

gnutls-cli currently does a new handshake.

However the fact that the server requests a renegotiation means that he
requires some additional credentials. This might be a certificate or
something like this.

Anyway without some additional input (output with -d 2, and/or tcpdump)
I don't think there is much we can do.

regards,
Nikos



 
 | $ gnutls-cli -p 443 a.b.c.d
 | Resolving 'a.b.c.d'...
 | Connecting to 'a.b.c.d:443'...
 | - Certificate type: X.509
 |  - Got a certificate list of 1 certificates.
 | 
 |  - Certificate[0] info:
 |  # The hostname in the certificate does NOT match 'a.b.c.d'.
 |  # valid since: Wed Jul 20 12:23:32 CEST 2005
 |  # expires at: Wed Sep  9 12:34:44 CEST 2009
 |  # fingerprint: 6B:22:44:F3:22:CC:BA:36:64:70:0F:C0:D5:CD:87:9E
 |  # Subject's DN:  
 C=DE,ST=BW,L=City,O=Site,OU=Site,CN=some.invalid.host.name.example
 |  # Issuer's DN: CN=unqualifiedname
 |
 |
 | - Peer's certificate issuer is unknown
 | - Peer's certificate is NOT trusted
 | - Version: TLS 1.0
 | - Key Exchange: RSA
 | - Cipher: ARCFOUR 128
 | - MAC: MD5
 | - Compression: NULL
 | - Handshake was completed
 |
 | - Simple Client Mode:
 |
 | GET / HTTP/1.0
 | 
 | *** Non fatal error: Rehandshake was requested by the peer.
 
 After this, nothing happens any more. Ctrl-C out.



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



Bug#419327: Maintainer

2008-05-18 Thread Noorul Islam
Hi,

Is this still require a maintainer?

Thanks
Noorul


Bug#481737: php5_5.2.6-1(sparc/unstable): FTBFS on sparc, SIGBUS while install-pear-installer

2008-05-18 Thread Martin Zobel-Helas
Package: php5
Version: 5.2.6-1
Severity: serious

There was an error while trying to autobuild your package, and actually 
i have now idea why.

I tried to build php5 on both sparc buildds, both stop at the same target. 

If you need php5 build-deps installed on spergers sid-chroot, contact me.
sperger.d.o is the same machine model as spontini, thus it should be
reproducable.

 Automatic build of php5_5.2.6-1 on lebrun by sbuild/sparc 98
 Build started at 20080518-1016

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: apache2-prefork-dev (= 2.0.53-3), autoconf, automake1.4, 
 bison, chrpath, debhelper (= 5), firebird2.0-dev [i386 amd64 powerpc sparc] 
 | firebird1.5-dev [i386 amd64] | firebird2-dev [i386 amd64], flex (= 2.5.4), 
 freetds-dev, libapr1-dev (= 1.2.7-8), libbz2-dev (= 1.0.0), 
 libc-client-dev, libcurl4-openssl-dev | libcurl-dev, libdb4.6-dev, 
 libexpat1-dev (= 1.95.2-2.1), libfreetype6-dev, libgcrypt11-dev, 
 libgd2-xpm-dev (= 2.0.28-3), libgmp3-dev, libjpeg62-dev, libkrb5-dev, 
 libldap2-dev, libmcrypt-dev, libmhash-dev (= 0.8.8), libmysqlclient15-dev, 
 libncurses5-dev, libpam0g-dev, libpcre3-dev (= 6.6), libpng12-dev, 
 libpq-dev, libpspell-dev, librecode-dev, libsasl2-dev, libsnmp-dev, 
 libsqlite0-dev, libssl-dev (= 0.9.6), libt1-dev, libtidy-dev, libtool (= 
 1.4.2-4), libwrap0-dev, libxmltok1-dev, libxml2-dev (= 2.4.14), libxslt1-dev 
 (= 1.0.18), quilt, re2c, unixodbc-dev, zlib1g-dev (= 1.0.9)

[...]

 make[1]: Leaving directory `/build/buildd/php5-5.2.6/cli-build'
 touch build-cli-stamp
 dh_testdir
 mkdir pear-build
 mkdir pear-build-download
 cd cgi-build  
 PHP_PEAR_DOWNLOAD_DIR=/build/buildd/php5-5.2.6/pear-build-download 
 /usr/bin/make install-pear PHP_PEAR_PHP_BIN=/usr/bin/php 
 PHP_PEAR_INSTALL_DIR=/usr/share/php PHP_PEAR_SYSCONF_DIR=/etc/pear 
 PHP_PEAR_SIG_BIN=/usr/bin/gpg INSTALL_ROOT=/build/buildd/php5-5.2.6/pear-build
 make[1]: Entering directory `/build/buildd/php5-5.2.6/cgi-build'
 Installing PEAR environment:  
 /build/buildd/php5-5.2.6/pear-build/usr/share/php/
 make[2]: Entering directory `/build/buildd/php5-5.2.6/cgi-build'
 make[2]: *** [install-pear-installer] Bus error
 make[2]: Leaving directory `/build/buildd/php5-5.2.6/cgi-build'
 make[1]: *** [install-pear] Error 2
 make[1]: Leaving directory `/build/buildd/php5-5.2.6/cgi-build'
 make: *** [build-pear-stamp] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2

A full build log can be found at:
http://buildd.debian.org/fetch.cgi?pkg=php5ver=5.2.6-1arch=sparcstamp=1211104383file=log
or
http://buildd.debian.org/fetch.cgi?pkg=php5ver=5.2.6-1arch=sparcstamp=1211070033file=log



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



Bug#474294: Moreinfo: Bug#474294: RFH: Chrony goes into endless loop on x86_64

2008-05-18 Thread Peter Pöschl
[I removed [EMAIL PROTECTED] from CC to avoid bounces due to not being 
subscribed]

On Sa Mai 3 2008, John Hasler wrote:
 Please test this patch to ntp_core.c on a pristine upstream 1.23:


 --- ../pristine/chrony-1.23/ntp_core.c  2008-05-02 22:14:21.0 -0500

It seems that these timevals do not always end up in offset_time. A

  $ grep offset_time *.c

reveals that offset_time is set (all other occurences of offset_time are 
either reads or modifications through UTI_* functions) in exactly one place:

  line [EMAIL PROTECTED], within SST_DoNewRegression

Inspection of the surrounding code shows that the assignment depends on 
condition 'regression_ok'.

There is no assignment in the else block at line 489. I confirmed with the 
debugger that this spot is reached before any reads/modifications take place, 
so this would be one place to put a fix. I have no idea what would be a good 
replacement value.
Looking at the places calling SST_DoNewRegression and others it seems possible 
that enough samples can be dropped that regression_ok becomes false after it 
has been true before. In that case inst-sample_times[inst-n_samples - 1] 
might be better than {0, 0} if n_samples  0. 

The canonical place to initialize offset_time = {0, 0} would be 
SST_CreateInstance.


Best regards,

  Peter Pöschl





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



Bug#481733: build-depends on nonexistent libdb2-dev

2008-05-18 Thread Riku Voipio
Package: sendmail
Version: 8.14.3-2
Severity: serious

Libdb2-dev does no longer exists in debian..

 Automatic build of sendmail_8.14.3-2 on ALL6500 by sbuild/armel 0.56

 Build-Depends: make ( 3.79.1-14), m4, cdbs, patchutils, dh-buildinfo, 
 debhelper (= 5), linux-libc-dev (= 2.6.21-3) [!kfreebsd-i386 
 !kfreebsd-amd64 !hurd-i386], groff, bsdmainutils, libdb2-dev, libldap2-dev, 
 libwrap0-dev, liblockfile-dev, libsasl2-dev, libssl-dev

 libdb2-dev: missing

 Package libdb2-dev is not available, but is referred to by another package.
 This may mean that the package is missing, has been obsoleted, or
 is only available from another source
 E: Package libdb2-dev has no installation candidate
 apt-get failed.
 Package installation failed



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



Bug#481735: bugs.debian.org: Can't change bug categorisation

2008-05-18 Thread Mark Brown
Package: bugs.debian.org
Severity: important

If I view http://bugs.debian.org/[EMAIL PROTECTED], select Options
then change Categorise bugs by to staus and severity and select
Reload page then a page is displayed saying:

   An error occurred. Dammit. Error was: You have to choose something to
   select by.

at the generated URL:

   
http://bugs.debian.org/cgi-bin/pkgreport.cgi?archive=0;maint=broonie%40debian.org;repeatmerged=1

Severity important since this has a major effect on the usability of the
BTS for me - I find the categorisation based on tags obscures things.

-- 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.20.3-bytemark-uml-2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)



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



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

2008-05-18 Thread Marc GASNOT

Package: xserver-xorg-video-savage
Version: 1:2.1.3-5
Severity: important



-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 sep 30  2007 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1674940 avr 29 20:37 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: S3 Inc. SuperSavage IX/C SDR (rev 05)

/etc/X11/xorg.conf unchanged from checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 4837 mai 15 00:02 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
FontPath/usr/share/fonts/X11/misc
#FontPath   /usr/X11R6/lib/X11/fonts/misc
FontPath/usr/share/fonts/X11/cyrillic
#FontPath   /usr/X11R6/lib/X11/fonts/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
#FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
#FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
#FontPath   /usr/X11R6/lib/X11/fonts/Type1
FontPath/usr/share/fonts/X11/100dpi
#FontPath   /usr/X11R6/lib/X11/fonts/100dpi
FontPath/usr/share/fonts/X11/75dpi
#FontPath   /usr/X11R6/lib/X11/fonts/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
#   Loaddbe
#Load   GLcore
Loadi2c
Loadbitmap
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
#Load   type1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRulesxorg
Option  XkbModelpc105
Option  XkbLayout   fr
Option  XkbVariant  latin9
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device  /dev/input/mice
Option  ProtocolImPS/2
Option  Emulate3Buttons true
EndSection

#Section InputDevice
#   Identifier  Synaptics Touchpad
#   Driver  synaptics
#   Option  SendCoreEvents  true
#   Option  Device  /dev/psaux
#   Option  Protocolauto-dev
#   Option  HorizScrollDelta0
#EndSection

Section Device
Identifier  S3 Inc. SuperSavage IX/C SDR
Driver  savage
BusID   PCI:1:0:0
#   Option  HWCursoron  # default on
#	Option		SWCursor	off		# default off (Cette option invalide la 
prcdente)

#   Option  NoAccel false   # default false 
(true Dsactive le DRI)
#	Option		AccelMethod	EXA		# default slower but more stable XAA 
(XAA, EXA)

#   Option  ShadowFBoff # default off (on Dsactive 
le DRI)
#   Option  CrtOnly off # default auto (force 
l'cran externe)
#   Option  UseBIOS on  # default on
#	Option		ShadowStatus	on		# default slowest stable on with DRI, 
fastest off with no DRI

#   Option  DisableCOB  off # default off (on Dsactive 
le DRI)
Option  AGPMode 4   # default 1 (1, 2, 4)
Option  AGPSize 16  # default 16 (4, 8, 16, 32, 
64, 128 and 256)
#   Option  DmaMode None# default Any (Any, 
Command, Vertex, None)
#   Option  DmaType AGP # (AGP, PCI)
#	Option		BusType	AGP		# default AGP for AGP cards. Choosing PCI 
disable AGP aperture.

#   Option  DRI on  # default on
#   Option  XAANoOffscreenPixmaps true  # Pour AIGLX
EndSection

Section Monitor
Identifier  ThinkPad Flat Panel
Option  DPMS
HorizSync   28-51   

Bug#481734: gringotts: Should have a proper placement in the KDE menu

2008-05-18 Thread Torquil Macdonald Sørensen
Package: gringotts
Version: 1.2.10~pre1-2
Severity: normal

Gringotts is placed in the Lost  Found KDE submenu. Maybe it could be
placed in the Utilities - PIM submenu instead.

IMHO, the best thing would be if the KDE menu was replaced by the Debian
menu, but that is another discussion...

Best regards,
Torquil Sørensen

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

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

Versions of packages gringotts depends on:
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-2The Cairo 2D vector graphics libra
ii  libglib2.0-0  2.16.3-2   The GLib library of C routines
ii  libgringotts2 1.2.1-12   gringotts data encapsulation and e
ii  libgtk2.0-0   2.12.9-4   The GTK+ graphical user interface 
ii  libpango1.0-0 1.20.2-2   Layout and rendering of internatio
ii  libpopt0  1.10-3 lib for parsing cmdline parameters

gringotts recommends no packages.

-- no debconf information



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



Bug#481132: [Pkg-gnutls-maint] Bug#481132: libgnutls26: flags key usage error where OpenSSL does not

2008-05-18 Thread Nikos Mavrogiannopoulos
 I've figured out what the problem is.  If I don't disable kEDH in
 sendmail's config, it fails, but if I do disable it, it works.
 My IMAP server also has kEDH disabled, and so it also works.
 
 Apparently OpenSSL doesn't try to use kEDH, and so it doesn't fail.
 GnuTLS should implement the same behavior; if a certificate doesn't
 support digitalSignature, then GnuTLS shouldn't try to use it in that
 way.  RSA key exchange is fine for what I need.

This cannot be done due to how SSL/TLS is designed. The certificate is
provided after the ciphersuite is negotiated, thus the client cannot do
anything in this issue. The server seems to be misconfigured to accept
the DHE* ciphersuites even if his certificate does not support it.

Gnutls servers shouldn't do this so if the server is based on gnutls
please report it as a bug.

regards,
Nikos




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



Bug#481714: git-import-orig: Fails importing when new version matches current version

2008-05-18 Thread Guido Günther
On Sun, May 18, 2008 at 02:01:45AM -0400, Andres Mejia wrote:
 I think an option to disable performing the 'dch' operation in 
 git-import-orig 
 would be good. Maybe this error should be turned into a warning instead, as 
 updating the changelog is not critical.
See --no-dch
 -- Guido



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



Bug#481738: dballe_4.0.1-1(sparc/unstable): FTBFS on sparc, 'memcmp' was not declared in this scope

2008-05-18 Thread Martin Zobel-Helas
Package: dballe
Version: 4.0.1-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of dballe_4.0.1-1 on lebrun by sbuild/sparc 98
 Build started at 20080518-1155

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: cdbs (= 0.4.43), debhelper ( 4.1), dh-buildinfo, doxygen, 
 libtut-dev, unixodbc-dev, gperf, gfortran | g77, libpopt-dev, libcnf-dev, 
 swig, texlive-base, texlive-latex-base, texlive-latex-extra, 
 texlive-latex-recommended, gs, python-all-dev (= 2.3.5-11), python-central 
 (= 0.5.6), python-docutils

[...]

 tests/bufr_encoder.cc: In function 'bool tut::memfind(_dba_rawmsg*, const 
 char*, size_t)':
 tests/bufr_encoder.cc:45: warning: comparison between signed and unsigned 
 integer expressions
 tests/bufr_encoder.cc:46: error: 'memcmp' was not declared in this scope
 tests/bufr_encoder.cc: In member function 'void 
 tut::test_objectData::test() [with int n = 1, Data = 
 tut::bufr_encoder_shar]':
 tests/bufr_encoder.cc:117: error: 'memcmp' was not declared in this scope
 make[4]: *** [tests/bufr_encoder.o] Error 1
 make[4]: Leaving directory `/build/buildd/dballe-4.0.1/dballe/bufrex'
 make[3]: *** [check-am] Error 2
 make[3]: Leaving directory `/build/buildd/dballe-4.0.1/dballe/bufrex'
 make[2]: *** [check-recursive] Error 1
 make[2]: Leaving directory `/build/buildd/dballe-4.0.1/dballe'
 make[1]: *** [check-recursive] Error 1
 make[1]: Leaving directory `/build/buildd/dballe-4.0.1'
 make: *** [debian/stamp-makefile-check] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2

A full build log can be found at:
http://buildd.debian.org/build.php?arch=sparcpkg=dballever=4.0.1-1




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



Bug#481740: inkscape: Printing as bitmap does not respect DPI setting

2008-05-18 Thread Michael Deegan
Package: inkscape
Version: 0.46-1
Severity: important

It looks like 0.46's new printing dialog is broken in that it now
completely ignores the DPI setting and so always prints at 72dpi. Thus many
documents (eg. those containing features that don't render correctly using
the vector backend (such as clipped objects; see #329075)) aren't able to
be usefully printed at all.

(Of course, it wouldn't be such a problem if it were possible to influence
the DPI of images in exported PDF/XCF documents...)

Example SVG attached (the linked image file isn't included, but any
1280x960 image should do). Desired result: printing results in a page
showing only the 'Hello, world' text and 'i' in the Debian logo, at better
than 72dpi. At the very least, printing to PDF with different DPI settings
should result in files of different sizes...

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

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

Versions of packages inkscape depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
hi  libc6   2.7-6GNU C Library: Shared libraries
ii  libcairo2   1.6.4-1+b1   The Cairo 2D vector graphics libra
ii  libcairomm-1.0-11.4.6-1  C++ wrappers for Cairo (shared lib
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgc1c21:6.8-1.1conservative garbage collector for
ii  libgcc1 1:4.3.0-3GCC support library
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libglib2.0-02.16.1-2 The GLib library of C routines
ii  libglibmm-2.4-1c2a  2.16.0-1 C++ wrapper for the GLib toolkit (
ii  libgnomevfs2-0  1:2.22.0-2   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.9-2 The GTK+ graphical user interface 
ii  libgtkmm-2.4-1c2a   1:2.12.5-2   C++ wrappers for GTK+ 2.4 (shared 
ii  libgtkspell02.0.10-4 a spell-checking addon for GTK's T
ii  liblcms11.16-8   Color management library
ii  libmagick++10   7:6.3.7.9.dfsg1-2+b1 C++ API to the ImageMagick library
ii  libmagick10 7:6.3.7.9.dfsg1-2image manipulation library
ii  libpango1.0-0   1.20.2-2 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libpoppler-glib20.6.4-1  PDF rendering library (GLib-based 
ii  libpoppler2 0.6.4-1  PDF rendering library
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsigc++-2.0-0c2a  2.0.18-2 type-safe Signal Framework for C++
ii  libssl0.9.8 0.9.8g-8 SSL shared libraries
ii  libstdc++6  4.3.0-3  The GNU Standard C++ Library v3
ii  libwpd8c2a  0.8.14-1 Library for handling WordPerfect d
ii  libwpg-0.1-10.1.2-1  WordPerfect graphics import/conver
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxml2 2.6.31.dfsg-2GNOME XML library
ii  libxslt1.1  1.1.22-1 XSLT processing library - runtime 
ii  zlib1g  1:1.2.3.3.dfsg-11compression library - runtime

Versions of packages inkscape recommends:
ii  imagemagick7:6.3.7.9.dfsg1-2 image manipulation programs
pn  libwmf-bin none(no description available)
ii  perlmagick 7:6.3.7.9.dfsg1-2 Perl interface to the libMagick gr
pn  pstoedit   none(no description available)

-- no debconf information

-MD

-- 
---
Michael Deegan   Hugaholic  http://wibble.darktech.org/gallery/
- Nyy Tybel Gb Gur Ulcabgbnq! -
attachment: hello-world.svg

Bug#481728: debian : tuxguitar needs swt3.3 (Re: Bug#481728: tuxguitar: Doesn't start)

2008-05-18 Thread Philippe Coval

Christian Marillat wrote:

Package: tuxguitar
Version: 0.9.99~1.0rc4-1
Severity: grave
Justification: renders package unusable

Hi,

This version doesn't start at all :

$ tuxguitar 
Exception in thread main java.lang.NoClassDefFoundError:

org/eclipse/swt/widgets/Control
at org.herac.tuxguitar.gui.TGMain.main(Unknown Source)

  


Tags: confirmed pending


Hi,
bug is confirmed,
It seems that's RC4 rely on swt3.3 now
I think I'll update it on next release

workaround is :
 sudo aptitude install tuxguitar libswt-cairo-gtk-3.3 
libswt-gtk-3.3-java  libswt-gtk-3.3-jni




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




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



Bug#481742: iceweasel: flash does not work under non-root account

2008-05-18 Thread zsuzsi
Package: iceweasel
Version: 2.0.0.14-2
Severity: normal

flash does not work under non-root account

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

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

Versions of packages iceweasel depends on:
ii  debianutils2.28.6Miscellaneous utilities specific t
ii  fontconfig 2.5.0-2   generic font configuration library
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-11GNU C Library: Shared libraries
ii  libcairo2  1.6.4-2   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.0-4 GCC support library
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libgtk2.0-02.12.9-4  The GTK+ graphical user interface 
ii  libhunspell-1.2-0  1.2.2-2   spell checker and morphological an
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libnspr4-0d4.7.1-1   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.0~rc3-1  Network Security Service libraries
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libstdc++6 4.3.0-4   The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxft22.1.12-2  FreeType-based font drawing librar
ii  libxinerama1   2:1.0.3-1 X11 Xinerama extension library
ii  libxp6 1:1.0.0.xsf1-1X Printing Extension (Xprint) clie
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  procps 1:3.2.7-8 /proc file system utilities
ii  psmisc 22.6-1Utilities that use the proc filesy
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

iceweasel recommends no packages.

-- no debconf information



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



Bug#481741: [INTL:nl] Updated Dutch po-debconf translation

2008-05-18 Thread cobaco (aka Bart Cornelis)
Package: tzdata
Severity: wishlist
Tags: patch l10n

Please find attached the updated dutch po-debconf translation. Please add 
it to your next package revision, it should replace the current 
debian/po/nl.po in your package tree, TIA.

Feel free to mail me if this file needs updating at some future date.
-- 
cobaco (aka Bart Cornelis)



nl.po
Description: application/gettext


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


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

2008-05-18 Thread Brice Goglin
Marc GASNOT wrote:
 I'm not sure this bug is really transparency related, but text layer
 like fps display in xscreensaver's opengl modules aren't visible. I've
 seen something similar on one or two games with invisible text stats
 layer, but i don't remember their names.

 Modyfing xorg's display depth to 24 bits, deactivating agp by setting
 BusType to PCI or trying exa (very buggy) doesn't make any difference.
 The only case that makes it works is deactivating DRI...

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

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

Brice




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



Bug#427697: Is sbackup maintained? If not, what to do?

2008-05-18 Thread Charles Plessy
Le Sun, May 18, 2008 at 10:25:19AM +0200, Jose Carlos Garcia Sogo a écrit :
 sbackup has been merged and superseded by nssbackup, which is not yet
 in Debian. I will see if I can get a version properly suited to be
 packaged in Debian, and I will ask sbackup to be removed from archive.

Hi Jose,

very good news!

Do you plan to package nssbackup for Lenny? If not, it would mean that
the serious bug would still be around for a few years...

What is the group used by nssbackup ? If necessary, we could patch
sbackup to use the same, or at worse revert its behaviour to the pre-bug
situation (root:root I think).

Have a nice day,

-- 
Charles



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



Bug#414827: improved magics for Windows EXE files

2008-05-18 Thread Martin Koeppe


Hi,

sorry, I overlooked your message.

The attached license file doesn't seem to apply to the attached 
magic file; rather, it mentions the file program.


I'm not a lawyer, I only thought that the magic file is part of the 
file program, and the file program package is responsible for 
maintaining the magic file. But anyway, if you now think the changes 
could be made, I welcome that of course.


Also, you've attached what looks like an entire monolithic magic 
file. For the purposes of this bug, we're only interested in the 
Windows PE-specific bits; could you pull those out, please?


I have already written in my original bug report, in which lines I'm 
mostly interested in, and these are the lines I included in my version 
of file for the Debian/Interix port, see:

http://www.debian-interix.net/
http://www.debian-interix.net/debian-interix/pool/unreleased35/main/f/file/
and there the *.interdiff.gz file.

I have attached the whole magic file for reference, but I think only 
lines 11 - 104 are interesting for a possible inclusion in file's 
magic.


Thanks for picking up this issue again.

Martin



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



Bug#481744: [INTL:gl] Galician debconf template translation for facturalux

2008-05-18 Thread Jacobo Tarrio
Package: facturalux
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of facturalux's debconf templates
# This file is distributed under the same license as the facturalux package.
# Jacobo Tarrio [EMAIL PROTECTED], 2008.
#
msgid 
msgstr 
Project-Id-Version: facturalux\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-10-07 15:04+0200\n
PO-Revision-Date: 2008-05-18 12:02+0100\n
Last-Translator: Jacobo Tarrio [EMAIL PROTECTED]\n
Language-Team: Galician [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../facturalux.templates:1001
msgid Drop database?
msgstr ¿Eliminar a base de datos?

#. Type: boolean
#. Description
#: ../facturalux.templates:1001
msgid 
You have asked to `purge' this package. You can select whether to delete the 
database called \facturalux\ or leave it untouched. The database may 
contain valuable information if you have been working with facturalux.
msgstr 
Solicitou \purgar\ este paquete. Pode escoller se quere borrar a base de 
datos chamada \facturalux\ ou deixala intacta. A base de datos pode conter 
información valiosa se estivo a traballar con facturalux.

#. Type: boolean
#. Description
#: ../facturalux.templates:1001
msgid 
If you accept here, the database \facturalux\ will be dropped from the 
system.
msgstr 
Se acepta esta opción, hase eliminar a base de datos \facturalux\ do 
sistema.

#. Type: boolean
#. Description
#: ../facturalux.templates:1001
msgid 
If you refuse here, the database will remain in your system. You'll have to 
remove them manually.
msgstr 
Se non a acepta, a base de datos ha permanecer no sistema. Ha ter que 
eliminala manualmente.

#. Type: boolean
#. Description
#: ../facturalux.templates:1001
msgid Don't accept unless you know what you are doing.
msgstr Non a acepte a menos que saiba o que está a facer.


Bug#481749: xscreensaver-data: Some .desktop files missing for included hacks

2008-05-18 Thread Jose Ramon Alvarez Sanchez
Package: xscreensaver-data
Version: 5.05-1
Severity: normal


The included hacks abstractile, cwaves, m6502 and popsquares do not
have the corresponding .desktop files as the rest of hacks.

But it is strange that package gnome-screensaver 2.22.2-1
includes /usr/share/applications/screensavers/popsquares.desktop 
which is not a screensaver .destop file and it is very similar to file
/usr/share/app-install/desktop/popsquares.desktop from package
app-install-data 0.4.20071030.

Also those hacks above, together with xlyap, are not mentioned in the
description field list of hacks for xscreensaver-data.


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

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

Versions of packages xscreensaver-data depends on:
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libglib2.0-02.16.3-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.9-3 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxmu6 2:1.0.4-1X11 miscellaneous utility library
ii  libxpm4 1:3.5.7-1X11 pixmap library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library

xscreensaver-data recommends no packages.

-- no debconf information



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



Bug#448979: usplash: starts too late in the shutdown sequence

2008-05-18 Thread Petter Reinholdtsen
[maximilian attems]
 aboves is wrong we assume usplash is running unless nosplash is
 given (yes the script is currently wrong too, there is another bug
 report on that).

I'm not sure I parse this correctly.  Do you mean that usplash should
be enabled when its package is installed, unless 'nosplash' is used as
a kernel argument?  I did not try to do that in my patch, as I was not
aware that this was the intended behaviour. :)

I hope a fix for this issue will make it to Lenny, as it make the
shutdown sequence in Debian Edu a lot better. :)

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#479653: It works here

2008-05-18 Thread Eugen Dedu

Hi,

My 2 cents: have you executed m-a commands as written in 
/usr/share/doc/linux-uvc-source/README.Debian?


Greetings,
--
Eugen Dedu



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



Bug#481676: openssh: [INTL:de] updated German debconf translation

2008-05-18 Thread Colin Watson
tags 481676 pending
thanks

On Sat, May 17, 2008 at 11:10:18PM +0200, Helge Kreutzmann wrote:
 Please find the updated German debconf translation for openssh
 attached.

Committed, thanks.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#448979: usplash: starts too late in the shutdown sequence

2008-05-18 Thread maximilian attems
On Sun, 18 May 2008, Petter Reinholdtsen wrote:

 
 tags 448979 + patch
 thanks
 
 [David Härdeman]
  Would it perhaps be an idea to move the usplash startup to the
  usplash init.d script as it's stop action? Then the usplash init.d
  link could be moved from /etc/rc[06].d/K01usplash to
  /etc/rc[06].d/K02usplash (since gdm is at prio K01)?
 
 I believe this is the correct approach to get usplash started on
 systems without gdm and kdm installed.  Here is a patch to make sure
 usplash is started during shutdown when the init.d script is executed.
 With dependency based boot sequencing usplash is started very early in
 the shutdown sequence, and this is sufficient to solve the issue.
 
 This patch uses the new splash API presented to sysvinit, and rewrites
 how the kernel arguments are parsed to make sure it is handled the
 same way as in sendsigs.

thanks just a quick review.
 
 diff -ur usplash-0.5.19/debian/usplash.init 
 usplash-0.5.19-pere/debian/usplash.init
 --- usplash-0.5.19/debian/usplash.init2008-05-18 11:02:39.0 
 +0200
 +++ usplash-0.5.19-pere/debian/usplash.init   2008-05-18 11:08:40.0 
 +0200
 @@ -32,6 +32,8 @@
  
  test -x $DAEMON || exit 0
  
 +. /lib/init/splash-functions
 +
  set -e
  
  usplash_quit() {
 @@ -85,8 +87,20 @@
   usplash_quit
   ;;
stop)
 - if grep -q splash /proc/cmdline; then
 - usplash_write TIMEOUT 15
 + SPLASH=false
 + if [ -f /proc/cmdline ] ; then
 + for x in $(cat /proc/cmdline); do
 + case $x in
 + splash*)
 + SPLASH=true
 + ;;
 + esac
 + done
 + fi
 +
 + if [ $SPLASH = true ] ; then
 + splash_start
 + splash_stop_indefinite
   fi
   ;;
*)

aboves is wrong we assume usplash is running unless nosplash is
given (yes the script is currently wrong too, there is another
bug report on that).
 
happy weekend

-- 
maks



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



Bug#481747: [INTL:gl] Galician debconf template translation for xfonts-wqy

2008-05-18 Thread Jacobo Tarrio
Package: xfonts-wqy
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of xfonts-wqy's debconf templates
# This file is distributed under the same license as the xfonts-wqy package.
# Jacobo Tarrio [EMAIL PROTECTED], 2008.
#
msgid 
msgstr 
Project-Id-Version: xfonts-wqy\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-07-15 01:12+0100\n
PO-Revision-Date: 2008-05-18 12:11+0100\n
Last-Translator: Jacobo Tarrio [EMAIL PROTECTED]\n
Language-Team: Galician [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Enable WenQuanYi font in fontconfig?
msgstr ¿Activar o tipo WenQuanYi en fontconfig?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
By default, bitmapped fonts are disabled in fontconfig setting because they 
are often lower quality. Enabling this option will bypass the system wide 
fontconfig setting and allow applications to use WenQuanYi font without 
affecting other bitmapped fonts.
msgstr 
Por defecto, os tipos de letra de bitmap están desactivados na configuración 
de fontconfig porque adoitan ser de baixa calidade. Activar esta opción ha 
facer que a configuración global de fontconfig se ignore para permitir que 
as aplicacións empreguen o tipo WenQuanYi sen afectar a outros tipos de 
letra de bitmap.


Bug#481743: dragging windows between tabs does not work as expected

2008-05-18 Thread martin f krafft
Package: fluxbox
Version: 1.0.0+deb1-6
Severity: minor
Tags: upstream

Create three windows and drag one onto another to create a window
with two tabs. Now drag one of the tabs onto the third window. You'd
expect that tab to be moved to the other window, but instead, both
tabs get moved to the other window, creating a single window with
three tabs.

-- 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.24-1+scoflowctrl.1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fluxbox depends on:
ii  libc6   2.7-11   GNU C Library: Shared libraries
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libgcc1 1:4.3.0-4GCC support library
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libimlib2   1.4.0-1  powerful image loading and renderi
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.3.0-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama12:1.0.3-1X11 Xinerama extension library
ii  libxpm4 1:3.5.7-1X11 pixmap library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  menu2.1.38   generates programs menu for all me

fluxbox recommends no packages.

-- no debconf information


-- 
 .''`.   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


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


Bug#481745: libxcb: sloppy locking needs to be on by default

2008-05-18 Thread Julien Cristau
Package: libxcb
Version: 1.1-1
Severity: important

I believe sloppy locking should be turned on by default.  There are
still some apps which are broken by this, and which are unlikely to get
fixed.  The ones that could have probably been fixed by now anyway.
Fedora ships with
http://cvs.fedoraproject.org/viewcvs/devel/libxcb/libxcb-1.1-sloppy-lock.patch?rev=1.1view=auto
and Ubuntu has
http://patches.ubuntu.com/libx/libxcb/extracted/100_sloppy_lock.diff

I don't care which one is chosen, but I'd like to update the libx11
package for lenny and I don't think I can do that with sloppy locking
off.

Cheers,
Julien



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



Bug#481746: [INTL:gl] Galician debconf template translation for hylafax

2008-05-18 Thread Jacobo Tarrio
Package: hylafax
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of hylafax's debconf templates
# This file is distributed under the same license as the hylafax package.
# Jacobo Tarrio [EMAIL PROTECTED], 2008.
#
msgid 
msgstr 
Project-Id-Version: hylafax\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2008-04-10 04:31+0200\n
PO-Revision-Date: 2008-05-18 12:07+0100\n
Last-Translator: Jacobo Tarrio [EMAIL PROTECTED]\n
Language-Team: Galician [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../hylafax-server.templates:1001
msgid Start the HylaFAX daemon now?
msgstr ¿Iniciar agora o servizo HylaFAX?

#. Type: boolean
#. Description
#: ../hylafax-server.templates:1001
msgid 
Hylafax is already configured and may be started now. If you specify to 
start it later manually, remember to change the value of RUN_HYLAFAX in /etc/
default/hylafax.
msgstr 
Hylafax xa está configurado e pódese iniciar agora. Se indica que quere 
inicialo manualmente máis tarde, lembre cambiar o valor de RUN_HYLAFAX en /
etc/default/hylafax.

#. Type: error
#. Description
#: ../hylafax-server.templates:2001
msgid Hylafax setup failed
msgstr A configuración de hylafax fallou

#. Type: error
#. Description
#: ../hylafax-server.templates:2001
msgid 
While installing hylafax a script called 'faxsetup' failed. This can be 
caused by many reasons and cannot be fixed automatically so the hylafax-
server package is now unconfigured. Please fix the problem, run 'faxsetup -
server' as root and reconfigure hylafax-server manually.
msgstr 
Mentres se instalaba hylafax, un script chamado \faxsetup\ fallou. Isto 
pode estar causado por varios motivos, e non se pode arranxar 
automaticamente, así que o paquete hylafax-server está sen configurar. 
Arranxe o problema, execute \faxsetup -server\ coma administrador e 
reconfigure hylafax-server manualmente.


Bug#481751: [INTL:gl] Galician debconf template translation for beep

2008-05-18 Thread Jacobo Tarrio
Package: beep
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of beep's debconf templates
# This file is distributed under the same license as the beep package.
# Jacobo Tarrio [EMAIL PROTECTED], 2008.
#
msgid 
msgstr 
Project-Id-Version: beep\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-02-20 23:46+0100\n
PO-Revision-Date: 2008-05-18 12:37+0100\n
Last-Translator: Jacobo Tarrio [EMAIL PROTECTED]\n
Language-Team: Galician [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#: ../templates:1001
msgid 
suid root for all, suid root with only group audio executable, not suid at 
all
msgstr 
suid root para todos, suid root só executable para o grupo audio, non suid 
en absoluto

#. Type: select
#. Description
#: ../templates:1002
msgid Install beep as:
msgstr Instalar beep coma:

#. Type: select
#. Description
#: ../templates:1002
msgid 
beep must be run as root since it needs to access the speaker hardware. 
There are several posibilities to make the program usable:  Either only for 
root (no suid bit at all), executable only by users of the group audio, or 
usable for all.
msgstr 
Débese executar \beep\ coma administrador, xa que precisa de acceder ao 
hardware do altoparlante. Hai varias posibilidade para facer o programa 
utilizable: só para o administrador (sen bit suid en absoluto), executable 
só polos usuarios do grupo \audio\, ou utilizable por todos.

#. Type: select
#. Description
#: ../templates:1002
msgid 
Since each program set as suid root can be a security risk this is not done 
by default.  However, the program is quite small (~150 lines of code), so it 
is fairly easy to verify the safety of the code yourself, if you don't trust 
my judgement.
msgstr 
Xa que os programas \suid root\ poden ser riscos de seguridade, isto non 
se fai por defecto. Nembargantes, o programa é bastante pequeno (unhas 150 
liñas de código), así que é bastante doado verificar vostede mesmo a 
seguridade do código, se non confía no xuízo do mantedor do paquete.


Bug#481604: daily armel (EABI) lenny on NSLU2

2008-05-18 Thread Per Olofsson
Martin Michlmayr:
 So I think we can close this bug report?

Sure. Closing.

-- 
Pelle



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



Bug#245793: UTF-8 support is planned by upstream

2008-05-18 Thread Marcin Owsiany
Upstream are now considering adding UTF-8 support to ekg sometime in the
future. Consequently, I have removed the wontfix tag from this bug.

Please do not take this as a promise for UTF-8 support, and certainly
not as a promise for UTF-8 support *soon*.

Also, there are several workarounds to have ekg work properly in a UTF-8
terminal. I'm listing them here as it may be useful to people who are
interested in this bugreport:
   - screen, one time: Ctrl-A, colon, encoding iso8859-2 utf-8, ENTER, Ctrl-L
   - screen, permanently: add 'bind i encoding iso8859-2 utf-8' to ~/.screenrc 
and activate using: Ctrl-A i
   - luit (the following will work with bash): LANG=pl_PL luit ekg

-- 
Marcin Owsiany [EMAIL PROTECTED] http://marcin.owsiany.pl/
GnuPG: 1024D/60F41216  FE67 DA2D 0ACA FC5E 3F75  D6F6 3A0D 8AA0 60F4 1216



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



Bug#481750: [INTL:gl] Galician debconf template translation for console-cyrillic

2008-05-18 Thread Jacobo Tarrio
Package: console-cyrillic
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of console-cyrillic's debconf templates
# This file is distributed under the same license as the console-cyrillic 
package.
# Jacobo Tarrio [EMAIL PROTECTED], 2008.
#
msgid 
msgstr 
Project-Id-Version: console-cyrillic\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2008-03-18 04:30+0100\n
PO-Revision-Date: 2008-05-18 12:31+0100\n
Last-Translator: Jacobo Tarrio [EMAIL PROTECTED]\n
Language-Team: Galician [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Do you want to setup Cyrillic on the console at boot-time?
msgstr ¿Quere configurar o alfabeto cirílico na consola no inicio do sistema?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
If you accept, the package console-cyrilic will setup Cyrillic on the 
console at boot-time.
msgstr 
Se acepta esta opción, o paquete console-cyrillic ha configurar o alfabeto 
cirílico na consola no inicio do sistema.

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
Otherwise, refuse if you don't use Cyrillic the whole time or if for some 
reason you want to use the console setup by console-data package.
msgstr 
Se non, rexéitea se non emprega o alfabeto cirílico todo o tempo ou se, por 
algún motivo, quere empregar a consola tal como a configurou o paquete 
console-data.

#. Type: note
#. Description
#: ../templates:2001
msgid Your /etc/console-cyrillic file will be preserved unchanged.
msgstr Hase conservar o ficheiro /etc/console-cyrillic sen cambios.

#. Type: note
#. Description
#: ../templates:2001
msgid 
You have requested Debconf not to change the configuration file /etc/console-
cyrillic.  The new version of this file will be written in /etc/console-
cyrillic.debconf instead.  Note that this file is not read by console-
cyrillic and will have no effect.
msgstr 
Solicitou que Debconf non cambie o ficheiro de configuración /etc/console-
cyrillic. A nova versión do ficheiro hase gravar en /etc/console-cyrillic.
debconf no seu canto. Teña en conta que console-cyrillic non ha ler este 
ficheiro, polo que non ha ter efecto.

#. Type: string
#. Description
#: ../templates:4001
msgid What virtual consoles do you use?
msgstr ¿Que consolas virtuais emprega?

#. Type: string
#. Description
#: ../templates:4001
msgid 
Please enter a space delimited list of virtual consoles you use. The usual 
Unix filename wildcards are allowed (*, ? and [...]).
msgstr 
Introduza unha lista de consolas virtuales que emprega, separadas por 
espazos. Admítense os comodíns de nomes de ficheiros habituais de Unix (*, ? 
e [...]).

#. Type: string
#. Description
#: ../templates:4001
msgid 
If you are unsure, then use the default /dev/tty[1-6], it is for six virtual 
consoles. If you use devfs, then enter /dev/vc/[1-6] instead.
msgstr 
Se non está seguro, empregue o valor por defecto, \/dev/tty[1-6]\, que 
serve para seis consolas virtuais. Se emprega devfs, introduza /dev/vc/[1-
6] .

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Unicode Normal
msgstr Terminus Unicode Normal

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Unicode Bold
msgstr Terminus Unicode Bold

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Unicode Framebuffer
msgstr Terminus Unicode Framebuffer

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Normal
msgstr Terminus Slavic Normal

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Bold
msgstr Terminus Slavic Bold

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Framebuffer
msgstr Terminus Slavic Framebuffer

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Normal
msgstr Terminus Asian Normal

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Bold
msgstr Terminus Asian Bold

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Framebuffer
msgstr Terminus Asian Framebuffer

#. Type: select
#. Choices
#: ../templates:5001
msgid UniCyr
msgstr UniCyr

#. Type: select
#. Choices
#: ../templates:5001
msgid DOS
msgstr DOS

#. Type: select
#. Choices
#: ../templates:5001
msgid Alt
msgstr Alt

#. Type: select
#. Choices
#: ../templates:5001
msgid Pln
msgstr Pln

#. Type: select
#. Choices
#: ../templates:5001
msgid Antiq
msgstr Antiq

#. Type: select
#. Choices
#: ../templates:5001
msgid Antiq Asian
msgstr Antiq Asian

#. Type: select
#. Choices
#: ../templates:5001
msgid Sans
msgstr Sans

#. Type: select
#. Choices
#: ../templates:5001
msgid Lenta
msgstr Lenta

#. Type: select
#. Choices
#: ../templates:5001
msgid Cage
msgstr Cage

#. Type: select
#. Choices
#: ../templates:5001
msgid Thin
msgstr Thin

#. Type: select
#. Choices
#: ../templates:5001
msgid Sarge
msgstr Sarge

#. Type: select
#. Choices
#: ../templates:5001
msgid A
msgstr A

#. Type: select
#. 

Bug#481720: xserver-xorg-input-wacom: (EE) Failed to load module wacom (module does not exist, 0)

2008-05-18 Thread Magnus Vigerlöf
Hi,

This is the patch for this issue I'll push for inclusion to the next release. 
If there's a possibility to test this outside my system I'd appreciated it.

I'm sorry for not doing it right the first time.


[PATCH] Fix configure misses when compiling on an incomplete installation.

Use the argument to --with-xmoduledir before the default
module installation directories, also remove all additional
checks on the --enable-dlloader option so it can be forced.

  /Magnus V
From 0d1b722597e9dc56c2cf12f621c545f0c3717d04 Mon Sep 17 00:00:00 2001
From: =?utf-8?q?Magnus=20Vigerl=C3=B6f?= [EMAIL PROTECTED]
Date: Sun, 18 May 2008 13:37:07 +0200
Subject: [PATCH] Fix configure misses when compiling on an incomplete installation.

Use the argument to --with-xmoduledir before the default
module installation directories, also remove all additional
checks on the --enable-dlloader option so it can be forced.
---
 configure.in |   13 +++--
 1 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/configure.in b/configure.in
index af9ac0e..7978dda 100644
--- a/configure.in
+++ b/configure.in
@@ -837,12 +837,12 @@ WCM_MODDIR=
 AC_ARG_WITH(xmoduledir,
 	AC_HELP_STRING([--with-xmoduledir], [Specify wacom_drv path explicitly.  Implies --enable-dlloader]),
 	WCM_MODDIR=$withval)
-if test -d $WCM_XLIB_DIR/xorg/modules/input; then
+if test -n $WCM_MODDIR; then
+	:
+elif test -d $WCM_XLIB_DIR/xorg/modules/input; then
 	WCM_MODDIR=$WCM_XLIB_DIR/xorg/modules/input
 elif test -d $WCM_XLIB_DIR/modules/input; then
 	WCM_MODDIR=$WCM_XLIB_DIR/modules/input
-elif -z $WCM_MODDIR; then
-	WCM_OPTION_DLLOADER=no
 fi
 AC_MSG_RESULT($WCM_MODDIR)
 
@@ -852,13 +852,6 @@ AC_MSG_CHECKING(for dynamic driver loading support)
 AC_ARG_ENABLE(dlloader,
 	AC_HELP_STRING([--enable-dlloader], [Use dlloader  [[default=usually]]]),
 	WCM_OPTION_DLLOADER=$enableval)
-if test $WCM_OPTION_DLLOADER = yes; then
-	if test -f $WCM_MODDIR/evdev_drv.so -o -f $WCM_MODDIR/kbd_drv.so -o -f $WCM_MODDIR/mouse_drv.so; then
-		WCM_OPTION_DLLOADER=yes
-	else
-		WCM_OPTION_DLLOADER=no
-	fi
-fi
 AC_MSG_RESULT($WCM_OPTION_DLLOADER)
 AM_CONDITIONAL(WCM_DLLOADER, test $WCM_OPTION_DLLOADER == yes)
 
-- 
1.5.2.5



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


Bug#481753: mirror submission for ftp.halifax.rwth-aachen.de

2008-05-18 Thread FTP-Admins
Package: mirrors
Severity: wishlist

Submission-Type: new
Site: ftp.halifax.rwth-aachen.de
Type: leaf
Archive-architecture: amd64 i386 
Archive-ftp: /debian/
Archive-http: /debian/
Archive-rsync: debian/
IPv6: no
Archive-upstream: ftp2.de.debian.org
Updates: twice
Maintainer: FTP-Admins [EMAIL PROTECTED]
Country: DE Germany
Location: Aachen, Germany
Sponsor: RWTH Aachen http://www.rz.rwth-aachen.de
Comment: This mirror is maintained by students (in contrast to the Sunsite in 
the RWTH network). Connectivity is (at least) 1 GBit/sec, the whole university 
has (at least) 10 GBit/sec outbound connectivity.



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



Bug#481752: Cannot install on a custom kernel

2008-05-18 Thread Jonny Lamb
Package: gspca-source
Version: 01.00.20-1
Severity: grave
Justification: Makes package uninstallable

Hi,

I just tried installing the gspca kernel module using module-assistant. I use
a custom kernel, downloaded straight from kernel.org, compiled and
installed myself, and because the kernel module package *depends* on a
kernel, the package installation fails for me:

dpkg -Ei /usr/src/gspca-modules-2.6.24.2_01.00.20-1_i386.deb 
Selecting previously deselected package gspca-modules-2.6.24.2.
(Reading database ... 178712 files and directories currently installed.)
Unpacking gspca-modules-2.6.24.2 (from 
.../gspca-modules-2.6.24.2_01.00.20-1_i386.deb) ...
dpkg: dependency problems prevent configuration of gspca-modules-2.6.24.2:
 gspca-modules-2.6.24.2 depends on linux-image-2.6.24.2 | 
kernel-image-2.6.24.2; however:
  Package linux-image-2.6.24.2 is not installed.
  Package kernel-image-2.6.24.2 is not installed.
dpkg: error processing gspca-modules-2.6.24.2 (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 gspca-modules-2.6.24.2

I had a quick look at other packages that provide -source packages (for
example rt2500), and it looks like the kernel packages should be recommended, 
not
depended on. I include a patch to fix this below:

diff -Nruad -Nruad gspca-01.00.20.orig/debian/control.modules.in 
gspca-01.00.20/debian/control.modules.in
--- gspca-01.00.20.orig/debian/control.modules.in  2008-05-18 
12:36:49.0 +0100
+++ gspca-01.00.20/debian/control.modules.in   2008-05-18 
12:37:44.0 +0100
@@ -7,7 +7,7 @@
 
 Package: gspca-modules-_KVERS_
 Architecture: any
-Depends: linux-image-_KVERS_ | kernel-image-_KVERS_
+Recommends: linux-image-_KVERS_ | kernel-image-_KVERS_
 Provides: gspca-modules
 Conflicts: spca5xx-modules-_KVERS_
 Description: gspca modules for Linux (kernel _KVERS_)

Kind regards,

-- 
Jonny Lamb, UK   [EMAIL PROTECTED]
http://jonnylamb.com GPG: 0x2E039402


signature.asc
Description: Digital signature


Bug#478255: Unfuzzy step has not (yet) been done

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

Helge Kreutzmann schrieb:
 found 478255 1.2-5
 thanks
 
 Now, in *this case only(!)* do the following:
 Remove the following lines from each debian/po file:
 #, fuzzy
 #| msgid 
 #| shroudBNC needs a first user with administrative rights. Enter here the 
 #| login name for your administrator.
 
 

The fuzzy line is only located in the templates.pot and I think it
shouldn't be removed from this file, or not?

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

E-Mail: [EMAIL PROTECTED]

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

iD8DBQFIMBip2XA5inpabMcRAkGoAJ9XIJmDKptIEKb6rDjraLoADiPM6wCdG7yQ
sytTtwJkIFCKrs0bYZVDBGQ=
=omTY
-END PGP SIGNATURE-



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



Bug#478255: Unfuzzy step has not (yet) been done

2008-05-18 Thread Helge Kreutzmann
Hello Patrick,
On Sun, May 18, 2008 at 01:53:13PM +0200, Patrick Matthäi wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Helge Kreutzmann schrieb:
  found 478255 1.2-5
  thanks
  
  Now, in *this case only(!)* do the following:
  Remove the following lines from each debian/po file:
  #, fuzzy
  #| msgid 
  #| shroudBNC needs a first user with administrative rights. Enter here the 
  
  #| login name for your administrator.
  
  
 
 The fuzzy line is only located in the templates.pot and I think it
 shouldn't be removed from this file, or not?

I downloaded the latest version in the archives (1.2-5) and ran 
for i in *.po; do echo -n $i: ; msgfmt -c -o /dev/null --statistics $i; done
in debian/po. This gives:
eu.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
fi.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
fr.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
gl.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
pt.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
ru.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.
vi.po: 11 übersetzte Meldungen, 1 ungenaue Übersetzung.

Exactly the one fuzzy string.

I never look at .pot files

Greetings

  Helge

-- 
  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#481755: Still a problem with a remotre MySQL server

2008-05-18 Thread Henk van de Kamer

Package: libdspam7-drv-mysql
Version: 3.6.8-5etch1
Severity: important


In http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388140 a patch was 
proposed to solve the problem with a remote MySQL server. In 
3.6.8-5etch1 the script has become more complex and introduced the

problem again, although with a different message:

ve45:/etc/cron.daily# ./libdspam7-drv-mysql
ERROR 1046 (3D000) at line 5: No database selected


The reason is that in the newer script the $MYSQL_DB in the above
proposed patch has disappeared in the second case. The following patch
corrects that:


ve45:/etc/cron.daily# diff -u libdspam7-drv-mysql.old libdspam7-drv-mysql
--- libdspam7-drv-mysql.old 2008-05-18 13:46:26.0 +0200
+++ libdspam7-drv-mysql 2008-05-18 13:47:33.0 +0200
@@ -28,9 +28,9 @@
 else
 if echo $MYSQL_HOST | grep ^/  /dev/null 21 ; then
 # Assume it is a socket:
-/usr/bin/mysql --defaults-extra-file=$MYSQLCONF_PASSWD
--socket=$MYSQL_HOST --user=$MYSQL_USER  $PURGE
+/usr/bin/mysql --defaults-extra-file=$MYSQLCONF_PASSWD
--socket=$MYSQL_HOST --user=$MYSQL_USER $MYSQL_DB  $PURGE
 else
-/usr/bin/mysql --defaults-extra-file=$MYSQLCONF_PASSWD
--host=$MYSQL_HOST --user=$MYSQL_USER  $PURGE
+/usr/bin/mysql --defaults-extra-file=$MYSQLCONF_PASSWD
--host=$MYSQL_HOST --user=$MYSQL_USER $MYSQL_DB  $PURGE
 fi
 fi



--

Henk van de Kamer
http://www.vandekamer.com/




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



Bug#481756: ITP: libmath-calculus-differentiate-perl -- Algebraic Differentiation Engine

2008-05-18 Thread Deepak Tripathi
Package: wnpp
Severity: wishlist
Owner: Deepak Tripathi [EMAIL PROTECTED]


* Package name: libmath-calculus-differentiate-perl
  Version : 0.3 
  Upstream Author : Jonathan Worthington, [EMAIL PROTECTED] 
* URL : 
http://search.cpan.org/~jonathan/Math-Calculus-Differentiate-0.3/ 
* License : Perl License 
  Programming Lang: Perl
  Description : Algebraic Differentiation Engine

This module can take an algebraic expression, parse it into a tree
   structure, modify the tree to give a representation of the
   differentiated function, simplify the tree and turn the tree back into
   an output of the same form as the input.

It supports differentiation of expressions including the +, -, *, /
   and ^ (raise to power) operators, bracketed expressions to enable
   correct precedence and the functions ln, exp, sin, cos, tan, sec,
   cosec, cot, sinh, cosh, tanh, sech, cosech, coth, asin, acos, atan,
   asinh, acosh and atanh.


-- 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.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
Thanks  Regards,
Deepak Tripathi(DK)| GPG: 0xB9B0C9F2 | IRC: deepak
deepaktripathi.blogspot.com

E3 71V3 8Y C063 (We Live By Code)
--











signature.asc
Description: Digital signature


Bug#481722: sbnc: Errors in German Debconf translation

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

Helge Kreutzmann schrieb:
 Package: sbnc
 Version: 1.2-5
 Severity: normal
 Tags: patch l10n
 
 Hello,
 while checking for #478255 I noticed that the German translation is
 inconsistent with the guidelines set up in debian-l10n-german (e.g.
 consequent usage of Sie instead of Du, agreed terms on
 wiki.debian.org/Wortliste) and is also missing a header line. The
 attached patch fixes all issues I noticed. It also includes the fix
 for #478255.
 
 If you have any question about my patch do not hesitate to ask. I also
 would welcome you to request a proofread on debian-l10n-german (where
 also general questions regarding German localization can be directed
 to).
 
 It would be great if you could include this patch before your final
 upload targetted for Lenny.
 
 Thanks!
 

Hello,

thanks for your patch first. :)
I think your one wasn't created with the de.po of the actual package, or
not? It was very fuzzy and some hunks have been failed.
I rediffed it and also solve an little typo.
Could you please review it before I submit it to subversion, it is
attached to this email.


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

E-Mail: [EMAIL PROTECTED]

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

iD8DBQFIMBgB2XA5inpabMcRAr5iAJ9TvHlPYwFcl7I63b7qNuSJN3xbYgCfQwil
EWe+Y2DjVXjq1b4MWOZETdc=
=1Mv+
-END PGP SIGNATURE-
Index: de.po
===
--- de.po	(Revision 55)
+++ de.po	(Arbeitskopie)
@@ -6,11 +6,12 @@
 
 msgid 
 msgstr 
-Project-Id-Version: 1.2\n
+Project-Id-Version: sbnc 1.2-5\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
 POT-Creation-Date: 2008-04-13 22:34+0100\n
-PO-Revision-Date: 2008-04-13 22:34+0100\n
+PO-Revision-Date: 2008-05-18 09:43+0200\n
 Last-Translator: Patrick Matthäi [EMAIL PROTECTED]\n
+Language-Team: de [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -19,7 +20,7 @@
 #. Description
 #: ../sbnc.templates:1001
 msgid Autostart shroudBNC on server boot?
-msgstr shroudBNC beim Starten automatisch starten?
+msgstr shroudBNC beim Server-Hochfahren automatisch starten?
 
 #. Type: boolean
 #. Description
@@ -32,7 +33,7 @@
 #. Description
 #: ../sbnc.templates:2001
 msgid IP on which shroudBNC should listen for connections:
-msgstr IP auf der shroudBNC nach neuen Verbindungen suchen soll:
+msgstr IP auf der shroudBNC auf neue Verbindungen warten soll:
 
 #. Type: string
 #. Description
@@ -49,14 +50,14 @@
 msgid 
 If you choose 0.0.0.0 as address, shroudBNC will listen on all interfaces.
 msgstr 
-Wenn du 0.0.0.0 als Adresse auswählst wird shroudBNC auf allen Interfaces 
-nach Verbindungen suchen.
+Falls Sie 0.0.0.0 als Adresse auswählen, wird shroudBNC auf allen Schnittstellen 
+auf Verbindungen warten.
 
 #. Type: string
 #. Description
 #: ../sbnc.templates:3001
 msgid TCP/IP port for shroudBNC:
-msgstr TCP/IP Port für shroudBNC:
+msgstr TCP/IP-Port für shroudBNC:
 
 #. Type: integer
 #. Description
@@ -78,7 +79,7 @@
 #. Description
 #: ../sbnc.templates:4001
 msgid Username for the first administrative user:
-msgstr Benutzername für den administrativen Benutzer:
+msgstr Benutzername für den ersten administrativen Benutzer:
 
 #. Type: string
 #. Description
@@ -93,7 +94,7 @@
 #. Description
 #: ../sbnc.templates:5001
 msgid Password to set for the first user:
-msgstr Passwort für den neuen Benutzer:
+msgstr Passwort für den ersten Benutzer:
 
 #. Type: password
 #. Description


sbnc_1.2-5_de.po.diff.sig
Description: Binary data


Bug#481754: no option for specifying syslog facility

2008-05-18 Thread dean gaudet
Package: fail2ban
Version: 0.8.2-3

fail2ban 0.6 supported a syslog-facility config option which controlled 
the facility for syslog messages... 0.8.2-3 does not support this.  i had 
to edit /usr/share/fail2ban/server/server.py in order to change LOG_DAEMON 
to LOG_AUTH.

-dean



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



Bug#481722: sbnc: Errors in German Debconf translation

2008-05-18 Thread Helge Kreutzmann
Hello Patrick,
On Sun, May 18, 2008 at 01:50:26PM +0200, Patrick Matthäi wrote:
 Helge Kreutzmann schrieb:
  Package: sbnc
  Version: 1.2-5
  Severity: normal
  Tags: patch l10n
  
 Hello,
 
 thanks for your patch first. :)

No problem.

 I think your one wasn't created with the de.po of the actual package, or
 not? It was very fuzzy and some hunks have been failed.

I used the de.po from your latest package in the archive, i.e. 1.2-5.
It perfectly applies cleanly on it. Do you have pending updates in a
different repository, perhaps?

 I rediffed it and also solve an little typo.
 Could you please review it before I submit it to subversion, it is
 attached to this email.

Could you kindly provide the actual de.po file (or a link to it) so
that I can simply go through it once more (including context)?

Thanks!

Greetings

  Helge

P.S. I just noticed that I forgot to use -u when creating the diff,
 sorry!
-- 
  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#481164: python-django: Security updates for all Django versions

2008-05-18 Thread Nico Golde
retitle 481164 python-django: CVE-2008-2302 cross-site scripting vulnerability
thanks

Hi,
CVE-2008-2302 was assigned to this. Please mention this CVE 
id in your changelog when closing this bug.

I also doubt that this issue is important enough to justify 
a DSA, however please contact the stable security team to 
verify this.

Kind regards
Nico
-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpSf8ISmgXjW.pgp
Description: PGP signature


Bug#481758: xfs: Please build with syslog support

2008-05-18 Thread Sven Joachim
Package: xfs
Version: 1:1.0.6-1
Severity: wishlist
Tags: patch

Following the recent discussion in #50859, I hereby request that xfs
should be compiled with syslog support.  This is achieved by #defining
USE_SYSLOG, you probably want to do add -DUSE_SYSLOG to CFLAGS or
CPPFLAGS.  Here is a patch for the latter:

--8---cut here---start-8---
diff --git a/debian/rules b/debian/rules
index 750f5ed..ab2c6b2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,6 +22,7 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
 endif
 
+CPPFLAGS = -DUSE_SYSLOG
 DEB_HOST_ARCH  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
@@ -42,7 +43,8 @@ build-stamp:
../configure --prefix=/usr --mandir=\$${prefix}/share/man \
 --infodir=\$${prefix}/share/info \
 --sysconfdir=/etc $(confflags) \
-CFLAGS=$(CFLAGS) 
+CFLAGS=$(CFLAGS) \
+CPPFLAGS=$(CPPFLAGS)
cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE)
 
touch build-stamp
--8---cut here---end---8---


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

Kernel: Linux 2.6.24.6
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 xfs depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libfs62:1.0.0-5  X11 Font Services library
ii  libxfont1 1:1.3.2-1  X11 font rasterisation library

xfs recommends no packages.

-- no debconf information



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



Bug#481757: luvcview: Please add support UYVY format

2008-05-18 Thread Nobuhiro Iwamatsu
Package: luvcview
Version: 1:0.2.4-1
Severity: wishlist
Tags: patch

Now, luvcview supports only the video format of YUYV/yuv and MJPG/jpg.
The device of UVC might use other video formats. 
For example, Macbook iSight is UYVY format. 

I attach patch. This patch support UYVY format.
I tested on Macbook iSight only display. 

Please apply this patch.

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

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

Versions of packages luvcview depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libsdl1.2debian   1.2.13-2   Simple DirectMedia Layer

luvcview recommends no packages.

-- no debconf information


-- 
Nobuhiro Iwamatsu
--- ./luvcview.c	2008-05-17 19:43:58.0 +0900
+++ ./luvcview.c	2008-05-17 19:49:29.0 +0900
@@ -220,6 +220,7 @@
 	const char *videodevice = NULL;
 	const char *mode = NULL;
 	int format = V4L2_PIX_FMT_MJPEG;
+	int sdl_format =  SDL_YUY2_OVERLAY;
 	int i;
 	int grabmethod = 1;
 	int width = 640;
@@ -266,6 +267,9 @@
 
 			if (strcasecmp(mode, yuv) == 0 || strcasecmp(mode, YUYV) == 0) {
 format = V4L2_PIX_FMT_YUYV;
+			} else if (strcasecmp(mode, uyvy) == 0 || strcasecmp(mode, UYVY) == 0) {
+format = V4L2_PIX_FMT_UYVY;
+sdl_format = SDL_UYVY_OVERLAY;
 			} else if (strcasecmp(mode, jpg) == 0 || strcasecmp(mode, MJPG) == 0) {
 format = V4L2_PIX_FMT_MJPEG;
 			} else {
@@ -344,7 +348,7 @@
 			printf(-d	/dev/videoX   use videoX device\n);
 			printf(-g	use read method for grab instead mmap\n);
 			printf(-w	disable SDL hardware accel.\n);
-			printf(-f	choose video format (YUYV/yuv and MJPG/jpg are valid, MJPG is default)\n);
+			printf(-f	choose video format (YUYV/yuv, UYVY/uyvy and MJPG/jpg are valid, MJPG is default)\n);
 			printf(-i	fps   use specified frame interval\n);
 			printf(-s	widthxheight  use specified input size\n);
 			printf(-c	enable raw frame capturing for the first frame\n);
@@ -448,7 +452,7 @@
 
 	overlay =
 		SDL_CreateYUVOverlay(videoIn-width, videoIn-height + 32,
-SDL_YUY2_OVERLAY, pscreen);
+sdl_format, pscreen);
 	p = (unsigned char *) overlay-pixels[0];
 	drect.x = 0;
 	drect.y = 0;
--- ./v4l2uvc.c	2008-05-17 19:52:13.0 +0900
+++ ./v4l2uvc.c	2008-05-17 19:55:35.0 +0900
@@ -132,6 +132,7 @@
 			   8) * 2);
 	break;
 case V4L2_PIX_FMT_YUYV:
+case V4L2_PIX_FMT_UYVY:
 	vd-framebuffer =
 	(unsigned char *) calloc(1, (size_t) vd-framesizeIn);
 	break;
@@ -367,7 +368,9 @@
 			requested_format_found = 1;
 			break;
 		}
-		if(device_formats[i] == V4L2_PIX_FMT_MJPEG || device_formats[i] == V4L2_PIX_FMT_YUYV)
+		if(device_formats[i] == V4L2_PIX_FMT_MJPEG || device_formats[i] == V4L2_PIX_FMT_YUYV
+			|| V4L2_PIX_FMT_UYVY == device_formats[i])
+
 			fallback_format = i;
 	}
 	if(requested_format_found) {
@@ -641,6 +644,7 @@
 	printf(bytes in used %d\n, vd-buf.bytesused);
 	break;
 case V4L2_PIX_FMT_YUYV:
+case V4L2_PIX_FMT_UYVY:
 	if (vd-buf.bytesused  vd-framesizeIn)
 	memcpy(vd-framebuffer, vd-mem[vd-buf.index],
 		   (size_t) vd-framesizeIn);


Bug#480972: vulnerable to symlink attacks

2008-05-18 Thread Marco d'Itri
Do you have any objections to me making a NMU to fix this bug AND to
make the package generate a proper shared library?

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#481336: openssh-blacklist: provide blacklist for RSA 4096

2008-05-18 Thread Vincent Danjean
Colin Watson wrote:
 On Fri, May 16, 2008 at 11:59:44AM +0200, Raphael Hertzog wrote:
 Lucas has access to GRID-5000 and could generate the keys if someone
 provides him the required information to do the task given that the
 nodes are amd64 (but he uses them as i386 by default with linux32 IIRC).

 But he will only have access to GRID-5000 when he comes back from his trip
 to fosscamp (on sunday). Also ccing vincent danjean who also has access to
 grid 5000.

I've access to grid5000 but I did not yet setup my account to easily deploy
debian image as Lucas.
What I can do quickly is to run a standalone program on many nodes. If the
work require setting up chroots or other things more complex, I think it will
be quicker to wait for Lucas to come back and to use its scripts.

 It shouldn't take that long to generate them using the same code Kees
 used to generate the blacklist to start with. Kees, could you take care
 of that?

If the work is a standalone program that can be easily split (to parallelize 
it),
I can run it today on the grid. Just send me the sources and how to run it.

 (I'd *really* rather not use blacklists downloaded from metasploit;
 forgive my paranoia. :-) )

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0x9D025E87 [EMAIL PROTECTED]
GPG key fingerprint: FC95 08A6 854D DB48 4B9A  8A94 0BF7 7867 9D02 5E87
Unofficial pacakges: http://www-id.imag.fr/~danjean/deb.html#package
APT repo:  deb http://perso.debian.org/~vdanjean/debian unstable main




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



Bug#481761: RM: xchat-guile [ia64] -- ROM; reverse dependency unavailable

2008-05-18 Thread Lionel Elie Mamane
Package: ftp.debian.org
Severity: normal

Please remove xchat-guile from ia64 in unstable and testing.

xchat-guile is not being built on ia64 because a build-dependency
(namely guile-1.8) is not available on ia64. (Earlier versions of
xchat-guile build-depended on guile-1.6.)

This keeps it from migrating under the not in syn on all archs
criterium. If an architecture doesn't have guile-1.8, then no
xchat-guile for it.

-- 
Lionel



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



  1   2   3   4   >