Bug#546528: [PATCH] make dash's preinst a C binary

2010-10-17 Thread Jonathan Nieder
Adam D. Barratt wrote:

 The key thing is that if the move to dash-as-default - or an upgrade of
 dash whilst it is the default shell - fails, that should not leave the
 system without a working /bin/sh.  Having it not be a shell script seems
 a reasonable why of achieving that. :-)

Yes, makes sense.

 if /bin/bash
 is missing, aren't we in deep trouble anyway?

 Yes.  dash's preinst (in 0.5.5.1-7) currently has a /bin/sh shebang,
 however.

So how about something like this, for some peace of mind while
experimenting?

In the initial bootstrap, both dash and bash are unpacked before
either preinst runs.
---
diff --git a/debian/changelog b/debian/changelog
index 673c363..c3d33a1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dash (0.5.5.1-7.1) experimental; urgency=low
+
+  * debian/dash.preinst: change shebang line to #!/bin/bash.
+
+ -- Jonathan Nieder jrnie...@gmail.com  Sun, 17 Oct 2010 01:58:20 -0500
+
 dash (0.5.5.1-7) unstable; urgency=low
 
   [ Raphael Geissert ]
diff --git a/debian/dash.preinst b/debian/dash.preinst
index 6553e2d..4fdbb0d 100644
--- a/debian/dash.preinst
+++ b/debian/dash.preinst
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 set -e
 
 divert() {
-- 



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



Bug#600435: unblock: altermime/0.3.10-4

2010-10-17 Thread Julien Valroff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I would be greateful if you could accept to unblock altermime. I have
recently uploaded a version fixing one documentation issue. Here is the
changelog entry for this latest upload to unstable:

 altermime (0.3.10-4) unstable; urgency=low
 .
   * Bump Debian policy version to 3.9.1
   * Add -oi flag to both Postfix howto and example script to ignore
 single dots on a line - thanks to Markus Keil k...@ibh.de
 (Closes: #569046)

Thanks in advace
Cheers,
Julien

unblock altermime/0.3.10-4

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

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

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

iEYEARECAAYFAky6o9EACgkQIQvyq59x1EmjfACeNkXmuMzYRMujFatt4nSQLZQR
23YAoLf+xktGQixNZk6aAmOMzsqCL2f7
=lHCA
-END PGP SIGNATURE-



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



Bug#595609: unblock: mailgraph/1.14-3

2010-10-17 Thread Julien Valroff
Hi,

Le samedi 02 oct. 2010 à 09:35:34 (+0200), Christian PERRIER a écrit :
 Quoting Julien Valroff (jul...@kirya.net):
 
  I must admit I am not sure what to do to fix the situation. Should I ask to
  the translators to update their translations for the templates currently in
  testing?
 
 You certainly can, yes. You can use podebconf-report-po and adapt the
 message to explain translators that, even though their translations
 are complete in unstable, your need is to update them in testing.

I have received no answer to my call for translation.
The current state is however good: all languages are fully translated except
fi.po for which I have contacted the last translator without answer.

I hence think this bug can be closed, do you agree?

Cheers,
Julien

-- 
Julien Valroff jul...@kirya.net
http://www.kirya.net
GPG key: 1024D/9F71D449
17F4 93D8 746F F011 B845  9F91 210B F2AB 9F71 D449


signature.asc
Description: Digital signature


Bug#600433: collectd: rrd: gets terribly confused when entering DST (daylight savings time)

2010-10-17 Thread Florian Forster
Hi Henrique,

On Sun, Oct 17, 2010 at 03:32:36AM -0200, Henrique de Moraes Holschuh wrote:
 collectd does not use UTC.

collectd uses the timestamp returned by time(3). To the best of my
knowledge, it returns the number of seconds since 00:00:00 January 1st,
1970 _UTC_ and should, as such, not be dependent on any timezone
setting.

 collectd[2139]: uc_update: Value too old:name = REMOVED/temperature-temp1; 
 value time = 1287260393; last cache update = 1287260393;

If the timestamp was influenced by the timezone shift, value time
should be 1-3600 seconds smaller than last cache update [0]. The two
values are identical, though, which is 99.9% of all cases means that the
identifier ((file)name of the data) is not unique. Maybe the names
returned by lm_sensors are not unique or you're collecting the
temperature of the same HDD twice.. Either way, the timezone shift is
just coincidental.

Regards,
--octo

[0] If the time jumped forwards (== bigger) then there wouldn't be an
error message, just a gap in the data.
-- 
Florian octo Forster
Hacker in training
GnuPG: 0x0C705A15
http://octo.it/


signature.asc
Description: Digital signature


Bug#600408: ocaml: Building OCaml with LOCAL_CALLBACK_BYTECODE enabled

2010-10-17 Thread Stéphane Glondu
Le 17/10/2010 00:53, Guillaume Yziquel a écrit :
 I register an OCaml array with caml_register_generational_global_root.
 The array contains functions. The C++ code takes an offset in this array
 and calls the function, typically with caml_callback3.
 [...]
 But it works fine in native code, so I'm not doing things completely
 crazily. I'm currently trying to see why I have an invalid opcode there.

This handwaving in English is quite difficult to understand... Couldn't
you back it up with a concrete example? Give some commented source code
and a way to reproduce the segfault?

 Having it global makes me worry a lot about threads, callbacks, why am I
 getting an invalid opcode, etc...

The runtime is made is such a way that OCaml code should be running in a
single thread at any time. Even when dealing with callbacks, you should
make sure only one thread of OCaml code is running.

 I'm not sure (and I do not believe) that it would solve my issue, but it
 would just feel much more 'right' to me.

This just sounds like a workaround to me. But I am waiting for an
example to make a more confident judgement.

 I do not think that the comments in callbacks.c are very enlightening as
 to the proper usage of LOCAL_CALLBACK_BYTECODE. I'm not saying that it
 should be changed, but I do not see why it should be kept this way.

It has to have been written this way and not documented for a reason...


Cheers,

-- 
Stéphane




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



Bug#600436: frontaccounting: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: frontaccounting
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF FRONTACCOUNTING'S PO-DEBCONF FILE.
# COPYRIGHT (C) 2010 THE FRONTACCOUNTING'S COPYRIGHT HOLDER
# This file is distributed under the same license as the frontaccounting package.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: frontaccounting\n
Report-Msgid-Bugs-To: frontaccount...@packages.debian.org\n
POT-Creation-Date: 2010-06-25 06:56+0200\n
PO-Revision-Date: 2010-10-14 08:24+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
Language: it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

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

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

#. Type: multiselect
#. Description
#: ../templates:2002
msgid Web server to reconfigure automatically:
msgstr Server web da riconfigurare automaticamente:

#. Type: multiselect
#. Description
#: ../templates:2002
msgid 
Please choose the web server that should be automatically configured to run 
FrontAccounting.
msgstr 
Scegliere il server web da configurare automaticamente per l'esecuzione di 
FrontAccounting.

#. Type: boolean
#. Description
#: ../templates:3001
msgid Has the FrontAccounting database already been initialized?
msgstr Il database di FrontAccounting è già stato inizializzato?

#. Type: boolean
#. Description
#: ../templates:4001
msgid Skip database creation?
msgstr Omettere la creazione del database?

#. Type: boolean
#. Description
#: ../templates:4001
msgid 
The FrontAccounting database can be set up automatically or you can create 
it manually after installation.
msgstr 
Il database di FrontAccounting può essere installato automaticamente oppure 
creato manualmente dopo l'installazione.

#. Type: error
#. Description
#: ../templates:5001
msgid Manual database configuration required
msgstr È richiesta la configurazione manuale del database

#. Type: error
#. Description
#: ../templates:5001
msgid 
No MySQL client was found, which means it is not possible to automatically 
create FrontAccounting's database.
msgstr 
Non è stato trovato alcun client MySQL, per cui non è possibile creare 
automaticamente il database di FrontAccounting.

#. Type: error
#. Description
#: ../templates:5001
msgid 
You should install the mysql-client package (as well as mysql-server if you 
want the database to be hosted on this machine) and then run \dpkg-
reconfigure frontaccounting\ again. For now, the database configuration 
will be skipped.
msgstr 
Sarà necessario installare il pacchetto «mysql-client» e, se si desidera che 
il database venga installato su questo sistema, anche il pacchetto «mysql-
server», per poi eseguire nuovamente «dpkg-reconfigure frontaccounting». Per 
intanto, la configurazione del database viene omessa.

#. Type: string
#. Description
#: ../templates:6001
msgid FrontAccounting database server host name:
msgstr Nome host del server del database di FrontAccounting:

#. Type: string
#. Description
#: ../templates:6001
msgid 
Please enter the host name or IP address of the database server that will 
host FrontAccounting's database.
msgstr 
Inserire il nome host o l'indirizzo IP del server su cui il database di 
FrontAcccounting verrà installato.

#. Type: string
#. Description
#: ../templates:7001
msgid FrontAccounting database name:
msgstr Nome del database di FrontAccounting:

#. Type: string
#. Description
#: ../templates:7001
msgid Please choose the name for FrontAccounting's database.
msgstr Scegliere il nome per il database di FrontAccounting.

#. Type: boolean
#. Description
#: ../templates:8001
msgid Use a prefix on FrontAccounting tables?
msgstr Utilizzare un prefisso per le tabelle di FrontAccounting?

#. Type: boolean
#. Description
#: ../templates:8001
msgid 
If the same FrontAccounting database should host more than one company, 
table names should be prefixed by \0_\.
msgstr 
Se lo stesso database di FrontAccounting viene utilizzato per più di una 
società, i nomi delle tabelle devono essere preceduti dal prefisso «0_».

#. Type: string
#. Description
#: ../templates:9001
msgid Database administrator username:
msgstr Nome utente dell'amministratore del database:

#. Type: string
#. Description
#: ../templates:9001
msgid 
Please provide the username for the account that will create 
FrontAccounting's database. This account must have database and user 
creation privileges on the database server.
msgstr 
Inserire il nome utente dell'account che creerà il database di 
FrontAccounting. Questo account deve possedere i diritti di creazione del 
database e degli utenti sul server del database.

#. Type: password
#. Description
#: ../templates:10001
msgid Database administrative password:
msgstr Password 

Bug#600437: havp: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: havp
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF HAVP'S PO-DEBCONF FILE.
# COPYRIGHT (C) 2010 THE HAVP'S COPYRIGHT HOLDER
# This file is distributed under the same license as the havp package.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: havp\n
Report-Msgid-Bugs-To: Source: h...@packages.debian.org\n
POT-Creation-Date: 2008-05-29 20:56+0200\n
PO-Revision-Date: 2010-10-14 08:36+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../havp.templates.master:1001
msgid Do you want to create a loopback spool file system?
msgstr Creare un file system di accodamento loopback?

#. Type: boolean
#. Description
#: ../havp.templates.master:1001
msgid 
HAVP strictly requires the file system where it stores its temporary files 
during scanning to support mandatory locking. Many of the standard Linux 
file systems support this, but do not enable it by default.
msgstr 
HAVP necessita che il file system su cui memorizza i propri dati temporanei 
durante le scansioni supporti il blocco vincolante. Molti dei file system 
standard di Linux lo supportano, ma non lo abilitano in modo predefinito.

#. Type: boolean
#. Description
#: ../havp.templates.master:1001
msgid 
To use HAVP, you can either mount the file system that contains /var/spool/
havp with the option \mand\, or create a loopback file system that is 
mounted at /var/spool/havp only for HAVP.
msgstr 
Per poter utilizzare HAVP è necessario o montare il file system che contiene 
«/var/spool/havp» con l'opzione «mand», o creare un file system loopback che 
viene montato in «/var/spool/havp» solo per HAVP.

#. Type: boolean
#. Description
#: ../havp.templates.master:1001
msgid 
If you are in doubt, you should accept this option to create a loopback 
spool file system.
msgstr 
In caso di dubbio, accettare la creazione del file system di accodamento 
loopback.

#. Type: string
#. Description
#: ../havp.templates.master:2001
msgid Loopback file system size:
msgstr Dimensione del file system loopback:

#. Type: string
#. Description
#: ../havp.templates.master:2001
msgid 
Please enter the size (in megabytes) of the loopback file system to be 
created.
msgstr 
Inserire la dimensione, in MB, del file system loopback che deve essere 
creato.



Bug#600438: ircd-hybrid: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: ircd-hybrid
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF IRCD-HYPRID'S PO-DEBCONF FILE.
# COPYRIGHT (C) 2010 THE IRCD-HYBRID'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ircd-hybrid package.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: ircd-hybrid\n
Report-Msgid-Bugs-To: a...@roxor.cx\n
POT-Creation-Date: 2006-10-08 19:48+0200\n
PO-Revision-Date: 2010-10-14 19:56+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:1001
msgid All OpenSSL support is now disabled by default; continue?
msgstr 
Il supporto a OpenSSL è ora disabilitato in modalità predefinita. Continuare?

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:1001
msgid 
Due to licensing issues ircd-hybrid is no longer built by default with 
OpenSSL. This will be addressed in a future release, pending a rewrite of 
the SSL layer with GNUTLS.
msgstr 
A causa di problemi di licenza ircd-hybrid non viene più compilato, in modo 
predefinito, con OpenSSL. Questa situazione verrà rivista in uno dei 
prossimi rilasci, in attesa di una riscrittura del livello SSL con GNUTLS.

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:1001
msgid 
If any of your existing server links take advantage of cryptlinks, refer to /
usr/share/doc/ircd-hybrid/CRYPTLINKS.txt to find out how to build ircd-
hybrid with SSL support (easily.)
msgstr 
Per compilare in modo semplice ircd-hybrid con il supporto a SSL, consultare 
la documentazione in «/usr/share/doc/ircd-hybrid/CRYPTLINKS.txt».

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:2001
msgid Restart ircd-hybrid on each upgrade?
msgstr Riavviare ircd-hybrid a ogni aggiornamento?

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:2001
msgid 
You may choose whether or not you want to restart the ircd-hybrid daemon 
every time you install a new version of this package.
msgstr 
È possibile scegliere se riavviare o meno il demone di ircd-hybrid a ogni  
aggiornamento del pacchetto.

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:2001
msgid 
Sometimes, you do not want to do this. For instance, if you are doing the 
upgrade and loading IRCd modules at runtime. Failing to restart the daemon 
would probably lead you to problems.
msgstr 
A volta potrebbe non essere il caso, per esempio se si sta eseguendo 
l'aggiornamento e caricando i moduli IRCd a runtime. In simili casi, il 
mancato riavvio del demone potrebbe causare problemi.

#. Type: boolean
#. Description
#: ../ircd-hybrid.templates:2001
msgid 
If you refuse, you have to restart ircd-hybrid yourself if you upgraded, by 
typing `invoke-rc.d ircd-hybrid restart' whenever it suits you.
msgstr 
Se si risponde negativamente sarà necessario riavviare manualmente ircd-
hybrid, dopo l'aggiornamento, eseguendo «invoke-rc.d ircd-hybrid restart» al 
momento opportuno.



Bug#600439: mason: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: mason
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: mason\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2010-06-29 22:07+0200\n
PO-Revision-Date: 2010-10-14 20:02+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#. Type: select
#. Choices
#: ../templates:1001 ../templates:2001
msgid accept
msgstr accettare

#. Type: select
#. Choices
#. Type: select
#. Choices
#: ../templates:1001 ../templates:2001
msgid reject
msgstr respingere

#. Type: select
#. Choices
#. Type: select
#. Choices
#: ../templates:1001 ../templates:2001
msgid deny
msgstr negare

#. Type: select
#. Description
#: ../templates:1002
msgid Default action for new firewall rules:
msgstr Azione predefinita per nuove regole del firewall:

#. Type: select
#. Description
#: ../templates:1002
msgid 
The new rule default action specifies how Mason will handle unknown packets, 
when the firewall is in learning mode.
msgstr 
L'azione predefinita per le nuove regole del firewall specifica come Mason 
tratterà i pacchetti sconosciuti quando il firewall è in modalità di 
apprendimento.

#. Type: select
#. Description
#: ../templates:1002
msgid 
The \accept\ action will allow the packet through.  \Reject\ will stop 
the packet with a rejection reply, while \deny\ will drop the packet 
silently.
msgstr 
La scelta «accettare» consentirà la trasmissione del pacchetto, «respingere» 
arresterà il pacchetto con una risposta di rifiuto, mentre «negare» 
cestinerà il pacchetto senza alcuna comunicazione.

#. Type: select
#. Description
#: ../templates:2002
msgid Default action for rulesets:
msgstr Azione predefinita per i set di regole:

#. Type: select
#. Description
#: ../templates:2002
msgid 
The default action specifies how Mason will handle unknown packets, when the 
firewall is not in learning mode.
msgstr 
L'azione predefinita specifica come Mason tratterà i pacchetti sconosciuti 
quando il firewall non è in modalità di apprendimento.

#. Type: select
#. Description
#: ../templates:2002
msgid 
Again, \accept\ allows the packet through, \reject\ drops the packet 
with a reply, and \deny\ silently drops the packet.
msgstr 
Anche qui, «accettare» consentirà la trasmissione del pacchetto, «respingere» 
arresterà il pacchetto con una risposta di rifiuto, mentre «negare» 
cestinerà il pacchetto senza alcuna comunicazione.



Bug#600440: mumble: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: mumble
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF MUMBLE'S PO-DEBCONF FILE.
# COPYRIGHT (C) 2010 THE MUMBLE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the mumble package.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: mumble\n
Report-Msgid-Bugs-To: mum...@packages.debian.org\n
POT-Creation-Date: 2010-01-11 16:52+0100\n
PO-Revision-Date: 2010-10-14 20:09+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: password
#. Description
#: ../mumble-server.templates:1001
msgid Password to set on SuperUser account:
msgstr Password dell'account SuperUser:

#. Type: password
#. Description
#: ../mumble-server.templates:1001
msgid 
Murmur has a special account called \SuperUser\ which bypasses all 
privilege checks.
msgstr 
Murmur possiede un account speciale, «SuperUser», che evita tutti i controlli 
dei permessi.

#. Type: password
#. Description
#: ../mumble-server.templates:1001
msgid 
If you set a password here, the password for the \SuperUser\ account will 
be updated.
msgstr 
Se s'imposta qui una password, la password dell'account «SuperUser» verrà 
aggiornata.

#. Type: password
#. Description
#: ../mumble-server.templates:1001
msgid If you leave this blank, the password will not be changed.
msgstr Se si lascia il campo vuoto, la password non verrà modificata.

#. Type: boolean
#. Description
#: ../mumble-server.templates:2001
msgid Autostart mumble-server on server boot?
msgstr Eseguire automaticamente mumble-server all'avvio?

#. Type: boolean
#. Description
#: ../mumble-server.templates:2001
msgid 
Mumble-server (murmurd) can start automatically when the server is booted.
msgstr 
Mumble-server (murmurd) può essere eseguito automaticamente all'avvio del 
server.

#. Type: boolean
#. Description
#: ../mumble-server.templates:3001
msgid Allow mumble-server to use higher priority?
msgstr Consentire a mumble-server di utilizzare priorità più alta?

#. Type: boolean
#. Description
#: ../mumble-server.templates:3001
msgid 
Mumble-server (murmurd) can use higher process and network priority to 
ensure low latency audio forwarding even on highly loaded servers.
msgstr 
Mumble-server (murmurd) può utilizzare una priorità di processo e di rete 
più alta, al fine di assicurare una bassa latenza dell'audio inoltrato anche 
su server molto occupati.



Bug#600441: ocsinventory-server: [INTL:it] Italian translation

2010-10-17 Thread Vincenzo Campanella
Package: ocsinventory-server
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF OCSINVENTORY-SERVER'S PO-DEBCONF FILE.
# COPYRIGHT (C) 2010 THE OCSINVENTORY-SERVER'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ocsinventory-server package.
#
# Vincenzo Campanella vin...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: ocsinventory-server\n
Report-Msgid-Bugs-To: chiffl...@inl.fr\n
POT-Creation-Date: 2007-07-17 13:47+0200\n
PO-Revision-Date: 2010-10-14 20:15+0200\n
Last-Translator: Vincenzo Campanella vin...@gmail.com\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../ocsinventory-reports.templates:1001
msgid User name for web-based setup system:
msgstr Nome utente per il sistema d'installazione basato sul web:

#. Type: string
#. Description
#. Type: password
#. Description
#: ../ocsinventory-reports.templates:1001
#: ../ocsinventory-reports.templates:2001
msgid 
OCS Reports comes with a web-based setup/upgrade script. The script is 
located at http://localhost/ocsreports/install.php. For security reasons it 
requires authorization.
msgstr 
OCS Reports viene fornito con uno script d'installazione o di aggiornamento 
basato sul web, il quale si trova in http://localhost/ocsreports/install.;
php e, per motivi di sicurezza, richiede un'autorizzazione.

#. Type: string
#. Description
#: ../ocsinventory-reports.templates:1001
msgid Leave empty if you want to use the default user name 'admin'.
msgstr 
Se si desidera utilizzare il nome utente predefinito, «admin», lasciare vuoto.

#. Type: password
#. Description
#: ../ocsinventory-reports.templates:2001
msgid Password for web-based setup system:
msgstr Password per il sistema d'installazione basato sul web:

#. Type: password
#. Description
#: ../ocsinventory-reports.templates:2001
msgid 
You can manage the usernames and passwords with the `htpasswd' command. They 
are stored in /etc/ocsinventory/htpasswd.setup file.
msgstr 
È possibile gestire i nomi utenti e le password utilizzando il comando 
«htpasswd». Essi vengono memorizzati nel file «/etc/ocsinventory/htpasswd.
setup».

#. Type: password
#. Description
#: ../ocsinventory-reports.templates:2001
msgid Leave empty if you want to disable access to the web-based setup.
msgstr 
Se si desidera disabilitare l'accesso all'installazione basata sul web, 
lasciare vuoto.



Bug#600442: gkrellm-mailwatch: becomes very cumbersome to configure with lots of folders

2010-10-17 Thread Phil Reynolds
Package: gkrellm-mailwatch
Version: 2.4.3-1
Severity: minor

When configuring gkrellm to use lots of panels, such as one for each folder,
the configuration window gets wider due to tab creation, and can eventually
get too wide for the screen.

This makes configuring gkrellm as a whole a bit problematic as it becomes
necessary to keep adjusting the position of the window.

This could be improved by having tab scrolling, at least in this plugin,
so that the window was not forced to be wider.


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

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

Versions of packages gkrellm-mailwatch depends on:
ii  gkrellm  2.3.4-1 GNU Krell Monitors
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-6The Cairo 2D vector graphics libra
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1+b1 The GTK+ graphical user interface 
ii  libpango1.0-01.28.1-1Layout and rendering of internatio
ii  libx11-6 2:1.3.3-3   X11 client-side library
ii  libxcursor1  1:1.1.10-2  X cursor management library
ii  libxext6 2:1.1.2-1   X11 miscellaneous extension librar
ii  libxi6   2:1.3-4 X11 Input extension library
ii  libxinerama1 2:1.1-3 X11 Xinerama extension library
ii  libxrandr2   2:1.3.0-3   X11 RandR extension library
ii  libxrender1  1:0.9.6-1   X Rendering Extension client libra

gkrellm-mailwatch recommends no packages.

gkrellm-mailwatch suggests no packages.

-- no debconf information



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



Bug#600443: please include clive-gui python script

2010-10-17 Thread Holger Levsen
package: clive
severity: wishlist

Hi,

thanks for maintaining clive!

There is a clive-gui located at http://code.google.com/p/clive-gui/ it would 
be great if you could include it in the clive package, maybe as a seperate 
gui binary package.


cheers,
Holger


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


Bug#600444: libgstreamer0.10-0: segfaults with rythmbox, banshee, guayadaque when opening flac audio files

2010-10-17 Thread Tomasz Wartalski
Package: libgstreamer0.10-0
Version: 0.10.30-1
Severity: important


Hello,

rythmbox, banshee and guayadaque are segfaulting while i´m trying to
play flac audio files. This renders the mentioned players unusable for
me. Below are the backtraces of the crashes from rhythmbox and guayadeque.

Cheers,

Tomasz



rythmbox backtrace:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x71b7895f7710 (LWP 8204)]
0x71b797dadbdc in orc_sse_set_mxcsr () from /usr/lib/liborc-0.4.so.0
(gdb) bt
#0  0x71b797dadbdc in orc_sse_set_mxcsr () from /usr/lib/liborc-0.4.so.0
#1  0x71b797db3e2a in orc_compiler_sse_assemble () from
/usr/lib/liborc-0.4.so.0
#2  0x71b797da55a5 in orc_program_compile_full () from
/usr/lib/liborc-0.4.so.0
#3  0x71b795d0b277 in ?? () from /usr/lib/gstreamer-0.10/libgstadder.so
#4  0x71b795d085e3 in ?? () from /usr/lib/gstreamer-0.10/libgstadder.so
#5  0x71b7b1571049 in gst_collect_pads_check_collected
(pads=0x15c83d0) at
gstcollectpads.c:1137
#6  0x71b7b1571ca8 in gst_collect_pads_chain (pad=value optimized out,
buffer=0x0) at gstcollectpads.c:1365
#7  0x71b7b12c2f8d in gst_pad_chain_data_unchecked (pad=0x1c47930,
is_buffer=1, data=0x71b790124940) at gstpad.c:4176
#8  0x71b7b12c384e in gst_pad_push_data (pad=0xe44700, is_buffer=1,
data=0x71b790124940) at gstpad.c:4405
#9  0x71b7b12c2f8d in gst_pad_chain_data_unchecked (pad=0x1760720,
is_buffer=1, data=0x71b790124940) at gstpad.c:4176
#10 0x71b7b12c384e in gst_pad_push_data (pad=0x1c47030, is_buffer=1,
data=0x71b790124940) at gstpad.c:4405
#11 0x71b7b156a707 in gst_base_transform_chain (pad=value optimized
out,
buffer=value optimized out) at gstbasetransform.c:2190
#12 0x71b7b12c2f8d in gst_pad_chain_data_unchecked (pad=0x1c46da0,
is_buffer=1, data=0x71b790124940) at gstpad.c:4176
#13 0x71b7b12c384e in gst_pad_push_data (pad=0x1c47330, is_buffer=1,
data=0x71b790124940) at gstpad.c:4405
#14 0x71b798667869 in gst_queue_push_one (pad=value optimized out) at
gstqueue.c:1083
#15 gst_queue_loop (pad=value optimized out) at gstqueue.c:1185
#16 0x71b7b12ecabb in gst_task_func (task=0x15ad3b0) at gsttask.c:271
#17 0x71b7afbbb5cf in ?? () from /lib/libglib-2.0.so.0
#18 0x71b7afbb9784 in ?? () from /lib/libglib-2.0.so.0
#19 0x71b7b04878ba in start_thread () from /lib/libpthread.so.0
#20 0x71b7af1f802d in clone () from /lib/libc.so.6
---Type return to continue, or q return to quit---
#21 0x in ?? ()



guayadeque backtrace:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7a8836cb8710 (LWP 9350)]
0x7a8839072bdc in orc_sse_set_mxcsr () from /usr/lib/liborc-0.4.so.0
(gdb) bt
#0  0x7a8839072bdc in orc_sse_set_mxcsr () from /usr/lib/liborc-0.4.so.0
#1  0x7a8839078e2a in orc_compiler_sse_assemble () from
/usr/lib/liborc-0.4.so.0
#2  0x7a883906a5a5 in orc_program_compile_full () from
/usr/lib/liborc-0.4.so.0
#3  0x7a88394e3e62 in ?? () from
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
#4  0x7a88394dca11 in ?? () from
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
#5  0x7a88394d99c2 in ?? () from
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
#6  0x7a8839f74139 in gst_base_transform_handle_buffer (trans=0x15a4030,
inbuf=0x1970900, outbuf=0x7a8836cb7068) at gstbasetransform.c:2055
#7  0x7a8839f746bd in gst_base_transform_chain (pad=value optimized
out,
buffer=0x1970900) at gstbasetransform.c:2169
#8  0x7a8846dd1f8d in gst_pad_chain_data_unchecked (pad=0x1589240,
is_buffer=1, data=0x1970900) at gstpad.c:4176
#9  0x7a8846dd284e in gst_pad_push_data (pad=0x1583560, is_buffer=1,
data=0x1970900) at gstpad.c:4405
#10 0x7a8846dd1f8d in gst_pad_chain_data_unchecked (pad=0x1582540,
is_buffer=1, data=0x1970900) at gstpad.c:4176
#11 0x7a8846dd284e in gst_pad_push_data (pad=0x1ac37d0, is_buffer=1,
data=0x1970900) at gstpad.c:4405
#12 0x7a8839f74707 in gst_base_transform_chain (pad=value optimized
out,
buffer=value optimized out) at gstbasetransform.c:2190
#13 0x7a8846dd1f8d in gst_pad_chain_data_unchecked (pad=0x1ac3650,
is_buffer=1, data=0x1970900) at gstpad.c:4176
#14 0x7a8846dd284e in gst_pad_push_data (pad=0x1ac3350, is_buffer=1,
data=0x1970900) at gstpad.c:4405
#15 0x7a8839f74707 in gst_base_transform_chain (pad=value optimized
out,
buffer=value optimized out) at gstbasetransform.c:2190
#16 0x7a8846dd1f8d in gst_pad_chain_data_unchecked (pad=0x15890c0,
is_buffer=1, data=0x1970900) at gstpad.c:4176
#17 0x7a8846dd284e in gst_pad_push_data (pad=0x197f360, is_buffer=1,
data=0x1970900) at gstpad.c:4405
#18 0x7a8846dd1f8d in gst_pad_chain_data_unchecked (pad=0x1050380,
is_buffer=1, data=0x1970900) at gstpad.c:4176
#19 0x7a8846dd284e in gst_pad_push_data (pad=0x1ac3950, is_buffer=1,
data=0x1970900) at gstpad.c:4405
#20 0x7a883a1acbcf in gst_tee_chain (pad=value optimized out,
buffer=0x1970900) at gsttee.c:789
#21 0x7a8846dd1f8d in 

Bug#600445: eatmydata: FTBFS on kfreebsd-*: Illegal Instruction

2010-10-17 Thread Sven Joachim
Package: eatmydata
Version: 15-1
Severity: important
User: debian-...@lists.debian.org
Usertags: kfreebsd

Your package FTBFS on the kfreebsd architectures with an illegal
instruction¹.  The reason can be seen in this GCC warning:

,
| eatmydata.c: In function 'open':
| eatmydata.c:101: warning: 'mode_t' is promoted to 'int' when passed through 
'...'
| eatmydata.c:101: note: (so you should pass 'int' not 'mode_t' to 'va_arg')
`

On FreeBSD, mode_t is only 16 bits wide as opposed to 32 bits on Linux.
The following patch fixes this for me (tested on kfreebsd-i386 in qemu):

--8---cut here---start-8---
diff --git a/eatmydata.c b/eatmydata.c
index 9bf0e46..1cb4d54 100644
--- a/eatmydata.c
+++ b/eatmydata.c
@@ -98,7 +98,10 @@ int open(const char* pathname, int flags, ...)
mode_t mode;
 
va_start(ap, flags);
-   mode= va_arg(ap, mode_t);
+   if (sizeof (mode_t)  sizeof (int))
+   mode= va_arg(ap, int);
+   else
+   mode= va_arg(ap, mode_t);
va_end(ap);
 
/* In pthread environments the dlsym() may call our open(). */
--8---cut here---end---8---

Note that GCC will issue the (now bogus) warning, due to
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210.


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

Kernel: Linux 2.6.36-rc8-nouveau+ (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 eatmydata depends on:
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib

eatmydata recommends no packages.

eatmydata suggests no packages.

-- no debconf information


¹ 
https://buildd.debian.org/fetch.cgi?pkg=libeatmydata;ver=15-1;arch=kfreebsd-i386;stamp=1281282657



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



Bug#599975: findutils: FTBFS on alpha: FAIL: test-fstatat test-strstr

2010-10-17 Thread Andreas Metzler
On 2010-10-12 Cyril Brulebois k...@debian.org wrote:
 Source: findutils
 Version: 4.5.9-1
 Severity: important

 Hi,

 your package FTBFS on alpha:
[...]
 | FAIL: test-fstatat
[...]
 | FAIL: test-strstr
[...]

Both of these are gnulib issues, building with gnulib head
(3f75f63f5e0bc6293e7a712e8699d930d4e53a5f) succeeds.

cu andreas



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



Bug#598493: nfs-exports does not work after reboot

2010-10-17 Thread Ben Hutchings
On Sun, 2010-10-17 at 06:32 +0200, Petter Reinholdtsen wrote:
 [Ben Hutchings]
  Except that nothing appears to provide $named yet.
 
 How strange.  At least powerdns and bind should provide it.  See
 /etc/insserv.conf*.

Oh I see, I wasn't aware that such names were defined there.  I'll go
ahead and use $named then.

Ben.

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


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


Bug#600446: Possible typo in /lib/udev/rules.d/70-acl.rules: closing double quote in last line missing

2010-10-17 Thread Alexander Kurtz
Package: udev
Version: 163-1

Hi,

while comparing /lib/udev/rules.d/70-acl.rules from 163-1 to the version
shipped in 160-1 (because of #593881, full diff attached) I found this:

$ tail udev_163-1_i386/lib/udev/rules.d/70-acl.rules

# Glib is not declared as a package dependency, so check that it is 
actually
# installed before running udev-acl.
TEST!=/lib/libglib-2.0.so.0, GOTO=acl_end

# apply ACL for all locally logged in users
TAG==udev-acl, TEST==/var/run/ConsoleKit/database, \
  RUN+=udev-acl --action=$env{ACTION} --device=$env{DEVNAME}

LABEL=acl_end
$

Is the missing closing double quote in the last line intentional?

Best regards

Alexander Kurtz
--- /lib/udev/rules.d/70-acl.rules	2010-07-12 03:24:40.0 +0200
+++ udev_163-1_i386/lib/udev/rules.d/70-acl.rules	2010-10-17 00:46:27.0 +0200
@@ -13,11 +13,7 @@
 # digicams with proprietary protocol
 ENV{ID_GPHOTO2}==*?, TAG+=udev-acl
 
-# SCSI scanners
-KERNEL==sg[0-9]*, ATTRS{type}==6, TAG+=udev-acl
-KERNEL==sg[0-9]*, ATTRS{type}==3, ATTRS{vendor}==HP|EPSON|Epson, TAG+=udev-acl
-
-# USB scanners
+# SCSI and USB scanners
 ENV{libsane_matched}==yes, TAG+=udev-acl
 
 # HPLIP devices (necessary for ink level check and HP tool maintenance)
@@ -37,21 +33,15 @@
 
 # IIDC devices: industrial cameras and some webcams
 SUBSYSTEM==firewire, ATTR{units}==*0x00a02d:0x00010*,  TAG+=udev-acl
+SUBSYSTEM==firewire, ATTR{units}==*0x00b09d:0x00010*,  TAG+=udev-acl
 # AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more
 SUBSYSTEM==firewire, ATTR{units}==*0x00a02d:0x010001*, TAG+=udev-acl
+SUBSYSTEM==firewire, ATTR{units}==*0x00a02d:0x014001*, TAG+=udev-acl
 
 # old style firewire devices
 KERNEL==dv1394-[0-9]*, TAG+=udev-acl
 KERNEL==video1394-[0-9]*, TAG+=udev-acl
 
-# fingerprint readers
-SUBSYSTEM==usb, ATTR{idVendor}==0483, ATTR{idProduct}==2016, TAG+=udev-acl
-
-# GPS devices
- # Garmin GPSMap 60
-SUBSYSTEM==usb, ATTR{idVendor}==091e, ATTR{idProduct}==0003, TAG+=udev-acl
-
-
 # DRI video devices
 SUBSYSTEM==drm, KERNEL==card*, TAG+=udev-acl
 
@@ -64,22 +54,23 @@
 # joysticks
 SUBSYSTEM==input, ENV{ID_INPUT_JOYSTICK}==?*, TAG+=udev-acl
 
-# smart phones
-SUBSYSTEM==usb, ATTR{idVendor}==0bb4, ATTR{idProduct}==0c02, TAG+=udev-acl
-
 # color measurement devices
 ENV{COLOR_MEASUREMENT_DEVICE}==*?, TAG+=udev-acl
 
+# DDC/CI device, usually high-end monitors such as the DreamColor
+ENV{DDC_DEVICE}==*?, TAG+=udev-acl
+
 LABEL=acl_apply
 
-ENV{ACL_MANAGE}!=1, GOTO=acl_end
+# workaround to support buggy packages which use the old interface
+ENV{ACL_MANAGE}==1, TAG+=udev-acl
 
 # Glib is not declared as a package dependency, so check that it is actually
 # installed before running udev-acl.
 TEST!=/lib/libglib-2.0.so.0, GOTO=acl_end
 
 # apply ACL for all locally logged in users
-TEST==/var/run/ConsoleKit/database, \
+TAG==udev-acl, TEST==/var/run/ConsoleKit/database, \
   RUN+=udev-acl --action=$env{ACTION} --device=$env{DEVNAME}
 
-LABEL=acl_end
+LABEL=acl_end


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


Bug#600139: RE : Bug#600139: mogrify does not respect +set date:create and +set date:modify

2010-10-17 Thread Bastien ROUCARIES
We have some previous bug report about this. Search convert and size on the
pts. I have not a full internet connection but this bug is tagged fixed
upstream. Feel free to merge the two bug report

Bastien

Le 13 oct. 2010 23:45, H. S. Teoh hst...@quickfur.ath.cx a écrit :

Package: imagemagick
Version: 8:6.6.0.4-2.2
Severity: normal

Since about version 5 or so, imagemagick has started to always add
metadata fields to output files that support it. The date:create and
date:modify fields are always added to PNG files. This is problematic
when script-generated images are managed by SVN, because SVN always
finds a difference in the image files even though their content and
other non-volatile metadata are identical.

This behaviour can be suppressed in `convert` by specifying `+set
date:create +set date:modify`; the properties are not written to the
target file.

However, `mogrify`, which modifies the file in-place, does not appear to
respect this. It will ALWAYS set date:create and date:modify in the file
regardless of whether the +set options are specified. This is a bug.


T

--
He who does not appreciate the beauty of language is not worthy to
bemoan its flaws.


Bug#588735: Announce of the upcoming NMU for the fts package

2010-10-17 Thread Helge Kreutzmann
Hello Christian,
On Fri, Oct 01, 2010 at 06:40:52AM +0200, Christian PERRIER wrote:
 Otherwise the following will happen (or already has):
 
  Sunday, September 26, 2010   : send the first intent to NMU notice to
  the package maintainer.
  Friday, October 01, 2010   : send this notice
  Thursday, October 07, 2010   : (midnight) deadline for receiving 
 translation updates
  Friday, October 08, 2010   : build the package and upload it to 
 DELAYED/7-day
  send the NMU patch to the BTS
  Friday, October 15, 2010   : NMU uploaded to incoming

fts is neither in any delayed queue (as far as I can see) nor
uploaded. Do you have any news on this translation? It is the second
last open translation for at least German (since the newly uploaded
chemical-structures is probably not for Squeeze).

Thanks!

Greetings

Helge

-- 
  Dr. Helge Kreutzmann deb...@helgefjell.de
   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#354429: nut spams consoles and system logs with USB UPS

2010-10-17 Thread Arnaud Quette
Hi

2010/10/17 you wrote:

 Debian Squeeze
 2.6.32-5-amd64
 nut 2.4.3-1.1
 CyberPower 625HG UPS via usb
 Dell PowerEdge R210





 When usb.conf is configured to use driver usbhid-ups, and port=auto,
 functions are proper except syslog  local consoles are filled with the
 messages below.

 As mentioned previously, local consoles are rendered useless unless nut
 service is stopped prior to use.
 (By issuing the following command: /etc/init.d/nut stop)





 I cannot set the usb.conf to use driver cyberpower, as it's been
 removed from the package over lack of maintenance support from the
 vendor.

 When I set the usb.conf to use alternate driver powerpanel, and
 port=auto, the service cannot start and returns Unable to open auto: No
 such file or directory error message.


the 2 above drivers are (or were) serial drivers, requiring a serial port
like /dev/ttyS0.
I don't see the link with the present bug! can you please shed some light?


 Excerpt of usbhis-ups errors:

 Oct 17 00:58:42 Planck kernel: [  827.184548] usb 2-1.1: usbfs: process
 1677 (usbhid-ups) did not claim interface 0 before use
 Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_interrupt: error
 submitting URB: Device or resource busy
 Oct 17 00:58:45 Planck kernel: [  830.234307] usb 2-1.1: usbfs: process
 1690 (usbhid-ups) did not claim interface 0 before use
 Oct 17 00:58:45 Planck kernel: [  830.234418] usb 2-1.1: usbfs: process
 1690 (usbhid-ups) did not claim interface 0 before use
 Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_report: error
 sending control message: Device or resource busy
 Oct 17 00:58:45 Planck usbhid-ups[1690]: Got disconnected by another
 driver: Device or resource busy
 Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_interrupt: error
 submitting URB: Device or resource busy
 Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_report: error
 sending control message: Device or resource busy
 Oct 17 00:58:48 Planck usbhid-ups[1677]: Got disconnected by another
 driver: Device or resource busy
 Oct 17 00:58:48 Planck kernel: [  833.177178] usb 2-1.1: usbfs: process
 1677 (usbhid-ups) did not claim interface 0 before use
 Oct 17 00:58:48 Planck kernel: [  833.177289] usb 2-1.1: usbfs: process
 1677 (usbhid-ups) did not claim interface 0 before use



looking at the above, you have a driver fight: you have probably 2
usbhid-ups drivers instances, fighting to get the device connexion. which in
turns generate the above noise in your syslog.

please confirm this by issuing a ps -elf | grep usbhid-ups

cheers
Arno
-- 
Network UPS Tools (NUT) Project Leader - http://www.networkupstools.org/
Debian Developer - http://www.debian.org
Free Software Developer - http://arnaud.quette.free.fr/


Bug#598308: vdr: NMU diff for 1.6.0-18.1

2010-10-17 Thread Tobias Grimm
Hello!

Am Samstag, den 16.10.2010, 21:06 +0300 schrieb jari.aa...@cante.net:

 Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #598308.
 See the debian/patches directory for the important fixes.
 
 Let me know if it's ok to proceed with the NMU.

Thanks! You don't need to do an NMU, cause I'm going to upload a new
version today anyways. I've included your patch.

Do you think it's worth requesting a freeze exception because of this
bug?

Thx,

Tobias





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



Bug#385246: mail_transfer_encoding = 8bit is not enough for me

2010-10-17 Thread Stefano Lenzi

Hi All,

I have tryed to add
mail_transfer_encoding = 8bit
to [defaults] section, but it didn't work for me. The issue was fixed by 
adding also

config_charset = utf-8
to [general] section

my configuration is:
svnmailer1.0.8-9
python   2.5.2-3
subversion   1.5.1dfsg1-4

I hope it helps,
Stefano Kismet Lenzi



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



Bug#600147: segmentation fault when invoked with -d option

2010-10-17 Thread Mirosław Zalewski
Package: vnstat
Severity: normal

I have found that libstdc++6 seems to not affect this bug. I have
installed that one from Sid and the bug still exists.

I think that only libc6 could be involved (well, it is in dependencies),
but last update was in september, and I'm quite sure that vnstat was
working in october.

Removing old database and creating new does not solve a problem (neither
does reinstalling vnstat).

I have run out of ideas. Please help.

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

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

Versions of packages vnstat depends on:
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib

vnstat recommends no packages.

Versions of packages vnstat suggests:
pn  vnstati   none (no description available)

-- no debconf information



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



Bug#600447: Non UTF8/En locales bug reappeared (renders hplip useless for non US/UTF8 users)

2010-10-17 Thread Roberto Di Cosmo
Package: hplip
Version: 3.10.6-1
Severity: important
Tags: patch


In 3.10.6-1 there is still a serious issue with CUPS *requiring* either
an US-ASCII locale, or a UTF8 locale. As a consequence, all programs
communicating with CUPS to discuver printers/install printers, and the
like, fail miserably with errors of various kind, like hp-setup not
finding the printer (#515720), or not finding the proper PPD files, hp-clean
complaining that there is no printer, etc.

These extra errors *all* come from the inability of the hplip tools
to communicate properly with CUPS, because the locale forces an
encoding of the messages in a format that CUPS refuses to interpret.

According to what is said in #471228, CUPS is not going to change this
behaviour, so hplip needs to do either:

 * be patched to convert everything to UTF8 no matter what the user's 
   locale is, as done in hplip-2.8.12-force-utf8.patch submitted by 
   Tiago Salem Herrmann (ref: https://bugs.launchpad.net/bugs/162196)
   that was used in 3.9.2, but is gone in 3.10.6-1

 * or at least pop up a warning box if it detects a non UTF8 locale
   telling the user that it will not work with CUPS without an UTF8 locale
   (and saving the user, the Debian maintainers, and a lot of other
   people a sizeable amount of time)

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

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

Versions of packages hplip depends on:
ii  adduser   3.112  add and remove users and groups
ii  coreutils 8.5-1  GNU core utilities
ii  cups  1.4.4-3Common UNIX Printing System(tm) - 
ii  cups-client   1.4.4-3Common UNIX Printing System(tm) - 
ii  hplip-cups3.10.6-1   HP Linux Printing and Imaging - CU
ii  hplip-data3.10.6-1   HP Linux Printing and Imaging - da
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib
ii  libcups2  1.4.4-3Common UNIX Printing System(tm) - 
ii  libdbus-1-3   1.2.24-3   simple interprocess messaging syst
ii  libhpmud0 3.10.6-1   HP Multi-Point Transport Driver (h
ii  libsane   1.0.21-4   API library for scanners
ii  libsane-hpaio 3.10.6-1   HP SANE backend for multi-function
ii  libssl0.9.8   0.9.8o-2   SSL shared libraries
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip
ii  policykit-1   0.96-3 framework for managing administrat
ii  python2.6.5-13   interactive high-level object-orie
ii  python-dbus   0.83.1-1   simple interprocess messaging syst
ii  python-imaging1.1.7-2Python Imaging Library
ii  python-pexpect2.3-1  Python module for automating inter
ii  python-support1.0.10 automated rebuilding support for P

Versions of packages hplip recommends:
ii  avahi-daemon  0.6.25-1   Avahi mDNS/DNS-SD daemon
ii  sane-utils1.0.21-4   API library for scanners -- utilit

Versions of packages hplip suggests:
pn  hplip-docnone  (no description available)
ii  hplip-gui3.10.6-1HP Linux Printing and Imaging - GU
ii  kdeprint 4:3.5.9.dfsg.1-6+lenny1 print system for KDE
ii  python-notify0.1.1-2+b2  Python bindings for libnotify

-- no debconf information



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



Bug#600448: please unblock debtree/1.0.6

2010-10-17 Thread Aníbal Monsalve Salazar
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock


debtree 1.0.6 has been in unstable for 42 days

it has fixes for 573818 and 574647 by Frans Pop

please consider unbloking it

thank you


debdiff debtree_1.0.5.dsc debtree_1.0.6.dsc | diffstat
 debian/changelog |   12 
 debian/control   |2 +-
 debtree  |8 
 debtree.1|6 +++---
 4 files changed, 20 insertions(+), 8 deletions(-)

debdiff debtree_1.0.5.dsc debtree_1.0.6.dsc
diff -Nru debtree-1.0.5/debian/changelog debtree-1.0.6/debian/changelog
--- debtree-1.0.5/debian/changelog  2010-02-10 03:49:54.0 +1100
+++ debtree-1.0.6/debian/changelog  2010-09-04 23:18:08.0 +1000
@@ -1,3 +1,15 @@
+debtree (1.0.6) unstable; urgency=low
+
+  [ Frans Pop ]
+  * Fix typos in man page; thanks to A. Costa for the patch. Closes: #573818.
+  * Disable pattern meta characters for package names in regular expressions.
+Closes: #574647.
+
+  [ Anibal Monsalve Salazar ]
+  * New maintainer. Frans, we'll miss you.
+
+ -- Anibal Monsalve Salazar ani...@debian.org  Sat, 04 Sep 2010 23:18:01 
+1000
+
 debtree (1.0.5) unstable; urgency=low
 
   * Remove ucf-handled config files on purge. With thanks to piuparts testing.
diff -Nru debtree-1.0.5/debian/control debtree-1.0.6/debian/control
--- debtree-1.0.5/debian/control2010-02-10 03:50:27.0 +1100
+++ debtree-1.0.6/debian/control2010-09-04 22:47:32.0 +1000
@@ -1,7 +1,7 @@
 Source: debtree
 Section: utils
 Priority: optional
-Maintainer: Frans Pop f...@debian.org
+Maintainer: Anibal Monsalve Salazar ani...@debian.org
 Build-Depends: debhelper (= 7)
 Standards-Version: 3.8.4
 Homepage: http://collab-maint.alioth.debian.org/debtree/
diff -Nru debtree-1.0.5/debtree debtree-1.0.6/debtree
--- debtree-1.0.5/debtree   2010-02-09 13:57:53.0 +1100
+++ debtree-1.0.6/debtree   2010-09-04 22:42:26.0 +1000
@@ -374,7 +374,7 @@
 sub first_set_with_package {
my ($package, $set) = @_;
foreach my $s (sort keys %$set) {
-   if ($$set{$s}{plist} =~ /(^|,)$package(,|$)/) {
+   if ($$set{$s}{plist} =~ /(^|,)\Q$package\E(,|$)/) {
return $s;
}
}
@@ -534,7 +534,7 @@
# Second or later dependency in alternatives: skip unless versioned 
(see also below)
# TODO: make this work better if only some of the alternatives have 
versioned deps
if ($OR_name  (! $with_versions || ! $pkgdep) 
-   $OR_dep_list{$OR_name}{plist} =~ /,$dep_package(,|$)/) {
+   $OR_dep_list{$OR_name}{plist} =~ /,\Q$dep_package\E(,|$)/) {
return
}
 
@@ -605,11 +605,11 @@
}
$pstatus{$rdep}{prov_rdeps} = 1;
 
-   my $regex = join(|, @pset);
my $pinfo = get_apt_pinfo($rdep, );
my $deps = get_apt_deps($pinfo, $dtype);
+   my $regex = (\Q . join(\E|\Q, @pset) . \E);
for my $dep_or (split(/,/, $deps)) {
-   next unless $dep_or =~ /(^|\|)($regex)([| ]|$)/;
+   next unless $dep_or =~ /(^|\|)$regex([| ]|$)/;
 
my @dset;
my $cnt = 0;
diff -Nru debtree-1.0.5/debtree.1 debtree-1.0.6/debtree.1
--- debtree-1.0.5/debtree.1 2009-11-15 01:26:50.0 +1100
+++ debtree-1.0.6/debtree.1 2010-09-04 22:42:26.0 +1000
@@ -44,12 +44,12 @@
 more of the dependencies are versioned. In that case a separate arrow (ending
 at the relevant package) showing the version requirement is drawn. Arrows for
 dependencies on a package in a set of alternatives will originate at the
-correct package in the set, though in some cases this may be on the seperation
+correct package in the set, though in some cases this may be on the separation
 line between two alternatives.
 .PP
 If a package included in an alternative dependency also needs to be displayed
 separately or is also part of some other alternative dependency set, its
-dependencies will only be included once, with the package's first occurence.
+dependencies will only be included once, with the package's first occurrence.
 For the secondary occurences the package name will be shown between square
 brackets: `[...]'.
 .PP
@@ -131,7 +131,7 @@
 Suggested packages will never be included in a build dependency graph.
 If there are alternative packages to satisfy a dependency, normally only the
 first alternative will be shown. However, when used in combination with the
-\-\-show\-installed option, all allready installed alternatives will be
+\-\-show\-installed option, all already installed alternatives will be
 included for satisfied dependencies (unless the \-\-no\-alternatives option
 is also given).
 


signature.asc
Description: Digital signature


Bug#596593: vdr-dev: vdrdbg-buildpackage is not a makefile

2010-10-17 Thread Tobias Grimm
 -export DEB_BUILD_OPTIONS=$DEB_BUILD_OPTIONS noopt nostrip
 +export DEB_BUILD_OPTIONS=noopt nostrip $DEB_BUILD_OPTIONS
 would do as well? A leading blank in DEB_BUILD_OPTIONS causes
 problems, a trailing blank does not (at least for me).

Looks good to me.

@Julien / Malte: Thanks for reporting and providing a fix.

I'll upload the fix soon.

Sorry for the delay!

Tobias





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



Bug#600449: ITP: globus-gridmap-callout-error -- Globus Toolkit - Globus Gridmap Callout Errors

2010-10-17 Thread Mattias Ellert
Package: wnpp
Severity: wishlist
Owner: Mattias Ellert mattias.ell...@fysast.uu.se

* Package name: globus-gridmap-callout-error
  Version : 0.3
* URL : http://www.globus.org/
* License : Apache 2
  Description : Globus Toolkit - Globus Gridmap Callout Errors

 The Globus Toolkit is an open source software toolkit used for
 building Grid systems and applications. It is being developed by the
 Globus Alliance and many others all over the world. A growing number
 of projects and companies are using the Globus Toolkit to unlock the
 potential of grids for their cause.
 .
 The libglobus-gridmap-callout-error0 package contains:
 Globus Gridmap Callout Errors



smime.p7s
Description: S/MIME cryptographic signature


Bug#600450: gt5: Useless lines in HTML output 'local' error message

2010-10-17 Thread Stéphane Rosi
Package: gt5
Version: 1.5.0~20101011+bzr26-1
Severity: normal
Tags: patch

Hi!

Two bugs appeared in version 1.4.0.2 of the gt5 code.


1. Useless lines appear in the HTML output (not present in the 1.4.0.1 version)
--
HTML output 1.4.0.2 (with useless lines) :
 ./:   [58MB in 63 files or directories]  -40KB
 
 59824 59864 . 59824 59864 .
   40MB [68.92%] ./dead.letter
 59824 59864 . 41232 41232 ./dead.letter
  7.3MB [12.44%] ./.mozilla/
 59824 59864 . 7440 7440 ./.mozilla
  4.3MB [ 7.35%] ./shellinabox-2.10/
 59824 59864 . 4400 4400 ./shellinabox-2.10
  2.2MB [ 3.70%] ./DramainthePhD.mp3
 59824 59864 . 2216 2216 ./DramainthePhD.mp3

HTML output 1.4.0.1 (no useless lines)
 ./:   [58MB in 63 files or directories]

   40MB [68.89%] ./dead.letter
  7.3MB [12.43%] ./.mozilla/
  4.3MB [ 7.35%] ./shellinabox-2.10/
  2.2MB [ 3.70%] ./DramainthePhD.mp3


2. local error message

I get an error message when starting gt5 :
 line 594: local: can only be used in a function


I attached a patch that corrects these bugs.

Cheers,
-- 
Steph

-- System Information:
Debian Release: 5.0.6
Architecture: i386 (i586)

Kernel: Linux 2.6.32-5-486
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 gt5 depends on:
ii  bash3.2-4The GNU Bourne Again SHell
ii  links2  2.1pre37-1.1 Web browser running in both graphi

gt5 recommends no packages.

gt5 suggests no packages.

-- no debconf information
--- gt5-1.4.0.2.bak 2010-10-16 23:25:29.0 +0200
+++ /usr/bin/gt52010-10-17 11:33:55.0 +0200
@@ -591,8 +591,6 @@ DEPTH=$(du --help 21 |
Verbose done
 fi
 
-local f
-
 for f in $F1 $F2
 do
 
@@ -751,8 +749,7 @@ sort -k3 -k1,1nr |
}
 }
 
-$1  0
-{
+$1  0 {
# Division by zero ...
 
if ( op != $3 )


Bug#600451: mingw-w64: missing C++ compiler

2010-10-17 Thread Török Edwin
Package: mingw-w64
Version: 0~20100125-3
Severity: normal

mingw-w64 only includes C compiler, and lacks a C++ compiler.
Please include C++ compiler too.

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

Kernel: Linux 2.6.36-rc7-phenom (SMP w/6 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

mingw-w64 depends on no packages.

Versions of packages mingw-w64 recommends:
ii  gcc-mingw32 4.4.4-0.1+b1 The GNU Compiler Collection (cross
ii  mingw32-binutils2.20-0.1 Minimalist GNU win32 (cross) binut

mingw-w64 suggests no packages.

-- no debconf information



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



Bug#600455: vzctl: ct reboot feature broken - part II

2010-10-17 Thread Thorsten Schifferdecker
Package: vzctl
Version: 3.0.24-7
Severity: important



Hi Ola,

vzevent cannot start:

---8...
Checking vzevent kernel module .done
Starting vzeventd: /etc/init.d/vzeventd: line 64: daemon: command not found
---8...

include commit to vzctl pkg.
http://git.openvz.org/?p=vzctl;a=commit;h=043e3cc76e590574d736f9830098d6bddf5bba76

Bye,
 Thorsten
--
Thorsten Schifferdecker



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



Bug#600456: please default to squeeze in debian template

2010-10-17 Thread Daniel Baumann
Package: lxc
Severity: wishlist

Hi,

please default to squeeze in the debian template.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#597119: Proposed new ffado package

2010-10-17 Thread Adam D. Barratt
On Sat, October 16, 2010 23:41, Jonas Smedegaard wrote:
 On Tue, Sep 28, 2010 at 08:11:41PM +0200, Adrian Knoth wrote:
- Forwarded message from Adam D. Barratt a...@adam-barratt.org.uk
 -
[...]
I assume the cdbs build-dependency bump is related to the changes in
debian/rules?  Specifically these:

-include /usr/share/cdbs/1/rules/buildcore.mk

-DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)

 No, above is just superfluous duplicate code.

 The bump was due to inclusion of utils.mk used for invoking dh-buildinfo
 instead of the previous explicit rule.

 I now relaxed the inclusion of utils.mk so that dh-buildinfo simply is
 silently skipped when using a too old cdbs version.

Thanks; I've unblocked -5.

Regards,

Adam




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



Bug#600453: initramfs-tools: dist-upgrade lenny-squeeze mkinitramfs: failed

2010-10-17 Thread kurt witschi
Subject: initramfs-tools: dist-upgrade lenny-squeeze mkinitramfs: failed to 
determine root device
Package: initramfs-tools
Version: 0.98.4
Severity: normal

*** Please type your report below this line ***
trying to dist-upgrade my orion (arm) box form lenny to squeeze i got the 
following error:
Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-2.6.32-2-orion5x
mkinitramfs: failed to determine root device
mkinitramfs: workaround is MODULES=most
Error please report bug on initramfs-tools and include the output of 'mount'
update-initramfs: failed for /boot/initrd.img-2.6.32-2-orion5x
dpkg: error processing initramfs-tools (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for python-support ...
Errors were encountered while processing:
 linux-image-2.6.32-5-orion5x
 linux-image-2.6-orion5x
 initramfs-tools
mount: / is busy
E: Sub-process /usr/bin/dpkg returned an error code (1)

mount output: 
~$ mount
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
rootfs on / type rootfs (rw)
tmpfs on /tmp type tmpfs (rw,size=32m)
/dev/sdb2 on /media/adata type ext2 (rw,noatime)
/dev/sdb3 on /media/tbackupDrive type ext2 (rw,noatime)
nfsd on /proc/fs/nfsd type nfsd (rw)
aufs on / type aufs (rw)
rpc_pipefs on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)

Additional info:
root is on a usb-flash-disk, in normal operation root is on an aufs,
to prevent to many writes to the flash.
for the dist-upgrade the box was booted without the bootarg
aufs=tmpfs.
I do not fully uderstand why root still is listed as aufs, but
the writes do really hit the usb-disk (otherways dist-upgrade
would have resulted in out of memory long ago).
followed the url blow for the aufs-setup
http://211.78.87.227/viewtopic.php?p=125219sid=92ed65a36b73f123c79fb071e58d6025
thank you very much for any help.
ps: unsure if this should not have higher severety as rebooting now would 
porbably make the system unbootable.

-- Package-specific info:
-- initramfs sizes
-rw-r--r-- 1 root root 2.2M Mar 19  2010 /boot/initrd.img-2.6.26-2-orion5x
-rw-r--r-- 1 root root 2.1M Feb 16  2010 /boot/initrd.img-2.6.26-2-orion5x.bak
-rw-r--r-- 1 root root0 Jun 27 15:44 /boot/initrd.img-2.6.26-2-orion5x.new
-rw-r--r-- 1 root root 2.1M Feb 20  2010 /boot/initrd.img-2.6.30-2-orion5x
-rw-r--r-- 1 root root 2.2M Apr 13  2010 /boot/initrd.img-2.6.32-2-orion5x
-- /proc/cmdline
console=ttyS0,115200n8 root=/dev/ram rw initrd=0x80,0x3f

-- resume
# RESUME=/dev/sda2
RESUME='UUID=f7060f39-0f73-4604-9823-93e367a18a05'
-- /proc/filesystems
ext2

-- lsmod
Module  Size  Used by
appletalk  24225  0 
ipv6  253185  18 
nfsd  247648  13 
exportfs3000  1 nfsd
nfs   269374  0 
lockd  63141  2 nfsd,nfs
fscache34101  1 nfs
nfs_acl 2277  2 nfsd,nfs
auth_rpcgss33314  2 nfsd,nfs
sunrpc171030  12 nfsd,nfs,lockd,nfs_acl,auth_rpcgss
loop   11411  0 
evdev   6582  0 
sata_mv24205  2 
mv643xx_eth22546  0 
libata133831  1 sata_mv
libphy 14128  1 mv643xx_eth
gpio_keys   2655  0
mv_cesa 4648  0 
aes_generic32820  1 mv_cesa
ext2   55407  3 
mbcache 4860  1 ext2
sd_mod 30988  5 
crc_t10dif  1106  1 sd_mod
ehci_hcd   32780  0 
usb_storage33760  1 
usbcore   110912  3 ehci_hcd,usb_storage
nls_base5367  1 usbcore
scsi_mod  119100  3 libata,sd_mod,usb_storage
aufs  138852  0 

-- /etc/initramfs-tools/modules
aufs

-- /etc/kernel-img.conf
# Kernel image management overrides
# See kernel-img.conf(5) for details
do_symlinks = yes
relative_links = yes
do_bootloader = no
do_bootfloppy = no
do_initrd = yes
link_in_boot = yes
postinst_hook = flash-kernel

-- /etc/initramfs-tools/initramfs.conf
MODULES=most
BUSYBOX=y
KEYMAP=n
COMPRESS=gzip
BOOT=local
DEVICE=
NFSROOT=auto

-- /etc/initramfs-tools/update-initramfs.conf
update_initramfs=yes
backup_initramfs=no

-- mkinitramfs hooks
/etc/initramfs-tools/hooks/:

/usr/share/initramfs-tools/hooks:
busybox
dmsetup
flash_kernel_set_root
keymap
klibc
thermal
udev


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.32-2-orion5x
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of 

Bug#567988: Pending?

2010-10-17 Thread Tobias Quathamer
package manpages-de
tag 567988 pending
thanks

Am Samstag, den 16.10.2010, 21:00 +0200 schrieb Helge Kreutzmann:
 Hello,
 given the huge activity on debian-l10n-german I suppose my wish for a
 review could be set to pending?

Yes, done.

 Do you also plan further uploads to Squeeze?

Well, depends on the release of squeeze ;-)

But seriously: As you know, I'm currently working on the (proper)
translation of coreutils. When that is done, I think a new release of
manpages-de (and subsequently a new upload) would be warranted.

So the sooner coreutils are up-to-date, the sooner I'll prepare a new
upload.

Regards,
Tobias

-- 
Tobias Quathamer | Bigamy is having one spouse too many.
Hamburg, Germany | Monogamy is the same.



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


Bug#600452: [INTL:es] Spanish debconf template translation for frontaccounting

2010-10-17 Thread Camaleón
Package: frontaccounting
Version: 2.2.10-1
Severity: wishlist
Tags: l10n patch

Greetings,

-- 
Camaleón 
# frontaccounting po-debconf translation to Spanish
# Copyright (C) 2010 Software in the Public Interest
# This file is distributed under the same license as the frontaccounting 
package.
#
# Changes:
# - Initial translation
# Camaleón noela...@gmail.com, 2010
#
# - Updates
#
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid 
msgstr 
Project-Id-Version: frontaccounting 2.2.10-1\n
Report-Msgid-Bugs-To: frontaccount...@packages.debian.org\n
POT-Creation-Date: 2010-06-25 06:56+0200\n
PO-Revision-Date: 2010-10-14 12:42+0100\n
Last-Translator: Camaleón noela...@gmail.com\n
Language-Team: Debian Spanish debian-l10n-span...@lists.debian.org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

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

#. Type: multiselect
#. Choices
#: ../templates:2001
#| msgid apache2, lighttpd
msgid lighttpd
msgstr lighttpd

#. Type: multiselect
#. Description
#: ../templates:2002
msgid Web server to reconfigure automatically:
msgstr Servidor web para configurar automáticamente:

#. Type: multiselect
#. Description
#: ../templates:2002
msgid Please choose the web server that should be automatically configured to 
run FrontAccounting.
msgstr Por favor, seleccione el servidor web que se debe configurar 
automáticamente para ejecutar FrontAccounting.

#. Type: boolean
#. Description
#: ../templates:3001
#| msgid Has the database already been initialized?
msgid Has the FrontAccounting database already been initialized?
msgstr ¿Se ha iniciado ya la base de datos de FrontAccounting?

#. Type: boolean
#. Description
#: ../templates:4001
msgid Skip database creation?
msgstr ¿Omitir la creación de la base de datos?

#. Type: boolean
#. Description
#: ../templates:4001
#| msgid 
#| Debconf can set up the FrontAccounting database automatically or you can 
#| create it manually after installation.
msgid The FrontAccounting database can be set up automatically or you can 
create it manually after installation.
msgstr Puede configurar la base de datos de FrontAccounting automáticamente o 
puede crearla de forma manual tras la instalación.

#. Type: error
#. Description
#: ../templates:5001
#| msgid Manual database configuration required!
msgid Manual database configuration required
msgstr Se requiere una configuración manual de la base de datos

#. Type: error
#. Description
#: ../templates:5001
msgid No MySQL client was found, which means it is not possible to 
automatically create FrontAccounting's database.
msgstr No se ha encontrado ningún cliente MySQL por lo que no se puede crear 
automáticamente la base de datos de FrontAccounting.

#. Type: error
#. Description
#: ../templates:5001
#| msgid 
#| No mysql client found, which means there's no way to offer automatic 
#| database setup. If you wish to get help setting up the database 
#| configuration, please install mysql-client (and possibly also mysql-
#| server if you want to run the database server on this machine) and then 
#| run \dpkg-reconfigure frontaccounting\ to rerun this configuration 
#| wizard. For now, the database configuration will be skipped
msgid You should install the mysql-client package (as well as mysql-server if 
you want the database to be hosted on this machine) and then run 
\dpkg-reconfigure frontaccounting\ again. For now, the database configuration 
will be skipped.
msgstr Debe instalar el paquete mysql-client (así como mysql-server, si desea 
hospedar la base de datos en este equipo) y después volver a ejecutar 
«dpkg-reconfigure frontaccounting». De momento, se omitirá la configuración de 
la base de datos.

#. Type: string
#. Description
#: ../templates:6001
#| msgid FrontAccounting database host name:
msgid FrontAccounting database server host name:
msgstr Nombre del servidor de la base de datos de FrontAccounting:

#. Type: string
#. Description
#: ../templates:6001
#| msgid This is the name of the database that FrontAccounting will use.
msgid Please enter the host name or IP address of the database server that 
will host FrontAccounting's database.
msgstr Por favor, introduzca el nombre o la dirección IP del servidor la base 
de datos donde se hospedará la base de datos de FrontAccounting.


Bug#600454: ia32-libs contains libjack from jack1, when jack2 is installed

2010-10-17 Thread Peter Nelson
Package: ia32-libs
Version: 20090808
Severity: normal


The jackd package has been virtualised to allow users to choose to install
either jackd1 or jackd2. However, this change hasn't follow suit in
ia32-libs, which only installs libjack from jackd1.

However, libjack from jackd1 is not compatible with jackd2 and vice-versa.

Perhaps to support this change, something like ia32-libs-jackd1 and
ia32-libs-jackd2 packages could be created?

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

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

Versions of packages ia32-libs depends on:
ii  dpkg1.15.8.5 Debian package management system
ii  lib32asound21.0.23-2 shared library for ALSA applicatio
ii  lib32gcc1   1:4.4.5-2GCC support library (32 bit Versio
ii  lib32ncurses5   5.7+20100313-4   shared libraries for terminal hand
ii  lib32stdc++64.4.5-2  The GNU Standard C++ Library v3 (3
ii  lib32z1 1:1.2.3.4.dfsg-3 compression library - 32 bit runti
ii  libc6-i386  2.11.2-6 Embedded GNU C Library: 32-bit sha
ii  lsb-release 3.2-23.1 Linux Standard Base version report

ia32-libs recommends no packages.

Versions of packages ia32-libs suggests:
ii  ia32-libs-gtk 20090804   GTK+ ia32 shared libraries

-- no debconf information





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



Bug#532818: zsync redirect bug (and patch)

2010-10-17 Thread Matt Zimmerman
zsync 0.6.1 now attempts to handle redirects intelligently, but at least
some of the time, it fails.  Similar failures are described in Debian bug
532818 and Ubuntu bug 661308.

I have isolated the root cause of these failures.  Full details and a patch
are available here:

http://launchpad.net/bugs/661308

and a copy of the patch (lightly tested) is attached.

-- 
 - mdz
Only in zsync-0.6.1+bug661308: .deps
Only in zsync-0.6.1+bug661308: Makefile
Only in zsync-0.6.1+bug661308: base64.o
Only in zsync-0.6.1+bug661308: build-stamp
Only in zsync-0.6.1+bug661308: client.o
Only in zsync-0.6.1+bug661308: config.h
Only in zsync-0.6.1+bug661308: config.log
Only in zsync-0.6.1+bug661308: config.status
Only in zsync-0.6.1+bug661308/doc: Makefile
diff -ru zsync-0.6.1/http.c zsync-0.6.1+bug661308/http.c
--- zsync-0.6.1/http.c	2010-10-17 11:37:07.0 +0100
+++ zsync-0.6.1+bug661308/http.c	2010-10-17 11:35:54.804452314 +0100
@@ -731,6 +731,7 @@
 rf-sd = connect_to(rf-chost, rf-cport);
 rf-server_close = 0;
 rf-rangessent = rf-rangesdone;
+rf-buf_start = rf-buf_end = 0;
 }
 
 /* range_fetch_getmore
Only in zsync-0.6.1+bug661308: http.o
Only in zsync-0.6.1+bug661308/librcksum: .deps
Only in zsync-0.6.1+bug661308/librcksum: Makefile
Only in zsync-0.6.1+bug661308/librcksum: hash.o
Only in zsync-0.6.1+bug661308/librcksum: librcksum.a
Only in zsync-0.6.1+bug661308/librcksum: md4.o
Only in zsync-0.6.1+bug661308/librcksum: range.o
Only in zsync-0.6.1+bug661308/librcksum: rsum.o
Only in zsync-0.6.1+bug661308/librcksum: state.o
Only in zsync-0.6.1+bug661308/libzsync: .deps
Only in zsync-0.6.1+bug661308/libzsync: Makefile
Only in zsync-0.6.1+bug661308/libzsync: libzsync.a
Only in zsync-0.6.1+bug661308/libzsync: sha1.o
Only in zsync-0.6.1+bug661308/libzsync: sha1test
Only in zsync-0.6.1+bug661308/libzsync: sha1test.o
Only in zsync-0.6.1+bug661308/libzsync: zmap.o
Only in zsync-0.6.1+bug661308/libzsync: zsync.o
Only in zsync-0.6.1+bug661308: make.o
Only in zsync-0.6.1+bug661308: makegz.o
Only in zsync-0.6.1+bug661308: progress.o
Only in zsync-0.6.1+bug661308: stamp-h1
Only in zsync-0.6.1+bug661308: url.o
Only in zsync-0.6.1+bug661308/zlib: .deps
Only in zsync-0.6.1+bug661308/zlib: Makefile
Only in zsync-0.6.1+bug661308/zlib: adler32.o
Only in zsync-0.6.1+bug661308/zlib: compress.o
Only in zsync-0.6.1+bug661308/zlib: crc32.o
Only in zsync-0.6.1+bug661308/zlib: deflate.o
Only in zsync-0.6.1+bug661308/zlib: inflate.o
Only in zsync-0.6.1+bug661308/zlib: inftrees.o
Only in zsync-0.6.1+bug661308/zlib: libdeflate.a
Only in zsync-0.6.1+bug661308/zlib: libinflate.a
Only in zsync-0.6.1+bug661308/zlib: trees.o
Only in zsync-0.6.1+bug661308/zlib: zutil.o
Only in zsync-0.6.1+bug661308: zsync
Only in zsync-0.6.1+bug661308: zsyncmake


signature.asc
Description: Digital signature


Bug#600457: please unblock discover-data/2.2010.10.14 or tell us how to proceed

2010-10-17 Thread Holger Levsen
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
x-debbugs-cc: debian-...@list.debian.org

Hi,

unfortunatly discover-data was uploaded to unstable (and squeeze-test in 
Debian Edu, thats how I noticed) with the following changes.

On Samstag, 16. Oktober 2010, Skolelinux archive Installer wrote:
 Changes: discover-data (2.2010.10.14) unstable; urgency=low
  .
   * Update HW mappings for PCI devices:
  8086:3582: install i810switch.
  80ee:beef: Install virtualbox-ose-guest-x11.
  Made ipw3945-source and ipw3945d package entries versioned to
  Etch and earlier (Closes: #583993).
   * Update HW mappings for USB devices:
  04e8:323a: Install splix.
  04e8:323b: Install splix.
  04e8:323d: Install splix.
  04e8:3242: Install splix.
  04e8:324c: Install splix.
  04e8:324d: Install splix.
  04e8:325b: Install splix.
  04e8:325f: Install splix.
  04e8:3260: Install splix.
  04e8:3268: Install splix.
  04e8:3276: Install splix.
  04e8:341b: Install splix.
  04e8:3426: Install splix (Closes: #595100).
   * Add depends on ${misc:Depends} to keep debhelper and lintian happy.
   * Raise debhelper compatibility level from 4 to 7.
   * Suggest python dependencies needed to update the data files.  These
 are only useful for the tools, and not needed for users of the data.
   * Update standards-version from 3.8.4 3.9.1.  No change needed.

I believe you wont like the debhelper bump and would like to know how we 
should proceed on this one? Will you unblock it despite this or should a new 
version reverting the debhelper change be uploaded?


thanks,
Holger


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


Bug#600458: unblock: nss-pam-ldapd/0.7.11

2010-10-17 Thread Arthur de Jong
Subject: unblock: nss-pam-ldapd/0.7.11
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: freeze-exception
Severity: normal

Please unblock version 0.7.11 of nss-pam-ldapd. It has the following
changes:

  * updated Vietnamese debconf translation by Clytie Siddall (closes: #598500)
  * grow the buffer for the PAM ruser to not reject logins for users with
a ruser including a domain part (closes: #600065)

It is debatable whether the second one is really RC but it prevents
certain users from logging in and is a very minor change (one line in
nslcd/pam.c).


I have another pending change that fixes a problem when nslcd would hang
under certain  circumstances (using TLS and seeing a certain type of
network problem during a search). This change is a little larger and was
the result of missing a last part of #596983.

It involves setting a timeout on the socket when closing the connection
and ensuring that in all places that the connection is closed the same
function is executed. It is a workaround for a bug in OpenLDAP when used
with GnuTLS. The relevant change can be seen here:
  
http://arthurdejong.org/viewvc/nss-pam-ldapd/nss-pam-ldapd/nslcd/myldap.c?r1=1276r2=1275pathrev=1276
(except the changes from line 690 onwards because they are specific to
changes in the trunk)

Do you want me to prepare an upload to unstable with the above change?

Thanks for considering.

-- 
-- arthur - adej...@debian.org - http://people.debian.org/~adejong --


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


Bug#600288: workaround

2010-10-17 Thread Gregory Mounie


 Hello,

 A workaround (from a MacOsX workaround, cf 
http://www.eclipse.org/forums/index.php?t=msggoto=488277,; ) is to 
change  :

  com.ibm.icu.util.TimeZone.DefaultTimeZoneType = JDK
 to
  com.ibm.icu.util.TimeZone.DefaultTimeZoneType = ICU

 in subfile com/ibm/icu/ICUConfig.properties
 of
 /usr/lib/eclipse/plugins/com.ibm.icu_4.0.1.v20100122.jar

 (2 cents: in-file archive editing of emacs rocks !)
 Grégory Mounié



smime.p7s
Description: S/MIME Cryptographic Signature


Bug#600459: please support suite in debian template

2010-10-17 Thread Daniel Baumann
Package: lxc
Severity: wishlist
Tag: patch

Hi,

please merge the following commit from upstream:

http://lxc.git.sourceforge.net/git/gitweb.cgi?p=lxc/lxc;a=commitdiff;h=2a7c16dc03c36473717bbaccd302856bea559740

commit 2a7c16dc03c36473717bbaccd302856bea559740
Author: Daniel Lezcano daniel.lezc...@free.fr
Date:   Fri Oct 1 17:07:03 2010 +0200

improve lxc-debian template to specify the suite

The attached patch adds a variable at the top of lxc-debian to
change the SUITE. Currently tested suites are lenny, squeeze, sid.

Also, the patch uses the dhcp3-client package instead of
dhcp-client which is deprecated in lenny and removed in squeeze.

Patch initialy from Mathieu Parent.
Signed-off-by: Daniel Lezcano dlezc...@fr.ibm.com

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#600460: ITP: firebird3.0 -- feature-rich, scalable, relational database

2010-10-17 Thread Damyan Ivanov
Package: wnpp
Severity: wishlist
Owner: Damyan Ivanov d...@debian.org

* Package name: firebird3.0
  Version : 3.0.0.28785-Unstable
  Upstream Author : The Firebird project http://www.firebirdsql.org/
* URL : http://www.firebirdsql.org/
* License : Mostly Initial Developer Public License 1.0 (MPL-like)
  Programming Lang: C, C++
  Description : feature-rich, scalable, relational database

Firebird is a relational database offering many ANSI SQL standard features  
that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers 
excellent concurrency, high performance, and powerful language support for 
stored procedures and triggers. It has been used in production systems, under a 
variety of names, since 1981.

The Firebird Project is a commercially independent project of C and C++ 
programmers, technical advisors and supporters developing and enhancing a 
multi-platform relational database management system based on the source code 
released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000.

Firebird 3.0 represents the project's next milestone release and it currently 
gets the most of the development efforts. It's going to offer some important 
and highly anticipated features that were promised for a long time already.

  * Revised architecture, including new authentication and configuration 
subsystems
  * Scalable (SMP/multi-core friendly) multi-threaded engine with a shared page 
cache
  * New ODS (version 12) with new system and monitoring tables
  * External (Java, C++, etc) stored procedures/triggers/functions
  * Reworked optimizer and new data access methods
  * Security enhancements
  * Various SQL extensions

Thhe first alpha release is planned for Q1 2011
released in Q1 2011

Be aware that the ODS (on-disk structure) hasn't been finalized yet, so 
databases could be incompatible between different unstable builds and you'll 
have to either recreate them or migrate them via backup/restore.


This package is meant to enter experimental, due to the high pace of upstream 
development. Its goal is to provide easy testing of the new features of 
Firebird and to have early exposure of the packaging helping to discover any  
problems.

firebird3.0 is the third group of packages for Firebird. Squeeze is going to 
release with firebird2.1 and firebird2.5. The plan for wheezy is to drop 
firebird2.1 and add firebird3.0, if that has proven stable by the time wheezy 
approaches releasable state.

Preliminary packagiing is available at 
http://git.debian.org/?p=pkg-firebird/3.0.git;a=summary



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



Bug#600461: unblock: libdatetime-format-strptime-perl/1.5000-1

2010-10-17 Thread Ansgar Burchardt
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider unblocking libdatetime-format-strptime-perl/1.5000-1.
It adds support for the UTC timezone (a one-line change) and a test for
this support.

See also https://rt.cpan.org/Public/Bug/Display.html?id=59209.

unblock libdatetime-format-strptime-perl/1.5000-1
diff -Nru libdatetime-format-strptime-perl-1.3000/Changes libdatetime-format-strptime-perl-1.5000/Changes
--- libdatetime-format-strptime-perl-1.3000/Changes	2010-06-26 18:57:52.0 +0200
+++ libdatetime-format-strptime-perl-1.5000/Changes	2010-10-16 22:26:44.0 +0200
@@ -1,8 +1,18 @@
+1.5000 2010-10-16
+
+- This module did not recognize UTC as a valid time zone. Patch by Danijel
+  Tašov. RT #59209.
+
+1.4000 2010-06-28
+- Actually update $VERSION in module file. Reported by David Wheeler.
+
 1.3000 2010-06-26
 - Specifiers which allowed for leading space before a number (like %e)
   would cause DateTime.pm to throw an error if the date being parsed
   actually contained leading space. Patch by Alex Vandiver. RT #58459.
 
+- License is now Artistic 2.0
+
 1.2000 2010-03-19
 - Updated to use non-deprecated DateTime::Locale API
 
diff -Nru libdatetime-format-strptime-perl-1.3000/INSTALL libdatetime-format-strptime-perl-1.5000/INSTALL
--- libdatetime-format-strptime-perl-1.3000/INSTALL	2010-06-26 18:57:52.0 +0200
+++ libdatetime-format-strptime-perl-1.5000/INSTALL	2010-10-16 22:26:44.0 +0200
@@ -38,7 +38,7 @@
 
 ## Documentation
 
-DateTime-Format-Strptime documentation is available as in POD.
+DateTime-Format-Strptime documentation is available as POD.
 You can run perldoc from a shell to read the documentation:
 
 % perldoc DateTime::Format::Strptime
diff -Nru libdatetime-format-strptime-perl-1.3000/META.json libdatetime-format-strptime-perl-1.5000/META.json
--- libdatetime-format-strptime-perl-1.3000/META.json	2010-06-26 18:57:52.0 +0200
+++ libdatetime-format-strptime-perl-1.5000/META.json	2010-10-16 22:26:44.0 +0200
@@ -4,7 +4,7 @@
   Dave Rolsky auta...@urth.org
],
dynamic_config : 0,
-   generated_by : Dist::Zilla version 4.101740, CPAN::Meta::Converter version 2.101670,
+   generated_by : Dist::Zilla version 4.102342, CPAN::Meta::Converter version 2.101670,
license : [
   artistic_2
],
@@ -16,8 +16,7 @@
prereqs : {
   configure : {
  requires : {
-ExtUtils::MakeMaker : 6.31,
-Module::Build : 0.36
+ExtUtils::MakeMaker : 6.31
  }
   },
   runtime : {
@@ -25,11 +24,7 @@
 DateTime : 0.4304,
 DateTime::Locale : 0.45,
 DateTime::TimeZone : 0.79,
-Params::Validate : 0.64
- }
-  },
-  test : {
- requires : {
+Params::Validate : 0.64,
 Test::More : 0.88
  }
   }
@@ -46,6 +41,6 @@
  web : http://hg.urth.org/hg/DateTime-Format-Strptime;
   }
},
-   version : 1.3000
+   version : 1.5000
 }
 
diff -Nru libdatetime-format-strptime-perl-1.3000/META.yml libdatetime-format-strptime-perl-1.5000/META.yml
--- libdatetime-format-strptime-perl-1.3000/META.yml	2010-06-26 18:57:52.0 +0200
+++ libdatetime-format-strptime-perl-1.5000/META.yml	2010-10-16 22:26:44.0 +0200
@@ -2,13 +2,11 @@
 abstract: 'Parse and format strp and strf time patterns'
 author:
   - 'Dave Rolsky auta...@urth.org'
-build_requires:
-  Test::More: 0.88
+build_requires: {}
 configure_requires:
   ExtUtils::MakeMaker: 6.31
-  Module::Build: 0.36
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.101740, CPAN::Meta::Converter version 2.101670'
+generated_by: 'Dist::Zilla version 4.102342, CPAN::Meta::Converter version 2.101670'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -19,7 +17,8 @@
   DateTime::Locale: 0.45
   DateTime::TimeZone: 0.79
   Params::Validate: 0.64
+  Test::More: 0.88
 resources:
   bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=DateTime-Format-Strptime
   repository: http://hg.urth.org/hg/DateTime-Format-Strptime
-version: 1.3000
+version: 1.5000
diff -Nru libdatetime-format-strptime-perl-1.3000/Makefile.PL libdatetime-format-strptime-perl-1.5000/Makefile.PL
--- libdatetime-format-strptime-perl-1.3000/Makefile.PL	2010-06-26 18:57:52.0 +0200
+++ libdatetime-format-strptime-perl-1.5000/Makefile.PL	2010-10-16 22:26:44.0 +0200
@@ -11,12 +11,9 @@
 my %WriteMakefileArgs = (
   'ABSTRACT' = 'Parse and format strp and strf time patterns',
   'AUTHOR' = 'Dave Rolsky auta...@urth.org',
-  'BUILD_REQUIRES' = {
-'Test::More' = '0.88'
-  },
+  'BUILD_REQUIRES' = {},
   'CONFIGURE_REQUIRES' = {
-'ExtUtils::MakeMaker' = '6.31',
-'Module::Build' = '0.36'
+'ExtUtils::MakeMaker' = '6.31'
   },
   'DISTNAME' = 'DateTime-Format-Strptime',
   'EXE_FILES' = [],
@@ -26,9 +23,10 @@
   

Bug#600458: unblock: nss-pam-ldapd/0.7.11

2010-10-17 Thread Philipp Kern
On Sun, Oct 17, 2010 at 12:54:05PM +0200, Arthur de Jong wrote:
 Please unblock version 0.7.11 of nss-pam-ldapd. It has the following
 changes:
 
   * updated Vietnamese debconf translation by Clytie Siddall (closes: #598500)
   * grow the buffer for the PAM ruser to not reject logins for users with
 a ruser including a domain part (closes: #600065)
 
 It is debatable whether the second one is really RC but it prevents
 certain users from logging in and is a very minor change (one line in
 nslcd/pam.c).

Unblocked.

 I have another pending change that fixes a problem when nslcd would hang
 under certain  circumstances (using TLS and seeing a certain type of
 network problem during a search). This change is a little larger and was
 the result of missing a last part of #596983.
 
 It involves setting a timeout on the socket when closing the connection
 and ensuring that in all places that the connection is closed the same
 function is executed. It is a workaround for a bug in OpenLDAP when used
 with GnuTLS. The relevant change can be seen here:
   
 http://arthurdejong.org/viewvc/nss-pam-ldapd/nss-pam-ldapd/nslcd/myldap.c?r1=1276r2=1275pathrev=1276
 (except the changes from line 690 onwards because they are specific to
 changes in the trunk)
 
 Do you want me to prepare an upload to unstable with the above change?

Two issues in one bug report is a bit annoying.  Please let the above
version migrate first.

Workarounds like these are really hard to judge IMHO.  But as the line 690+
changes are irrelevant you can go ahead.

Kind regards,
Philipp Kern



signature.asc
Description: Digital signature


Bug#600462: lbdb-fetchaddr: Default encoding ISO-8859-15 is annoying

2010-10-17 Thread Jens Stimpfle
Package: lbdb
Version: 0.36
Severity: normal
Tags: patch

Hi,

lbdb-fetchaddr uses latin9 as default charset, unless another one is 
given on the commandline. While I agree that using a unibyte charset is 
the only sane default when no precise information about the system is 
available, I think fetchaddr should respect locale environment variables 
as do most other sensible programs.

I suppose most users use UTF-8 like me, and for those the current 
behaviour is just broken and forces them to look for a workaround (in 
this case searching the lbdb-fetchaddr manpage for the charset 
commandline option which is not so obvious I think).

From what I read up in a few minutes, a simple change like: 

28a29,30
 #include locale.h
 #include langinfo.h
125a128,132
 #ifdef HAVE_ICONV
   /* set locale so as to enable a query for the preferred db file 
   encoding */
   setlocale (LC_ALL, );
   *charsetptr = nl_langinfo (CODESET);
 #endif

to fetchaddr.c should to it (it works for me, but could perhaps need 
some beautification like tests for locale headers or so).

Kind regards,
Jens Stimpfle

PS: I've removed the System Information reportbug initially created 
below, because I tested the above on a squeeze system, but can't get 
reportbug to use non-standard sendmail there, and this here is a lenny 
system... I hope this isn't a problem -- I am not so much in the 
bug-tracking netiquette.



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



Bug#600463: unblock: libnet-twitter-perl/3.13008-1

2010-10-17 Thread Ansgar Burchardt
Package: release.debian.org
Severity: wishlist
User: release.debian@packages.debian.org
Usertags: unblock

Please consider unblocking libnet-twitter-perl.  It now uses HTTPS
instead of HTTP for OAuth token negotiation as recommended by
Twitter[1] (that is s,http,https, for several URLs).  There are no other
changes besides a change in wording in debian/copyright and a newer
Standards-Version.  The updated package has already been in unstable for
some time (38 days).

Including this change in Squeeze would be better than having to deal
with Twitter deciding to only support HTTPS later and the package
breaking (I am not aware of any such plans, but I also don't use Twitter
myself).

unblock libnet-twitter-perl/3.13008-1

Regards,
Ansgar

[1] http://dev.twitter.com/pages/auth#at-twitter



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



Bug#600464: please default to cdn.debian.net in debian template

2010-10-17 Thread Daniel Baumann
Package: lxc
Severity: wishlist

Hi,

please default to cdn.debian.net rather than ftp.debian.org in the
debian template.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#600308: [DebianGIS-dev] Bug#600308: qgis: package will be updated to 1.5 'Tethys' ?

2010-10-17 Thread Francesco P. Lovergine
On Fri, Oct 15, 2010 at 11:05:43PM +0200, Samy wrote:
 Package: qgis
 Version: 1.6.0+svn14326~unstable1
 Severity: wishlist
 
 I would use the version 1.5 on my Debian Sid, but there is no update since
 april. Why this new stable version is not packaged by Debian GIS Team ?
 I tried with non-official repository on  http://debian.gfoss.it, but qgis
 hangs. And the version 1.6 of the nightly builds on http://qgis.org/debian-
 nightly have some grave bugs.
 
 Thanks for packaging 1.5 !
 

No, 1.4 is the version included in squeeze. The 1.5 vesion can be targeted
for experimental and future backports. We are in freezing.

-- 
Francesco P. Lovergine



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



Bug#579263: doc-debian: source-unpack.txt is only for 1.0 format

2010-10-17 Thread Colin Watson
On Tue, Apr 27, 2010 at 12:39:21AM +0900, Osamu Aoki wrote:
 Package: doc-debian
 Version: 4.0.2
 Severity: normal
 
 source-unpack.txt document really old format and 1.0 format.
 (I never knew package without *.dsc).

I think we probably no longer need to document pre-1.0 formats.  They
haven't been used since well before I joined Debian, and that was a
decade ago.  The dpkg-dev changelog doesn't seem to mention it
explicitly, but it looks as though .dsc files were introduced around
1996.

 We need to include 3.0 source format too.

Yes.  I've attached a rewritten version of the page here, which
documents all formats currently in use in the Debian archive.  (CCing
Ian in case he has comments on this.)

 (Maybe a pointer to the dpkg-source manpage since we never know when
 this situation changes.)

I included such a pointer, although the audiences are a bit different.
The purpose of source-unpack.txt is mainly to explain how people using
other systems can unpack our source packages.  If you have the
dpkg-source manual page, then you probably also have dpkg-source, and in
that case you should just use it.  The structure of my rewritten
document reflects that.

-- 
Colin Watson   [cjwat...@debian.org]
=== modified file 'doc/source-unpack.txt'
--- doc/source-unpack.txt	2002-04-30 19:02:09 +
+++ doc/source-unpack.txt	2010-10-17 11:10:54 +
@@ -1,33 +1,68 @@
 	HOW TO UNPACK A DEBIAN SOURCE PACKAGE
 
-There are two kinds of Debian source packages: old ones and new ones.
+If you have `dpkg-source', you can use it to unpack any Debian source
+package: put all the files in the same directory and type `dpkg-source
+-x whatever.dsc'.  The remainder of this document explains how to
+unpack Debian source packages on non-Debian systems, or on Debian
+systems without the `dpkg-dev' package installed.
+
+There are several kinds of Debian source packages, identified by the
+Format: field in the .dsc file.  If there is no Format: field, treat
+it as 1.0.
+
+
+1.0 packages can be either native or non-native.  Native packages
+(where the Debian source is the upstream source) look like this:
+  hello_1.3.dsc
+  hello_1.3.tar.gz
+To unpack this kind of package, just untar the .tar.gz file.
 
-A. Old ones look like this:
-  hello-1.3-4.tar.gz
-  hello-1.3-4.diff.gz
- You unpack them by untarring the .tar.gz.  There is NO need to apply
- the diff.
-
-B. New ones look like this:
+Non-native 1.0 packages look like this:
   hello_1.3-11.dsc
   hello_1.3-11.diff.gz
-  hello_1.3-11.orig.tar.gz - note the `.orig' part
- Here you MUST use dpkg-source or apply the diff manually - see below.
-
- If you have `dpkg-source' you should put the files in the same
- directory and type `dpkg-source -x whatever.dsc'.
+  hello_1.3.orig.tar.gz - note the `.orig' part
 
- If you do not you can extract the Debian source as follows:
1. untar P_V.orig.tar.gz.
2. rename the resulting P-V.orig directory to P-V.  If some other
   directory results, rename *it* to P-V.
3. mkdir P-V/debian.
4. apply the diff with patch -p0.
5. do `chmod +x P-V/debian/rules'
- (where P is the package name and V the version.)
+ (where P is the package name and V the upstream version - `hello' and
+ `1.3' respectively in this example.)
+
+
+3.0 (native) packages are the same as native 1.0 packages, except
+that the source tarball may be compressed using methods other than
+gzip.
+
+
+3.0 (quilt) packages look like this:
+  hello_1.3-11.dsc
+  hello_1.3-11.debian.tar.gz
+  hello_1.3.orig.tar.gz
+  hello_1.3.orig-COMPONENT.tar.gz
+(optional, for one or more values of COMPONENT)
+The compressed files may be compressed using methods other than gzip.
+
+To unpack this kind of package, you will need to install `quilt'
+(http://savannah.nongnu.org/projects/quilt), then:
+   1. untar P_V.orig.tar.gz.
+   2. rename the resulting P-V.orig directory to P-V.  If some other
+  directory results, rename *it* to P-V.
+   3. if there are any orig-COMPONENT tarballs, untar each of them to
+  P-V/COMPONENT.
+   4. remove P-V/debian if it exists.
+   5. change to the P-V directory.
+   6. untar P_V-R.debian.tar.gz; it will unpack to a `debian'
+  subdirectory.
+   7. run `QUILT_PATCHES=debian/patches quilt push -a'.
+ (where P is the package name, V the upstream version, and R the
+ Debian revision - `hello', `1.3', and `11' in this example.)
+
 
-C. There are some packages where the Debian source is the upstream
- source.  In this case there will be no .diff.gz and you can just use
- the .tar.gz.  If a .dsc is provided you can use `dpkg-source -x'.
+See the dpkg-source(1) manual page for full details of all formats,
+including experimental ones.
 
  -- Ian Jackson ijack...@gnu.ai.mit.edu  Sat, 31 Aug 1996
+ -- Colin Watson cjwat...@debian.org  Sun, 17 Oct 2010



Bug#600463: unblock: libnet-twitter-perl/3.13008-1

2010-10-17 Thread Ansgar Burchardt
 Please consider unblocking libnet-twitter-perl.  It now uses HTTPS
 instead of HTTP for OAuth token negotiation as recommended by
 Twitter[1] (that is s,http,https, for several URLs).  There are no other
 changes besides a change in wording in debian/copyright and a newer
 Standards-Version.  The updated package has already been in unstable for
 some time (38 days).

 Including this change in Squeeze would be better than having to deal
 with Twitter deciding to only support HTTPS later and the package
 breaking (I am not aware of any such plans, but I also don't use Twitter
 myself).

 unblock libnet-twitter-perl/3.13008-1

 [1] http://dev.twitter.com/pages/auth#at-twitter

And now also with the debdiff attached.

Regards,
Ansgar
Index: debian/control
===
--- debian/control	(.../3.13007-1)	(revision 63851)
+++ debian/control	(.../3.13008-1)	(revision 63851)
@@ -16,7 +16,7 @@
  gregor herrmann gre...@debian.org, Franck Joncourt fra...@debian.org,
  Antony Gelberg antony.gelb...@wayforth.com,
  Ansgar Burchardt ans...@43-1.org
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/Net-Twitter/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-twitter-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-twitter-perl/
Index: debian/changelog
===
--- debian/changelog	(.../3.13007-1)	(revision 63851)
+++ debian/changelog	(.../3.13008-1)	(revision 63851)
@@ -1,3 +1,12 @@
+libnet-twitter-perl (3.13008-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/copyright: Refer to /usr/share/common-licenses/GPL-1; refer to
+Debian systems instead of Debian GNU/Linux systems.
+  * Bump Standards-Version to 3.9.1.
+
+ -- Ansgar Burchardt ans...@43-1.org  Wed, 08 Sep 2010 20:38:06 +0900
+
 libnet-twitter-perl (3.13007-1) unstable; urgency=low
 
   * New upstream release.
Index: debian/copyright
===
--- debian/copyright	(.../3.13007-1)	(revision 63851)
+++ debian/copyright	(.../3.13008-1)	(revision 63851)
@@ -25,8 +25,8 @@
  This program is free software; you can redistribute it and/or modify
  it under the terms of the Artistic License, which comes with Perl.
  .
- On Debian GNU/Linux systems, the complete text of the Artistic License
- can be found in `/usr/share/common-licenses/Artistic'
+ On Debian systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-1+
  This program is free software; you can redistribute it and/or modify
@@ -34,5 +34,5 @@
  the Free Software Foundation; either version 1, or (at your option)
  any later version.
  .
- On Debian GNU/Linux systems, the complete text of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL'
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
Index: META.yml
===
--- META.yml	(.../3.13007-1)	(revision 63851)
+++ META.yml	(.../3.13008-1)	(revision 63851)
@@ -50,4 +50,4 @@
   homepage: http://github.com/semifor/Net-Twitter
   license: http://dev.perl.org/licenses/
   repository: git://github.com/semifor/Net-Twitter.git
-version: 3.13007
+version: 3.13008
Index: lib/Net/Twitter/Search.pm
===
--- lib/Net/Twitter/Search.pm	(.../3.13007-1)	(revision 63851)
+++ lib/Net/Twitter/Search.pm	(.../3.13008-1)	(revision 63851)
@@ -2,7 +2,7 @@
 use Moose;
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 
 extends 'Net::Twitter::Core';
Index: lib/Net/Twitter/Role/OAuth.pm
===
--- lib/Net/Twitter/Role/OAuth.pm	(.../3.13007-1)	(revision 63851)
+++ lib/Net/Twitter/Role/OAuth.pm	(.../3.13008-1)	(revision 63851)
@@ -20,10 +20,10 @@
 
 my $args = $class-$orig(@_);
 my $oauth_urls = delete $args-{oauth_urls} || {
-request_token_url  = http://api.twitter.com/oauth/request_token;,
-authentication_url = http://api.twitter.com/oauth/authenticate;,
-authorization_url  = http://api.twitter.com/oauth/authorize;,
-access_token_url   = http://api.twitter.com/oauth/access_token;,
+request_token_url  = https://api.twitter.com/oauth/request_token;,
+authentication_url = https://api.twitter.com/oauth/authenticate;,
+authorization_url  = https://api.twitter.com/oauth/authorize;,
+access_token_url   = https://api.twitter.com/oauth/access_token;,
 xauth_url  = https://api.twitter.com/oauth/access_token;,
 };
 
Index: lib/Net/Twitter/Core.pm

Bug#600444: libgstreamer0.10-0: segfaults with rythmbox, banshee, guayadaque when opening flac audio files

2010-10-17 Thread Sebastian Dröge
On Sun, 2010-10-17 at 10:43 +0200, Tomasz Wartalski wrote:
 Package: libgstreamer0.10-0
 Version: 0.10.30-1
 Severity: important
 
 
 Hello,
 
 rythmbox, banshee and guayadaque are segfaulting while i´m trying to
 play flac audio files. This renders the mentioned players unusable for
 me. Below are the backtraces of the crashes from rhythmbox and guayadeque.

Which version of liborc-0.4-0 do you have installed? This looks like an
orc bug that previously was only reported by Fedora users for some
reason.

Could you also give some details about your cpu, i.e. the content
of /proc/cpuinfo ?

Is this easy to reproduce?


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


Bug#600378: wiki.debian.org: dead interwiki link to online manpages (http://manpages.debian.net/man)

2010-10-17 Thread Francesca Ciceri
As suggested to me (thanks taffit!) on #debian-www, I've asked to Javier
Fernández-Sanguino Peña - who's
in charge of manpages.debian.net - for a fix. He answered that he's aware of
the issue but doesn't know when he will be able to fix it. 

So, as the issue is not related with debian-www (even if a change of the
interwiki link by wiki admin could help), I close the bug.

Thanks,
Francesca


signature.asc
Description: Digital signature


Bug#600465: unblock: freeradius 2.1.10+dfsg-1

2010-10-17 Thread Josip Rodin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

We had FreeRADIUS 2.0.4 in lenny, and this was an upstream point release
pretty much picked at random - it was what was happened to be packaged at
the time lenny froze. It wasn't nearly the last point release before the
cutoff date, I don't think.

People keep coming to the upstream freeradius-users mailing list asking for
help with 2.0.4, and they increasingly get funny looks because it's a
randomly ancient version, by the upstream people's standards.

Right now we have 2.1.8 in squeeze, and I sense the same scenario will
unfold, hence this request. This time at least we have roughly the last
upstream point release before the cutoff date, but at the same time:

* there is some packaging siliness that I really wouldn't want to become
  part of stable - though I have tested upgrades from all previous releases
  and they should all be working, thanks to a multitude of checks in
  postinst
* there's one long-standing bug that affected a significant portion of
  FreeRADIUS module functionality that was fixed just by applying the right
  new libtool functions.
* the last upstream release, 2.1.10, has a few fixes that the security folks
  thought matter - but that's mostly because someone went through the
  trouble of generating a CVE number for the bugs in question.
  I've seen stuff like that get fixed in FreeRADIUS without CVEs before.
  I've also seen it not get fixed, yet nobody would have paid attention.
* in general, the package is still pretty much standalone and shouldn't
  affect anything else.

So hopefully God won't kill any kittens if you just let this one through :)

If it doesn't go through, no kittens should get harmed either, but the
current scheme of automatically pointing users at lenny-backports will
become commonplace in case of squeeze sooner rather than later, and for
no obvious benefit.

The changelog entries between the version currently in squeeze and the
requested one are:

freeradius (2.1.10+dfsg-1) unstable; urgency=medium

   * New upstream version, closes a bunch of reproducible SNAFUs,
 including two tagged as security issues, CVE-2010-3696, CVE-2010-3697,
 closes: #600176.
   * Build-depend on newer Libtool because of lt_dladvise_init(), also
 upstream now has a configure check so we no longer need a patch,
 yet we still don't want the old behaviour. Noticed by John Morrissey,
 closes: #584151.
   * Added the /etc/default/freeradius file as suggested by
 Rudy Gevaert and Matthew Newton, closes: #564716.
   * Stop symlinking /dev/urandom into /etc/freeradius/certs/random,
 it breaks grep -r in /etc. Instead, replace it inside eap.conf,
 both in the new shipped conffile and in postinst.

 -- Josip Rodin joy-packa...@debian.org  Thu, 14 Oct 2010 21:51:51 +0200

freeradius (2.1.9+dfsg-1) unstable; urgency=low

   * New upstream version.
 + radclient (radtest) should now use IPv4 by default, closes: #569614.
   * Depend on ca-certificates explicitly, closes: #569601.
   * I mistook ca.pem for the locally selected acceptable CA, whereas that
 actually just happens to mean DebConf.org CA, and we want the former
 by default. That in turn is in /etc/ssl/certs/ca-certificates.crt.
 Obviously later the users can trivially change this, but this looks
 like a reasonably reliable default that doesn't involve a lot of magic
 that can delay or break postinst invocations. In the future, eap.conf
 will become modules/eap and this will not be so critical.
   * The private_key_file = ${certdir}/server.pem default doesn't get along
 with snakeoil, or common sense really (why would you keep a secret key
 in the same file as the non-secret certificate?), and could have broken
 upgrades if people accepted the conffile prompt, so adjusted the
 default conffile too, and adjusted the postinst upgrade logic as well.
   * Enable HAVE_LT_DLADVISE_INIT as it fixes the module symbol lookup
 errors from additional libraries, closes: #416266.
   * Explicate source format as 1.0.
   * Add ${misc:Depends} to all binary packages.
   * Update standards version to 3.8.4, no changes necessary.

 -- Josip Rodin joy-packa...@debian.org  Sun, 30 May 2010 12:48:55 +0200 

TIA.

-- 
 2. That which causes joy or happiness.



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



Bug#600466: squeeze doesn't create tty1 anymore, but is referenced in default config

2010-10-17 Thread Daniel Baumann
Package: lxc
Severity: normal

Hi,

in squeeze only /dev/tty and /dev/tty0 are created, however, the default
config referes to /dev/tty1 too, so the template should create that device.

sending patch after recieving bug number.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#497929: powertop: plans to push a fixed version into squeeze?

2010-10-17 Thread Nikolaus Schulz
Hi,

having powertop report power consumptions like 150 Watts is quite an
annoyance.  Are there plans to push a fixed version of powertop to
squeeze?

Nikolaus



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



Bug#600444: libgstreamer0.10-0: segfaults with rythmbox, banshee, guayadaque when opening flac audio files

2010-10-17 Thread Tomasz Wartalski


Sebastian Dröge schrieb:
 On Sun, 2010-10-17 at 10:43 +0200, Tomasz Wartalski wrote:
 Package: libgstreamer0.10-0
 Version: 0.10.30-1
 Severity: important


 Hello,

 rythmbox, banshee and guayadaque are segfaulting while i´m trying to
 play flac audio files. This renders the mentioned players unusable for
 me. Below are the backtraces of the crashes from rhythmbox and guayadeque.
 
 Which version of liborc-0.4-0 do you have installed? This looks like an
 orc bug that previously was only reported by Fedora users for some
 reason.
 
 Could you also give some details about your cpu, i.e. the content
 of /proc/cpuinfo ?
 
 Is this easy to reproduce?

It´s easy to reproduce here cause it happens all the time.
Below are the requested infos.

Do you need something else?


# apt-cache policy liborc-0.4-0
liborc-0.4-0:
  Installiert: 1:0.4.6-2
[...]

# cat /proc/cpuinfo
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 15
model   : 107
model name  : AMD Athlon(tm) 64 X2 Dual Core Processor 4000+
stepping: 1
cpu MHz : 2100.000
cache size  : 512 KB
physical id : 0
siblings: 2
core id : 0
cpu cores   : 2
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov
pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp
lm 3dnowext 3dnow rep_good pni cx16 lahf_lm cmp_legacy svm extapic
cr8_legacy 3dnowprefetch
bogomips: 4208.47
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps

processor   : 1
vendor_id   : AuthenticAMD
cpu family  : 15
model   : 107
model name  : AMD Athlon(tm) 64 X2 Dual Core Processor 4000+
stepping: 1
cpu MHz : 2100.000
cache size  : 512 KB
physical id : 0
siblings: 2
core id : 1
cpu cores   : 2
apicid  : 1
initial apicid  : 1
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov
pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp
lm 3dnowext 3dnow rep_good pni cx16 lahf_lm cmp_legacy svm extapic
cr8_legacy 3dnowprefetch
bogomips: 4208.47
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps



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



Bug#600466: squeeze doesn't create tty1 anymore, but is referenced in default config

2010-10-17 Thread Daniel Baumann
here's the patch.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/
Author: Daniel Baumann dan...@debian.org
Description: Creating missing tty1 device node for squeeze (Closes: #600466).

diff -Naurp lxc.orig/templates/lxc-debian.in lxc/templates/lxc-debian.in
--- lxc.orig/templates/lxc-debian.in2010-10-17 13:46:27.390445902 +0200
+++ lxc/templates/lxc-debian.in 2010-10-17 13:45:53.005449681 +0200
@@ -25,6 +25,10 @@ configure_debian()
 rootfs=$1
 hostname=$2
 
+# Squeeze only has /dev/tty and /dev/tty0 by default,
+# therefore creating missing device nodes for tty1.
+test -e $rootfs/dev/tty1 || mknod $rootfs/dev/tty1 c 4 1
+
 # configure the inittab
 cat EOF  $rootfs/etc/inittab
 id:3:initdefault:


Bug#600444: libgstreamer0.10-0: segfaults with rythmbox, banshee, guayadaque when opening flac audio files

2010-10-17 Thread Sebastian Dröge
On Sun, 2010-10-17 at 13:53 +0200, Tomasz Wartalski wrote:
 
 Sebastian Dröge schrieb:
  On Sun, 2010-10-17 at 10:43 +0200, Tomasz Wartalski wrote:
  Package: libgstreamer0.10-0
  Version: 0.10.30-1
  Severity: important
 
 
  Hello,
 
  rythmbox, banshee and guayadaque are segfaulting while i´m trying to
  play flac audio files. This renders the mentioned players unusable for
  me. Below are the backtraces of the crashes from rhythmbox and guayadeque.
  
  Which version of liborc-0.4-0 do you have installed? This looks like an
  orc bug that previously was only reported by Fedora users for some
  reason.
  
  Could you also give some details about your cpu, i.e. the content
  of /proc/cpuinfo ?
  
  Is this easy to reproduce?
 
 It´s easy to reproduce here cause it happens all the time.
 Below are the requested infos.
 
 Do you need something else?
 
 
 # apt-cache policy liborc-0.4-0
 liborc-0.4-0:
   Installiert: 1:0.4.6-2
 [...]

Could you try this again with liborc-0.4-0 1:0.4.11-1 from experimental?


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


Bug#595759: new partman-zfs

2010-10-17 Thread Robert Millan
2010/10/14, Robert Millan r...@debian.org:
 Done.  Should I upload this?

Btw, now that #595007 has been fixed (thanks Colin!), this partman-zfs
package would be usable on unstable at least.

I would be careful not to let it migrate to squeeze unless parted 2.3-3
is allowed to migrate already.  But my understanding is that this can't
happen (I wish I were wrong though).

-- 
Robert Millan



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



Bug#600467: SDL-mixer 1.2.8 outdated/replace with SDL-mixer 1.2.11

2010-10-17 Thread Edward Lee
Package: sdl-mixer1.2
Version: 1.2.8-6

SDL-mixer 1.2.8 is around 3 years old now and has been replaced by
1.2.11.  There have been many changes since and significant API upgrades
and bugfixes.


 Changes:
 
 
 1.2.11:
 * Fixed initialization error and crashes if MikMod library isn't available
 * Fixed bug loading multiple music files
 
 1.2.10:
 * Added Mix_Init()/Mix_Quit() to prevent constantly loading and unloading DLLs
 * Check for fork/vfork on any platform, don't just assume it on UNIX
 * Fixed export of Mix_GetNumChunkDecoders() and Mix_GetNumMusicDecoders()
 * Use newer MIDI API on Mac OS X 10.5+
 
 1.2.9:
 * Updated native MIDI support on Mac OS X for 10.6
 * Reset channel volumes after a fade out interrupts a fade in.
 * Fixed crash race condition with position audio functions
 * Fixed stereo panning in 8-bit mode
 * Added /usr/share/timidity to the default timidity.cfg locations
 * MOD support uses libmikmod and is dynamically loaded by default
 * A patched version of libmikmod is included in libmikmod-3.1.12.zip
 * The libmikmod patches fix security issues CVE-2007-6720 and CVE-2009-0179.
 * Added TIMIDITY_CFG environment variable to fully locate timidity.cfg
 * Implemented seamless looping for music playback
 * ID3 files are now recognized as MP3 format
 * Fixed native MIDI crash on 64-bit Windows
 * Added decoder enumeration API:
   Mix_GetNumChunkDecoders(), Mix_GetChunkDecoder(),
   Mix_GetNumMusicDecoders(), Mix_GetMusicDecoder()
 * Added support for FLAC audio both as chunks and streaming
 * Added support for streaming WAV files with Mix_LoadMUS_RW()
 * Fixed crash caused by not resetting position_channels


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


Bug#600468: unblock: sbnc/1.2-20

2010-10-17 Thread Patrick Matthäi
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sbnc

debdiff:

diff -Nru sbnc-1.2/debian/changelog sbnc-1.2/debian/changelog
--- sbnc-1.2/debian/changelog   2010-06-03 21:38:52.0 +0200
+++ sbnc-1.2/debian/changelog   2010-10-12 18:19:34.0 +0200
@@ -1,3 +1,13 @@
+sbnc (1.2-20) unstable; urgency=low
+
+  * Add patch 15-savecert-path-parsing.diff. The internal function BuildPath
+was used in a wrong way with the consequence that the client certificate
+could not be saved on the disk.
+Closes: #599827
+  * Bump Standards-Version to 3.9.1 (no changes needed).
+
+ -- Patrick Matthäi pmatth...@debian.org  Tue, 12 Oct 2010 18:19:30 +0200
+
 sbnc (1.2-19) unstable; urgency=low
 
   * Add spanish debconf translation from Camaleón.
diff -Nru sbnc-1.2/debian/control sbnc-1.2/debian/control
--- sbnc-1.2/debian/control 2010-06-03 21:38:52.0 +0200
+++ sbnc-1.2/debian/control 2010-10-12 18:19:34.0 +0200
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (= 5), automake, chrpath, libc-ares-dev,
  libltdl3-dev, libmysqlclient-dev, libssl-dev, tcl8.5-dev, po-debconf,
  autotools-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 
 Package: sbnc
 Architecture: any
diff -Nru sbnc-1.2/debian/patches/15-savecert-path-parsing.diff 
sbnc-1.2/debian/patches/15-savecert-path-parsing.diff
--- sbnc-1.2/debian/patches/15-savecert-path-parsing.diff   1970-01-01 
01:00:00.0 +0100
+++ sbnc-1.2/debian/patches/15-savecert-path-parsing.diff   2010-10-12 
18:19:33.0 +0200
@@ -0,0 +1,18 @@
+# BuildPath was used in a wrong way with the consequence that savecert
+# could not save the certificate to disk.
+# Closes: #599827
+
+diff -Naur sbnc-1.2.orig//src/User.cpp sbnc-1.2/src/User.cpp
+--- sbnc-1.2.orig//src/User.cpp2010-10-11 19:35:39.0 +0200
 sbnc-1.2/src/User.cpp  2010-10-11 19:45:29.0 +0200
+@@ -1685,8 +1685,8 @@
+   const char *Filename;
+   FILE *CertFile;
+ 
+-  asprintf(TempFilename, /var/lib/sbnc/users/%s.pem, m_Name);
+-  Filename = g_Bouncer-BuildPath(TempFilename);
++  asprintf(TempFilename, %s.pem, m_Name);
++  Filename = g_Bouncer-BuildPath(TempFilename, /var/lib/sbnc/users);
+   free(TempFilename);
+ 
+   CHECK_ALLOC_RESULT(Filename, asprintf) {
diff -Nru sbnc-1.2/debian/patches/series sbnc-1.2/debian/patches/series
--- sbnc-1.2/debian/patches/series  2010-06-03 21:38:52.0 +0200
+++ sbnc-1.2/debian/patches/series  2010-10-12 18:19:33.0 +0200
@@ -12,3 +12,4 @@
 12-debianize-ssl.diff
 13-basepath_parsing.diff
 14-fix-sign-extension.diff
+15-savecert-path-parsing.diff



unblock sbnc/1.2-20

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

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



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



Bug#600444: libgstreamer0.10-0: segfaults with rythmbox, banshee, guayadaque when opening flac audio files

2010-10-17 Thread Tomasz Wartalski


Sebastian Dröge schrieb:
 On Sun, 2010-10-17 at 13:53 +0200, Tomasz Wartalski wrote:
 Sebastian Dröge schrieb:
 On Sun, 2010-10-17 at 10:43 +0200, Tomasz Wartalski wrote:
 Package: libgstreamer0.10-0
 Version: 0.10.30-1
 Severity: important


 Hello,

 rythmbox, banshee and guayadaque are segfaulting while iÂŽm trying to
 play flac audio files. This renders the mentioned players unusable for
 me. Below are the backtraces of the crashes from rhythmbox and guayadeque.
 Which version of liborc-0.4-0 do you have installed? This looks like an
 orc bug that previously was only reported by Fedora users for some
 reason.

 Could you also give some details about your cpu, i.e. the content
 of /proc/cpuinfo ?

 Is this easy to reproduce?
 ItÂŽs easy to reproduce here cause it happens all the time.
 Below are the requested infos.

 Do you need something else?


 # apt-cache policy liborc-0.4-0
 liborc-0.4-0:
   Installiert: 1:0.4.6-2
 [...]
 
 Could you try this again with liborc-0.4-0 1:0.4.11-1 from experimental?

Ok, it seems like the problem is gone with the version in experimental.
I tried rythmbox, banshee, guayadaque and they are playing the flac
files again.

Thank´s a lot.

Tomasz



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



Bug#600469: barry-util: No mount possible due to 10-blackberry.rules

2010-10-17 Thread Achim Schaefer
Package: barry-util
Version: 0.15-1
Severity: normal

Hi,

the udev rules in 10-blackberry.ules ensure the blackberry gets loaded fine, 
but the cause as well the following error:
usbfs: interface 1 claimed by usb-storage while 'bcharge' sets config #1

removing the file enables the mounting again.

Thanks

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

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

Versions of packages barry-util depends on:
ii  libbarry00.15-1  Library for using the BlackBerry h
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libgcc1  1:4.4.5-3   GCC support library
ii  libstdc++6   4.4.5-3 The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-16 userspace USB programming library
ii  udev 163-1   /dev/ and hotplug management daemo

barry-util recommends no packages.

Versions of packages barry-util suggests:
pn  ppp   none (no description available)

-- Configuration Files:
/etc/chatscripts/barry-o2ireland.chat [Errno 13] Keine Berechtigung: 
u'/etc/chatscripts/barry-o2ireland.chat'
/etc/chatscripts/barry-rogers.chat [Errno 13] Keine Berechtigung: 
u'/etc/chatscripts/barry-rogers.chat'
/etc/chatscripts/barry-sprint.chat [Errno 13] Keine Berechtigung: 
u'/etc/chatscripts/barry-sprint.chat'
/etc/chatscripts/barry-verizon.chat [Errno 13] Keine Berechtigung: 
u'/etc/chatscripts/barry-verizon.chat'

-- no debconf information



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



Bug#552688: This seems a bit stupid

2010-10-17 Thread Matthias Klose

reassign 552688 dpkg-dev
thanks

[reassigning to dpkg-dev, if there is no consensus to enable these,
 the bug should be reassigned to general]

On 06.10.2010 18:43, dave b wrote:

IMHO this is a bit silly you are denying users of debian security
features found elsewhere (at least found elsewhere in their
packages...). The point is to make the compiler hardened by default
not only packages compiled and packaged for debian.


the point of injection is wrong.  dpkg-buildflags supports setting defaults for 
compiler and linker flags.  If some flags are missing, add them. If packages are 
not honouring these flags, fix them.


  Matthias



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



Bug#600336: Acknowledgement (rhythmbox: Claims audio device all for itself)

2010-10-17 Thread Josselin Mouette
Le samedi 16 octobre 2010 à 10:15 +0200, Manuel Bilderbeek a écrit :
 $ fuser -v /dev/snd/*
   USERPID ACCESS COMMAND
 /dev/snd/controlC0:  manuel 3067 F pulseaudio
   manuel 3182 F mixer_applet2
 /dev/snd/pcmC0D0p:   manuel 3067 F...m pulseaudio
 
 Purging and killing pulseaudio fixed the problem.
 
 I guess it's a bug in pulseaudio or so? (So far, I have only seen 
 pulseaudio causing problems...)

It’s how pulseaudio works. It requires exclusive access to the audio
device. Using OSS applications such as play will not work without using
a LD_PRELOAD hack.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling




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



Bug#600470: unblock: alsa-utils/1.0.23-3

2010-10-17 Thread Jordi Mallach
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package alsa-utils

This upload fixes #597791, a sound initialisation problem on MacBookPro.

unblock alsa-utils/1.0.23-3

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: lang=ca_es.ut...@valencia, lc_ctype=ca_es.ut...@valencia (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#600377: gnome-menus: On kfreebsd Shut Down... is missing from System menu.

2010-10-17 Thread Josselin Mouette
reassign 600377 consolekit
thanks

Le samedi 16 octobre 2010 à 16:43 +0100, Michael Dorrington a écrit :
 On kfreebsd the Shut Down... menu item is missing from the System menu
 in the default Debian GNOME install.

This item is added by gnome-panel depending on what consolekit says. So
this is a bug in consolekit.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling




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



Bug#598132: gdm3: Should beep or permit to configure a beep

2010-10-17 Thread Josselin Mouette
Le dimanche 17 octobre 2010 à 05:01 +0200, Samuel Thibault a écrit :
 Josselin Mouette, le Mon 27 Sep 2010 18:20:38 +0200, a écrit :
  It shouldn’t be hard to implement with a GConf value that is read in the
  greeter. Such a value could easily be set in d-i. 
 
 How is this done from d-i more precisely?

You need to ship a file in /usr/share/gconf/defaults. Like for gksu,
this one should probably be an alternative.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling




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



Bug#600471: foxtrotgps: uses 100% cpu time if gpsd is shut down

2010-10-17 Thread Timo Juhani Lindfors
Package: foxtrotgps
Version: 0.99.4+debian3-1
Severity: normal

(This is probably an upstream bug but I thought I'd report it here
first.)

If I stop gpsd while foxtrotgps is connected foxtrotgps starts to print

gps_poll returned -1
gps_poll returned -1
gps_poll returned -1
gps_poll returned -1
gps_poll returned -1

and use all available cpu time. If I start gpsd again foxtrotgps does
not reconnect. If I hit Change GPSD then it reconnects but still
uses all cpu time it can get even though it does not output errors after


gps_poll returned -1
netlib_connectsock() returns socket on fd 15
connection to gpsd SUCCEEDED 
*** reset_gpsd_io(): 
netlib_connectsock() returns socket on fd 16
connection to gpsd SUCCEEDED 
*** reset_gpsd_io(): 
netlib_connectsock() returns socket on fd 18
connection to gpsd SUCCEEDED 
*** on_drawingarea1_configure_event(): 
pixmap created
*** reset_gpsd_io(): 
netlib_connectsock() returns socket on fd 19
connection to gpsd SUCCEEDED 

strace shows

14:39:36.895593 gettimeofday({1287315576, 903563}, NULL) = 0
14:39:36.904850 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.906753 gettimeofday({1287315576, 907217}, NULL) = 0
14:39:36.908275 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, {fd=14, 
events=POLLIN|POLLPRI}], 10, 197) = 1 ([{fd=14, revents=POLLIN}])
14:39:36.913945 gettimeofday({1287315576, 914413}, NULL) = 0
14:39:36.915424 recv(24, 0x60bee0, 3072, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.917034 gettimeofday({1287315576, 917500}, NULL) = 0
14:39:36.918688 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.921178 gettimeofday({1287315576, 921644}, NULL) = 0
14:39:36.922702 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, {fd=14, 
events=POLLIN|POLLPRI}], 10, 182) = 1 ([{fd=14, revents=POLLIN}])
14:39:36.928004 gettimeofday({1287315576, 928468}, NULL) = 0
14:39:36.929565 recv(24, 0x60bee0, 3072, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.931089 gettimeofday({1287315576, 931556}, NULL) = 0
14:39:36.932622 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.935131 gettimeofday({1287315576, 935596}, NULL) = 0
14:39:36.936598 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, {fd=14, 
events=POLLIN|POLLPRI}], 10, 168) = 1 ([{fd=14, revents=POLLIN}])
14:39:36.940773 gettimeofday({1287315576, 941238}, NULL) = 0
14:39:36.942252 recv(24, 0x60bee0, 3072, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.945259 gettimeofday({1287315576, 945724}, NULL) = 0
14:39:36.946791 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.948274 gettimeofday({1287315576, 950782}, NULL) = 0
14:39:36.951784 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, {fd=14, 
events=POLLIN|POLLPRI}], 10, 153) = 1 ([{fd=14, revents=POLLIN}])
14:39:36.955985 gettimeofday({1287315576, 956452}, NULL) = 0
14:39:36.957464 recv(24, 0x60bee0, 3072, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.960095 gettimeofday({1287315576, 960558}, NULL) = 0
14:39:36.961624 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.963049 gettimeofday({1287315576, 963515}, NULL) = 0
14:39:36.964643 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, {fd=14, 
events=POLLIN|POLLPRI}], 10, 140) = 1 ([{fd=14, revents=POLLIN}])
14:39:36.969891 gettimeofday({1287315576, 970356}, NULL) = 0
14:39:36.971367 recv(24, 0x60bee0, 3072, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.972891 gettimeofday({1287315576, 973356}, NULL) = 0
14:39:36.975629 read(3, 0x48114, 4096)  = -1 EAGAIN (Resource temporarily 
unavailable)
14:39:36.977055 gettimeofday({1287315576, 977521}, NULL) = 0
14:39:36.978524 poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, 
events=POLLIN|POLLPRI}, {fd=11, events=POLLIN|POLLPRI}, {fd=12, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=14, events=0}, 
{fd=24, events=0}, {fd=24, events=POLLIN|POLLPRI}, 

Bug#600405: xserver-xorg-video-intel: changing to a non-native mode dims backlight

2010-10-17 Thread Simon McVittie
tags 600405 + patch
thanks

On Sat, 16 Oct 2010 at 23:05:51 +0100, Simon McVittie wrote:
 On Sat, 16 Oct 2010 at 22:01:15 +0100, Simon McVittie wrote:
  This is on a Lenovo X200s. I've tried downgrading to 
  xserver-xorg-video-intel
  2:2.9.1-4 from testing (with everything else the same), which doesn't
  exhibit this bug. However, 2:2.13.0-1 from experimental still has the bug.
 
 Having tried this out in various versions from snapshot.d.o, it seems this
 regressed in 2:2.12.0+shadow-1. I've sent appropriate BTS control messages.

It turns out this can be worked around by reverting part of the +shadow
series. On the upstream bug, Chris Wilson thinks the correct fix is to improve
backlight setting in the kernel, though.

Regards,
S

From a19836099da7e920137ee1c2bcae56f4b492df46 Mon Sep 17 00:00:00 2001
From: Simon McVittie s...@debian.org
Date: Sun, 17 Oct 2010 12:17:45 +0100
Subject: [PATCH] Revert display: outputs are enabled automatically by KMS

This reverts commit 19c48d3b3f33582baa87a9b3a9189e320e4cea45.
Reverting this appears to work around
https://bugs.freedesktop.org/show_bug.cgi?id=29716.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=29716
Bug-Debian: http://bugs.debian.org/600405
---
 src/intel_display.c |   16 ++--
 1 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/src/intel_display.c b/src/intel_display.c
index d32224e..d9c4b5b 100644
--- a/src/intel_display.c
+++ b/src/intel_display.c
@@ -327,7 +327,7 @@ intel_crtc_apply(xf86CrtcPtr crtc)
uint32_t *output_ids;
int output_count = 0;
int fb_id, x, y;
-   int i, ret = FALSE;
+   int i, ret;
 
output_ids = calloc(sizeof(uint32_t), xf86_config-num_output);
if (!output_ids)
@@ -378,14 +378,26 @@ intel_crtc_apply(xf86CrtcPtr crtc)
} else
ret = TRUE;
 
+   /* Turn on any outputs on this crtc that may have been disabled */
+   for (i = 0; i  xf86_config-num_output; i++) {
+   xf86OutputPtr output = xf86_config-output[i];
+
+   if (output-crtc != crtc)
+   continue;
+
+   intel_output_dpms(output, DPMSModeOn);
+   }
+
intel_set_gem_max_sizes(scrn);
 
if (scrn-pScreen)
xf86_reload_cursors(scrn-pScreen);
 
+   return ret;
+
 done:
free(output_ids);
-   return ret;
+   return FALSE;
 }
 
 static Bool
-- 
1.7.1




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



Bug#600433: collectd: rrd: gets terribly confused when entering DST (daylight savings time)

2010-10-17 Thread Henrique de Moraes Holschuh
retitle 600433 collectd: rrd: issuing uc_update: Value too old messages
thanks

On Sun, 17 Oct 2010, Florian Forster wrote:
 On Sun, Oct 17, 2010 at 03:32:36AM -0200, Henrique de Moraes Holschuh wrote:
  collectd does not use UTC.
 
 collectd uses the timestamp returned by time(3). To the best of my
 knowledge, it returns the number of seconds since 00:00:00 January 1st,
 1970 _UTC_ and should, as such, not be dependent on any timezone
 setting.

Indeed, time(2) does not suffer changes due to timezone and DST.

  collectd[2139]: uc_update: Value too old:name = 
  REMOVED/temperature-temp1; value time = 1287260393; last cache update = 
  1287260393;
 
 If the timestamp was influenced by the timezone shift, value time
 should be 1-3600 seconds smaller than last cache update [0]. The two
 values are identical, though, which is 99.9% of all cases means that the
 identifier ((file)name of the data) is not unique. Maybe the names

If you mean the full path, then there is no colision.  If you mean just the
file-name (temperature-temp1), then there are many colisions.  I don't think
that was it.

I did better checking now (heh, repeats the error of the past seems to
apply to me very well...).  It was a few hours away from the DST change, so
my report was utterly bogus.  I apologise for that.

It happened three times, to all sensors, including those who would have no
collision across different directories (i.e. unique filename).  Looks more
like collectd tried to store the same data twice.

It all happened on the same minute.  Only other event of note is that cron
started the cron.hourly scripts at that same minute, a few seconds earlier.
However, I am _not_ seeing trouble every hour.

Full ntp is running on this box, so time(2) is stable.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh



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



Bug#354429: nut spams consoles and system logs with USB UPS

2010-10-17 Thread debian
Sorry, here.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=354429
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583371
On Sun, 17 Oct 2010 11:20 +0200, Arnaud Quette
aquette@gmail.com wrote:

  Hi

2010/10/17 you wrote:

  Debian Squeeze
  2.6.32-5-amd64
  nut 2.4.3-1.1
  CyberPower 625HG UPS via usb
  Dell PowerEdge R210
  When usb.conf is configured to use driver usbhid-ups, and
  port=auto,
  functions are proper except syslog  local consoles are filled
  with the
  messages below.
  As mentioned previously, local consoles are rendered useless
  unless nut
  service is stopped prior to use.
  (By issuing the following command: /etc/init.d/nut stop)
  I cannot set the usb.conf to use driver cyberpower, as it's
  been
  removed from the package over lack of maintenance support from
  the
  vendor.
  When I set the usb.conf to use alternate driver powerpanel,
  and
  port=auto, the service cannot start and returns Unable to
  open auto: No
  such file or directory error message.

the 2 above drivers are (or were) serial drivers, requiring a
serial port like /dev/ttyS0.
I don't see the link with the present bug! can you please shed
some light?

  Excerpt of usbhis-ups errors:
  Oct 17 00:58:42 Planck kernel: [  827.184548] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_interrupt:
  error
  submitting URB: Device or resource busy
  Oct 17 00:58:45 Planck kernel: [  830.234307] usb 2-1.1:
  usbfs: process
  1690 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck kernel: [  830.234418] usb 2-1.1:
  usbfs: process
  1690 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_report:
  error
  sending control message: Device or resource busy
  Oct 17 00:58:45 Planck usbhid-ups[1690]: Got disconnected by
  another
  driver: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_interrupt:
  error
  submitting URB: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_report:
  error
  sending control message: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: Got disconnected by
  another
  driver: Device or resource busy
  Oct 17 00:58:48 Planck kernel: [  833.177178] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:48 Planck kernel: [  833.177289] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use

  looking at the above, you have a driver fight: you have
  probably 2 usbhid-ups drivers instances, fighting to get the
  device connexion. which in turns generate the above noise in
  your syslog.
  please confirm this by issuing a ps -elf | grep usbhid-ups
  cheers
  Arno
  --
  Network UPS Tools (NUT) Project Leader -
  [1]http://www.networkupstools.org/
  Debian Developer - [2]http://www.debian.org
  Free Software Developer - [3]http://arnaud.quette.free.fr/

References

1. http://www.networkupstools.org/
2. http://www.debian.org/
3. http://arnaud.quette.free.fr/


Bug#354429: nut spams consoles and system logs with USB UPS

2010-10-17 Thread debian
I don't follow what you're saying, but here's the output of the
requested command.

# ps -elf | grep usbhid-ups
1 S nut   1508 1  0  80   0 -  4159 -  00:45 ?
00:00:07 /lib/nut/usbhid-ups -a cyberpower
1 S nut   1677 1  0  80   0 -  4180 -  00:58 ?
00:00:10 /lib/nut/usbhid-ups -a cyberpower
1 S nut   1719 1  0  80   0 -  4180 -  01:35 ?
00:00:06 /lib/nut/usbhid-ups -a cyberpower
1 S nut   1732 1  0  80   0 -  4180 -  01:35 ?
00:00:03 /lib/nut/usbhid-ups -a cyberpower
0 S root  2073  2068  0  80   0 -  1887 -  09:06 pts/0
00:00:00 grep usbhid-ups

On Sun, 17 Oct 2010 11:20 +0200, Arnaud Quette
aquette@gmail.com wrote:

  Hi

2010/10/17 you wrote:

  Debian Squeeze
  2.6.32-5-amd64
  nut 2.4.3-1.1
  CyberPower 625HG UPS via usb
  Dell PowerEdge R210
  When usb.conf is configured to use driver usbhid-ups, and
  port=auto,
  functions are proper except syslog  local consoles are filled
  with the
  messages below.
  As mentioned previously, local consoles are rendered useless
  unless nut
  service is stopped prior to use.
  (By issuing the following command: /etc/init.d/nut stop)
  I cannot set the usb.conf to use driver cyberpower, as it's
  been
  removed from the package over lack of maintenance support from
  the
  vendor.
  When I set the usb.conf to use alternate driver powerpanel,
  and
  port=auto, the service cannot start and returns Unable to
  open auto: No
  such file or directory error message.

the 2 above drivers are (or were) serial drivers, requiring a
serial port like /dev/ttyS0.
I don't see the link with the present bug! can you please shed
some light?

  Excerpt of usbhis-ups errors:
  Oct 17 00:58:42 Planck kernel: [  827.184548] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_interrupt:
  error
  submitting URB: Device or resource busy
  Oct 17 00:58:45 Planck kernel: [  830.234307] usb 2-1.1:
  usbfs: process
  1690 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck kernel: [  830.234418] usb 2-1.1:
  usbfs: process
  1690 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:45 Planck usbhid-ups[1690]: libusb_get_report:
  error
  sending control message: Device or resource busy
  Oct 17 00:58:45 Planck usbhid-ups[1690]: Got disconnected by
  another
  driver: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_interrupt:
  error
  submitting URB: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: libusb_get_report:
  error
  sending control message: Device or resource busy
  Oct 17 00:58:48 Planck usbhid-ups[1677]: Got disconnected by
  another
  driver: Device or resource busy
  Oct 17 00:58:48 Planck kernel: [  833.177178] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use
  Oct 17 00:58:48 Planck kernel: [  833.177289] usb 2-1.1:
  usbfs: process
  1677 (usbhid-ups) did not claim interface 0 before use

  looking at the above, you have a driver fight: you have
  probably 2 usbhid-ups drivers instances, fighting to get the
  device connexion. which in turns generate the above noise in
  your syslog.
  please confirm this by issuing a ps -elf | grep usbhid-ups
  cheers
  Arno
  --
  Network UPS Tools (NUT) Project Leader -
  [1]http://www.networkupstools.org/
  Debian Developer - [2]http://www.debian.org
  Free Software Developer - [3]http://arnaud.quette.free.fr/

References

1. http://www.networkupstools.org/
2. http://www.debian.org/
3. http://arnaud.quette.free.fr/



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



Bug#599146: git-buildpackage: gbp-pq should deal with unknown fields more gracefully

2010-10-17 Thread Guido Günther
On Sat, Oct 16, 2010 at 07:26:07PM +0200, Guido Günther wrote:
 Hi David,
 sorry for the late reply.
 
 On Tue, Oct 05, 2010 at 12:12:17AM -0300, David Bremner wrote:
  Package: git-buildpackage
  Version: 0.5.4
  Severity: wishlist
  
  Currently gbp-import silently drops unknown header fields. This is
  problematic for the proposed DEP3 header, which allows more fields
  than From, Date, and Subject.  Minimally it should complain that
 Yes, that sucks. It's caused by gbp-pq using git quilt-import for the
 import. We have to get rid of git-quilt-import due to other bugs like
Just as a side note: If you put the header fields after the patch
description - just like the first example at
http://dep.debian.net/deps/dep3/ the header fields are preserved by git
quilt-import. 
Cheers,
 -- Guido



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



Bug#600472: gdm3: Please enable braille in orca as well

2010-10-17 Thread Samuel Thibault
Package: gdm3
Version: 2.30.2-4
Severity: normal

Hello,

The Orca instance started from gdm should also enable braille, see
attached patch.

Samuel

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

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

Versions of packages gdm3 depends on:
ii  adduser3.112 add and remove users and groups
ii  aterm [x-terminal-emul 1.0.1-7+b1Afterstep XVT - a VT102 emulator f
ii  debconf [debconf-2.0]  1.5.35Debian configuration management sy
ii  eterm [x-terminal-emul 0.9.5-2   Enlightened Terminal Emulator
ii  fvwm [x-window-manager 1:2.5.30.ds-1 F(?) Virtual Window Manager
ii  gconf2 2.28.1-4  GNOME configuration database syste
ii  gnome-session [x-sessi 2.30.2-2  The GNOME Session Manager - GNOME 
ii  gnome-session-bin  2.30.2-2  The GNOME Session Manager - Minima
ii  gnome-terminal [x-term 2.30.2-1  The GNOME terminal emulator applic
ii  konsole [x-terminal-em 4:4.4.5-1 X terminal emulator
ii  kterm [x-terminal-emul 6.2.0-46  Multi-lingual terminal emulator fo
ii  libart-2.0-2   2.3.21-1  Library of functions for 2D graphi
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libattr1   1:2.4.44-2Extended attribute shared library
ii  libaudit0  1.7.13-1+b2   Dynamic library for security audit
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.3-1  The Bonobo UI library
ii  libc6  2.11.2-6  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libcanberra-gtk0   0.24-1Gtk+ helper for playing widget eve
ii  libcanberra0   0.24-1a simple abstract interface for pl
ii  libdbus-1-31.2.24-3  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.88-2simple interprocess messaging syst
ii  libdevkit-power-gobjec 1:0.9.5-3 abstraction for power management -
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-1   FreeType 2 font engine, shared lib
ii  libgconf2-42.28.1-4  GNOME configuration database syste
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.30.1-1  A powerful object-oriented display
ii  libgtk2.0-02.20.1-1+b1   The GTK+ graphical user interface 
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpam-modules 1.1.1-6   Pluggable Authentication Modules f
ii  libpam-runtime 1.1.1-6   Runtime support for the PAM librar
ii  libpam0g   1.1.1-6   Pluggable Authentication Modules l
ii  libpanel-applet2-0 2.30.2-2  library for GNOME Panel applets
ii  libpango1.0-0  1.28.1-1  Layout and rendering of internatio
ii  libpolkit-gobject-1-0  0.96-3PolicyKit Authorization API
ii  libpolkit-gtk-1-0  0.96-2PolicyKit GTK+ API
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  librsvg2-common2.26.3-1  SAX-based renderer library for SVG
ii  libselinux12.0.96-1  SELinux runtime shared libraries
ii  libwrap0   7.6.q-19  Wietse Venema's TCP wrappers libra
ii  libx11-6   2:1.3.3-3 X11 client-side library
ii  libxau61:1.0.6-1 X11 authorisation library
ii  libxdmcp6  1:1.0.3-2 X11 Display Manager Control Protoc
ii  libxklavier16  5.0-2 X Keyboard Extension high-level AP
ii  libxml22.7.7.dfsg-4  GNOME XML library
ii  lsb-base   3.2-23.1  Linux Standard Base 3.2 init scrip
ii  metacity [x-window-man 1:2.30.1-2lightweight GTK+ window manager
ii  mlterm [x-terminal-emu 3.0.1-2   MultiLingual TERMinal
ii  policykit-1-gnome  0.96-2GNOME authentication agent for Pol
ii  pterm [x-terminal-emul 0.60+2010-02-20-1 PuTTY terminal emulator
ii  rxvt [x-terminal-emula 1:2.6.4-14VT102 terminal emulator for the X 
ii  rxvt-ml [x-terminal-em 1:2.6.4-14multi-lingual VT102 terminal emula
ii  rxvt-unicode-ml [x-ter 9.07-2+b1 multi-lingual terminal emulator wi
ii  upower 0.9.5-3   abstraction for power management
ii  wterm [x-terminal-emul 6.2.9-8.1 lightweight terminal 

Bug#592081: debsums fails to handle diversion if LANG is set

2010-10-17 Thread Timo Weingärtner
tags 592081 +patch
thanks

Hi,

I changed in line 219 of /usr/bin/debsums:

-for (`/usr/sbin/dpkg-divert --list`)
+for (`LC_MESSAGES=C /usr/sbin/dpkg-divert --list`)

Diversions are now handled coorectly.


Greetings
Timo


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


Bug#600473: src:lilypond: FTBFS on s390: Internal Error: NaN value in spline creation

2010-10-17 Thread Tim Retout
Package: src:lilypond
Version: 2.12.3-7
Severity: serious
Justification: fails to build from source (but built successfully in the past)

lilypond is failing to build on s390, which is blocking migration of
two RC bug fixes.  Here's a build log:

https://buildd.debian.org/fetch.cgi?pkg=lilypondver=2.12.3-7arch=s390stamp=1286908333file=log

Here are some relevant errors:

Invoking fontforge -script feta20.pe feta20.pfb...
Copyright (c) 2000-2010 by George Williams.
 Executable based on sources from 11:21 GMT 1-May-2010.
 Library based on sources from 03:43 GMT 29-Apr-2010.
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
Internal Error:
NaN value in spline creation
snip



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



Bug#600475: unblock: mumble/1.2.2-5

2010-10-17 Thread Patrick Matthäi
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package mumble

changelog:

mumble (1.2.2-5) unstable; urgency=low

  * Update fuzzy spanish debconf translation. Thanks to Omar Campagne Polaino.
Closes: #590442
  * Downgrade mumble-11x from recommends to suggests.
Closes: #599661
  * Update Basque translation from Dooteo.
Closes: #600203
  * Add Norwegian translation from Bjørn Steensrud.
Closes: #600277
  * Add Italian translation from Vincenzo Campanella.
Closes: #600440
  * Bump Standards-Version to 3.9.1 (no changes needed).

 -- Patrick Matthäi pmatth...@debian.org  Sun, 17 Oct 2010 14:41:34 +0200

unblock mumble/1.2.2-5

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

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



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



Bug#600476: Im-switch is changed from Depends to Recommends

2010-10-17 Thread Jonny
Package: uim-common
Version: 1:1.5.7-9
Severity: wishlist

Please change im-switch from Depends to Recommends. 
SCIM, iBus and GCIN are Recommends.

 Package: uim-common
snip
 Depends: im-switch

 Package: scim
snip
 Recommends: scim-gtk2-immodule (= 1.4.9-5), im-config | im-switch, 
 scim-bridge-agent

 Package: ibus
snip
 Recommends: im-config | im-switch, ibus-gtk | ibus-qt4

 Package: gcin
snip
 Recommends: gcin-qt3-immodule, im-switch, anthy



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



Bug#600477: xpdf crashes when I click on 'open' or 'open in new window'

2010-10-17 Thread bob
Package: xpdf
Version: 3.02-11
Severity: normal

If I try to load a pdf file by first clicking on 'open' or 'open in a new 
window' xpdf crashes. However, if in a termial I do this by typing xpdf 
foo.pdf, then the pdf file is opened. Now that a file is openned, if I try 
'open in a new window' or 'save as' it crashes.

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

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

Versions of packages xpdf depends on:
ii  lesstif2  1:0.95.2-1 OSF/Motif 2.1 implementation relea
ii  libc6 2.11.2-5   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.4-8  GCC support library
ii  libpoppler5   0.12.4-1.1 PDF rendering library
ii  libstdc++64.4.4-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library

Versions of packages xpdf recommends:
ii  gsfonts-x11   0.21   Make Ghostscript fonts available t
ii  poppler-data  0.4.3-1Encoding data for the poppler PDF 
ii  poppler-utils 0.12.4-1.1 PDF utilitites (based on libpopple

xpdf suggests no packages.

-- no debconf information



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



Bug#593347: Grub: no module name found

2010-10-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
This is yet another modification on crappy windows applications like
Flexible Lies Manager. This is neither Debian nor GRUB bug, but of the
windows application which improperly writes to MBR gap.
However this is a relatively widespread issue, so in upstream we now
write that part using Reed-Solomon so we're not affected by this
misbehaviour other than the time needed to recover from corruption in
Reed-Solomon.

-- 
Regards
Vladimir 'φ-coder/phcoder' Serbinenko




signature.asc
Description: OpenPGP digital signature


Bug#600308: [DebianGIS-dev] Bug#600308: qgis: package will be updated to 1.5 'Tethys' ?

2010-10-17 Thread Samy Mezani

le 17/10/2010 13:21, Francesco P. Lovergine a écrit:

 No, 1.4 is the version included in squeeze. [...] We are in freezing.


Hi Francesco,

OK we are in freezing, but the 1.5 version was released before the 
freeze, no ?


http://www.qgis.org/wiki/Download :
The current version is QGIS 1.5.0 and was released on 29 July 2010.

http://lists.debian.org/debian-news/2010/msg00012.html
On 6 August [...] the Debian Release Team announced that Debian is 
being frozen [...]


And my problem is not really squeeze but sid. Version 1.5 is not 
packaged for sid. It's a pity ! ;)


But Paolo is right, I have to file bugs in versions of unofficial 
repositeries too !


Thanks for your responses.

Best regards.

Samy







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



Bug#600478: w3m: ssl error

2010-10-17 Thread bubo
Package: w3m
Version: 0.5.2-9
Severity: normal



ssl error while trying to display the page:

https://btrfs.wiki.kernel.org/index.php/FAQ

lynx and iceweasel play nice with it so i got to file a bug.

kind regards bubo


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

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

Versions of packages w3m depends on:
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libgc1c21:6.8-1.2conservative garbage collector for
ii  libgpm2 1.20.4-3.3   General Purpose Mouse - shared lib
ii  libncurses5 5.7+20100313-4   shared libraries for terminal hand
ii  libssl0.9.8 0.9.8o-2 SSL shared libraries
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages w3m recommends:
ii  ca-certificates20090814+nmu2 Common CA certificates

Versions of packages w3m suggests:
ii  man-db  2.5.7-4  on-line manual pager
pn  menunone   (no description available)
pn  migemo  none   (no description available)
ii  mime-support3.48-1   MIME files 'mime.types'  'mailcap
ii  w3m-el-snapshot [w3 1.4.400+0.20100725-1 simple Emacs interface of w3m (dev
ii  w3m-img 0.5.2-9  inline image extension support uti

-- no debconf information



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



Bug#550702: grub-pc: Grub hangs after having ran Windows XP

2010-10-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
This is yet another modification on crappy windows applications like
Flexible Lies Manager. This is neither Debian nor GRUB bug, but of the
windows application which improperly writes to MBR gap.
However this is a relatively widespread issue, so in upstream we now
write that part using Reed-Solomon so we're not affected by this
misbehaviour other than the time needed to recover from corruption in
Reed-Solomon.


-- 
Regards
Vladimir 'φ-coder/phcoder' Serbinenko




signature.asc
Description: OpenPGP digital signature


Bug#600479: rsyslog-pgsql: Postgres strings are not properly escaped

2010-10-17 Thread Christian Kastner
Package: rsyslog-pgsql
Version: 4.6.4-1
Severity: normal

(I use rsyslog from lenny-backports on nearly all of my hosts, but I have
verified the following to be true for 4.6.4-1 from unstable).

After upgrading from 4.4.2~bpo to 4.6.4~bpo, I started getting hourly
messages from logcheck. The Postgres client driver was complaining about
unescaped strings generated by exim's rejectlog; on rare occasions,
other syslog clients generated such warnings, too.

Now I don't know why this suddenly occurred (ompgsql doesn't seem to
have changed between 4.4.2 and 4.6.4), but upon investigating this problem, I
realized the escaping issue at least to be true:

testcase:
  $ logger 'backslash in string causes problems \1'

result in DB:
 backslash in string causes problems 

The '\1' is stored as \x01 instead of \x5c\x31 .

The escaping problem is present in 4.4.2~bpo, 4.6.4~bpo ad 4.6.4-1, however
only versions  4.4.2 cause the Postgres warning messages.

Christian


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

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

Versions of packages rsyslog-pgsql depends on:
ii  dbconfig-common  1.8.46  common framework for packaging dat
ii  debconf [debconf-2.0]1.5.36  Debian configuration management sy
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libpq5   9.0.1-1 PostgreSQL C client library
ii  rsyslog  4.6.4-1 enhanced multi-threaded syslogd
ii  ucf  3.0025+nmu1 Update Configuration File: preserv

Versions of packages rsyslog-pgsql recommends:
pn  postgresql-client none (no description available)

Versions of packages rsyslog-pgsql suggests:
pn  postgresqlnone (no description available)

-- debconf information:
  rsyslog-pgsql/db/app-user: rsyslog
  rsyslog-pgsql/pgsql/manualconf:
  rsyslog-pgsql/remote/host:
  rsyslog-pgsql/pgsql/authmethod-user:
  rsyslog-pgsql/upgrade-backup: true
  rsyslog-pgsql/db/dbname: Syslog
  rsyslog-pgsql/dbconfig-reinstall: false
  rsyslog-pgsql/passwords-do-not-match:
  rsyslog-pgsql/missing-db-package-error: abort
  rsyslog-pgsql/pgsql/admin-user: postgres
  rsyslog-pgsql/database-type: pgsql
  rsyslog-pgsql/purge: false
  rsyslog-pgsql/internal/skip-preseed: true
  rsyslog-pgsql/install-error: abort
  rsyslog-pgsql/upgrade-error: abort
  rsyslog-pgsql/pgsql/method: unix socket
  rsyslog-pgsql/remove-error: abort
  rsyslog-pgsql/internal/reconfiguring: false
  rsyslog-pgsql/remote/port:
  rsyslog-pgsql/dbconfig-upgrade: true
  rsyslog-pgsql/pgsql/changeconf: false
  rsyslog-pgsql/pgsql/no-empty-passwords:
  rsyslog-pgsql/pgsql/authmethod-admin: ident
  rsyslog-pgsql/dbconfig-remove:
* rsyslog-pgsql/dbconfig-install: false
  rsyslog-pgsql/remote/newhost:
WARNING:  nonstandard use of escape in a string literal
LINE 1: ...dTime, ReceivedAt, InfoUnitID, SysLogTag) values (' [1\17] 2...
 ^
HINT:  Use the escape string syntax for escapes, e.g., E'\r\n'.
WARNING:  nonstandard use of escape in a string literal
LINE 1: ...dTime, ReceivedAt, InfoUnitID, SysLogTag) values (' [2\17] E...
 ^
HINT:  Use the escape string syntax for escapes, e.g., E'\r\n'.
WARNING:  nonstandard use of escape in a string literal
LINE 1: ...dTime, ReceivedAt, InfoUnitID, SysLogTag) values (' [3\17] E...
 ^
HINT:  Use the escape string syntax for escapes, e.g., E'\r\n'.


Bug#600473: src:lilypond: FTBFS on s390: Internal Error: NaN value in spline creation

2010-10-17 Thread Tim Retout
More details: I can reproduce this on zelenka.debian.org.  The build
hangs after:

Internal Error:
No Solution
Internal Error:
No Solution
Internal Error:
No Solution
Internal Error:
No Solution

And this line from the buildd log now seems relevant:

  Build killed with signal TERM after 150 minutes of inactivity

At that point, 'fontforge' was using 100% CPU.

-- 
Tim Retout dioc...@debian.org



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



Bug#598132: gdm3: Should beep or permit to configure a beep

2010-10-17 Thread Samuel Thibault
Hello,

Josselin Mouette, le Mon 27 Sep 2010 18:20:38 +0200, a écrit :
 I would definitely accept a patch to do that.

Here is the part that adds the beep.

Samuel
--- /dev/null   2010-10-15 22:14:29.73017 +0200
+++ data/greeter-autostart/beep.desktop.in  2010-10-17 05:08:54.0 
+0200
@@ -0,0 +1,11 @@
+[Desktop Entry]
+_Name=Beep
+_Comment=Emit a beep
+TryExec=beep
+Exec=beep
+Icon=beep
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=GNOME;GTK;Accessibility;
+AutostartCondition=GNOME /desktop/gnome/applications/at/beep_enabled
--- ./gui/simple-greeter/gdm-simple-greeter.schemas.in.original 2010-10-17 
05:06:57.0 +0200
+++ ./gui/simple-greeter/gdm-simple-greeter.schemas.in  2010-10-17 
05:07:56.0 +0200
@@ -136,6 +136,17 @@
 longSet to true to enable the screen magnifier./long
   /locale
 /schema
+schema
+  key/schemas/apps/gdm/simple-greeter/accessibility/beep_enabled/key
+  applyto/apps/gdm/simple-greeter/accessibility/beep_enabled/applyto
+  ownergdm-simple-greeter/owner
+  typebool/type
+  defaultFALSE/default
+  locale name=C
+shortEnable beep on login prompt/short
+longSet to true to enable beeping when the login prompt is 
ready./long
+  /locale
+/schema
 
 schema
   
key/schemas/apps/gdm/simple-greeter/settings-manager-plugins/a11y-keyboard/active/key
--- ./data/greeter-autostart/Makefile.am.original   2010-10-17 
05:15:26.0 +0200
+++ ./data/greeter-autostart/Makefile.am2010-10-17 05:15:29.0 
+0200
@@ -21,6 +21,7 @@
gok.desktop.in  \
metacity.desktop.in \
orca-screen-reader.desktop.in   \
+   beep.desktop.in \
polkit-gnome-authentication-agent-1.desktop.in  \
$(NULL)
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
--- ./data/greeter-autostart/Makefile.in.original   2010-10-17 
05:15:59.0 +0200
+++ ./data/greeter-autostart/Makefile.in2010-10-17 05:16:06.0 
+0200
@@ -343,6 +343,7 @@
gok.desktop.in  \
metacity.desktop.in \
orca-screen-reader.desktop.in   \
+   beep.desktop.in \
polkit-gnome-authentication-agent-1.desktop.in  \
$(NULL)
 


Bug#598647: Fixed

2010-10-17 Thread Frederik Schwarzer
This is now fixed upstream and should show up in the next version.

Thanks for the report. :)



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



Bug#598647: l10n-kde4/de/messages/extragear-office

2010-10-17 Thread Frederik Schwarzer
SVN commit 1186775 by schwarzer:

fix translation

- sie - Sie
- Mwst - MwSt.

Debian Bugs:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598647
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598649

Please report non-packaging-related bugs upstream.
For the German translation - bugs.kde.org; Product: i18n; Component: de

CCMAIL: 598...@bugs.debian.org
CCMAIL: 598...@bugs.debian.org

 M  +19 -19kmymoney.po  


--- trunk/l10n-kde4/de/messages/extragear-office/kmymoney.po #1186774:1186775
@@ -19,7 +19,7 @@
 Project-Id-Version: de\n
 Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 POT-Creation-Date: 2010-10-17 06:28+0200\n
-PO-Revision-Date: 2010-10-07 13:19+0200\n
+PO-Revision-Date: 2010-10-17 15:44+0200\n
 Last-Translator: Frederik Schwarzer schwarz...@gmail.com\n
 Language-Team: German kde-i18n...@kde.org\n
 MIME-Version: 1.0\n
@@ -512,7 +512,7 @@
 msgid 
 If the asset account does not yet exist, press this button to create it.
 msgstr 
-Wenn das Anlagenkonto noch nicht existiert, drücken sie diesen Knopf um es 
+Wenn das Anlagenkonto noch nicht existiert, drücken Sie diesen Knopf um es 
 anzulegen.
 
 #: kmymoney/wizards/newaccountwizard/knewaccountwizard.cpp:1582
@@ -4909,7 +4909,7 @@
 
 #: kmymoney/dialogs/knewaccountdlg.cpp:259
 msgid VAT account
-msgstr Mwst-Konto
+msgstr MwSt.-Konto
 
 #: kmymoney/dialogs/knewaccountdlg.cpp:502
 msgid 
@@ -5234,7 +5234,7 @@
 msgstr 
 Diese beiden Buchungen wurden in %1 importiert.  Daher können sie nicht 
 einander zugeordnet werden.  Zuordnung funktioniert nur bei einer 
-importierten und einer nicht-importierten Buchung.
+importierten und einer nicht importierten Buchung.
 
 #: kmymoney/dialogs/transactionmatcher.cpp:104
 #, kde-format
@@ -5417,7 +5417,7 @@
 #: kmymoney/models/accountsmodel.cpp:407
 msgctxt Column heading for VAT category
 msgid VAT
-msgstr MwSt
+msgstr MwSt.
 
 #: kmymoney/models/accountsmodel.cpp:410
 msgid Total Balance
@@ -6388,8 +6388,8 @@
 convert it to the new XML based format.
 msgstr 
 Die Datei b%1/b enthält Daten im alten Binär-Format von KMyMoney. Bitte 
-nutzen sie eine ältere KMyMoney-Version (0.8.x), welche diese Format noch 
-unterstützt um es in das neue XML-basierte Format zu konvertieren.
+benutzen Sie eine ältere KMyMoney-Version (0.8.x), die dieses Format noch 
+unterstütztn um es in das neue XML-basierte Format zu konvertieren.
 
 #: kmymoney/views/kmymoneyview.cpp:740
 #, kde-format
@@ -10229,7 +10229,7 @@
 Sie sind dabei, den Abgleich für dieses Konto zu beenden, obwohl noch eine 
 Differenz zwischen Ihrem Kontoauszug und den als verrechnet markierten 
 Buchungen besteht.\n
-Sind Sie sicher, dass sie den Abgleich beenden möchten?
+Sind Sie sicher, dass Sie den Abgleich beenden möchten?
 
 #: kmymoney/kmymoney.cpp:3883
 msgid Confirm end of reconciliation
@@ -10654,7 +10654,7 @@
 msgid 
 You must first select a KMyMoney file before you can import a statement.
 msgstr 
-Bevor Sie einen Kontoauszug importieren können, müssen sie zuerst eine 
+Bevor Sie einen Kontoauszug importieren können, müssen Sie zuerst eine 
 KMyMoney-Datei auswählen.
 
 #: kmymoney/kmymoney.cpp:6585
@@ -11283,7 +11283,7 @@
 If the name does not exist within KMyMoney's database, you are asked if you 
 want to create it.
 msgstr 
-Geben Sie den Namen der Person oder der Bank ein, der sie Geld schulden oder 
+Geben Sie den Namen der Person oder der Bank ein, der Sie Geld schulden oder 
 die Ihnen Geld schuldet.\n
 \n
 Wenn der Name noch nicht in der Datenbank von KMyMoney existiert, werden Sie 
@@ -11552,7 +11552,7 @@
 a checking account.
 msgstr 
 Wählen Sie das Konto, von dem Sie periodische Zahlungen leisten oder 
-empfangen, falls sie Geld verleihen. Meist ist dies ein Girokonto.
+empfangen, falls Sie Geld verleihen. Meist ist dies ein Girokonto.
 
 #. i18n: file: kmymoney/wizards/newaccountwizard/kloanschedulepagedecl.ui:72
 #. i18n: ectx: property (text), widget (QLabel, textLabel1)
@@ -14717,7 +14717,7 @@
 #| msgid VAT percentage
 msgctxt select if fee is a percentage (not value)
 msgid Fee is  Percentage
-msgstr Mwst-Prozentsatz
+msgstr MwSt.-Prozentsatz
 
 #. i18n: file: kmymoney/plugins/csvimport/investmentdlgdecl.ui:655
 #. i18n: ectx: property (toolTip), widget (KComboBox, comboBox_priceFraction)
@@ -15405,8 +15405,8 @@
 Mark this option, if you always want to match names e.g. for payees from the 
 start. If unset, any substring is matched.
 msgstr 
-Schalten Sie diese Option ein, wenn sie Namensvergleiche immer am Anfang 
-beginnen Möchten. Bei ausgeschalteter Option ist auch ein Teil 
+Schalten Sie diese Option ein, wenn Sie Namensvergleiche immer am Anfang 
+beginnen möchten. Bei ausgeschalteter Option ist auch ein Teil 
 übereinstimmend.
 
 #. i18n: file: kmymoney/dialogs/settings/ksettingsregisterdecl.ui:233
@@ -17104,7 +17104,7 @@
 #. i18n: ectx: property (text), widget (QCheckBox, m_qcheckboxNoVat)
 #: rc.cpp:3049
 msgid No auto-VAT-assignment
-msgstr Keine automatische Mwst.-Zuweisung
+msgstr Keine automatische MwSt.-Zuweisung
 
 

Bug#598649: Fixed

2010-10-17 Thread Frederik Schwarzer
This is now fixed upstream and should show up in the next version.

Thanks for the report. :)



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



Bug#600480: octave-communications: Wrong Homepage URL on package description

2010-10-17 Thread Rodrigo De Diego
Package: octave-communications
Version: 1.0.10-2
Severity: minor


The URL on the homepage should be
http://octave.sourceforge.net/communications/
but right now aptitude shows
http://octave.sourceforge.net/comm

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages octave-communications depends on:
ii  libblas3gf [libblas.so. 1.2-8Basic Linear Algebra Reference imp
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libfftw3-3  3.2.2-1  library for computing Fast Fourier
ii  libgcc1 1:4.4.5-2GCC support library
ii  libgfortran34.4.5-2  Runtime library for GNU Fortran ap
ii  libhdf5-serial-1.8.4 [l 1.8.4-patch1-2   Hierarchical Data Format 5 (HDF5) 
ii  liblapack3gf [liblapack 3.2.1-8  library of linear algebra routines
ii  libncurses5 5.7+20100313-4   shared libraries for terminal hand
ii  libreadline66.1-3GNU readline and history libraries
ii  libstdc++6  4.4.5-2  The GNU Standard C++ Library v3
ii  octave-communications-c 1.0.10-2 communications package for Octave 
ii  octave-signal   1.0.11-2 signal processing functions for Oc
ii  octave3.2   3.2.4-7  GNU Octave language for numerical 
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

octave-communications recommends no packages.

octave-communications suggests no packages.

-- no debconf information



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



Bug#591457: confirmed - seeking possible removal of apt-cross

2010-10-17 Thread Neil Williams
found 591457 0.13.4
severity 591457 grave
tag 591457 - unreproducible
tag 591457 - moreinfo
tag 591457 + wontfix
tag 591457 + confirmed
quit

Justification: renders package unusable in locales other than C/POSIX

 Reporting against apt-cross 0.12.0 this time since that's in a clean
 Debian 5.0 32 bit install that I did with debootstrap not three days
 ago. In this environment I generated the log below by running the
 following command as root:

 (set -x; ls -la /etc/apt/sources.list.d  rm -rf /root/.apt-cross 
 apt-cross -a amd64 --update  apt-cross -v -v -v -a amd64 -n -i
 libpopt-dev  LANG= apt-cross -v -v -v -a amd64 -n -i libpopt-dev)
 /tmp/apt-cross.log 21

-a amd64?? You are trying to install cross-building libraries to
cross-build for an amd64 target? Also, running apt-cross as root is not
recommended - apt-cross will use sudo when necessary, it is not meant
to be called under sudo itself.

That's not an issue though, I've now replicated this bug with the more
usual user case of -a armel and as a normal user.

 The following NEW packages will be built and installed:
  gcc-4.3-base libc6 libc6-dev libgcc1 libpopt-dev libpopt0
 linux-libc-dev 0 to be upgraded, 7 to be newly installed.

That indicates that apt-cross does work with the locale in the chroot.

However, I have now been able to reproduce the failure - when asking
for libpopt-dev in LANGUAGE=C, it works. In LANGUAGE=fr it fails to
calculate a dependency on libpopt0. It would also fail in any locale
where apt has a translation of Depends.

It does not appear to be a problem that apt-cross can solve,
unfortunately. The apt perl bindings assert their own locale handling
which results in the Depends: field being translated. IMHO that is a
bug in apt because that is a label, not a description - a piece of
data, not a piece of user-text. i.e. The name of the control field,
Depends is translated inside the binary apt cache which is used by
the apt perl bindings and therefore apt-cross cannot use this control
field to calculate the dependencies of any package unless that binary
cache file is created and maintained solely under the LC_ALL=C locale.
I have so far failed to persuade the apt perl bindings to do this if
the external locale is anything other than LC_ALL=C or LC_ALL=en*.

xapt does exist in Squeeze, just not as a separate package. It is part
of pdebuild-cross (/usr/share/pdebuild-cross/xapt).

apt-cross has been RFH for sometime, it is mostly abandoned and doesn't
work properly with the version of apt in Squeeze anyway. All current
work is on a replacement for apt-cross but xapt might not make it into
Squeeze as a separate package.

So the options are:

1: live with this bug using the workaround you found. This is not
likely to be acceptable to the release team.

2: reassign this bug to apt if there is a chance it can be fixed,
bearing in mind that the number of current bugs in apt is over
700 and apt-cross still has issues with apt = 0.8.x.

3: Remove apt-cross from Squeeze and persuade the release team to allow
xapt to migrate out of /usr/share into a new package in /usr/bin/

xapt is *not* a drop-in replacement for apt-cross but the command line
options are similar and there would be no reverse dependencies in
Squeeze if emdebian-crush 2.2.6 was allowed a freeze exception.
The reverse dependencies which do exist in unstable and experimental
should be able to migrate in due course.

http://packages.qa.debian.org/m/mlton-cross.html
http://packages.qa.debian.org/b/buildcross.html

-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.linux.codehelp.co.uk/
http://e-mail.is-not-s.ms/



pgpVK2wqTIe6t.pgp
Description: PGP signature


Bug#598133: gdm3: Should provide shortcuts and configuration snippets to enable accessibility

2010-10-17 Thread Samuel Thibault
Debian-boot, this is about letting d-i automatically enable
accessibility features of gdm3 when accessibility was enabled during
d-i.

Josselin Mouette, le Sun 17 Oct 2010 14:39:27 +0200, a écrit :
 Le dimanche 17 octobre 2010 à 05:01 +0200, Samuel Thibault a écrit :
  Josselin Mouette, le Mon 27 Sep 2010 18:20:38 +0200, a écrit :
   It shouldn’t be hard to implement with a GConf value that is read in the
   greeter. Such a value could easily be set in d-i. 
  
  How is this done from d-i more precisely?
 
 You need to ship a file in /usr/share/gconf/defaults. Like for gksu,
 this one should probably be an alternative.

Mmm, ATM there are both speakup and brltty which would want to enable
Orca for instance.  How to do this properly?  My concern is making sure
that no package upgrade will unexpectedly override the alternative that
has been chosen by d-i.

Else, a dirty-but-working way would be to let brltty or speakup
d-i scripts create a file in /usr/share/gconf/defaults and run
update-gconf-defaults.

Samuel



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



Bug#599736: new tests: the cameras works with gphoto2

2010-10-17 Thread Stéphane Blondon
As the log provided with the bug report sended the 10th October shows
the AX200 use the Picture Transfer Protocol, I tried with another tool
in order to provide more clues.

I installed the gphoto2 package and used it with the camera. gphoto
find a PTP camera, can see the pictures or movies in the camera and
extract them to the computer.

I don't know if it could help but the camera is not detected with his
own name but by the generic USB PTP Class Camera string.

steph...@degtyarov:/tmp $ gphoto2 --auto-detect
ModèlePort
--
USB PTP Class Camera   usb:
steph...@degtyarov:/tmp $ gphoto2 --list-files
There is no file in folder '/'.
There is no file in folder '/store_00010001'.
There is no file in folder '/store_00010001/DCIM'.
There are 123 files in folder '/store_00010001/DCIM/100_FUJI'.
#1 DSCF0002.JPG   rd  2372 KB 4000x3000 image/jpeg
#2 DSCF0003.JPG   rd  4938 KB 4000x3000 image/jpeg
#3 DSCF0004.JPG   rd  5556 KB 4000x3000 image/jpeg
[...]
steph...@degtyarov:/tmp $ LANG=C;gphoto2 --get-all-files
Downloading 'DSCF0002.JPG' from folder '/store_00010001/DCIM/100_FUJI'...
[...]
steph...@degtyarov:/tmp $ gphoto2 --version
gphoto2 2.4.5

Copyright (c) 2000-2008 Lutz Mueller and others

gphoto2 comes with NO WARRANTY, to the extent permitted by law. You may
redistribute copies of gphoto2 under the terms of the GNU General Public
License. For more information about these matters, see the files named COPYING.

This version of gphoto2 is using the following software versions and options:
gphoto2 2.4.5  gcc, popt(m), exif, cdk, aa, jpeg, readline
libgphoto2  2.4.6  gcc, ltdl, EXIF
libgphoto2_port 0.8.0  gcc, ltdl, USB, serial without locking




Other data (camera plugged):
steph...@degtyarov:/tmp $ tree /proc/bus/usb
/proc/bus/usb

0 directories, 0 files
steph...@degtyarov:/tmp $ tree /sys/bus/usb
/sys/bus/usb
|-- devices
|   |-- 1-0:1.0 - ../../../devices/pci:00/:00:03.2/usb1/1-0:1.0
|   |-- 1-5 - ../../../devices/pci:00/:00:03.2/usb1/1-5
|   |-- 1-5:1.0 - ../../../devices/pci:00/:00:03.2/usb1/1-5/1-5:1.0
|   |-- 2-0:1.0 - ../../../devices/pci:00/:00:03.0/usb2/2-0:1.0
|   |-- 3-0:1.0 - ../../../devices/pci:00/:00:03.1/usb3/3-0:1.0
|   |-- usb1 - ../../../devices/pci:00/:00:03.2/usb1
|   |-- usb2 - ../../../devices/pci:00/:00:03.0/usb2
|   `-- usb3 - ../../../devices/pci:00/:00:03.1/usb3
|-- drivers
|   |-- hub
|   |   |-- 1-0:1.0 - ../../../../devices/pci:00/:00:03.2/usb1/1-0:1.0
|   |   |-- 2-0:1.0 - ../../../../devices/pci:00/:00:03.0/usb2/2-0:1.0
|   |   |-- 3-0:1.0 - ../../../../devices/pci:00/:00:03.1/usb3/3-0:1.0
|   |   |-- bind
|   |   |-- module - ../../../../module/usbcore
|   |   |-- new_id
|   |   |-- uevent
|   |   `-- unbind
|   |-- usb
|   |   |-- 1-5 - ../../../../devices/pci:00/:00:03.2/usb1/1-5
|   |   |-- bind
|   |   |-- module - ../../../../module/usbcore
|   |   |-- uevent
|   |   |-- unbind
|   |   |-- usb1 - ../../../../devices/pci:00/:00:03.2/usb1
|   |   |-- usb2 - ../../../../devices/pci:00/:00:03.0/usb2
|   |   `-- usb3 - ../../../../devices/pci:00/:00:03.1/usb3
|   `-- usbfs
|   |-- bind
|   |-- module - ../../../../module/usbcore
|   |-- new_id
|   |-- uevent
|   `-- unbind
|-- drivers_autoprobe
|-- drivers_probe
`-- uevent

23 directories, 14 files


Hope it helps.

-- 
Stéphane



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



Bug#600481: vim removes contents of encrypted files without warning if gnupg key has expired

2010-10-17 Thread H. S.
Package: vim
Version: 2:7.2.445+hg~cb94c42c0e1a-1
Severity: critical
Justification: causes serious data loss


Trying to open a gnupg encrypted text file in vim when the GnuPG key is expired 
results in
deletion of the contents of the file. Vim gives no warning that the contents 
will be lost, at
 least I did not see any. This happened repeatedly until I renewd my gnupg key.

After the key renewal, editing of gnupg encrypted text files worked properly as 
before.

Good thing I have backups of my important files, else the loss of contents 
would have been a 
serious problem.



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

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

Versions of packages vim depends on:
ii  libacl1  2.2.49-4Access control list shared library
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libgpm2  1.20.4-3.3  General Purpose Mouse - shared lib
ii  libncurses5  5.7+20100313-4  shared libraries for terminal hand
ii  libselinux1  2.0.96-1SELinux runtime shared libraries
ii  vim-common   2:7.2.445+hg~cb94c42c0e1a-1 Vi IMproved - Common files
ii  vim-runtime  2:7.2.445+hg~cb94c42c0e1a-1 Vi IMproved - Runtime files

vim recommends no packages.

Versions of packages vim suggests:
pn  ctags none (no description available)
pn  vim-doc   none (no description available)
ii  vim-scripts   20091011   plugins for vim, adding bells and 

-- no debconf information



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



Bug#600482: unblock: vpb-driver/4.2.49-1

2010-10-17 Thread Ron
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package vpb-driver

This one updates the package for two kernel interface changes, one in 2.6.33
and another in 2.6.35.  Tested in sid and upstream for 3 weeks now.  I see
little chance of regression and none has been reported. The version currently
in squeeze will FTBFS with those kernels without them, so I recommend that
this one replace it.  Details of the interesting bits below.  The rest of the
debdiff is .po noise and new autofoo.

Thanks!
Ron


commit 9a1d2250d79b9f744faa69b2afa9c107794ac3e2
Author: Ron r...@debian.org
Date:   Sat Sep 25 03:59:08 2010 +0930

pci_find_device is dead.  long live pci_get_device

The former is gone in the debian 2.6.35-trunk-686 kernel now, but it looks 
like
we can get away with just using 'get' and leaking the reference (so it 
doesn't
get destroyed, which is unsafe).  A bit ugly, but not more than before in 
the
first 4 billion module reloads after boot, and far less intrusive than 
totally
rewriting the driver probe for this one at this late stage in its life.

diff --git a/src/vpb/vpb.c b/src/vpb/vpb.c
index 193676d..852e6cd 100644
--- a/src/vpb/vpb.c
+++ b/src/vpb/vpb.c
@@ -246,7 +246,7 @@ int init_module(void)
// search for V4PCI devices on PCI bus
 
numPCI = 0;
-   while((dev = pci_find_device(PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
+   while((dev = pci_get_device(PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
 dev)) != NULL) {
 
// check that subsytem ID  Subsytem Vendor matches
@@ -363,8 +363,8 @@ int init_module(void)
 
return 0;
 
-hell:
-
+hell:
+   pci_dev_put(dev);
cleanup_module();
return ret;
 }


commit 376c555c68f4683eab1a08be1e0a5a960498ff2b
Author: Ron r...@debian.org
Date:   Sat Sep 25 03:54:42 2010 +0930

Update for autoconf.h moving to generated/ in 2.6.33

diff --git a/src/vpb/vpb.c b/src/vpb/vpb.c
index 94039ac..193676d 100644
--- a/src/vpb/vpb.c
+++ b/src/vpb/vpb.c
@@ -84,14 +84,19 @@
 #endif
 
 
+#include linux/version.h
+
+#if (LINUX_VERSION_CODE = KERNEL_VERSION(2,6,33))
+ #include generated/autoconf.h
+#else
+ #include linux/autoconf.h
+#endif
 
 // Module version boilerplate
-#include linux/autoconf.h
 #if defined( CONFIG_MODVERSIONS)  !defined(MODVERSIONS)
 #define MODVERSIONS
 #endif
 
-#include linux/version.h
 #ifdef MODVERSIONS
 #if (LINUX_VERSION_CODE  KERNEL_VERSION(2,6,4))
 #include config/modversions.h
diff --git a/src/vtcore/vtcommon.h b/src/vtcore/vtcommon.h
index 7e8d8ff..1979a6f 100644
--- a/src/vtcore/vtcommon.h
+++ b/src/vtcore/vtcommon.h
@@ -27,13 +27,18 @@
 #ifndef VTCOMMON_H
 #define VTCOMMON_H
 
-#include linux/autoconf.h
+#include linux/version.h
+
+#if (LINUX_VERSION_CODE = KERNEL_VERSION(2,6,33))
+ #include generated/autoconf.h
+#else
+ #include linux/autoconf.h
+#endif
+
 #if defined( CONFIG_MODVERSIONS)  !defined(MODVERSIONS)
  #define MODVERSIONS
 #endif
 
-#include linux/version.h
-
 // This was moved out of version.h around 2.6.18
 #ifndef UTS_RELEASE
  // and then moved again out of include/linux after 2.6.32


unblock vpb-driver/4.2.49-1

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

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



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



Bug#574927: green console

2010-10-17 Thread Phred Xmidt
I found a solution for my problem by changing the line in
/etc/grub.d/40_custom to:

set gfxpayload=1024x768x32

Currently using grub-pc Version: 1.98+20100804-4


And in case it's relevant:
kernel- 2.6.32-5-686
02:00.0 VGA compatible controller: nVidia Corporation NV36 [GeForce
PCX 5750] (rev a2) (prog-if 00 [VGA controller])
Subsystem: eVga.com. Corp. Device c357
Flags: bus master, fast devsel, latency 0, IRQ 24
Memory at fa00 (32-bit, non-prefetchable) [size=16M]
Memory at d000 (32-bit, prefetchable) [size=256M]
Memory at f900 (32-bit, non-prefetchable) [size=16M]
[virtual] Expansion ROM at fbce [disabled] [size=128K]
Capabilities: access denied
Kernel driver in use: nvidia

Driver installed from NVIDIA-Linux-x86-173.14.22-pkg1.run



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



Bug#600483: apt ignores dselect's package (de)selections

2010-10-17 Thread Oswald Buddenhagen
Package: apt
Version: 0.8.7
Severity: normal
File: /usr/bin/apt-get

i selected gdm3 in the dselect package list. this tried to pull in a lot
of packages based on recommends from the package. i deselected most of
that and dselect accepted it. however, when i now perform the install step,
apt *still* tries to install some of the packages (e.g., at-api).

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^firmware-linux.*;
APT::NeverAutoRemove:: ^linux-firmware$;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^kfreebsd-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::NeverAutoRemove:: ^linux-ubuntu-modules-.*;
APT::Never-MarkAuto-Sections ;
APT::Never-MarkAuto-Sections:: metapackages;
APT::Never-MarkAuto-Sections:: restricted/metapackages;
APT::Never-MarkAuto-Sections:: universe/metapackages;
APT::Never-MarkAuto-Sections:: multiverse/metapackages;
APT::Never-MarkAuto-Sections:: oldlibs;
APT::Never-MarkAuto-Sections:: restricted/oldlibs;
APT::Never-MarkAuto-Sections:: universe/oldlibs;
APT::Never-MarkAuto-Sections:: multiverse/oldlibs;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::mirrors mirrors/;
Dir::State::extended_states extended_states;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::netrc auth.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Etc::preferencesparts preferences.d;
Dir::Etc::trusted trusted.gpg;
Dir::Etc::trustedparts trusted.gpg.d;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Media ;
Dir::Media::MountPath /media/apt;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
Dir::Log::History history.log;
Dir::Ignore-Files-Silently ;
Dir::Ignore-Files-Silently:: ~$;
Dir::Ignore-Files-Silently:: \.disabled$;
Dir::Ignore-Files-Silently:: \.bak$;
Dir::Ignore-Files-Silently:: \.dpkg-[a-z]+$;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/bin/apt-listchanges --apt || test $? -ne 10;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Tools ;
DPkg::Tools::Options ;
DPkg::Tools::Options::/usr/bin/apt-listchanges ;
DPkg::Tools::Options::/usr/bin/apt-listchanges::Version 2;
DPkg::Post-Invoke postinst;
DPkg::Post-Invoke:: if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi;
DPkg::Post-Invoke:: if [ -x /usr/bin/rkhunter ]  ( ! grep -q -E 
'^DISABLE_TESTS=.*(hashes.*attributes|attributes.*hashes|properties)' 
/etc/rkhunter.conf || grep -q -E 
'^ENABLE_TESTS=.*(hashes|attributes|properties)' /etc/rkhunter.conf); then 
/usr/bin/rkhunter --propupd --nolog; fi;
DPkg::Post-Invoke:: if [ -x /usr/sbin/localepurge ]  [ $(ps w -p $PPID | 
grep -c remove) != 1 ]; then /usr/sbin/localepurge; else exit 0; fi;
Acquire ;
Acquire::cdrom ;
Acquire::cdrom::Mount /cd;
DSelect ;
DSelect::Clean always;
CommandLine ;
CommandLine::AsString apt-config dump;

-- /etc/apt/preferences --

Package: *
Pin: release a=experimental
Pin-Priority: -1


-- /etc/apt/sources.list --

deb http://ftp2.de.debian.org/pub/debian experimental main contrib non-free
deb-src http://ftp2.de.debian.org/pub/debian experimental main contrib non-free

deb http://ftp2.de.debian.org/debian/ unstable main non-free contrib
deb-src http://ftp2.de.debian.org/debian/ unstable main non-free contrib

deb http://www.debian-multimedia.org sid main non-free

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

Kernel: Linux 2.6.35.7 (PREEMPT)
Locale: LANG=C, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages apt depends on:
ii  debian-archive-keyring  2010.08.28   GnuPG archive keys of the Debian a
ii  gnupg   1.4.10-4 GNU privacy guard - a free PGP rep
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.5-3GCC support library
ii  libstdc++6  4.4.5-3  The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc   none (no description available)
ii  aptitude  0.6.3-3.1  terminal-based package manager (te
ii  bzip2 1.0.5-6high-quality 

Bug#600435: unblock: altermime/0.3.10-4

2010-10-17 Thread Julien Valroff
Le dimanche 17 oct. 2010 à 11:50:05 (+0100), Adam D. Barratt a écrit :
 On Sun, October 17, 2010 08:20, Julien Valroff wrote:
  I would be greateful if you could accept to unblock altermime. I have
  recently uploaded a version fixing one documentation issue. Here is the
  changelog entry for this latest upload to unstable:
 
   altermime (0.3.10-4) unstable; urgency=low
   .
 * Bump Debian policy version to 3.9.1
 * Add -oi flag to both Postfix howto and example script to ignore
   single dots on a line - thanks to Markus Keil k...@ibh.de
   (Closes: #569046)
 
 Unblocked.

Thanks!
Julien

-- 
Julien Valroff jul...@kirya.net
http://www.kirya.net
GPG key: 1024D/9F71D449
17F4 93D8 746F F011 B845  9F91 210B F2AB 9F71 D449



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



  1   2   3   >