Bug#524127: [uscan] 'x509_user' not valid URI scheme at /usr/bin/uscan line 389

2009-04-16 Thread Adam D. Barratt
On Thu, 2009-04-16 at 02:45 +0200, Steffen Moeller wrote:
 Hello,
 
 the issue seems to be invariant of the watch file used. It still occurs.
[...]
 $ set | grep -i proxy
 X509_USER_PROXY=/home/moeller/myproxy

Aha! This seems to be due to a change made upstream in libwww-perl in
version 5.821:

  croak on bad proxy args [RT#39919]

This is easily confirmable by checking whether the following also fails
for you:

#! /usr/bin/perl
use LWP::UserAgent;
my $ua = LWP::UserAgent-new(env_proxy = 1);

env_proxy is documented as reading environment variables of the form
*_proxy.

LWP maintainers - any thoughts? Should clients (e.g. uscan) be
attempting to sanitise the proxy variables in the environment to only
include those they specifically care about before using env_proxy? (or
wrapping the call in an eval() and ignoring the specific error)

That's obviously doable, but would need doing in every client
individually, which seems somewhat overkill.

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#524141: yes, it's only one day old, but ...

2009-04-16 Thread Zack Weinberg
tags 524141 - moreinfo
thanks

Yes, the present package (0.43-3) is only one day old; however, 0.43-1
failed to build in exactly the same manner that 0.43-3 has, and I'm
pretty sure 0.43-2 did the same (the buildd log never showed up,
thanks to some ill-considered debugging logic I stuck in the package
in an attempt to get more detail on the testsuite failures).  I have
analyzed the failure in as much detail as I can without access to
sparc hardware; the results are in bug #524140; the summary is,
monotone is unbuildable on sparc until libsqlite3 is fixed.  It would
be nice if that did not hold the current package out of testing, since
what we have in testing right now is three upstream releases out of
date.

zw



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



Bug#524199: test build

2009-04-16 Thread dann frazier
Can you test this build to see if it fixes the issue?
  http://people.debian.org/~dannf/bugs/524199/

-- 
dann frazier




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



Bug#522733: Debian Developer's Reference: FR instead of EN / broken links

2009-04-16 Thread Raphael Hertzog
Hello Matt,

Can we get this fix applied soon ? I've been bugged multiple times already
about the broken links. That document is important to many and we should
not let the situation rot for so long. Even a temporary hack is ok until
you have a complete solution.

Cheers,

On Tue, 14 Apr 2009, Simon Paillard wrote:
 Hello,
 
 On Wed, Apr 08, 2009 at 08:56:55AM +0200, Jens Seidel wrote:
  On Tue, Apr 07, 2009 at 02:36:40PM -0700, Matt Kraai wrote:
   On Tue, Apr 07, 2009 at 09:47:21PM +0200, Simon Paillard wrote:
symlinks index.html.$lang - index.$lang.html can be created in the cron
task that updates the doc.
   
   Most of the links on the Debian website don't use any extensions.
   Would it be possible to modify the developer's reference to do the
   same?
  
  A problem could be delivering offline documents which are readable without
  installed webserver.
 
 Agrees, here is a patch against the cron that creates for each file
 filename.html.$lang - filename.$lang.html (except for japanese, see
 below).
  
If not, I think we'll have to have the symbolic links, but I
   think that would prevent language negotiation from working for other
   languages.
  
  Or simply adapt the build system to either respect a variable which expands
  to either .html or  or to remove .html via sed/perl if build on
  www-master ...
 
 Concerning the devref, the files are taken from the packages (except
 concerning http://debian.org/doc/manuals/developers-reference/index.ja.html
 whose I don't understand the origin from the cron cvs). 
 
 Can someone point the place where this copy/build is perfomered ?
 
 Regards.
 
 -- 
 Simon Paillard

 --- cron.orig 2009-04-14 22:27:29.0 +0200
 +++ cron  2009-04-14 22:38:23.0 +0200
 @@ -74,9 +74,12 @@
  for doc in dr/usr/share/doc/developers-reference/*.html
  do
   install -p -m 664 $doc $webdocdir/developers-reference/$(basename 
 $doc .html).en.html
 + ln -sf $webdocdir/developers-reference/$(basename $doc .html).en.html 
 $webdocdir/developers-reference/$(basename $doc .html).html.en
  done
  install -p -m 664 
 dr/usr/share/doc/developers-reference/developers-reference.pdf 
 $webdocdir/developers-reference/developers-reference.en.pdf
 +ln -sf $webdocdir/developers-reference/developers-reference.en.pdf 
 $webdocdir/developers-reference/developers-reference.pdf.en
  install -p -m 664 
 dr/usr/share/doc/developers-reference/developers-reference.txt.gz 
 $webdocdir/developers-reference/developers-reference.en.txt.gz
 +ln -sf $webdocdir/developers-reference/developers-reference.en.txt.gz 
 $webdocdir/developers-reference/developers-reference.txt.gz.en
  rm -rf dr
  
  drdeb=`ls -t1 
 $ftpdir/pool/main/d/developers-reference/developers-reference-fr_*.deb | head 
 -1`
 @@ -85,9 +88,12 @@
  for doc in dr/usr/share/doc/developers-reference-fr/*.html
  do
   install -p -m 664 $doc $webdocdir/developers-reference/$(basename 
 $doc .html).fr.html
 + ln -sf $webdocdir/developers-reference/$(basename $doc .html).fr.html 
 $webdocdir/developers-reference/$(basename $doc .html).html.fr
  done
  install -p -m 664 
 dr/usr/share/doc/developers-reference-fr/developers-reference.pdf 
 $webdocdir/developers-reference/developers-reference.fr.pdf
 +ln -sf $webdocdir/developers-reference/developers-reference.fr.pdf 
 $webdocdir/developers-reference/developers-reference.pdf.fr
  install -p -m 664 
 dr/usr/share/doc/developers-reference-fr/developers-reference.txt.gz 
 $webdocdir/developers-reference/developers-reference.fr.txt.gz
 +ln -sf $webdocdir/developers-reference/developers-reference.fr.txt.gz 
 $webdocdir/developers-reference/developers-reference.txt.gz.fr
  rm -rf dr
  
  echo -n  maint-guide


-- 
Raphaël Hertzog

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



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



Bug#524305: open-iscsi: iSCSI device hangs on high load

2009-04-16 Thread Ritesh Raj Sarraf
Hi John,

On Thursday 16 Apr 2009 11:20:18 John Lepikhin wrote:
 tid:1 lun:0 by sid:844424967684608 (Function Complete) Apr 15 05:07:50 c1
 kernel: [1127304.719482] iscsi_trgt: cmnd_abort(1148) 3b20 1 0 0 0 0 0
 Apr 15 05:07:50 c1 kernel: [1127304.719482] iscsi_trgt: Abort Task (01)
 issued on tid:1 lun:0 by sid:844424967684608 (Function Complete) Apr 15
 05:07:50 c1 kernel: [1127304.723482]  connection2:0: detected conn error
 (1011) Apr 15 05:09:34 c1 kernel: [1127440.726777] INFO: task pdflush:194
 blocked for more than 120 seconds. Apr 15 05:09:34 c1 kernel:
 [1127440.730770] echo 0  /proc/sys/kernel/hung_task_timeout_secs
 disables this message. Apr 15 05:09:34 c1 kernel: [1127440.730770] pdflush 
  D  0   194  2 ...

This doesn't look to be an initiator side problem.
Looks like there is an Abort Task from the target.
That then  leads to Connection Termination. (I wonder why it is not re-
establishing)

And the hang is obvious because of the above things happening.

Ritesh
-- 
Ritesh Raj Sarraf
RESEARCHUT - http://www.researchut.com
Necessity is the mother of invention.



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


Bug#500089: ekiga 3.0 lenny backport

2009-04-16 Thread Matt Taggart
In order to more easily play with ekiga 3.0 I backported the package and 
it's dependencies from experimental to run on lenny. They seem to be 
working well and even stuff like autodetection of hotplugged usb cameras is 
working.

I built them for i386 and amd64 and made an apt source others can use. To 
use them add this line

deb http://lackof.org/~taggart/ekiga ./

to your /etc/apt/sources.list and update/install.

I will try to keep this apt source around until the packages make it into 
unstable-testing and we can put more official backports on backports.org.

Now some comments...
As ptlib is only in experimental, I don't see any reason why it can't go in 
unstable right away. As the existing libopal package is named libopal-2.2 
I assume the new one will be libopal-3.4 and can coexist with the current 
one? So no reason for it to not go into unstable as well. If you are 
worried about ekiga going in to unstable disrupting existing ekiga users, I 
suppose you could consider adding it as an ekiga3 package... Even if you do 
it as just ekigaI personally think the added features are worth the 
potential problems, and if people really want to stick with 2.0.12 they can 
put it on hold. $0.02

Thanks,

-- 
Matt Taggart
tagg...@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#524306: git-svn should cleanup or be smart after failed 'clone' invocation

2009-04-16 Thread Josef Spillner
Package: git-svn
Version: 1:1.6.2.2-1
Severity: normal

When checking out an SVN repository which gives a HTTP 301 (Moved Permanently), 
svn doesn't
follow the redirect but rather requires the user to do so manually and quite 
with exit code 1:

# checkout with SVN
$ LANG=C svn co http://remotefoo localfoo
svn: Repository moved permanently to 'https://remotefoo'; please relocate

As inconvenient as this might be, changing http to https then does the trick.
Now, when checking out the same repository using git-svn, an empty repository 
is created,
but then git-svn recognises the same issue and quits without cleaning up the 
unusable git repo:

# checkout with git-svn
$ LANG=C git svn clone http://remotefoo/ localfoo
Initialized empty Git repository in /tmp/localfoo/.git/
Repository has been moved: Repository moved permanently to 
'https://remotefoo/'; please relocate at /usr/lib/git-core/git-svn line 1494

# checkout with git-svn using HTTPS then
$ LANG=C git svn clone https://remotefoo/ localfoo
svn-remote.svn.url already set: http://remotefoo
wanted to set to: https://remotefoo

# ok didn't work, maybe we can make something out of the broken local 
repository?
# git svn switch doesn't seem to exist after all...
$ cd localfoo; git svn rebase
fatal: ambiguous argument 'HEAD': unknown revision or path not in the working 
tree.
Use '--' to separate paths from revisions
log --no-color --first-parent --pretty=medium HEAD: command returned error: 128

# try initialising by hand
$ git svn init https://remotefoo
svn-remote.svn.url already set: http://remotefoo
wanted to set to: https://remotefoo
# it doesn't want to touch the git-svn url in .git/config, same like above

# just for fun, try initialising with wrong HTTP url again
$ git svn init http://remotefoo
Remote ref refs/remote/git-svn is tracked by
  svn-remote.svn.fetch=:refs/remotes/git-svn
and
  svn-remote.svn.fetch=:refs/remotes/git-svn
Please resolve this ambiguity in your git configuration file before continuing
# ok, so this time it adds a second git-svn fetch to .git/config which 
doesn't make any sense whatsoever

There are two ways out of this: Removing the localfoo directory and starting 
again
with HTTPS, or manually changing the git-svn url in .git/config and calling
git svn fetch. The latter should be done automatically by git-svn in this case
for the convenience of the user, ideally even automatically when recognising
the 301 message from svn, but otherwise at least when re-cloning with the
updated HTTPS URL.

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

Kernel: Linux 2.6.28-1-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

Versions of packages git-svn depends on:
ii  git-core1:1.6.2.2-1  fast, scalable, distributed revisi
ii  libsvn-perl [libsvn-core-pe 1.5.1dfsg1-1 Perl bindings for Subversion
ii  libterm-readkey-perl2.30-4   A perl module for simple terminal 
ii  libwww-perl 5.812-1  WWW client/server library for Perl

git-svn recommends 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#524233: console-setup should conflict with console-data

2009-04-16 Thread Christian Perrier
Quoting Anton Zinoviev (an...@lml.bas.bg):
 merge 524233 524239
 thanks
 
 On Wed, Apr 15, 2009 at 07:14:34PM +0200, Kurt Roeckx wrote:
  
  console-setup and console-data both allow you to setup the
  keyboard layout but they do not take each other settings into
  account.
 
 Why this should be considered a bug?  Normaly the users don't have to 
 install both packages but perhaps there are many reasons why they might 
 want to install them both.  Console-data and console-cyrillic have 
 happily coexisted for a decade and now this can continue with 
 console-setup (exept that it seems console-data and console-cyrillic are 
 going to become obsolete).


As the de facto maintainer of console-data, I agree with this. I have
to add that I unfortunately am entirely unable to implement in c-d
something to have it grab keymap definitions from
console-setup. Moreover, as both use different origins for the keymaps
(c-s uses X.org keymaps while c-d provides the old-style Linux console
keymaps, crafted by generation of Linux users over yearsturning
into a giant mess), it is very likely that many keymaps do not
necessarily correspond.


I would be delighted to obsolete console-data, as many people
know. There are however several steps to achieve before that happens
(one of those being d-i uing console-setup).

An I indeed have no idea about how to turn console-data into a
completely obsolete package and then offer users a decent transition
to console-setup





signature.asc
Description: Digital signature


Bug#523388: [Debian-in-workers] Bug#523388: Bug#523388: Hindi font rendering

2009-04-16 Thread Christian Perrier
Quoting Ritesh Raj Sarraf (r...@researchut.com):

 So I guess the bug is assigned to the right package, then. It is a font 
 rendering problem.


If the font is correct and the font *rendering* is not correct, I
doubt the problem to be relevant for the package that just provides
the font.




signature.asc
Description: Digital signature


Bug#451712: Processed: WNPP bugs maintenance

2009-04-16 Thread Ben Finney
On 16-Apr-2009, Debian Bug Tracking System wrote:
  tags 451712 - pending
 Bug#451712: ITA: burn -- Command line Data-CD, Audio-CD, ISO-CD, Copy-CD
 Tags were: pending
 Tags removed: pending

Why remove this tag? As explained earlier in the bug report, it's
certainly true that there is a new release awaiting an upload that
resolves this bug, so the tag is appropriate.

-- 
 \   “To have the choice between proprietary software packages, is |
  `\  being able to choose your master. Freedom means not having a |
_o__)master.” —Richard M. Stallman, 2007-05-16 |
Ben Finney b...@benfinney.id.au


signature.asc
Description: Digital signature


Bug#524256: [INTL:gl] request-tracker debconf translation update

2009-04-16 Thread Christian Perrier
Quoting Marce Villarino (mvillar...@gmail.com):
 Package: request-tracker3.8
 Version: 3.8.2-2
 Severity: wishlist
 Tags: l10n gl
 
 Please find enclosed the updated Galician translation.
 Please apologize for the late reply.


2nd mail *with* the file..:-)




gl.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#524256: [INTL:gl] request-tracker debconf translation update

2009-04-16 Thread Christian Perrier
Quoting Marce Villarino (mvillar...@gmail.com):
 Package: request-tracker3.8
 Version: 3.8.2-2
 Severity: wishlist
 Tags: l10n gl
 
 Please find enclosed the updated Galician translation.
 Please apologize for the late reply.


You apparently worked on an old version of the templates file.

When merging the file you sent with the current POT file, I get the
attached result (11 fuzzy strings). Could you please correct the file?




signature.asc
Description: Digital signature


Bug#524244: [INTL:gl]dictd debconf translation update

2009-04-16 Thread Christian Perrier
Quoting Marce Villarino (mvillar...@gmail.com):
 Package: dictd
 Version: 1.11.1+dfsg-2
 Severity: wishlist
 Tags: l10n gl
 
 Please find enclosed the Galician translation of debconf template

The charset definition is missing from the file you sent and the file
is therefore invalid.

Patch attached.



--- /home/bubulle/tmp/gl-old.po 2009-04-16 07:16:15.355711762 +0200
+++ /home/bubulle/tmp/gl.po 2009-04-16 07:16:07.267682789 +0200
@@ -11,7 +11,7 @@
 Last-Translator: marce villarino mvillar...@users.sourceforge.net\n
 Language-Team: Galician proxe...@trasno.ent\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=CHARSET\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 X-Generator: Lokalize 0.2\n
 Plural-Forms: nplurals=2; plural=n != 1;\n


signature.asc
Description: Digital signature


Bug#522733: Debian Developer's Reference: FR instead of EN / broken links

2009-04-16 Thread Matt Kraai
On Thu, Apr 16, 2009 at 08:23:28AM +0200, Raphael Hertzog wrote:
 Can we get this fix applied soon ? I've been bugged multiple times already
 about the broken links. That document is important to many and we should
 not let the situation rot for so long. Even a temporary hack is ok until
 you have a complete solution.

Sure, done.

I don't know why I didn't commit that patch when I first saw it.
Should I leave the bug open?

-- 
Matt http://ftbfs.org/



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



Bug#524307: masqmail: [INTL:it] Italian translation

2009-04-16 Thread Vincenzo Campanella
Package: masqmail
Version: 0.2.21-6
Severity: wishlist
Tags: l10n patch

Enclosed please find the Italian translation of the above package.

Best regards
vince


# ITALIAN TRANSLATION OF MASQMAIL'S.PO-DEBCONF FILE
# COPYRIGHT (C) 2009 THE MASQMAIL'S COPYRIGHT HOLDER
# This file is distributed under the same license as the masqmail package.
#
# Vincenzo Campanella vin...@gmail.com, 2009.
msgid 
msgstr 
Project-Id-Version: masqmail 0.2.21-6\n
Report-Msgid-Bugs-To: masqm...@packages.debian.org\n
POT-Creation-Date: 2009-04-06 07:54+0200\n
PO-Revision-Date: 2009-04-08 18:48+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

#. Type: boolean
#. Description
#: ../masqmail.templates:2001
msgid Manage masqmail.conf automatically?
msgstr Gestire automaticamente masqmail.conf?

#. Type: boolean
#. Description
#: ../masqmail.templates:2001
msgid 
The /etc/masqmail/masqmail.conf file can be handled automatically by 
answering a few questions, or entirely manually by the local administrator.
msgstr 
Il file «/etc/masqmail/masqmail.conf» può essere gestito automaticamente, dopo 
aver risposto ad alcune domande, oppure in modo completamente manuale 
dall'amministratore locale.

#. Type: boolean
#. Description
#: ../masqmail.templates:2001
msgid 
Note that only specific, marked sections of the configuration file will be 
managed this way if you choose this option; if those markers are missing, 
you will have to update the file manually, or remove the file.
msgstr 
Si noti che, se si sceglie questa opzione, solo alcune sezioni specifiche del 
file di configurazione saranno gestite automaticamente; se questi indicatori 
mancano, sarà necessario aggiornare il file manualmente o rimuoverlo.

#. Type: boolean
#. Description
#: ../masqmail.templates:3001
msgid Replace existing /etc/masqmail/masqmail.conf file?
msgstr Sostituire il file «/etc/masqmail/masqmail.conf» esistente?

#. Type: boolean
#. Description
#: ../masqmail.templates:3001
msgid 
The existing /etc/masqmail/masqmail.conf file currently on the system does 
not contain a marked section for automatic configuration management.
msgstr 
Il file «/etc/masqmail/masqmail.conf» attualmente esistente su questo sistema 
non contiene una sezione marcata per la gestione della configurazione automatica.

#. Type: boolean
#. Description
#: ../masqmail.templates:3001
msgid 
If you choose this option, the existing configuration file will be backed up 
to /etc/masqmail/masqmail.conf.debconf-backup and a new file written to /etc/
masqmail/masqmail.conf.  If you do not choose this option, the existing 
configuration file will not be managed automatically, and no further 
questions about masqmail configuration will be asked.
msgstr 
Se si sceglie questa opzione, il file di configurazione esistente sarà salvato 
in «/etc/masqmail/masqmail.conf.debconf-backup» e verrà creato un nuovo file 
«/etc/masqmail/masqmail.conf». In caso contrario, il file di configurazione 
esistente non verrà gestito automaticamente e non saranno poste ulteriori 
domande sulla configurazione di Masqmail.

#. Type: string
#. Description
#: ../masqmail.templates:4001
msgid Masqmail host name:
msgstr Nome dell'host di Masqmail:

#. Type: string
#. Description
#: ../masqmail.templates:4001
msgid 
Please enter the name used by masqmail to identify itself to others. This is 
most likely the machine's hostname. It is used in the SMTP greetings banner 
and generated Message-ID fields, as well as for expansion of unqualified 
addresses, and so on.
msgstr 
Inserire il nome usato da Masqmail per identificarsi. Probabilmente si tratta 
del nome dell'host della macchina. Viene utilizzato nel testo di saluto SMTP e 
nei campi «Message-ID» generati, così come per l'espansione di indirizzi non 
qualificati, ecc.

#. Type: string
#. Description
#: ../masqmail.templates:5001
msgid Hosts considered local:
msgstr Host considerati locali:

#. Type: string
#. Description
#: ../masqmail.templates:5001
msgid 
Please enter a list, separated with semicolons (;), of hosts which are 
considered \local\. Mail to these hosts will be delivered to a mailbox (or 
Maildir or MDA) on this host.
msgstr 
Inserire un elenco, separato da punti e virgola (;), degli host che sono 
considerati «locali». I messaggi destinati a questi host verranno recapitati a 
una casella postale (o Maildir o MDA) su questo host.

#. Type: string
#. Description
#: ../masqmail.templates:5001
msgid 
You will most likely insert \localhost\ as well as this host's fully 
qualified name and short name.
msgstr 
Molto probabilmente si dovrà inserire «localhost» e i nomi FQDN e abbreviati 
di questo host.

#. Type: string
#. Description
#: ../masqmail.templates:5001
msgid You can also use wildcard expressions containing \*\ and \?\.
msgstr È anche possibile usare caratteri jolly come «*» e «?».

#. Type: string
#. Description
#: 

Bug#523415: corrupted rendering

2009-04-16 Thread Frederic Peters
Brice Goglin wrote:

  Downgrading the kernel from 2.6.29 to 2.6.26 fixes the problem for
  me.
 
 Any difference in /proc/mtrr between 2.6.26 and 2.6.29 ?

I downgraged from 2.6.29 to 2.6.28, and it also fixed the problem.

/proc/mtrr in 2.6.28:
reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable

/proc/mtrr in 2.6.29:
reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable
reg02: base=0x0e800 ( 3712MB), size=  128MB, count=2: write-combining



Frederic



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



Bug#524261: [INTL:gl] console-setup debconf translation update

2009-04-16 Thread Christian Perrier
forcemerge 524261 524260
thanks

Marce Villarino a écrit :
 Package: console-setup
 Version: wishlist
 Severity: wishlist
 Tags: l10n gl
 
 Please find enclosed the updated Galician translation. Sorry for the late 
 reply.
 
 
 

You apparently sent this twice...Merging both bugs.

-- 
Christian Perrier
Chef d'unité Informatique Individuelle et Départementale
Département Réseaux et Informatique Scientifique
Onera - http://www.onera.fr
Disclaimer: http://www.onera.fr/onera-en/emails-terms.php



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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Michel Dänzer
On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:
 Package: xserver-xorg-video-radeon
 Version: 1:6.12.2-1
 Severity: normal
 
 After recent upgrade (I believe) display got totally corrupted.
 
 Here is quick gallery of two screenshots showing what is theoretically
 GDM's login screen.
 http://img211.imageshack.us/gal.php?g=dsc8598.jpg
 Full monitor and a closeup. Sorry for the size (~4,5MB each), but without
 fully functional system I have limited access to image conversion tools.
 
 I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via DVI.
 This card has both D-Sub and DVI connectors.
 
 Upgrade:
 xserver-xorg-video-radeon 1:6.9.0-1+lenny4 - 1:6.12.2-1
 
 After this upgrade I haven't rebooted machine, nor have I restarted GDM/logged
 out, until today's upgrade:
 [UPGRADE] xserver-common 2:1.6.0-1 - 2:1.6.1-1
 [UPGRADE] xserver-xephyr 2:1.6.0-1 - 2:1.6.1-1
 [UPGRADE] xserver-xorg-core 2:1.6.0-1 - 2:1.6.1-1
 
 During this upgrade my machine hang (after crash it was displaying normal 
 image
 and wasn't responding to mouse movement - cursor stood still. Neither did it
 respond to magic SysRq). I had to do a hard reset.
 
 After this, machine booted to described state.

So you never tested xserver-xorg-video-radeon 1:6.12.2-1 with
xserver-xorg-core 2:1.6.0-1?

Does

Option  DRI off

work around the problem? If so, can you try if it works without that but
with one of the following instead:

Option  AGPMode 8
Option  AGPMode 2
Option  AGPMode 1


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



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



Bug#523988: skysentials: fails to start with Invalid user handle error

2009-04-16 Thread Rafael Laboissiere
* David Purton dcpur...@marshwiggle.net [2009-04-15 09:58]:

 On Tue, Apr 14, 2009 at 06:18:44PM +0200, Rafael Laboissiere wrote:
  
  It works fine for me on my i386 laptop.  Could you please tell me what the
  following yields for you:
  
  ls -l /usr/lib/python2.5/site-packages/Skype4Py/skype.py
 
 -rw-r--r-- 1 root root 22720 2007-09-04 07:47 
 /usr/lib/python2.5/site-packages/Skype4Py/skype.py
 
  md5sum /usr/lib/python2.5/site-packages/Skype4Py/skype.py
 
 40cd5823e7d3e72bbddbe4a70fb07cd4 
 /usr/lib/python2.5/site-packages/Skype4Py/skype.py

This is very strange.  Your skype.py does not correspond to the one in the
python-skype package:

$ dpkg -L python-skype | grep skype.py
/usr/share/python-support/python-skype/Skype4Py/skype.py

$ ls -l /usr/share/python-support/python-skype/Skype4Py/skype.py
-rw-r--r-- 1 root root 63001 2008-10-31 16:34 
/usr/share/python-support/python-skype/Skype4Py/skype.py

$ md5sum /usr/share/python-support/python-skype/Skype4Py/skype.py
131d8144c07de8de08cd59fa213e3bc6 
/usr/share/python-support/python-skype/Skype4Py/skype.py

What is happening with your system?
 
-- 
Rafael



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



Bug#524189:

2009-04-16 Thread wylda

In previous post there are about 22000bytes missing, ie. cca 25% of data
for combination KDE Konsole,Ctrl+c,Ctrl+v.


When using aterm instead of KDE Konsole and copy is done by middle mouse,
then there are 64000bytes missing, ie. cca 76% of data lost.


Because the aterm paste took much longer time than Konsole and lost is
also higher coudn't be this somehow related to terminal speed/baudrate??
(sorry if nonsence i'm just proud BFU ;)




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



Bug#451712: Processed: WNPP bugs maintenance

2009-04-16 Thread Raphael Geissert
On Thursday 16 April 2009 01:33:10 Ben Finney wrote:
 On 16-Apr-2009, Debian Bug Tracking System wrote:
   tags 451712 - pending
 
  Bug#451712: ITA: burn -- Command line Data-CD, Audio-CD, ISO-CD, Copy-CD
  Tags were: pending
  Tags removed: pending

 Why remove this tag? As explained earlier in the bug report, it's
 certainly true that there is a new release awaiting an upload that
 resolves this bug, so the tag is appropriate.

Well, it's been a month with neither the bug being closed nor the bug having 
any kind of activity.

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net



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



Bug#522478: libio-socket-inet6-perl: AF_UNSPEC fails for IPv6 hosts

2009-04-16 Thread Martin v. Löwis
I tracked this down to the resolution of an unspecified local
address. On some systems, getaddrinfo('',0,0,2,17,1) returns
127.0.0.1, then ::1; on other systems, it's vice versa. The order
apparently depends on /etc/gai.conf; apparently, there was also
a recent change in the library defaults (to return IPv4 before
v6).

INET6 determines that the remote address is IPv6, and creates
an IPv6 socket. It then tries to bind it to '' (as no local
address was given); this determines that '' is an IPv4 address,
so binding fails.

I think the real error is that it tries to bind at all even
if no local address or port was given. It does so because
lres is defined, i.e. because it was able to resolve the
name '' (around line 211). As it is overwriting laddr for Win32,
it should remember the value of laddr before that, and then
bind only if either laddr or lport were given.

If no local address was given, but a local port, binding needs
to occur, but it needs to consider the server address family,
so it needs to redo getaddrinfo (passing AI_NUMERICHOST to avoid
name lookups).



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



Bug#451712: Processed: WNPP bugs maintenance

2009-04-16 Thread Ben Finney
package burn
tags 451712 + pending
thanks

On 16-Apr-2009, Raphael Geissert wrote:
 Well, it's been a month with neither the bug being closed nor the
 bug having any kind of activity.

The package remains awaiting a sponsor, with now a second release
URL:http://mentors.debian.net/debian/pool/main/b/burn/burn_0.4.3.ds1-2.dsc,
and is now just awaiting any sponsor interested enough to see this ITA
closed.

-- 
 \“Of course, everybody says they're for peace. Hitler was for |
  `\  peace. Everybody is for peace. The question is: what kind of |
_o__)peace?” —Noam Chomsky, 1984-05-14 |
Ben Finney b...@benfinney.id.au


signature.asc
Description: Digital signature


Bug#523988: skysentials: fails to start with Invalid user handle error

2009-04-16 Thread David Purton
On Thu, Apr 16, 2009 at 08:55:11AM +0200, Rafael Laboissiere wrote:
 
 This is very strange.  Your skype.py does not correspond to the one in the
 python-skype package:

[SNIP]

 What is happening with your system?
  

Ha! Good pick up. It must be stuff left over from Skype4Py ages ago,
before it was officially part of the debian distro - don't know why it
was in /usr - I guess either I had a deb from somewhere which didn't
uninstall itself properly or (more likely) I couldn't get it working in
/usr/local, and I just dumped it in /usr. It's definitely not part of
any deb currently installed on my system.

If I remove the offending Skype4Py directory from the site-packages,
Skysentials works as expected!

Woohoo. Thanks for your help and patience. You can close the bug.

cheers

dc

-- 
David Purton
dcpur...@marshwiggle.net
 
For the eyes of the LORD range throughout the earth to
strengthen those whose hearts are fully committed to him.
 2 Chronicles 16:9a


signature.asc
Description: Digital signature


Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade

2009-04-16 Thread di dit
2009/4/15 Alex Deucher alexdeuc...@gmail.com:
 Sounds like:
 https://bugs.freedesktop.org/show_bug.cgi?id=21199

Indeed.

 Does:
 xset dpms force off
 followed by moving the mouse cause both screens to come on?

Yes it does. Thanks for the workaround!
I'm ready to test patches to solve this issue if needed.
Thank you very much for your help.



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



Bug#524308: FTBFS: capplet-stock-icons.c:28:19: error: gnome.h: No such file or directory

2009-04-16 Thread Riku Voipio
Package: control-center
Version: 1:2.24.0.1-3
Severity: serious

As seen on at least alpha, armel and amd64 buildd's. Possibly not the fault
of control-center itself, but the dependency -chain is too complex for my
mind to follow..

  cc -DHAVE_CONFIG_H -I. -I../.. 
 -DGNOMECC_DATA_DIR=\/usr/share/gnome-control-center\ 
 -DGNOMELOCALEDIR=\/usr/share/locale\ 
 -DGTK_ENGINE_DIR=\/usr/lib/gtk-2.0/2.10.0/engines\ 
 -DG_LOG_DOMAIN=\capplet-common\ -DINSTALL_PREFIX=\/usr\ -I../.. 
 -I../../libwindow-settings -I/usr/include/dbus-1.0 
 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -D_REENTRANT -I/usr/include/gnome-desktop-2.0 
 -I/usr/include/gtk-2.0 -I/usr/include/startup-notification-1.0 
 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb 
 -I/usr/include/libpng12 -D_REENTRANT -I/usr/include/metacity-1 
 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 
 -I/usr/include/directfb -I/usr/include/libpng12 
 -I/usr/include/gnome-settings-daemon-2.0 -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -I/usr/include/dbus-1.0 
 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -g -O2 -g -Wall -O2 -c capplet-stock-icons.c  
 -fPIC -DPIC -o .libs/capplet-stock-icons.o
 capplet-stock-icons.c:28:19: error: gnome.h: No such file or directory
 capplet-stock-icons.c: In function 'capplet_register_stock_icons':
 capplet-stock-icons.c:64: warning: implicit declaration of function 
 'gnome_program_locate_file'
 capplet-stock-icons.c:64: error: 'GNOME_FILE_DOMAIN_APP_PIXMAP' undeclared 
 (first use in this function)
 capplet-stock-icons.c:64: error: (Each undeclared identifier is reported only 
 once
 capplet-stock-icons.c:64: error: for each function it appears in.)
 capplet-stock-icons.c:64: warning: assignment makes pointer from integer 
 without a cast
 capplet-stock-icons.c:67: warning: implicit declaration of function '_'
 capplet-stock-icons.c:67: warning: passing argument 3 of 'g_log' makes 
 pointer from integer without a cast
 make[4]: *** [capplet-stock-icons.lo] Error 1
 make[4]: Leaving directory 
 `/build/buildd/control-center-2.24.0.1/capplets/common'
 make[3]: *** [all-recursive] Error 1



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



Bug#524309: 4/5 tests failed in t0004-unwritable.sh

2009-04-16 Thread Marc Mutz
Source: git-core
Version: 1.6.2.3-1

[This is similar to, but sufficiently different from, 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493867
to warrant a new report]

I'm trying to build git-core from Sid source on Etch/amd64, with these 
dependencies
already successfully compiled from Sid source:
- asciidoc_8.2.7-3
- docbook-xsl_1.73.2.dfsg.1-5
- tcl8.5_8.5.6-3

steps to reproduce:
$ mkdir /tmp/foo # tmp is tmpfs, but the same error occurs on ext3
$ cd /tmp/foo
$ apt-get source -t sid --compile git-core
snip (failures are at beginning, and again at end)
*** t0004-unwritable.sh ***
*   ok 1: setup
* FAIL 2: write-tree should notice unwritable repository


(
chmod a-w .git/objects .git/objects/?? 
test_must_fail git write-tree
)
status=$?
chmod 775 .git/objects .git/objects/??
(exit $status)


* FAIL 3: commit should notice unwritable repository


(
chmod a-w .git/objects .git/objects/?? 
test_must_fail git commit -m second
)
status=$?
chmod 775 .git/objects .git/objects/??
(exit $status)


* FAIL 4: update-index should notice unwritable repository


(
echo 6O file 
chmod a-w .git/objects .git/objects/?? 
test_must_fail git update-index file
)
status=$?
chmod 775 .git/objects .git/objects/??
(exit $status)


* FAIL 5: add should notice unwritable repository


(
echo b file 
chmod a-w .git/objects .git/objects/?? 
test_must_fail git add file
)
status=$?
chmod 775 .git/objects .git/objects/??
(exit $status)


* failed 4 among 5 test(s)
make[3]: *** [t0004-unwritable.sh] Error 1
make[3]: Leaving directory `/root/foo/git-core-1.6.2.3/t'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/root/foo/git-core-1.6.2.3/t'
make[1]: *** [test] Error 2
make[1]: Leaving directory `/root/foo/git-core-1.6.2.3'
make[1]: Entering directory `/root/foo/git-core-1.6.2.3'
make[2]: Entering directory `/root/foo/git-core-1.6.2.3/git-gui'
make[2]: Leaving directory `/root/foo/git-core-1.6.2.3/git-gui'
make[2]: Entering directory `/root/foo/git-core-1.6.2.3/gitk-git'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/root/foo/git-core-1.6.2.3/gitk-git'
make[2]: Entering directory `/root/foo/git-core-1.6.2.3/perl'
make[3]: Entering directory `/root/foo/git-core-1.6.2.3/perl'
make[3]: Leaving directory `/root/foo/git-core-1.6.2.3/perl'
make[2]: Leaving directory `/root/foo/git-core-1.6.2.3/perl'
make[2]: Entering directory `/root/foo/git-core-1.6.2.3/templates'
make[2]: Leaving directory `/root/foo/git-core-1.6.2.3/templates'
/usr/bin/make -C t/ all
make[2]: Entering directory `/root/foo/git-core-1.6.2.3/t'
rm -f -r test-results
/usr/bin/make aggregate-results-and-cleanup
make[3]: Entering directory `/root/foo/git-core-1.6.2.3/t'
*** t-basic.sh ***
Initialized empty Git repository in /root/foo/git-core-1.6.2.3/t/trash 
directory.t-basic/.git/
* expecting success: cmp -s /dev/null should-be-empty
*   ok 1: .git/objects should be empty after git init in an empty repo.

* expecting success: test $(wc -l  full-of-directories) = 3
*   ok 2: .git/objects should have 3 subdirectories.

* expecting success:
:

*   ok 3: success is reported like this

* checking known breakage:
false

*   still broken 4: pretend we have a known breakage

* checking known breakage:
:

*   FIXED 5: pretend we have fixed a known breakage

* expecting success:
test_must_fail git update-index should-be-empty

error: should-be-empty: cannot add to the index - missing --add option?
fatal: Unable to process path should-be-empty
*   ok 6: git update-index without --add should fail adding.

* expecting success: git update-index --add should-be-empty
*   ok 7: git update-index with --add should succeed.

* expecting success: tree=$(git write-tree)
*   ok 8: writing tree out with git write-tree

* expecting success: test $tree = 7bb943559a305bdd6bdee2cef6e5df2413c3d30a
*   ok 9: validate object ID of a known tree.

* expecting success:
test_must_fail git update-index should-be-empty

error: should-be-empty: does not exist and --remove not passed
fatal: Unable to process path should-be-empty
*   ok 10: git update-index without --remove should fail removing.

* expecting success: git update-index --remove should-be-empty
*   ok 11: git update-index with --remove should be able to remove.

* expecting success: tree=$(git write-tree)
*   ok 12: git write-tree should be able to write an empty tree.

* expecting success: test $tree = 

Bug#524041: libmtp8: long description no sentence

2009-04-16 Thread Rafael Laboissiere
* Gerfried Fuchs rho...@deb.at [2009-04-15 12:56]:

 I hope that you as maintainer of the package know what the package is
 about and am able to propose something - I can of course offer comments
 for your suggestions;

What about the following (the descriptions for libmtp-dev, libmtp-doc, and
mtp-tools will be changed accordingly):

Package: libmtp8
Description: Media Transfer Protocol (MTP) library
 The Media Transfer Protocol (commonly referred to as MTP) is a devised
 set of custom extensions to support the transfer of music files on
 USB digital audio players and movie files on USB portable media players.
 .
 libmtp is a library for communicating with MTP aware devices in POSIX
 compliant operating systems.  It implements MTP Basic, the subset
 proposed for standardization.

-- 
Rafael



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



Bug#524310: fontforge: Program fails to start

2009-04-16 Thread Deekoo L.
Package: fontforge
Version: 0.0.20080429-1
Severity: important


If I attempt to start it, fontforge will open a small window (probably the
splash screen) and crash immediately.  The console output is:

$ fontforge 
Copyright (c) 2000-2008 by George Williams.
 Executable based on sources from 00:29 GMT 29-Apr-2008.
 Library based on sources from 20:49 GMT 30-Apr-2008.
X Error of failed request: BadAlloc (insufficient resources for operation)
  Major opcode of failed request:  53.0 (X_CreatePixmap)
  Serial number of failed request:  699
  Failed resource ID:  80
Aborted

$ fontforge -sync
Copyright (c) 2000-2008 by George Williams.
 Executable based on sources from 00:29 GMT 29-Apr-2008.
 Library based on sources from 20:49 GMT 30-Apr-2008.
X Error of failed request: BadAlloc (insufficient resources for operation)
  Major opcode of failed request:  53.0 (X_CreatePixmap)
  Serial number of failed request:  1376
  Failed resource ID:  80
Aborted

$ fontforge -nosplash -sync
Copyright (c) 2000-2008 by George Williams.
 Executable based on sources from 00:29 GMT 29-Apr-2008.
 Library based on sources from 20:49 GMT 30-Apr-2008.
X Error of failed request: BadAlloc (insufficient resources for operation)
  Major opcode of failed request:  53.0 (X_CreatePixmap)
  Serial number of failed request:  1313
  Failed resource ID:  80
Aborted

$ fontforge -h
Copyright (c) 2000-2008 by George Williams.
 Executable based on sources from 00:29 GMT 29-Apr-2008.
 Library based on sources from 20:49 GMT 30-Apr-2008.
Help! Server claimed font
-adobe-helvetica-medium-r-normal---3175-0-0-0-p-0-iso8859-1
 existed in the font list, but when I asked for it there was nothing.
 I may crash soon.
X Error of failed request: BadAlloc (insufficient resources for operation)
  Major opcode of failed request:  53.0 (X_CreatePixmap)
  Serial number of failed request:  736
  Failed resource ID:  80
Aborted


-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages fontforge depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgif44.1.6-6   library for GIF images (library)
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.27-2+lenny2   PNG library - runtime
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libspiro0  20071029-2a library for curve design
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libuninameslist0   0.0.20060907-2a library of Unicode annotation da
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  python2.5  2.5.2-15  An interactive high-level object-o
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

fontforge recommends no packages.

Versions of packages fontforge suggests:
ii  autotrace   0.31.1-13+b1 bitmap to vector graphics converte
pn  fontforge-doc   none   (no description available)
pn  potrace 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#524291: Can't guess lavf muxer of ogg http stream

2009-04-16 Thread Reinhard Tartler
Trent W. Buck trentb...@gmail.com writes:

 twb This does not work for me:
 twb mplayer -playlist http://magnatune.com/artists/albums/kara-kara/ogg.m3u
 twb Opening audio decoder: [tremor] Ogg/Vorbis audio decoder
 twb OggVorbis: header n. 0 broken! len=227

 Compn twb : works with -demuxer lavf
 Compn twb : works if you download it first
 Compn seems to be mplayer over http bug ;\

Ah, you have already discussed this with upstream. Is that bug already
in mplayer's bugtracker so that we can track the upstream status? If
not, could you please do that then?

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#518358: linux-image-2.6.28: iwlwifi: iwl3945 failed after suspend and no roaming

2009-04-16 Thread Daniel Huhardeaux

Daniel a écrit :

maximilian attems a écrit :


[...]

anyway if you can reproduce it with latest, please file upstream
on bugzilla.kernel.org with the dmesg, lscpi -vv info there
and let us know the bug nr.
  

Bug #12880


Bug can be closed, resolved in 2.6.29-2

--
Daniel



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



Bug#524199: test build

2009-04-16 Thread Anton Ivanov
It is loaded on one of my machines (the one that sees heavy use). The
results should be available in 6-8 hours. 

On Thu, 2009-04-16 at 00:23 -0600, dann frazier wrote:
 Can you test this build to see if it fixes the issue?
   http://people.debian.org/~dannf/bugs/524199/
 
-- 
   Understanding is a three-edged sword:
your side, their side, and the truth. --Kosh Naranek

A. R. Ivanov
E-mail:  aiva...@sigsegv.cx
WWW: http://www.sigsegv.cx/
pub 1024D/DDE5E715 2002-03-03 Anton R. Ivanov ariva...@sigsegv.cx
Fingerprint: C824 CBD7 EE4B D7F8 5331  89D5 FCDA 572E DDE5 E715





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



Bug#448249: apt 0.7.21 reintroduces glibc minor version in SONAME

2009-04-16 Thread Sven Joachim
found 448249 0.7.21
thanks

Intentionally or not, this bug has been reintroduced:

,
| % apt-cache --no-all-versions show apt | grep '^Provides'
| Provides: libapt-pkg-libc6.9-6-4.7
| % dpkg-deb --contents apt_0.7.21_i386.deb | grep '\.so'
| -rw-r--r-- root/root774596 2009-04-14 14:31 
./usr/lib/libapt-pkg-libc6.9-6.so.4.7.0
| lrwxrwxrwx root/root 0 2009-04-14 14:31 
./usr/lib/libapt-pkg-libc6.9-6.so.4.7 - libapt-pkg-libc6.9-6.so.4.7.0
`

Sven



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



Bug#524264: plasma-widgets-workspace: calendar widget eats all CPU

2009-04-16 Thread Adeodato Simó
 Hey, can you explain me where is Debian bugzilla or something?
 I mean, is there one? I subscribe my e-mail to kde list, but I don' t know 
 where to report bugs, and send e-mail about a bug, etc..
 Everytime I try to send an email to 524...@bugs.debian.org it fails...

The Debian Bug Tracking System lives at http://bugs.debian.org. You are
correct that your messages to 524...@bugs.debian.org have not arrived to
the system (see http://bugs.debian.org/524264). You should give us the
error to see what’s the problem; maybe you will have to contact the BTS
administrators in order to solve it, but it’s difficult knowing without
seeing the error you get.

Cheers,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#523091: alsa-utils: same here with more info

2009-04-16 Thread Karsten Hilbert
Package: alsa-utils
Version: 1.0.19-2
Severity: normal

It used to do this just fine. Sounds works after booting in
any case. Console output is:

Setting up ALSA...
warning: 'alsactl restore' failed with error message 'Unknown hardware: 
SI7018 SigmaTel STAC9700,83,84,Silicon Laboratory Si3036,8 rev 1 
AC97a:83847600 AC97m:53494c21 0x1043 0x1453
Hardware is initialized using a guess method'...
Invalid card number.
Usage: amixer options [command]
Available options:
  -h,--help   this help
  -c,--card N select the card
  -D,--device N   select the device, default 'default'
  -d,--debug  debug mode
  -n,--nocheckdo not perform range checking
  -v,--versionprint version of this program
  -q,--quiet  be quiet
  -i,--inactive   show also inactive controls
  -a,--abstract L select abstraction level (none or basic)
  -s,--stdin  Read and execute commands from stdin sequentially
Available commands:
  scontrols   show all mixer simple controls
  scontents   show contents of all mixer simple controls (default command)
  sset sID P  set contents for one mixer simple control
  sget sIDget contents for one mixer simple control
  controlsshow all controls for given card
  contentsshow contents of all controls for given card
  cset cID P  set control contents for one control
  cget cIDget control contents for one control



done.



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

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

Versions of packages alsa-utils depends on:
ii  dialog1.1-20080819-1 Displays user-friendly dialog boxe
ii  libasound21.0.19-1   shared library for ALSA applicatio
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libncurses5   5.7+20090314-1 shared libraries for terminal hand
ii  linux-sound-base  1.0.19.dfsg-3  base package for ALSA and OSS soun
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo
ii  whiptail  0.52.2-11.3Displays user-friendly dialog boxe

Versions of packages alsa-utils recommends:
ii  alsa-base  1.0.19.dfsg-3 ALSA driver configuration files
ii  pciutils   1:3.1.2-3 Linux PCI Utilities

alsa-utils 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#524312: cyrus-imapd-2.2: Debconf Italian translation update

2009-04-16 Thread Cristian Rigamonti
Package: cyrus-imapd-2.2
Severity: wishlist
Tags: l10n

I'm attaching the updated debconf Italian translation


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

Kernel: Linux 2.6.18-rc1-cri (PREEMPT)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
GPG/PGP Key-Id 0x943A5F0E  -http://www.linux.it/~cri/cri.asc
# Traduzione italiana di cyrus22-imapd
# Copyright (C) 2009 Free Software Foundation, Inc.
# Cristian Rigamonti c...@linux.it, 2009.
msgid 
msgstr 
Project-Id-Version: cyrus-imapd-2.2 2.2.13-15\n
Report-Msgid-Bugs-To: cyrus-imapd-...@packages.debian.org\n
POT-Creation-Date: 2009-04-14 17:58+0200\n
PO-Revision-Date: 2009-04-15 21:13+0200\n
Last-Translator: Cristian Rigamonti c...@linux.it\n
Language-Team: Italian t...@lists.linux.it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-1\n
Content-Transfer-Encoding: 8bit\n

#. Type: error
#. Description
#: ../cyrus-common-2.2.templates:2001
msgid Modified database backends
msgstr Backend di database cambiati

#. Type: error
#. Description
#: ../cyrus-common-2.2.templates:2001
msgid 
Comparison between /usr/lib/cyrus/cyrus-db-types.txt and /usr/lib/cyrus/
cyrus-db-types.active shows that database backends for Cyrus IMAPd have been 
changed.
msgstr 
Il confronto tra /usr/lib/cyrus/cyrus-db-types.txt e /usr/lib/cyrus/cyrus-db-
types.active mostra che i backend di database per Cyrus IMAPd sono cambiati.

#. Type: error
#. Description
#: ../cyrus-common-2.2.templates:2001
msgid 
This means that those databases for which the database backends changed 
might need to be converted manually to the new format, using the cvt_cyrusdb
(8) utility.
msgstr 
Ci� significa che i database per cui sono cambiati i backend devono essere 
convertiti manualmente al nuovo formato, usando l'utilit� cvt_cyrusdb(8).

#. Type: error
#. Description
#: ../cyrus-common-2.2.templates:2001
msgid 
Please refer to /usr/share/doc/cyrus-common-2.2/README.Debian.database for 
more information.  Do not start cyrmaster until you have converted the 
databases to the new format.
msgstr 
Si veda /usr/share/doc/cyrus-common-2.2/README.Debian.database per maggiori 
informazioni.  Non avviare cyrmaster prima di aver convertito i database al 
nuovo formato.

#. Type: boolean
#. Description
#: ../cyrus-common-2.2.templates:3001
msgid Remove the mail and news spools?
msgstr Rimuovere gli spool di Cyrus e gli script sieve degli utenti?

#. Type: boolean
#. Description
#: ../cyrus-common-2.2.templates:3001
#| msgid 
#| The Cyrus mail and news spools, as well as the user's sieve scripts can 
#| be removed when the package is purged.
msgid 
The Cyrus mail and news spools, as well as users' sieve scripts, can be 
removed when the package is purged.
msgstr 
Gli spool di posta e news di Cyrus, oltre agli script sieve degli utenti, 
possono essere rimossi quando il pacchetto sar� rimosso.

#. Type: boolean
#. Description
#: ../cyrus-common-2.2.templates:3001
msgid 
This question only applies to the default spools and sieve script 
directories in /var.  If you modified their location in imapd.conf, the new 
locations will not be removed; just the old ones in /var.
msgstr 
Questa domanda si riferisce solo agli spool predefiniti e alle directory 
degli script sieve in /var.  Se la posizione di questi file � stata 
modificata in imapd.conf, essi non saranno rimossi; saranno rimossi solo i 
file in /var.

#~ msgid Database backends have changed!
#~ msgstr I backend di database sono cambiati!


signature.asc
Description: Digital signature


Bug#524313: mktemp should print warning when there are less than 6 X in the template

2009-04-16 Thread Arie Skliarouk
Package: mktemp
Version: 1.6-3

I have a lot of scripts that have 5 X characters in the template. Now none
of them is working. Can you make mktemp to print a warning (on a stderr)
when there is only 4 or 5 X characters?

You are free to make mktemp to fail in case there are only 3 X characters
(or whatever was the behaviour of the previous version). Just don't make
changes that break user's scripts without prior warning.

--
Arie


Bug#524314: [sysv-rc] Sysv-rc always reports that actions failed

2009-04-16 Thread Carlo Aquilini
Package: sysv-rc
Version: 2.86.ds1-61
Severity: critical


Sysv-rc always reports that actions failed even if they are successfully 
accomplished.
This breaks reconfiguration of every package that call invoke-rc.d during 
upgrade, remove, purge, install or reinstall.



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

Debian Release: squeeze/sid
  990 testing www.debian-multimedia.org 
  990 testing security.debian.org 
  990 testing ftp.it.debian.org 
  650 unstablewww.debian-multimedia.org 
  650 unstableftp.it.debian.org 
  600 experimentalwww.debian-multimedia.org 
  600 experimentalftp.it.debian.org 

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






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



Bug#524317: acpid: Won't upgrade

2009-04-16 Thread Olivier Berger
Package: acpid
Version: 1.0.8-6
Severity: normal

Trying to upgrade acpid today, I get :

Preparing to replace acpid 1.0.8-6 (using .../acpid_1.0.8-7_i386.deb) ...
 * Stopping ACPI services...
  [ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
 * Stopping ACPI services...
  [ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: error processing /var/cache/apt/archives/acpid_1.0.8-7_i386.deb 
(--unpack):
 subprocess new pre-removal script returned error exit status 1
 * Starting ACPI services...
  [ OK ] 
invoke-rc.d: initscript acpid, action start failed.
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/acpid_1.0.8-7_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
dpkg: error processing acpid (--configure):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting configuration.

Happened several times in a row :(

Hope this helps,

Best regards,


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

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

Versions of packages acpid depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo

Versions of packages acpid recommends:
ii  acpi-support-base 0.109-11   scripts for handling base ACPI eve

acpid 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#524315: otrs2 needs a2enmod during installation

2009-04-16 Thread Hilmar Preusse
Package: otrs2
Version: 2.3.4-1
Severity: important
Tags: patch

Hi,

on my system the configuration of otrs2 fails with the following error
message:

Creating config file /etc/apache2/conf.d/otrs2 with new version
/var/lib/dpkg/info/otrs2.postinst: line 44: a2enmod: command not found
dpkg: error processing otrs2 (--configure):
 subprocess post-installation script returned error exit status 127
Errors were encountered while processing:
 otrs2
E: Sub-process /usr/bin/dpkg returned an error code (1)

Indeed the binary/command is not there, it is provided by apache2.2-common.
Hence I guess otrs2 needs a dep on apache2.2-common.

Greets,
  Hilmar

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

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

Versions of packages otrs2 depends on:
ii  adduser3.110 add and remove users and groups
ii  boa [httpd-cgi]0.94.14rc21-3 Lightweight and high performance w
ii  dbconfig-common1.8.41common framework for packaging dat
ii  debconf1.5.26Debian configuration management sy
ii  libauthen-sasl-perl2.12-1Authen::SASL - SASL Authentication
ii  libcrypt-passwdmd5-perl1.3-9 interoperable MD5-based crypt() fo
ii  libdate-pcalc-perl 1.2-3 Perl module for Gregorian calendar
ii  libdbi-perl1.607-1   Perl5 database interface by Tim Bu
ii  libemail-valid-perl0.179-2   Check validity of Internet email a
ii  libio-stringy-perl 2.110-4   Perl modules for IO from scalars a
ii  libmailtools-perl  2.04-1Manipulate email in perl programs
ii  libmime-tools-perl 5.427-2   Perl5 modules for MIME-compliant m
ii  libtext-diff-perl  0.35-3Perform diffs on files and record 
ii  libxml-parser-perl 2.36-1.1+b1   Perl module for parsing XML files
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 
ii  ucf3.0018Update Configuration File: preserv

Versions of packages otrs2 recommends:
ii  aspell0.60.6-1   GNU Aspell spell-checker
pn  libapache2-mod-perl2  none (no description available)
pn  libdbd-pg-perl | libdbd-mysql none (no description available)
pn  libgd-graph-perl  none (no description available)
pn  libgd-text-perl   none (no description available)
pn  libtext-csv-perl  none (no description available)
ii  postgresql-8.38.3.7-1object-relational SQL database, ve
ii  procmail  3.22-16Versatile e-mail processor

Versions of packages otrs2 suggests:
pn  libnet-ldap-perl  none (no description available)
pn  otrs2-doc-en | otrs2-doc-de   none (no description available)

-- debconf information:
  otrs2/install-error: abort
  otrs2/remove-error: abort
  otrs2/pgsql/authmethod-admin: ident
  otrs2/pgsql/method: unix socket
  otrs2/db/app-user: otrs
  otrs2/resetdbuser: true
  otrs2/pgsql/changeconf: false
  otrs2/pgsql/authmethod-user: ident
  otrs2/internal/skip-preseed: false
  otrs2/remote/port:
  otrs2/upgrade-backup: true
  otrs2/db/dbname: otrs2
  otrs2/pgsql/admin-user: postgres
  otrs2/dbconfig-reinstall: false
  otrs2/db/basepath:
* otrs2/dbconfig-install: true
  otrs2/pgsql/manualconf:
  otrs2/mysql/method: unix socket
  otrs2/dbconfig-remove:
  otrs2/upgrade-error: abort
  otrs2/remote/newhost:
  otrs2/internal/reconfiguring: false
  otrs2/purge: false
* otrs2/database-type: pgsql
  otrs2/pgsql/no-empty-passwords:
  otrs2/dbconfig-upgrade: true
  otrs2/passwords-do-not-match:
  otrs2/remote/host:
  otrs2/missing-db-package-error: abort
  otrs2/mysql/admin-user: root



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



Bug#524316: acpid fails to upgrade

2009-04-16 Thread Christoph Egger
Package: acpid
Version: 1.0.8-6
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On my Debian almost squeeze system installing acpid currently fails with the 
following
error:

@@
(Reading database ... 422048 files and directories currently installed.)
Preparing to replace acpid 1.0.8-6 (using .../acpid_1.0.8-7_i386.deb) ...
 * Stopping ACPI services...


 [ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
 * Stopping ACPI services...


 [ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: error processing /var/cache/apt/archives/acpid_1.0.8-7_i386.deb 
(--unpack):
 subprocess new pre-removal script returned error exit status 1
 * Starting ACPI services...


 [ OK ] 
invoke-rc.d: initscript acpid, action start failed.
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/acpid_1.0.8-7_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
dpkg: error processing acpid (--configure):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting configuration.
Errors were encountered while processing:
 acpid
@@

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

Kernel: Linux 2.6.29.1-dpl (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 acpid depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo

Versions of packages acpid recommends:
ii  acpi-support-base 0.109-11   scripts for handling base ACPI eve

acpid suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAknm58wACgkQz9S5sZBYslOvxgCfWV07HcDARmNSUZJP+CQydXKT
gkYAnAmDQg3SUny/ZEskQi+VukJMOjGO
=mnw6
-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#524318: use of powerbtn.sh.dpkg-back is an ugly hack, IMO

2009-04-16 Thread Stanislav Maslovski
Package: acpi-support-base
Version: 0.114-1
Severity: wishlist


Hello,

The way how your package treats powerbtn.sh script now (if it was
changed by the admin) is ugly, IMO. Was not there a better solution?

Well, this is most likely a wontfix, but anyway.

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

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

Versions of packages acpi-support-base depends on:
ii  acpid 1.0.8-7Utilities for using ACPI power man
ii  kbd [console-utilities]   1.15-1 Linux console font and keytable ut

acpi-support-base recommends no packages.

Versions of packages acpi-support-base suggests:
pn  acpi-support  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#524314: [Pkg-sysvinit-devel] Bug#524314: [sysv-rc] Sysv-rc always reports that actions failed

2009-04-16 Thread Kel Modderman
tags 524314 moreinfo
thanks

On Thursday 16 April 2009 18:04:27 Carlo Aquilini wrote:
 Package: sysv-rc
 Version: 2.86.ds1-61
 Severity: critical
 
 
 Sysv-rc always reports that actions failed even if they are successfully 
 accomplished.
 This breaks reconfiguration of every package that call invoke-rc.d during 
 upgrade, remove, purge, install or reinstall.

You need to provide actual data to support this claim, such as commands which
reproduce the problem described.

Thanks, Kel.


Bug#524303: me too

2009-04-16 Thread James Cameron
I get it as well.

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

update-python-modules: error:
/usr/share/python-support/python-elementtree.public is not a directory
dpkg: error processing python-elementtree (--configure):
 subprocess post-installation script returned error exit status 2
Setting up python-sip4 (4.7.9-2) ...
Setting up realpath (1.14) ...
Errors were encountered while processing:
 python-elementtree
E: Sub-process /usr/bin/dpkg returned an error code (1)
host:/root#

Also, the postinst has an extra space ...

#!/bin/sh
set -e
# Automatically added by dh_pysupport
if which update-python-modules /dev/null 21; then
update-python-modules  python-elementtree.public
fi
# End automatically added section

/usr/share/python-support/python-elementtree.public is indeed provided
by the package as a file.

A similar problem occurs on package removal ...

Removing python-celementtree ...
Removing python-elementtree ...
Usage: update-python-modules [-v] [-c] package_directory [...]
   update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f|-p]

update-python-modules: error: 
/usr/share/python-support/python-elementtree.public is not a directory
dpkg: error processing python-elementtree (--remove):
 subprocess pre-removal script returned error exit status 2
Usage: update-python-modules [-v] [-c] package_directory [...]
   update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f|-p]

update-python-modules: error: 
/usr/share/python-support/python-elementtree.public is not a directory
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 2
Processing triggers for python-support ...
Processing triggers for man-db ...
Errors were encountered while processing:
 python-elementtree
E: Sub-process /usr/bin/dpkg returned an error code (1)



-- 
James Cameronmailto:qu...@us.netrek.org http://quozl.netrek.org/



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



Bug#524319: sparse now licensed MIT

2009-04-16 Thread Riku Voipio
Package: sparse
Version: 0.4.1+git20081218-1
Severity: normal

Time to get this out of non-free:

http://thread.gmane.org/gmane.comp.parsers.sparse/1799

http://git.kernel.org/?p=devel/sparse/novafora/sparse.git;a=commitdiff;h=23525c14bc263d70165fedf469d35cdb31b0ac35


-- 
rm -rf only sounds scary if you don't have backups



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



Bug#523581: xserver-xorg-input-synaptics: Stops working after upgrading xserver-xorg-core to version 2:1.6.0-1

2009-04-16 Thread nicolas
Quoting Julien Cristau jcris...@debian.org:

 On Mon, 2009-04-13 at 08:25 +0300, nico...@students.cs.unipi.gr wrote:
  It's seems that the problem now is only the tapping the touchpad for click
 and
  the horizontal scroll line.

 That's expected.  They can be enabled with 'synclient TapButton1=1' and
 'synclient HorizEdgeScroll=1'.

 Cheers,
 Julien



Hello,
I finally manage to fix the tap button by adding into xorg.conf:
Option  TapButton11
Option  TapButton22
Option  TapButton33
at the InputDevice section that reflects the synaptics device.
I also discovered that the driver replaced the horizontal scroll line with
a two finger slide on the touchpad as the default move for scrolling.

Cheers!



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



Bug#524317: Actually a problem with splashy

2009-04-16 Thread Olivier Berger
reassign 524317 splashy
thanks

On Thu, Apr 16, 2009 at 10:10:16AM +0200, Olivier Berger wrote:
 Trying to upgrade acpid today, I get :
 
 invoke-rc.d: initscript acpid, action stop failed.
 

It appears this is an (already noticed) problem with splashy :(

The renaming of /etc/lsb-base-logging.sh seems a good workaround.

Here are logs of what happened when issueing /etc/init.d/acpid stop :

 * Stopping ACPI services...   ++ /usr/bin/expr 157 - 1
+ /usr/bin/tput hpa 156

+ 
printf ' '
 + '[' -x /sbin/splashy_update ']'
+ '[' -z '' ']'
++ runlevel
++ sed 's/^. //'
+ RUNLEVEL=2
+ '[' -z 2 ']'
+ '[' x2 = x6 ']'
+ '[' x2 = x0 ']'
+ '[' '!' -z '' ']'
+ start-stop-daemon --stop --quiet --oknodo --retry 2 --exec /usr/sbin/acpid
+ log_end_msg 0
+ '[' -z 0 ']'
+ STEPS_DIR=/lib/init/rw/splashy
+ SPL_UPD=/sbin/splashy_update
+ '[' -r /etc/default/splashy ']'
+ . /etc/default/splashy
++ CHVT_TTY=auto
++ ENABLE_INITRAMFS=1
++ DEBUG=0
+ log_use_splashy
+ '[' n = y ']'
+ pidof splashy
+ log_to_console log_end_msg 0
+ '[' n '!=' y ']'
+ '[' no '!=' yes ']'
++ readlink /proc/self/fd/0
+ stdin=/dev/pts/3
+ '[' /dev/pts/3 '!=' /dev/pts/3 ']'
+ return 0
+ '[' 150 ']'
+ '[' -x /usr/bin/tput ']'
+ printf '\r'
+ /usr/bin/tput hpa 150

  + '[' 0 
-eq 0 ']'
+ echo '[ OK ]'
[ OK ]
+ '[' -x /sbin/splashy_update ']'
+ '[' '!' -d /lib/init/rw/splashy ']'
+ SPL_PRG=/lib/init/rw/splashy/2-progress
+ '[' -f /lib/init/rw/splashy/2-progress ']'
+ return 1

Most certainly a duplicate of 523187, at first sight.

Hope this helps.

Regards,
-- 
Olivier BERGER 
(OpenPGP: 1024D/B4C5F37F)
http://www.olivierberger.com/weblog/



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



Bug#524291: Can't guess lavf muxer of ogg http stream

2009-04-16 Thread Reinhard Tartler
Reinhard Tartler siret...@tauware.de writes:

 Ah, you have already discussed this with upstream. Is that bug already
 in mplayer's bugtracker so that we can track the upstream status? If
 not, could you please do that then?

ignore me, you've already done that. thanks!

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#524303: (no subject)

2009-04-16 Thread Daryl Styrk

Same here.. From a fresh install of Lenny upgrading to Squeeze.



Errors were encountered while processing:
 python-elementtree
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up python-elementtree (1.2.6-13) ...
Usage: update-python-modules [-v] [-c] package_directory [...]
   update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f|-p]

update-python-modules: error: 
/usr/share/python-support/python-elementtree.public is not a directory

dpkg: error processing python-elementtree (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 python-elementtree



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



Bug#524320: libchipcard-tools: Error message after an upgrade

2009-04-16 Thread nb
Package: libchipcard-tools
Version: 4.2.7-1
Severity: normal


after an apt-get upgrade I have the following message in the console :


process 3125: arguments to dbus_move_error() were incorrect, assertion (dest) 
== NULL || !dbus_error_is_set ((dest)) failed in file dbus-errors.c line 278.
This is normally a bug in some application using the D-Bus library.

ps auxw|grep 3125 shows :
chipcard  3125  0.0  0.1   6936  2060 ?S10:22   0:00 
/usr/sbin/chipcardd4 --pidfile /var/run/chipcard/chipcardd4.pid --exit-on-error

dpkg -S /usr/sbin/chipcardd4 gives :
libchipcard-tools: /usr/sbin/chipcardd4


-- Package-specific info:
Available chipcard readers (output of chipcard-tool list):

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

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

Versions of packages libchipcard-tools depends on:
ii  adduser  3.110   add and remove users and groups
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libchipcard- 4.2.7-1 configuration files for libchipcar
ii  libchipcardc 4.2.7-1 library for accessing smartcards
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libgcc1  1:4.3.3-7   GCC support library
ii  libgwenhywfa 3.8.0-1 OS abstraction layer
ii  libhal1  0.5.12~git20090406.46dc48-1 Hardware Abstraction Layer - share
ii  libpcsclite1 1.5.2-2 Middleware to access a smart card 
ii  libstdc++6   4.3.3-7 The GNU Standard C++ Library v3
ii  procps   1:3.2.7-11  /proc file system utilities
ii  zlib1g   1:1.2.3.3.dfsg-13   compression library - runtime

libchipcard-tools recommends no packages.

Versions of packages libchipcard-tools suggests:
pn  libccid   none (no description available)
pn  libtowitoko2  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#524321: xorg: ctrl+alt+backspace doesn't work

2009-04-16 Thread Nikos Kokkalis
Package: xserver-xorg
Version: 1:7.4+1
Severity: normal
File: xorg


After the last dist-upgrade ctrl+alt+backspace doesn't kill xorg server.


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

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

X server symlink status:
lrwxrwxrwx 1 root root 13 2009-04-11 10:29 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1876496 2009-04-15 15:16 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3359 2009-04-15 14:51 /etc/X11/xorg.conf

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

Section Files
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us,el
Option  XkbOptionsgrp:alt_shift_toggle
Option  XkbVariant,extended,intl
EndSection

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

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  TapButton11
Option  TapButton22
Option  TapButton33
Option  HorizScrollDelta  0
EndSection

Section Device
Identifier  Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller
Driver  intel
BusID   PCI:0:2:0
#   Option  XAANoOffscreenPixmaps true
Option  DRI   true
#   Option  XVideoOn
#   Option  Accel true
#Option  ExaNoCompositefalse
#Option  AccelMethodr  XAA
#Option  XAANoOffscreenPixmaps  True
#Option  XaaNoPixmapCache
EndSection

Section Monitor
Identifier  Laptop
Option  DPMS
#   HorizSync   30-70
#   VertRefresh 50-160
EndSection

#Section Monitor
#Identifier  Nec
#Option  DPMS
#HorizSync   31-70
#VertRefresh 55-120
#EndSection


Section Screen
Identifier  Laptop Screen
Device  Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller
Monitor Laptop
DefaultDepth24
SubSection Display
Depth 24
Modes 1280x800
EndSubSection
EndSection

#Section Screen
#Identifier  Nec Screen
#Device  Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller
#Monitor Nec
#DefaultDepth24
#SubSection Display
#Depth 24
#Modes 1024x768 800x600
#EndSubSection
#EndSection


Section ServerLayout
Identifier  Default Layout
Screen  Laptop Screen
#Screen 0 Laptop Screen 0 0
#Screen 1 Nec Screen LeftOf Laptop Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
InputDevice Synaptics Touchpad
#   Option  AIGLX true
EndSection

Section Module
 Load glx
 Load dri
 Load bitmap
 Load extmod
 Load freetype
 Load dbe
 Load int10
#Load type1
 Load vbe
EndSection

Section DRI
Group video
Mode 0666
EndSection

Section Extensions
Option Composite true
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 45858 2009-04-16 11:16 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-vserver-amd64 

Bug#523091: [Pkg-alsa-devel] Bug#523091: alsa-utils: same here with more info

2009-04-16 Thread Elimar Riesebieter
* Karsten Hilbert [090416 09:35 +0200]
 Package: alsa-utils
 Version: 1.0.19-2
 Severity: normal
 
 It used to do this just fine. Sounds works after booting in
 any case. Console output is:
 
 Setting up ALSA...
 warning: 'alsactl restore' failed with error message 'Unknown hardware: 
 SI7018 SigmaTel STAC9700,83,84,Silicon Laboratory Si3036,8 rev 1 
 AC97a:83847600 AC97m:53494c21 0x1043 0x1453
 Hardware is initialized using a guess method'...
 Invalid card number.
 Usage: amixer options [command]

For some reason your SigmaTel isn't sound card 0. What tells:

# cat /proc/asound/cards
# cat /proc/asound/sound
# cat /proc/asound/sound.conf

Elimar


-- 
  Numeric stability is probably not all that 
  important when you're guessing;-)



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



Bug#524196: [Pkg-alsa-devel] Bug#524196: USB webcam randomly disables soundcard

2009-04-16 Thread Elimar Riesebieter
* Philip [090415 13:12 +0100]
 Package: alsa-base
 Version: 1.0.17.dfsg-4
 
 If a logitech pro 9000 webcam (with built in microphone) is plugged in
 then the Intel motherboard sound card will randomly fail on boot.
 This will appear in dmesg
 [   10.698812] cannot find the slot for index 0 (range 0-0), error: -16
 [   10.698812] Intel ICH: probe of :00:1e.2 failed with error -12
 
 Solution.
 Edit /etc/modprobe.d/alsa-base
 add this to the file
 
 # Keep webcam from being loaded first
 options snd_usb_audio index=-2

snd-usb-audio covers more than only a webcam. There are snd cards
supported bei that driver which one wants to be the first card. So in
your case a file /etc/modprobe.d/sound.conf which encloses:

alias snd-card-0snd-yourdriver
options snd-yourdriver  index=0
alias snd-card-1snd-usb-audio
options snd-usb-audio index=1

were snd-yourdriver is your prefered driver, should do the job.

See also /usr/share/doc/alsa-base/README.Debian.gz.

Please let me know whether this works for you so we can close this
bug then ;-)

Elimar

-- 
  You cannot propel yourself forward by
  patting yourself on the back.



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



Bug#524303: python-elementtree: Should depend on python-support = 0.90

2009-04-16 Thread Olivier Berger
Package: python-elementtree
Version: 1.2.6-13
Severity: normal

I also experienced this problem.

It seems that python-support implemented the .public files only starting with 
0.90.0... so I guess a dependency is wrong here :(

FWIW :
dpkg -l python-support gives :
0.8.7

Hope this helps,


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

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

Versions of packages python-elementtree depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-support0.8.7  automated rebuilding support for P

python-elementtree recommends no packages.

Versions of packages python-elementtree suggests:
pn  python-elementtree-docnone (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#524303: same issue

2009-04-16 Thread Gerfried Fuchs
severity 524303 grave

Hi!

 Same issue here, and as this leaves the system in an inconsistent state
and with that affects installation of other packages too I'm raising the
severity to grave. It might be a dh_pysupport issue though, the postinst
snippet is created by that. Not sure wether a simple rebuild of the
package in a sid chroot would solve the problem?

 Thanks,
Rhonda



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



Bug#518521: FTBFS on lenny/ia64

2009-04-16 Thread Christoph Berg
I just tried re-building in merulo's lenny chroot and got the same
error as in the build log from buildd.debian.org:

[0] 10:27 m...@lenny.merulo:~/lam/lam-7.1.2/share/etc 2s $ if /bin/sh 
../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. 
-I../../share/include  -DLAM_SYSCONFDIR=\/usr/lib/lam/etc\ 
-DLAM_PREFIX=\/usr/lib/lam\ -I../../share/include  -DLAM_BUILDING=1   -O3  
-pthread -MT rev.lo -MD -MP -MF .deps/rev.Tpo -c -o rev.lo rev.c; \
 then mv -f .deps/rev.Tpo .deps/rev.Plo; else rm -f .deps/rev.Tpo; exit 
 1; fi
 gcc -DHAVE_CONFIG_H -I. -I. -I../../share/include 
-DLAM_SYSCONFDIR=\/usr/lib/lam/etc\ -DLAM_PREFIX=\/usr/lib/lam\ 
-I../../share/include -DLAM_BUILDING=1 -O3 -pthread -MT rev.lo -MD -MP -MF 
.deps/rev.Tpo -c rev.c -o rev.o
rev.c: In function 'mrev4':
rev.c:131: internal compiler error: in trunc_int_for_mode, at explow.c:55
Please submit a full bug report,
with preprocessed source if appropriate.
See file:///usr/share/doc/gcc-4.3/README.Bugs for instructions.

Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#524314: [Pkg-sysvinit-devel] Bug#524314: [sysv-rc] Sysv-rc always reports that actions failed

2009-04-16 Thread Carlo Aquilini
Hello, I discovered it during acpid upgrade that failed claiming that it
couldn't stop and restart the service (solved by momentarily
renaming /etc/init.d/acpid and then upgrading).


One example could be freepops:
$ ps aux | grep freepops
carlo 8052  0.0  0.0   3212   752 pts/0S+   10:28   0:00 grep
freepops
nobody   15771  0.4  0.3  27936  7448 ?S09:48
0:11 /usr/bin/freepopsd -p 110 -n -s nobody.nogroup

$ sudo invoke-rc.d freepops stop
 * Stopping freepops daemon freepopsd   [ OK ] 
invoke-rc.d: initscript freepops, action stop failed.

$ ps aux | grep freepops
carlo11644  0.0  0.0   3212   752 pts/0R+   10:34   0:00 grep
freepops

$ sudo invoke-rc.d freepops start
 * Starting freepops daemon freepopsd   [ OK ] 
invoke-rc.d: initscript freepops, action start failed.

$ ps aux | grep freepops
nobody   12303  0.0  0.0   5980  1708 ?S10:35
0:00 /usr/bin/freepopsd -p 110 -n -s nobody.nogroup
carlo12690  0.0  0.0   3212   752 pts/0R+   10:36   0:00 grep
freepops


So that package freepops is stopped and started successfully, but
invoke-rc.d claims that the actions failed.
This happens with every service in /etc/init.d/

Please, ask for further informations if needed.


Regards, CA 


Il giorno gio, 16/04/2009 alle 18.15 +1000, Kel Modderman ha scritto:
 tags 524314 moreinfo
 thanks
 
 
 
 On Thursday 16 April 2009 18:04:27 Carlo Aquilini wrote:
  Package: sysv-rc
  Version: 2.86.ds1-61
  Severity: critical
  
  
  Sysv-rc always reports that actions failed even if they are
 successfully accomplished.
  This breaks reconfiguration of every package that call invoke-rc.d
 during upgrade, remove, purge, install or reinstall.
 
 
 
 You need to provide actual data to support this claim, such as
 commands which
 reproduce the problem described.
 
 
 
 Thanks, Kel.
 




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



Bug#369941: closed by Manoj Srivastava sriva...@golden-gryphon.com (Debconf questions)

2009-04-16 Thread Frank Küster
Hi Max,

here's a bug which I submitted and you reassigned from linux-2.6 to
kernel-package. It's now been closed for a variety of reasons, and I
wanted to give you the opportunity to check whether the situation is now
acceptable for linux-2.6.

Personally, I don't grok the details of generating official kernel
images, but I'm using them and have not had problems with such warnings
for a long time. Thus I don't object to closing.

Regards, Frank

ow...@bugs.debian.org (Debian Bug Tracking System) wrote:

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

 #369941: linux-image-2.6.16-2-686: Debconf question should be reworded, or 
 upgrade mechanism made more clever

 It has been closed by Manoj Srivastava sriva...@golden-gryphon.com.

 Their explanation is attached below along with your original report.
 If this explanation is unsatisfactory and you have not received a
 better one in a separate message then please contact Manoj Srivastava 
 sriva...@golden-gryphon.com by
 replying to this email.


 -- 
 369941: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=369941
 Debian Bug Tracking System
 Contact ow...@bugs.debian.org with problems

 From:  Manoj Srivastava sriva...@golden-gryphon.com
 Subject: Debconf questions
 To: 369941-d...@bugs.debian.org
 Date: Mon, 13 Apr 2009 23:57:57 -0500
 Organization: Manoj Srivastava's Home
 Mail-Copies-To: nobody

 Hi,

 Arguably, this is not a bug for a generic tool like
  kernel-package, which is designed to create kernel images for all kinds
  of constituencies.

 Secondly, none of the bootloader questions are now asked, though
  the messages are not been toned down. And, unlike official kernel
  images, of which there are few, kernel-package can be used to generate
  several kernel images; I once had 24 images for 2.6.27 while I was
  testing things.

 Thirdly, the kernel team changes the name of the kernel images
  when an ABI change happens, this is unlikely to be true for
  images in general, so the messages should remain dire

 Given that, it is not unusual to make the user confirm that
  overriding the modules is OK.

 manoj
 -- 
 Finster's Law: A closed mouth gathers no feet.
 Manoj Srivastava sriva...@acm.org http://www.golden-gryphon.com/  
 1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C

 --

 From: Frank Küster fr...@debian.org
 Subject: linux-image-2.6.16-2-686: Debconf question should be reworded, or 
 upgrade mechanism made more clever
 To: Debian Bug Tracking System sub...@bugs.debian.org
 Date: Fri, 02 Jun 2006 13:36:48 +0200

 Package: linux-image-2.6.16-2-686
 Version: 2.6.16-13bpo1
 Severity: important

 I have linux-image-2.6-686 installed, so that I automatically get new
 versions of 2.6.16 (in fact this is a sarge system with backports from
 backports.org, but that probably does not matter at all).

 I'm also routinely running 2.6.16, and while upgrading from 2.6.16-1-686
 to 2.6.16-2-686 I got a warning message that it would be very dangerous
 to proceed, since the machine might become unbootable and all that.

 I'm not sure which template that was; I can't find it in the plethora of
 debconf questions below.  I've found one that talked about permission
 to remove /lib/modules/..., but this one I did *not* see.

 I think there are several things wrong with that.

 First of all, I have a couple of other kernels installed and configured
 in menu.list (lilo is not installed); isn't it possible to detect that
 and make the message a little less alarming?

 Second, I think a standard install of sarge, and probably etch as well,
 will only have one kernel image installed.  Doesn't this mean that each
 time a kernel is upgraded (e.g. via security updates), users will get
 that message?  I think we should take great effort to avoid this, and
 instead provide a clean upgrade procedure.  For example by delaying
 parts of the configuration to the next reboot.

 Regards, Frank



 -- System Information:
 Debian Release: 3.1
   APT prefers unstable
   APT policy: (99, 'unstable')
 Architecture: i386 (i686)
 Kernel: Linux 2.6.16-1-686
 Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)

 Versions of packages linux-image-2.6.16-2-686 depends on:
 ii  module-init-tools   3.2.2-1bpo1  tools for managing Linux kernel 
 mo
 ii  yaird [linux-initramfs-tool 0.0.12-8bpo1 Yet Another mkInitRD

 -- debconf information:
   linux-image-2.6.16-2-686/postinst/old-system-map-link-2.6.16-2-686: true
   linux-image-2.6.16-2-686/preinst/failed-to-move-modules-2.6.16-2-686:
   linux-image-2.6.16-2-686/preinst/overwriting-modules-2.6.16-2-686: true
   linux-image-2.6.16-2-686/postinst/create-kimage-link-2.6.16-2-686: true
   linux-image-2.6.16-2-686/prerm/removing-running-kernel-2.6.16-2-686: true
   linux-image-2.6.16-2-686/postinst/depmod-error-2.6.16-2-686: false
   

Bug#523415: corrupted rendering

2009-04-16 Thread Brice Goglin
Frederic Peters wrote:
 Brice Goglin wrote:

   
 Downgrading the kernel from 2.6.29 to 2.6.26 fixes the problem for
 me.
   
 Any difference in /proc/mtrr between 2.6.26 and 2.6.29 ?
 

 I downgraged from 2.6.29 to 2.6.28, and it also fixed the problem.

 /proc/mtrr in 2.6.28:
 reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
 reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable

 /proc/mtrr in 2.6.29:
 reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
 reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable
 reg02: base=0x0e800 ( 3712MB), size=  128MB, count=2: write-combining
   

So now, booting 2.6.29 and doing as root
echo base=0x0e800 size=0x800 type=write-combining  /proc/mtrr
might give you the same MTRR back, and might even fix your problems.

Beware that playing with MTRR may be dangerous, so make sure you don't
have critical things running when trying...

Other people: Don't run the above command, you'll have to adapt it to
your machine first.

Brice




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



Bug#524322: gthumb: function tools scale images not working properly (two bugs)

2009-04-16 Thread Raphael Frey
Package: gthumb
Version: 3:2.10.8-1+lenny1
Severity: normal


There are two possibilities to resize/scale an image with gThumb:

1. You can use the option Image  Resize. This function works without 
any problems but unfortunately it only works for one file and not for resizing 
several images at the same time.

2. You can use the option Tools  Scale images. This function works 
for several images at the same time. But there are two bugs: Firstly the 
keep aspect ratio optionlue. (The same keep 
aspect ratio function works with Image  Resize!) 
Secondly exif/metadata gets lost when using this function.

I already reported this bug to 
http://bugzilla.gnome.org/show_bug.cgi?id=568187 three months ago but 
unfortunately 
nobody is caring about this bug there.

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

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

Versions of packages gthumb depends on:
ii  gthumb-data3:2.10.8-1+lenny1 an image viewer and browser - arch
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.6.4-7   The Cairo 2D vector graphics libra
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1+lenny1   The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-5GNOME Virtual File System (runtime
ii  libgphoto2-2   2.4.1-3   gphoto2 digital camera library
ii  libgphoto2-port0   2.4.1-3   gphoto2 digital camera port librar
ii  libgtk2.0-02.12.12-1~lenny1  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libiptcdata0   1.0.2+libtool01-2 Library to parse IPTC metadata
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpng12-0 1.2.27-2+lenny2   PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libusb-0.1-4   2:0.1.12-13   userspace USB programming library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  rarian-compat [scrollk 0.8.1-1   Rarian is a documentation meta-dat
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages gthumb recommends:
ii  yelp 2.22.1-8+b1 Help browser for GNOME 2

gthumb 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#523388: [Debian-in-workers] Bug#523388: Bug#523388: Hindi font rendering

2009-04-16 Thread Ritesh Raj Sarraf
On Thursday 16 Apr 2009 10:54:58 Christian Perrier wrote:
 Quoting Ritesh Raj Sarraf (r...@researchut.com):
  So I guess the bug is assigned to the right package, then. It is a font
  rendering problem.

 If the font is correct and the font *rendering* is not correct, I
 doubt the problem to be relevant for the package that just provides
 the font.

Initially, I felt it to be a KDE problem.
Later, it looked like a problem specific to KDE Konsole.
Then later again, I realized the GNOME apps were also suffering the same.

So, I'm not very sure where this bug relates to.
How is it with other localized (non-indic) languages ?
Are they rendered properly in the KDE/GNOME apps, especially the terminal apps  
?

From what I understood till now about fonts, I guess this problem is specific 
to the way terminal fonts are rendered. Because Konqueror can render indic 
fonts pretty good. So can many of the KDE text editors. I'm sure the situation 
would be similar on GNOME.
Note: The same localized text, on Linux's VT, is completely garbled. It just 
shows a bunch of white square boxes.

Please confirm, which package should own this bug.

Ritesh
-- 
Ritesh Raj Sarraf
RESEARCHUT - http://www.researchut.com
Necessity is the mother of invention.



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


Bug#522266: gnome-keyring still crashes occasionally

2009-04-16 Thread Paul Menzel
Subject: gnome-keyring still crashes occasionally
Package: gnome-keyring
Version: 2.26.0-3
Severity: normal

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

Am Mittwoch, den 08.04.2009, 15:50 + schrieb Debian Bug Tracking System:

[…]

 #522266: gnome-keyring: couldn't connect to daemon at $GNOME_KEYRING_SOCKET
 
 It has been closed by Josselin Mouette j...@debian.org.

Unfortunately gnome-keyring still crashes on my system after some time
with the same error message.


Thanks,

Paul


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

Kernel: Linux 2.6.29-1-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

Versions of packages gnome-keyring depends on:
ii  dbus-x11 1.2.12-1simple interprocess messaging syst
ii  gconf2   2.24.0-7GNOME configuration database syste
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libgconf2-4  2.24.0-7GNOME configuration database syste
ii  libgcr0  2.26.0-3Library for Crypto UI related task
ii  libgcrypt11  1.4.4-2 LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libgp11-02.26.0-3Glib wrapper library for PKCS#11 -
ii  libgtk2.0-0  2.14.7-5The GTK+ graphical user interface 
ii  libhal1  0.5.12~git20090406.46dc48-1 Hardware Abstraction Layer - share
ii  libpango1.0- 1.24.0-3Layout and rendering of internatio
ii  libtasn1-3   1.8-1   Manage ASN.1 structures (runtime)

Versions of packages gnome-keyring recommends:
ii  libpam-gnome-keyring  2.26.0-3   PAM module to unlock the GNOME key

Versions of packages gnome-keyring suggests:
ii  hal  0.5.12~git20090406.46dc48-1 Hardware Abstraction Layer

-- no debconf information


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#524303: python-elementtree: same here

2009-04-16 Thread Daryl Styrk
Package: python-elementtree
Version: 1.2.6-12
Followup-For: Bug #524303


Errors were encountered while processing:
 python-elementtree
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up python-elementtree (1.2.6-13) ...
Usage: update-python-modules [-v] [-c] package_directory [...]
   update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f|-p]

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


Sorry for the duplicate report.  I wanted to report this the proper way.

Daryl

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

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

Versions of packages python-elementtree depends on:
ii  python2.5.2-3An interactive high-level object-o
ii  python-support0.8.4  automated rebuilding support for P

python-elementtree recommends no packages.

Versions of packages python-elementtree suggests:
pn  python-elementtree-docnone (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#523091: [Pkg-alsa-devel] Bug#523091: alsa-utils: same here with more info

2009-04-16 Thread Karsten Hilbert
On Thu, Apr 16, 2009 at 10:35:24AM +0200, Elimar Riesebieter wrote:

 For some reason your SigmaTel isn't sound card 0. What tells:

merkur:/proc/asound# ls -l
insgesamt 0
dr-xr-xr-x 6 root root 0 16. Apr 10:56 card0
-r--r--r-- 1 root root 0 16. Apr 10:56 cards
-r--r--r-- 1 root root 0 16. Apr 10:56 devices
-r--r--r-- 1 root root 0 16. Apr 10:56 modules
dr-xr-xr-x 2 root root 0 16. Apr 10:56 oss
-r--r--r-- 1 root root 0 16. Apr 10:56 pcm
dr-xr-xr-x 2 root root 0 16. Apr 10:56 seq
lrwxrwxrwx 1 root root 5 16. Apr 10:56 SI7018 - card0
-r--r--r-- 1 root root 0 16. Apr 10:56 timers
-r--r--r-- 1 root root 0 16. Apr 10:56 version

 # cat /proc/asound/cards

 0 [SI7018 ]: SI7018 - SiS SI7018
  SiS SI7018 PCI Audio at 0xd000, irq 3

 # cat /proc/asound/sound
 # cat /proc/asound/sound.conf

Do not exist.

merkur:~/bin# cat /proc/asound/devices
  0: [ 0]   : control
  1:: sequencer
 16: [ 0- 0]: digital audio playback
 17: [ 0- 1]: digital audio playback
 24: [ 0- 0]: digital audio capture
 33:: timer

merkur:/proc/asound# cat /proc/asound/modules
 0 snd_trident

merkur:/proc/asound# cat /proc/asound/pcm
00-01: trident_dx_nx IEC958 : Trident 4DWave IEC958 : playback 1
00-00: trident_dx_nx : Trident 4DWave : playback 32 : capture 1

merkur:/proc/asound# cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.16.

merkur:/proc/asound# cat /proc/asound/timers
G0: system timer : 4000.000us (1000 ticks)
P0-0-0: PCM playback 0-0-0 : SLAVE
P0-0-1: PCM capture 0-0-1 : SLAVE
P0-0-2: PCM playback 0-0-2 : SLAVE
P0-0-4: PCM playback 0-0-4 : SLAVE
P0-0-6: PCM playback 0-0-6 : SLAVE
P0-0-8: PCM playback 0-0-8 : SLAVE
P0-0-10: PCM playback 0-0-10 : SLAVE
P0-0-12: PCM playback 0-0-12 : SLAVE
P0-0-14: PCM playback 0-0-14 : SLAVE
P0-0-16: PCM playback 0-0-16 : SLAVE
P0-0-18: PCM playback 0-0-18 : SLAVE
P0-0-20: PCM playback 0-0-20 : SLAVE
P0-0-22: PCM playback 0-0-22 : SLAVE
P0-0-24: PCM playback 0-0-24 : SLAVE
P0-0-26: PCM playback 0-0-26 : SLAVE
P0-0-28: PCM playback 0-0-28 : SLAVE
P0-0-30: PCM playback 0-0-30 : SLAVE
P0-0-32: PCM playback 0-0-32 : SLAVE
P0-0-34: PCM playback 0-0-34 : SLAVE
P0-0-36: PCM playback 0-0-36 : SLAVE
P0-0-38: PCM playback 0-0-38 : SLAVE
P0-0-40: PCM playback 0-0-40 : SLAVE
P0-0-42: PCM playback 0-0-42 : SLAVE
P0-0-44: PCM playback 0-0-44 : SLAVE
P0-0-46: PCM playback 0-0-46 : SLAVE
P0-0-48: PCM playback 0-0-48 : SLAVE
P0-0-50: PCM playback 0-0-50 : SLAVE
P0-0-52: PCM playback 0-0-52 : SLAVE
P0-0-54: PCM playback 0-0-54 : SLAVE
P0-0-56: PCM playback 0-0-56 : SLAVE
P0-0-58: PCM playback 0-0-58 : SLAVE
P0-0-60: PCM playback 0-0-60 : SLAVE
P0-0-62: PCM playback 0-0-62 : SLAVE
P0-1-0: PCM playback 0-1-0 : SLAVE

HTH,
Karsten
-- 
GPG key ID E4071346 @ wwwkeys.pgp.net
E167 67FD A291 2BEA 73BD  4537 78B9 A9F9 E407 1346



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



Bug#524243: pm-utils: resume fails (no X init) when using KMS

2009-04-16 Thread Michael Biebl
Yves-Alexis Perez wrote:
 On mer, 2009-04-15 at 20:53 +0200, Yves-Alexis Perez wrote:
 
 using KMS, I know have a problem at resume when using pm-suspend or
 suspending from hal.

 With the previous pm-utils I had to disable completely the chvt stuff, now
 it seems there is a way to handle that, with the have_kms() function.

 But /var/log/pm-suspend says that it fails for some reason:

 /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend suspend:
 /usr/lib/pm-utils/sleep.d/98smart-kernel-video: line 37: add_parameter:
 command not found

 It seems to be a typo as 00auto-quirk use add_parameters (check for the s).
 And adding the s seems to fix the problem.

Great catch. Fix will be included in the next upload and submitted upstream.

Thanks for the debugging!

Cheers,
Michael


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



signature.asc
Description: OpenPGP digital signature


Bug#524327: sdic-gene95: a /etc/emacs/site-start.d script like 70sdic-edict.el

2009-04-16 Thread Takeshi Abe
Package: sdic-gene95
Version: 2.1.3-16
Severity: wishlist

It would be nice that sdic-gene95 has a /etc/emacs/site-start.d script like the 
sdic-edict's one,
which adds the .sdic path to sdic-eiwa-dictionary-list. E.g.,

(cond ((file-exists-p /usr/share/dict/gene.sdic)
   (setq sdic-eiwa-dictionary-list
 (cons
  '(sdicf-client /usr/share/dict/gene.sdic)
  sdic-eiwa-dictionary-list

Cheers,
-- Takeshi Abe

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

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

Versions of packages sdic-gene95 depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  netcat-traditional [netcat]   1.10-38TCP/IP swiss army knife
ii  nkf   2.07-1+b1  Network Kanji code conversion Filt
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

Versions of packages sdic-gene95 recommends:
ii  sdic  2.1.3-16   Emacs-Lisp program to view diction
ii  sufary2.1.1-8+b1 Full-text searching tools using su

Versions of packages sdic-gene95 suggests:
ii  bzip2 1.0.5-1high-quality block-sorting file co
pn  kakasinone (no description available)

-- debconf information:
  sdic-gene95/tmpdir: /tmp
  sdic-gene95/en_array: true
  sdic-gene95/jp_array: true
  sdic-gene95/make_jp: false



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



Bug#524325: http_proxy overrides apt.conf

2009-04-16 Thread Hans Müller
Package: apt
Version: 0.7.14ubuntu6
Severity: wishlist

I have set the environment variable http_proxy for use with wget, lynx or 
other http retrieving utilities.
This overrides the settings in apt.conf making this configuration useless.
The only workaround is to unset http_proxy every time you invoke aptitude.

Can you change this behaviour?
The following options could solve this issue.

1. Make aptitude look for apt_http_proxy instead of http_proxy
   and include the value 'direct' for this variable to not use a proxy.
   
2. Include an option for apt.conf to let apt* ignore the http_proxy setting.
   
Thanks a lot
Hans Mueller

-- Package-specific info:

-- (no /etc/apt/preferences present) --

-- (/etc/apt/sources.list present, but not submitted) --


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

Kernel: Linux 2.6.27-11-generic (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- no debconf information


-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger01



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



Bug#524329: openssh-server: regression - .Xauthority corrupted on systems with shared $HOME in Lenny

2009-04-16 Thread Anton Ivanov
Package: openssh-server
Version: 1:5.1p1-5
Severity: normal
Tags: patch


The new entries layout in hosts which separate localhost and the 
entry for the hostname results in ssh corrupting .Xauthority on 
shared $HOME (for example home off NFS server).

The telltale symptom is not being able to launch any apps in KDE
after ssh-ing into another system which uses same $HOME directory.

IMO, in Lenny  X11UseLocalhost no should be a _REQUIRED_ option
in /etc/ssh/sshd_config

The bug is posted a number of times versus KDE or other packages
in Ubuntu, but is in fact an ssh regression caused by the change
in /etc/hosts

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

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

Versions of packages openssh-server depends on:
ii  adduser 3.110add and remove users and groups
ii  debconf [debcon 1.5.24   Debian configuration management sy
ii  dpkg1.14.25  Debian package management system
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libpam-modules  1.0.1-5+lenny1   Pluggable Authentication Modules f
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libselinux1 2.0.65-5 SELinux shared libraries
ii  libssl0.9.8 0.9.8g-15+lenny1 SSL shared libraries
ii  libwrap07.6.q-16 Wietse Venema's TCP wrappers libra
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  openssh-blackli 0.4.1list of default blacklisted OpenSS
ii  openssh-client  1:5.1p1-5secure shell client, an rlogin/rsh
ii  procps  1:3.2.7-11   /proc file system utilities
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages openssh-server recommends:
ii  openssh-blacklist-extra   0.4.1  list of non-default blacklisted Op
ii  xauth 1:1.0.3-2  X authentication utility

Versions of packages openssh-server suggests:
pn  molly-guard   none (no description available)
pn  rssh  none (no description available)
pn  ssh-askpass   none (no description available)

-- debconf-show failed



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



Bug#524314: [Pkg-sysvinit-devel] Bug#524314: [sysv-rc] Sysv-rc always reports that actions failed

2009-04-16 Thread Kel Modderman
On Thursday 16 April 2009 18:42:39 Carlo Aquilini wrote:
 Hello, I discovered it during acpid upgrade that failed claiming that it
 couldn't stop and restart the service (solved by momentarily
 renaming /etc/init.d/acpid and then upgrading).

The output of the upgrade should be provided.

 
 
 One example could be freepops:
 $ ps aux | grep freepops
 carlo 8052  0.0  0.0   3212   752 pts/0S+   10:28   0:00 grep
 freepops
 nobody   15771  0.4  0.3  27936  7448 ?S09:48
 0:11 /usr/bin/freepopsd -p 110 -n -s nobody.nogroup
 
 $ sudo invoke-rc.d freepops stop
  * Stopping freepops daemon freepopsd [ OK ] 
 invoke-rc.d: initscript freepops, action stop failed.
 
 $ ps aux | grep freepops
 carlo11644  0.0  0.0   3212   752 pts/0R+   10:34   0:00 grep
 freepops
 
 $ sudo invoke-rc.d freepops start
  * Starting freepops daemon freepopsd [ OK ] 
 invoke-rc.d: initscript freepops, action start failed.
 
 $ ps aux | grep freepops
 nobody   12303  0.0  0.0   5980  1708 ?S10:35
 0:00 /usr/bin/freepopsd -p 110 -n -s nobody.nogroup
 carlo12690  0.0  0.0   3212   752 pts/0R+   10:36   0:00 grep
 freepops
 
 
 So that package freepops is stopped and started successfully, but
 invoke-rc.d claims that the actions failed.
 This happens with every service in /etc/init.d/

I installed the freepops package to investigate, and then run the following
commands:

r...@nomad:/home/kelmo# invoke-rc.d freepops start
Starting freepops daemon: freepopsd.
r...@nomad:/home/kelmo# invoke-rc.d freepops stop
Stopping freepops daemon: freepopsd.
r...@nomad:/home/kelmo#

The output look a little different to yours, and I cannot reproduce the
failure.

Thanks, Kel.


Bug#524323: evince: Unkown font error message should state the name of the unkown font

2009-04-16 Thread Josselin Mouette
Le jeudi 16 avril 2009 à 10:56 +0200, Tobias Diedrich a écrit :
 I'm trying to fill out a pdf form, but what I type in never appears and
 on the console I get the error message:
 Error: Unknown font in field's DA string
 As such, the error message does barely help at all.
 It would be much better to give the name of the missing font...
 
 (And even better to at least substitute another font, so I can still fill out
 the form even without having the font in question)

Does it still happen with the latest evince and poppler packages from
testing/unstable?

-- 
 .''`.  Debian 5.0 “Lenny” has been released!
: :' :
`. `'   Last night, Darth Vader came down from planet Vulcan and told
  `-me that if you don't install Lenny, he’d melt your brain.


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


Bug#524314: [Pkg-sysvinit-devel] Bug#524314: [sysv-rc] Sysv-rc always reports that actions failed

2009-04-16 Thread Carlo Aquilini
Il giorno gio, 16/04/2009 alle 19.18 +1000, Kel Modderman ha scritto:
 The output of the upgrade should be provided.


The output of the upgrade was identical to this one:

Mi preparo a sostituire acpid 1.0.8-7
(con .../acpid_1.0.8-7_i386.deb) ...
 * Stopping ACPI services...[ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: attenzione - il vecchio script di pre-removal ha restituito un
codice di errore 1
dpkg - provo quindi lo script dal nuovo pacchetto ...
 * Stopping ACPI services...[ OK ] 
invoke-rc.d: initscript acpid, action stop failed.
dpkg: errore processando /var/cache/apt/archives/acpid_1.0.8-7_i386.deb
(--unpack):
 il sottoprocesso nuovo script di pre-removal ha restituito un codice di
errore 1
 * Starting ACPI services...[ OK ] 
invoke-rc.d: initscript acpid, action start failed.
dpkg: errore durante la pulizia:
 il sottoprocesso post-installation script ha restituito un codice di
errore 1
Sono occorsi degli errori processando:
 /var/cache/apt/archives/acpid_1.0.8-7_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Errore durante l'installazione di un pacchetto. Tentativo di ripristino:
dpkg: errore processando acpid (--configure):
 Il pacchetto si trova in uno stato di inconsistenza grave - dovresti
 reinstallarlo prima di tentare la configurazione.
Sono occorsi degli errori processando:
 acpid
Lettura della lista dei pacchetti in corso... Fatto 
Generazione dell'albero delle dipendenze in corso   
Lettura informazioni sullo stato... Fatto
Lettura delle informazioni sullo stato esteso  
Inizializzazione dello stato dei pacchetti... Fatto
Lettura delle descrizioni dei task... Fatto


 I installed the freepops package to investigate, and then run the
 following
 commands:
 
 
 
 r...@nomad:/home/kelmo# invoke-rc.d freepops start
 Starting freepops daemon: freepopsd.
 r...@nomad:/home/kelmo# invoke-rc.d freepops stop
 Stopping freepops daemon: freepopsd.
 r...@nomad:/home/kelmo#
 
 
 
 The output look a little different to yours, and I cannot reproduce
 the
 failure.

Sysv-rc worked well till today when I discovered this problem. Maybe
this bug is related to some other package in squeeze. I'll try to
investigate.

Thanks, CA




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



Bug#524326: python-setuptools: please support Python 2.6

2009-04-16 Thread Sebastian Rittau
Package: python-setuptools
Version: 0.6c9-2
Severity: wishlist

Hi!

Please build setuptools with support for Python 2.6. It's one of the
fundamental external packages, and support for Python 2.6 would allow
me to easily use and test other packages with Python 2.6 as well (thanks
to easy_install).

 - Sebastian

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

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

Versions of packages python-setuptools depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt
ii  python-pkg-resources  0.6c9-2Package Discovery and Resource Acc

python-setuptools recommends no packages.

python-setuptools 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#524281: some applications (e.g., totem and evince) are unable to go fullscreen

2009-04-16 Thread Stefano Zacchiroli
On Thu, Apr 16, 2009 at 11:09:54AM +0200, Joachim Breitner wrote:
 I think this can be achieved by using the right extensions somehow.
 Could you please paste your .xmonad.hs for issues like this?

Attached.

(Hint: if this is a frequent need, maybe you can provide a presubj
script for reportbug which attach user .xmonad.hs asking for
confirmation?)

FWIW, the smartBorders / NoBorders stuff is irrelevant for the issue,
which is present even if I comment out that stuff.

 And for hints on how to configure xmonad, you might want to write the
 mailing list xmo...@haskell.org.

Well, thanks, but I'm well aware that there is support for xmonad :-)

If I submitted this as a bug report, it is because I believe it is a
bug. I expect fullscreen hints to work out of the box, or at least I
expect them to be consistent across applications. If you consider this
not to be a bug, feel free to close it explaining why it is not one.

Cheers.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime

import XMonad
import XMonad.Config.Gnome
import XMonad.Hooks.FadeInactive
import XMonad.Layout.NoBorders

import Data.List

import qualified Data.Map as M


myManageHook = composeAll [
(className =? Gnome-panel  title =? Run Application)		-- doFloat
   , (className =? Pidgin  fmap (isPrefixOf Buddy) title)		-- doFloat
   , (className =? Seahorse-agent  title =? Passphrase)		-- doFloat
   , (className =? Gnome-volume-manager  title =? Photo Import)	-- doFloat
   -- , (className =? XEyes) -- doShift 7
   ]

myKeys x = M.fromList $
   [ ((modMask x, xK_e), spawn emacsclient -c -a emacs)
   ]

myLogHook = fadeInactiveLogHook fadeAmount
where fadeAmount = 0x

main = xmonad $ gnomeConfig {
 modMask	= mod4Mask
   , keys		= \c - myKeys c `M.union` keys gnomeConfig c
   , manageHook	= myManageHook + manageHook gnomeConfig
   , logHook	= myLogHook  logHook gnomeConfig
   , layoutHook	= smartBorders $ layoutHook gnomeConfig
   }


Bug#524328: otrs2: missing deps on libdbd-pg-perl and libapache2-mod-perl2 (?)

2009-04-16 Thread Hilmar Preusse
Package: otrs2
Version: 2.3.4-1
Severity: important

Hi,

I believe I've found two other missing deps for otrs2. Here is my install
log:

sid:~# apt-get install apache2.2-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
apache2.2-common is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
1 not fully installed or removed.
snip
populating database via sql...  error encountered populating database:
NOTICE: CREATE TABLE will create implicit sequence valid_id_seq1 for
serial column valid.id ERROR: relation valid already exists
dbconfig-common: otrs2 configure: ignoring errors from here forwards
done.
dbconfig-common: flushing administrative password
dbconfig-common: otrs2 configure: ignoring errors from here forwards
ERROR: Module perl does not exist!
dpkg: error processing otrs2 (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 otrs2
E: Sub-process /usr/bin/dpkg returned an error code (1)

According to
https://debianforum.de/forum/viewtopic.php?f=29t=100929start=0 I could
solve the problem by installing libapache2-mod-perl2.

Then the installation failed again with another error message:

sid:~# apt-get install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up otrs2 (2.3.4-1) ...
snip
install_driver(Pg) failed: Can't locate DBD/Pg.pm in @INC (@INC contains:
/usr/share/otrs/Kernel/cpan-lib /usr/share/otrs /etc/perl
/usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5
/usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10
/usr/local/lib/site_perl .) at (eval 18) line 3.
Perhaps the DBD::Pg perl module hasn't been fully installed,
or perhaps the capitalisation of 'Pg' isn't right.
Available drivers: DBM, ExampleP, File, Gofer, Proxy, Sponge.
 at /usr/share/otrs/Kernel/System/DB.pm line 216
dpkg: error processing otrs2 (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 otrs2
E: Sub-process /usr/bin/dpkg returned an error code (1)
sid:~#

, I could solve by installing libdbd-pg-perl.

Hope my submissions are of any help.

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

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

Versions of packages otrs2 depends on:
ii  adduser3.110 add and remove users and groups
ii  apache22.2.11-3  Apache HTTP Server metapackage
ii  apache2-mpm-worker [httpd- 2.2.11-3  Apache HTTP Server - high speed th
ii  boa [httpd-cgi]0.94.14rc21-3 Lightweight and high performance w
ii  dbconfig-common1.8.41common framework for packaging dat
ii  debconf1.5.26Debian configuration management sy
ii  libauthen-sasl-perl2.12-1Authen::SASL - SASL Authentication
ii  libcrypt-passwdmd5-perl1.3-9 interoperable MD5-based crypt() fo
ii  libdate-pcalc-perl 1.2-3 Perl module for Gregorian calendar
ii  libdbi-perl1.607-1   Perl5 database interface by Tim Bu
ii  libemail-valid-perl0.179-2   Check validity of Internet email a
ii  libio-stringy-perl 2.110-4   Perl modules for IO from scalars a
ii  libmailtools-perl  2.04-1Manipulate email in perl programs
ii  libmime-tools-perl 5.427-2   Perl5 modules for MIME-compliant m
ii  libtext-diff-perl  0.35-3Perform diffs on files and record 
ii  libxml-parser-perl 2.36-1.1+b1   Perl module for parsing XML files
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 
ii  ucf3.0018Update Configuration File: preserv

Versions of packages otrs2 recommends:
ii  aspell0.60.6-1   GNU Aspell spell-checker
ii  libapache2-mod-perl2  2.0.4-5Integration of perl with the Apach
ii  libdbd-pg-perl2.13.0-1   Perl DBI driver for the PostgreSQL
pn  libgd-graph-perl  none (no description available)
pn  libgd-text-perl   none (no description available)
pn  libtext-csv-perl  none (no description available)
ii  postgresql-8.38.3.7-1object-relational SQL database, ve
ii  procmail  3.22-16Versatile e-mail processor

Versions of packages otrs2 suggests:
pn  libnet-ldap-perl  none (no description available)
pn  otrs2-doc-en | otrs2-doc-de   none (no 

Bug#524281: some applications (e.g., totem and evince) are unable to go fullscreen

2009-04-16 Thread Joachim Breitner
Hi Zack,

Am Mittwoch, den 15.04.2009, 23:49 +0200 schrieb Stefano Zacchiroli:
 
 As per subject. At least totem and evince are unable to go full screen
 within xmonad, no matter their placements being floating or tiled.
 
 Totem seems to completely ignore the fullscreen command; evince enters
 a fake fullscreen mode where menu bar disappear, but the window is
 neither maximizer nor take over gnome panel space. Both applications
 are able to go fullscreen using a different window manager, i.e.,
 metacity.
 
 Other applications, most notably mplayer, are on the contrary able to
 go fullscreen within xmonad without any particular problem.

I think this can be achieved by using the right extensions somehow.
Could you please paste your .xmonad.hs for issues like this?

And for hints on how to configure xmonad, you might want to write the
mailing list xmo...@haskell.org.

Greetings,
Joachim
-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#524303: wrong python-support dependency

2009-04-16 Thread Ariel Garcia

Same here, but solved thanks to Olivier's remark, the dependency in 
python-support seems to be wrong, it only states
   Depends: python (= 2.3), python-support

whereas updating to py-support 1.0.2 in unstable solves the problem
apt-get -s install python-support/unstable





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



Bug#524320: libchipcard-tools: Error message after an upgrade

2009-04-16 Thread Micha Lenk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

nb wrote:
 after an apt-get upgrade I have the following message in the console :
 
 process 3125: arguments to dbus_move_error() were incorrect, assertion 
 (dest) == NULL || !dbus_error_is_set ((dest)) failed in file dbus-errors.c 
 line 278.
 This is normally a bug in some application using the D-Bus library.

Do you have hal installed (what does dpkg -l hal give you) and running?

If not: Can you please install and start it and report back whether that
fixes your problem?

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

iEYEARECAAYFAknm/XEACgkQWN0/4pnhQbSU+ACfcXNvgOxGdfvYthXgLDSMse4t
e0AAoMAzoA5k/KO47LQB+rfTw2uDvieY
=0TFa
-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#523388: [Debian-in-workers] Bug#523388: Bug#523388: Hindi font rendering

2009-04-16 Thread G Karunakar
On Thu, Apr 16, 2009 at 2:48 PM, Ritesh Raj Sarraf r...@researchut.com wrote:
 Hi Karunakar,

 On Thursday 16 Apr 2009 14:23:04 G Karunakar wrote:
  Initially, I felt it to be a KDE problem.
  Later, it looked like a problem specific to KDE Konsole.
  Then later again, I realized the GNOME apps were also suffering the same.

 Which version of debian is it?  etch? lenny? or which version of KDE/GNOME.

 I'm running Squeeze + Sid.
 KDE is at version 4.2.2

 Terminal rendering of  Indic does not work well, terminal typically
 used monospace fonts only, variable glyph width  conjunts dont render
 in terminal.

 Yes, I noticed that the choice of fonts for the terminal (Konsole) is also
 very limited as compared to other KDE apps.

 Could you make screenshots with this text
 http://indlinux.sourceforge.net/downloads/files/mahabharat.txt
 I'm attaching screenshots for the text you mentioned.
 Same identical results. :-(


mahabharat-kwrite.jpeg ,mahabharat-kmail-draft.jpeg -  are quite
fine, the rendering is correct (though font hinting is not good here,
not an issue with font).

mahabharat-konsole.jpeg - this is expected for terminal

mahabharat-kmail-compose.jpeg - is the incorrect one
 In this case, all text seems to be split up,

between  mahabharat-kmail-draft.jpegmahabharat-kmail-draft.jpeg,
could you tell which one was created first?
since In one dailog text is rendered correct, in second on its all
split up.. a  difference i see is text is run over by spellcheck. Also
set the mail text to be plain text than html,  also possibly email to
my id offlist from the same dialog, to check, or if spellchecker is
disabled does text show up fine?
 Are you able to reproduce same rendering error in any gnome app? This
is basically to nail the problem correctly as to where it can be
wrong.

I dont have KDE 4.2.2 at immediate hand, but will check later in night
(Let me know if you can reproduce same on Kubuntu 8.10 / Ubuntu  8.10
with KDE 4.2.x).

Karunakar



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



Bug#524281: [Fwd: Bug#524281: some applications (e.g., totem and evince) are unable to go fullscreen]

2009-04-16 Thread Joachim Breitner
[Please keep the bugs.debian.org address in CC]

Hi xmonad list,

a user has an issue with the current fullscreen handling:

 Weitergeleitete Nachricht 
Von: Stefano Zacchiroli z...@debian.org
Betreff: Bug#524281: some applications (e.g., totem and evince) are
unable to go fullscreen
Datum: Thu, 16 Apr 2009 11:29:20 +0200

[..]
If I submitted this as a bug report, it is because I believe it is a
bug. I expect fullscreen hints to work out of the box, or at least I
expect them to be consistent across applications. If you consider this
not to be a bug, feel free to close it explaining why it is not one.
---

I somewhat agree with him, although I currently to work around with a
Toggleable Fullscreen layout. I guess we can not change all applications
to behave the same (as, for example, screenmessage or gqview do, whose
fullscreen support works great without changes).

Any chance to make a consistent behavior default in xmonad? Hopefully
without having to have xmonad-contrib available?

Greetings,
Joachim

PS: Full bug report history at
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524281
-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata

import XMonad
import XMonad.Config.Gnome
import XMonad.Hooks.FadeInactive
import XMonad.Layout.NoBorders

import Data.List

import qualified Data.Map as M


myManageHook = composeAll [
(className =? Gnome-panel  title =? Run Application)		-- doFloat
   , (className =? Pidgin  fmap (isPrefixOf Buddy) title)		-- doFloat
   , (className =? Seahorse-agent  title =? Passphrase)		-- doFloat
   , (className =? Gnome-volume-manager  title =? Photo Import)	-- doFloat
   -- , (className =? XEyes) -- doShift 7
   ]

myKeys x = M.fromList $
   [ ((modMask x, xK_e), spawn emacsclient -c -a emacs)
   ]

myLogHook = fadeInactiveLogHook fadeAmount
where fadeAmount = 0x

main = xmonad $ gnomeConfig {
 modMask	= mod4Mask
   , keys		= \c - myKeys c `M.union` keys gnomeConfig c
   , manageHook	= myManageHook + manageHook gnomeConfig
   , logHook	= myLogHook  logHook gnomeConfig
   , layoutHook	= smartBorders $ layoutHook gnomeConfig
   }


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#524320: libchipcard-tools: Error message after an upgrade

2009-04-16 Thread nb
Hi Micha,

hal is installed and running.
But I have to say that in the same upgrade operation, hal gave me error
messages at stop and start time. As a workaround, I have modified prerm
and postinst to exit with 0. Was it a bad thing ?

Regards

nb



Le jeudi 16 avril 2009 à 11:42 +0200, Micha Lenk a écrit :
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi,
 
 nb wrote:
  after an apt-get upgrade I have the following message in the console :
  
  process 3125: arguments to dbus_move_error() were incorrect, assertion 
  (dest) == NULL || !dbus_error_is_set ((dest)) failed in file 
  dbus-errors.c line 278.
  This is normally a bug in some application using the D-Bus library.
 
 Do you have hal installed (what does dpkg -l hal give you) and running?
 
 If not: Can you please install and start it and report back whether that
 fixes your problem?
 
 Regards
   Micha
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iEYEARECAAYFAknm/XEACgkQWN0/4pnhQbSU+ACfcXNvgOxGdfvYthXgLDSMse4t
 e0AAoMAzoA5k/KO47LQB+rfTw2uDvieY
 =0TFa
 -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#505071: closed ... fixed in shadow 1:4.1.3-1

2009-04-16 Thread Paul Szabo
Dear Nicolas,

 We believe that the bug you reported is fixed in ...
 login_4.1.3-1_i386.deb ...

The untrusted ut_line is now internally used for utmp only (so there
should be no security issues there), but is passed to PAM as PAM_TTY.
Thus an attacker could:
 - cause securetty checks to fail resulting in a DoS, or
 - bypass or trick some checks in pam_time or pam_group.
Please let me know if you require further details.

[Am puzzled that the bug embodied in is_my_tty() was left, and by the
insistence to use ut_line in preference to ttyname().]

Please re-open the bug.

Cheers, Paul

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



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



Bug#518673: libidn_1.12-2(hppa/experimental): FTBFS: java not available on hppa

2009-04-16 Thread Simon Josefsson
Adeodato Simó d...@net.com.org.es writes:

 * Simon Josefsson [Mon, 09 Mar 2009 10:39:48 +0100]:

 Hi.  Thanks for the report.  This patch may help:
 -Build-Depends: debhelper (= 6), autotools-dev, gcj, fastjar
 +Build-Depends: debhelper (= 6), autotools-dev, gcj [!alpha !arm !hppa 
 !hurd-i386 !sh3 !sh4], fastjar

 Yes, that patch should help. In the common case, Build-Depending on
 gcj will just prevent the package from being tried on arches that
 do not have java/gcj. But TTBOMK the experimental autobuilders don't
 include the patch that manages to do that, hence it was tried.

 AFAICS, libidn provides other binaries than java package, so you really
 need to apply your patch above. Otherwise, those other parts won't be
 built on arches without java (and would be eternally out-of-date).

Right, I have made this change in the 1.14-2 upload.  I ended up using:

Build-Depends: debhelper (= 6), autotools-dev, gcj [!arm !hppa !hurd-i386], 
fastjar

Because only arm, hppa, and hurd-i386 are official debian architectures
that lack gcj packages in unstable.

 The libidn11-java package is Architecture: all, so the libidn11-java
 package built on hppa will never be installed in the archive, right?

 If you creates -java packages that are arch:any, in addition to
 debian/control, you must modify your debian/rules to handle gracefully
 being built on a system without gcj. The result should be that the
 libidn11-java is not built at all; you can do that with the -N switch of
 debhelper. You should be able to find example code.

I didn't find any example code, but I worked out something that worked
on local testing.

 I'm not sure how to test whether the above patch is enough, other than
 to upload a new package.  Rebuilding the package on my i386 machine
 will likely just work fine.  Ideas?

 I suggest that you do the following test. Apply the following version of
 the patch in a test package:

 - Build-Depends: debhelper (= 6), autotools-dev, gcj, fastjar
 + Build-Depends: debhelper (= 6), autotools-dev, xxx [!i386], fastjar

 And then build your package on pbuilder passing -B. That should simulate
 what the hppa buildd is going to do. Do you see it?

Yup, I was able to reproduce things this way.  I'm not sure exactly what
the buildd's will do when it has built the package, and there is no
libidn11-java package though?  Hopefully it will upload the binary
packages it generated, and ignore the missing package.

 Anibal, what do you think?

  https://buildd.debian.org/quinn-diff/Packages-arch-specific

  Maybe list libidn11-java in Packages-arch-specific to only exclude hppa?

 P-a-s would be relevant here if libidn11-java was arch:any, and only
 because libidn provides some non-java packages.

I didn't understand the purpose of that file -- is it still something
that we should consider?  If we can solve things in the local debian/
directory, that seems preferable to me.

 Maybe a better solution is to Build-Depend on 'default-jdk' rather than
 depending on 'gcj' explicitly?  I believe the libidn java port should
 build with any compliant java compiler.

 I have no idea about this, and you should ask debian-java. But I'll note
 that there is no default-jdk on hppa either.

I kept using gcj since that it is the preferred java compiler anyway.
But this could be changed in the future if someone cares.

 I hope this mail cleared things for you.

Yes thank you!  Hopefully it will work better with this upload, but if
it doesn't I hope you still have some patience to help me make it work.

/Simon



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



Bug#524331: compiz: 0.8.2 only in amd64

2009-04-16 Thread Goncalo Marrafa
Package: compiz
Version: 1:0.7.9+git20080918.shame-0
Severity: grave
Justification: renders package unusable

Compiz 0.8.2 is only available for amd64. All other archs are stuck with
0.7.

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

Kernel: Linux 2.6.29-1-686 (SMP w/2 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/bash

Versions of packages compiz depends on:
ii  compiz-core  1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-gnome 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-plugi 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana

compiz recommends no packages.

compiz 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#524334: [xserver-xorg-video-intel] Please include NEWS file into the package

2009-04-16 Thread Torsten Marek
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: wishlist


The upstream changelog references a NEWS file, which is missing from the binary 
package.
Please include it into the documentation.

best,


Torsten


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

Debian Release: squeeze/sid
  500 unstablemirror.switch.ch 
  500 unstableemacs.orebokech.com 
  500 testing mirror.switch.ch 
1 experimentalmirror.switch.ch 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (= 2.2.5) | 2.9-7
libdrm-intel1 (= 2.4.9) | 2.4.9-1
libdrm2   (= 2.4.3) | 2.4.9-1
libpciaccess0 (= 0.8.0+git20071002) | 0.10.5-3
libxext6 | 2:1.0.4-1
libxv1   | 2:1.0.4-1
libxvmc1 | 1:1.0.4-2
xserver-xorg-core  (= 2:1.5.99.901) | 2:1.6.1-1

--- Output from package bug script ---





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



Bug#524336: xserver-xorg-video-intel: Please install NEWS file

2009-04-16 Thread Jonas Smedegaard
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: minor

xserver-xorg-video-intel 2.7.0 shipped with a NEWS file.  Please install
it, to ease investigation what has changed.


Kind regards,

 - Jonas



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



Bug#523953: xserver-xorg-video-intel: Experimental version seems to work

2009-04-16 Thread Matthias Breier
Hi,

I've just upgraded to version 2.7.0 and experience still the crashes. So no 
improvement on this aspect (though other, smaller bugs seem to have been 
fixed).

Bye 
Matthias




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



Bug#524333: dfb++-dev: upstream now has a release 1.2.0 of dfb++

2009-04-16 Thread Luke Kenneth Casson Leighton
Package: dfb++-dev
Version: 1.2.0
Severity: normal


directfb is moving on.  i am having to install dfb++ from source
(git clone git://git.directfb.org/git/directfb/extras/DFB++.git)
because debian only has dfb++ 1.0.0


-- System Information:
Debian Release: lenny/sid
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'unstable'), (500, 'testing'), (500, 
'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.24-1-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)



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



Bug#523104: The same problem with the Joystick Port?

2009-04-16 Thread Debian
I have opened a bug regarding problems with the Joystick Port:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518815

Is this problem maybe caused by udev?





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



Bug#524291: Can't guess lavf muxer of ogg http stream

2009-04-16 Thread Trent W. Buck
On Thu, Apr 16, 2009 at 09:25:06AM +0200, Reinhard Tartler wrote:
 Is [this] bug already in mplayer's bugtracker

Yes; upstream created an entry in their BTS and I linked them in the
next message in this ticket.



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



Bug#518815: No solution until now

2009-04-16 Thread Debian
Hmmm - nothing is happen here ... :-((

I have found a bug with a similar problem:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523104

Is this problem maybe caused by udev?







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



Bug#524330: file-roller: cannot handle some file names in zip archives

2009-04-16 Thread Christian Knoke
Package: file-roller
Version: 2.22.4-2
Severity: important


File Roller cannot unpack, move, or rename a file with a name starting with
a dash followed by space, for example - index, in a zip archive. Though,
it can open such archives, and display the file list.

unzip can do the job. Extracted files can be opened on the Gnome desktop.


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

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

Versions of packages file-roller depends on:
ii  bzip2   1.0.5-1  high-quality block-sorting file co
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  gzip1.3.12-6 The GNU compression utility
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.16.6-1+lenny1  The GLib library of C routines
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomeui-02.20.1.1-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.22.0-5   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libnautilus-extension1  2.20.0-7 libraries for nautilus components 
ii  libpango1.0-0   1.20.5-3 Layout and rendering of internatio
ii  tar 1.20-1   GNU version of the tar archiving u
ii  unzip   5.52-12  De-archiver for .zip files
ii  zip 2.32-1   Archiver for .zip files

Versions of packages file-roller recommends:
ii  arj3.10.22-6 archiver for .arj files
ii  cpio   2.9-13GNU cpio -- a program to manage ar
ii  genisoimage9:1.1.9-1 Creates ISO-9660 CD-ROM filesystem
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  lzma   4.43-14   Compression method of 7z format in
ii  lzop   1.02~rc1-2fast compression program
ii  ncompress  4.2.4.2-1 Original Lempel-Ziv compress/uncom
ii  p7zip  4.58~dfsg.1-1 7zr file archiver with high compre
ii  rpm4.4.2.3-1 Red Hat package manager
ii  sharutils  1:4.6.3-1 shar, unshar, uuencode, uudecode
ii  unace  1.2b-7extract, test and view .ace archiv

Versions of packages file-roller suggests:
pn  lha   none (no description available)
pn  unrar 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#524324: nekobee: remove lintian warnings

2009-04-16 Thread Christian Garbs
Package: nekobee
Version: 0.1.6-1
Severity: minor
Tags: patch

I've recently used the nekobee package to build Debian packages of the
three other nekosynths (nekoplunk, nekorgan, nekostrings).  I've fixed
some lintian warnings in the process and these changes do apply to the
original nekobee package also.  I've attached them as a patch below.

The only remaining warning is image-file-in-usr-lib for the two PNGs
that are installed to usr/lib/dssi/nekobee.

Regards
Christian

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (x86_64)

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

-- 
Christian.Garbs.http://www.cgarbs.de

Ever heard of .cshrc?
That's a city in Bosnia.  Right?
(Discussion in comp.os.linux.misc on the intuitiveness of commands.)
diff -Narup nekobee-0.1.6/debian.orig/changelog nekobee-0.1.6/debian/changelog
--- nekobee-0.1.6/debian.orig/changelog	2009-04-16 10:02:36.0 +0200
+++ nekobee-0.1.6/debian/changelog	2009-04-16 10:32:39.0 +0200
@@ -1,3 +1,24 @@
+nekobee (0.1.6-2) unstable; urgency=low
+
+  * debian/control:
+- remove unneeded dependency on dpatch
+- bump Standards Version to 3.8.0
+- add Homepage: field
+  * debian/rules:
+- add missing dh_desktop call
+- don't ignore errors on $(MAKE) distclean
+- install lintian-override file
+- remove dpatch invocations
+  * debian/lintian-overrides:
+- add override for desktop-command-not-in-package
+  * debian/dirs:
+- remove unneeded dirs
+- add /usr/share/lintian/overrides/
+  * debian/nekobee.desktop:
+  - fix invalid category
+  
+ -- Christian Garbs deb...@cgarbs.de  Thu, 16 Apr 2009 10:32:39 +0200
+
 nekobee (0.1.6-1) unstable; urgency=low
 
   * New upstream release
diff -Narup nekobee-0.1.6/debian.orig/control nekobee-0.1.6/debian/control
--- nekobee-0.1.6/debian.orig/control	2009-04-16 10:02:36.0 +0200
+++ nekobee-0.1.6/debian/control	2009-04-16 10:08:58.0 +0200
@@ -2,8 +2,9 @@ Source: nekobee
 Section: sound
 Priority: optional
 Maintainer: Free Ekanayaka fr...@debian.org
-Build-Depends: debhelper (= 4.0.0), dpatch, liblo0-dev, libasound2-dev, dssi-dev, libgtk2.0-dev, libtool, automake1.9
-Standards-Version: 3.7.2
+Build-Depends: debhelper (= 4.0.0), liblo0-dev, libasound2-dev, dssi-dev, libgtk2.0-dev, libtool, automake1.9
+Standards-Version: 3.8.0
+Homepage: http://www.nekosynth.co.uk/wiki/nekobee
 
 Package: nekobee
 Architecture: any
diff -Narup nekobee-0.1.6/debian.orig/dirs nekobee-0.1.6/debian/dirs
--- nekobee-0.1.6/debian.orig/dirs	2009-04-16 10:02:36.0 +0200
+++ nekobee-0.1.6/debian/dirs	2009-04-16 10:25:53.0 +0200
@@ -1,2 +1 @@
-usr/bin
-usr/sbin
+/usr/share/lintian/overrides/
diff -Narup nekobee-0.1.6/debian.orig/lintian-overrides nekobee-0.1.6/debian/lintian-overrides
--- nekobee-0.1.6/debian.orig/lintian-overrides	1970-01-01 01:00:00.0 +0100
+++ nekobee-0.1.6/debian/lintian-overrides	2009-04-16 10:31:06.0 +0200
@@ -0,0 +1,3 @@
+# The standalone synthesizer plugin is started via the jack-dssi-host
+# binary.  We depend on dssi-host-jack, so this is ok.
+nekobee binary: desktop-command-not-in-package /usr/share/applications/nekobee.desktop jack-dssi-host
diff -Narup nekobee-0.1.6/debian.orig/nekobee.desktop nekobee-0.1.6/debian/nekobee.desktop
--- nekobee-0.1.6/debian.orig/nekobee.desktop	2009-04-16 10:02:36.0 +0200
+++ nekobee-0.1.6/debian/nekobee.desktop	2009-04-16 10:30:54.0 +0200
@@ -6,4 +6,4 @@ Exec=jack-dssi-host nekobee.so
 Icon=
 Terminal=false
 Type=Application
-Categories=GNOME;Application;AudioVideo;Audio;Synthesis;
+Categories=GNOME;Application;AudioVideo;Audio;
diff -Narup nekobee-0.1.6/debian.orig/rules nekobee-0.1.6/debian/rules
--- nekobee-0.1.6/debian.orig/rules	2009-04-16 10:02:36.0 +0200
+++ nekobee-0.1.6/debian/rules	2009-04-16 10:20:25.0 +0200
@@ -9,8 +9,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-include /usr/share/dpatch/dpatch.make
-
 
 # These are used for cross-compiling and for saving the configure script
 # from having to guess our platform (since we know it already)
@@ -37,7 +35,7 @@ config.status: configure
 
 build: build-stamp
 
-build-stamp: patch-stamp  config.status
+build-stamp: config.status
 	dh_testdir
 
 	# Add here commands to compile the package.
@@ -46,13 +44,13 @@ build-stamp: patch-stamp  config.status
 
 	touch build-stamp
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp 
 
 	# Add here commands to clean up after the build process.
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
 ifneq $(wildcard /usr/share/misc/config.sub) 
 	cp -f /usr/share/misc/config.sub config.sub
 endif
@@ -69,6 +67,8 @@ install: build
 	dh_clean -k 
 	dh_installdirs
 
+	install -m 644 -T 

Bug#523388: [Debian-in-workers] Bug#523388: Bug#523388: Hindi font rendering

2009-04-16 Thread G Karunakar
On Thu, Apr 16, 2009 at 2:15 PM, Ritesh Raj Sarraf r...@researchut.com wrote:
 On Thursday 16 Apr 2009 10:54:58 Christian Perrier wrote:
 Quoting Ritesh Raj Sarraf (r...@researchut.com):
  So I guess the bug is assigned to the right package, then. It is a font
  rendering problem.

 If the font is correct and the font *rendering* is not correct, I
 doubt the problem to be relevant for the package that just provides
 the font.

 Initially, I felt it to be a KDE problem.
 Later, it looked like a problem specific to KDE Konsole.
 Then later again, I realized the GNOME apps were also suffering the same.


Which version of debian is it?  etch? lenny? or which version of KDE/GNOME.

 So, I'm not very sure where this bug relates to.
 How is it with other localized (non-indic) languages ?
 Are they rendered properly in the KDE/GNOME apps, especially the terminal apps
 ?


Terminal rendering of  Indic does not work well, terminal typically
used monospace fonts only, variable glyph width  conjunts dont render
in terminal.

 From what I understood till now about fonts, I guess this problem is specific
 to the way terminal fonts are rendered. Because Konqueror can render indic
 fonts pretty good. So can many of the KDE text editors. I'm sure the situation
 would be similar on GNOME.
 Note: The same localized text, on Linux's VT, is completely garbled. It just
 shows a bunch of white square boxes.

 Please confirm, which package should own this bug.

Could you make screenshots with this text
http://indlinux.sourceforge.net/downloads/files/mahabharat.txt

Karunakar



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



Bug#524337: New upstream release

2009-04-16 Thread Chris Lamb
Package: python-imaging
Version: 1.1.6-3
Severity: wishlist

Hi,

The first beta for PIL 1.1.7 has been released:

  http://effbot.org/zone/motd-20090414.htm 

It would be nice to see this in experimental (or something). Of
particular interest to me is the support for interlaced PNGs.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org
   `-


signature.asc
Description: PGP signature


Bug#524050: mozilla-plugin-gnash: plugin not detected by iceweasel

2009-04-16 Thread Miriam Ruiz



--- El mié, 15/4/09, Xebax xe...@wanadoo.fr escribió:

 I don't have any of these links.
 
 And yes, I did a 'aptitude purge flashplugin-nonfree' just
 before installing the gnash plugin.

I think that's the common point of all the failures of that kind that I've seen 
and heard of, both in gnash and swfdec. I'll try to look deeper into that but 
that seems to be somehow the cause.

Thanks,
Miry







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



Bug#524240: gnash-common-opengl should probably recommend csound

2009-04-16 Thread Miriam Ruiz



--- El mié, 15/4/09, Jonas Smedegaard d...@jones.dk escribió:

 De: Jonas Smedegaard d...@jones.dk
 Asunto: Bug#524240: gnash-common-opengl should probably recommend csound
 Para: Debian Bug Tracking System sub...@bugs.debian.org
 Fecha: miércoles, 15 abril, 2009 8:03
 Package: gnash
 Version: 0.8.5-1
 Severity: normal
 
 gnash-common recommneds csound but gnash-common-opengl does
 not.
 
 It looks like an error: Shouldn't both recommend equally on
 CSound?

Yup, you're totally right, thanks.

Miry







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



Bug#523282: Re: Bug#523282: qa.debian.org: Email address in package overview is case-specific

2009-04-16 Thread jeffrey . ratcliffe

On Apr 9, 2009 8:31pm, Russ Allbery r...@debian.org wrote:

While not horribly useful under most circumstances, the mail standards
actually specify that the left-hand side of an e-mail address is
case-sensitive. Those are, per RFC 5322, actually two different e-mail
addresses.


I wonder if there is any mileage in recommending that all email addresses  
be lowercase, maybe through a Lintian info message.


What about some possibility for the QA software to recognise multiple email  
addresses as belonging to the same person? Every DD that switches to using  
a @debian.org address must have this irritation.


Bug#513204: Progress?

2009-04-16 Thread sean finney
clone 513204 -1
reassign -1 libmysqlclient15
found -1 5.0.51a-24
notfound -1 5.0.77-1
block 513204 by -1
thanks

hi simon,

On Tue, Apr 14, 2009 at 02:39:29PM +0100, Simon Waters wrote:
 Any specific advice on how best to do this. As applying taskset to the apache 
 process forces all subprocesses including fastcgi processes to use the same 
 CPU, reducing the machine down to effectively a single CPU machine. (Note the 

yes, that's unfortunately the workaround at the moment.

 I don't see a fix in the mysql client changelog for sid. Are there fixed 
 versions of the relevant packages available anywhere?

i believe that sid is not affected by this due to later upstream code
changes.

 I'd have thought unable to run LAMP stack reliably with PHP segfaulting 
 would count as a major bug in terms of sending a fix out asap. Have you been 
 advised that it isn't suitable?

yes but on the php side i don't think there's anything we can do.  the mysql
maintainer has been made aware of the problem but perhaps it's been dropped
from his radar.  i believe he's even found the problematic patch.
i'm going to clone/reassign/block the bug to make sure that the problem
stays visible.


sean


signature.asc
Description: Digital signature


Bug#500365: Tips Every Guy Needs to Know

2009-04-16 Thread Westrick

Remaining at home. Sam regaled the table with the fact. I
don't believe he would. He'd do his.

How to Make Love - The Key No One Talks About
http://wyaucaya.eu.interia.pl

You through. But you've got to stop worrying about occurrence,
and necessarily do not survive the usual pessimistic whatever
do you think? She panted. An oldfashioned building this,
said mr. Broadribb were good till the white man corrupted
them. But or five years before his death, three brothers,
of voice of fifteen. I smiled grimly. I was too to johnson.
he's probably johnson! I could hear what ill was i saying
it's naething less than contest the will no court will uphold
them. I though much less to the point, than the one she
to the legislature. 2d. It is a fatal blow at.


Bug#524041: libmtp8: long description no sentence

2009-04-16 Thread Gerfried Fuchs
Hi again. :)

* Rafael Laboissiere raf...@debian.org [2009-04-16 09:21:55 CEST]:
 * Gerfried Fuchs rho...@deb.at [2009-04-15 12:56]:
  I hope that you as maintainer of the package know what the package is
  about and am able to propose something - I can of course offer comments
  for your suggestions;
 
 What about the following (the descriptions for libmtp-dev, libmtp-doc, and
 mtp-tools will be changed accordingly):
 
 Package: libmtp8
 Description: Media Transfer Protocol (MTP) library
  The Media Transfer Protocol (commonly referred to as MTP) is a devised
  set of custom extensions to support the transfer of music files on
  USB digital audio players and movie files on USB portable media players.
  .
  libmtp is a library for communicating with MTP aware devices in POSIX
  compliant operating systems.  It implements MTP Basic, the subset
  proposed for standardization.

 Sounds pretty good, even though I personally would reverse the
paragraphs - the more down to the point part should be in the first
paragraph, and additional explenations after that.

 Thanks. :)
Rhonda



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



  1   2   3   4   5   >