Bug#524817: resume not completely working after last upgrade on Thinkpad R61

2009-04-20 Thread Andrei Popescu
Package: acpi-support
Version: 0.114-1
Severity: important

Hello,

Upgrading to this version on my Thinkpad R61 has following problems:

- vt is not switched to 7 (pressing Alt+F7 will fix this)
- module iwlagn is not reloaded (modprobe iwlagn is enough)
- PCM volume is set to 0, Master is set to 0 and muted

There might be other issues, but these are the one I noticed since the 
upgrade. Downgrading to 0.109-11 fixes everything, so I'll stick to that 
version until this is fixed, but I'm happy to test new packages if 
needed.

Regards,
Andrei

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

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

Versions of packages acpi-support depends on:
ii  acpi-support-base 0.114-1scripts for handling base ACPI eve
ii  acpid 1.0.8-7Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-12user information lookup program
ii  hdparm9.12-2 tune hard disk parameters for high
ii  laptop-detect 0.13.7 attempt to detect a laptop
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip
ii  powermgmt-base1.30+nmu1  Common utils and configs for power
ii  vbetool   1.1-2  run real-mode video BIOS code to a
ii  x11-xserver-utils 7.4+2  X server utilities

Versions of packages acpi-support recommends:
ii  dbus 1.2.12-1simple interprocess messaging syst
ii  hal  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer
ii  nvclock  0.8b4-1 Allows you to overclock your nVidi
ii  pm-utils 1.2.5-2 utilities and scripts for power ma
ii  radeontool   1.5-5   utility to control ATI Radeon back

Versions of packages acpi-support suggests:
pn  laptop-mode-tools 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#524567: resize2fs: -M does not work as expected

2009-04-20 Thread Wouter Verhelst
On Sat, Apr 18, 2009 at 11:32:55PM -0400, Theodore Tso wrote:
 On Sat, Apr 18, 2009 at 09:05:19AM +0200, Wouter Verhelst wrote:
  Package: e2fsprogs
  Version: 1.41.3-1
  Severity: normal
  
  When running resize2fs on an offline filesystem, after calling e2fsck -f
  on the filesystem, it now consistently reports 'No space left on
  device'. Freeing up space before retrying does not help; and this issue
  also appears on a 5G filesystem with 758M of used diskspace, so the
  notion that there would not be enough free space would seem to be in
  error.
 
 Hi Wouter, 
 
 Is this for an ext4 or an ext3 filesystem?

Ah, indeed, that was ext4. Sorry; I should've mentioned that.

 If it is an ext4 filesystem it's likely to be a problem that can be solved
 with these patches:
 
 http://comments.gmane.org/gmane.comp.file-systems.ext4/12763
 
 or, you may find this interface more convenient:
 
 http://patchwork.ozlabs.org/patch/26175/
 http://patchwork.ozlabs.org/patch/26176/
 http://patchwork.ozlabs.org/patch/26174/

I tried, but those patches do not cleanly apply to the version in
Debian. I presume there's a git repository somewhere that I can clone?
I'll happily try compiling and running that one, if necessary.

-- 
The biometric identification system at the gates of the CIA headquarters
works because there's a guard with a large gun making sure no one is
trying to fool the system.
  http://www.schneier.com/blog/archives/2009/01/biometrics.html



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



Bug#524816: the previous patch was crap

2009-04-20 Thread Russell Coker
The attached patch is much better - it compiles at least.

-- 
russ...@coker.com.au
http://etbe.coker.com.au/  My Main Blog
http://doc.coker.com.au/   My Documents Blog
diff -ru libcsoap-1.1.0/nanohttp/nanohttp-ssl.c libcsoap-1.1.0/nanohttp/nanohttp-ssl.c
--- libcsoap-1.1.0/nanohttp/nanohttp-ssl.c	2006-07-10 02:24:19.0 +1000
+++ libcsoap-1.1.0/nanohttp/nanohttp-ssl.c	2009-04-20 15:44:30.0 +1000
@@ -75,6 +75,7 @@
 #include nanohttp-common.h
 #include nanohttp-socket.h
 #include nanohttp-ssl.h
+#include nanohttp-server.h
 
 #ifdef HAVE_SSL
 
@@ -546,6 +547,19 @@
 hssl_write(hsocket_t * sock, const char *buf, size_t len, size_t * sent)
 {
   int count;
+  fd_set fds;
+  struct timeval timeout;
+  int ret;
+
+  FD_ZERO(fds);
+  FD_SET(sock-sock, fds);
+  timeout.tv_sec = httpd_get_timeout();
+  timeout.tv_usec = 0;
+  ret = select(sock-sock + 1, NULL, fds, NULL, timeout);
+  if(ret == 0)
+return herror_new(hssl_write, HSOCKET_ERROR_SEND, Socket timeout);
+  if(ret == -1)
+return herror_new(hssl_write, HSOCKET_ERROR_SEND, select error);
 
 /*  log_verbose4(sock-sock=%d, sock-ssl=%p, len=%li, sock-sock, sock-ssl, len); */
 
@@ -586,6 +600,19 @@
 hssl_write(hsocket_t * sock, const char *buf, size_t len, size_t * sent)
 {
   int count;
+  fd_set fds;
+  struct timeval timeout;
+  int ret;
+
+  FD_ZERO(fds);
+  FD_SET(sock-sock, fds);
+  timeout.tv_sec = httpd_get_timeout();
+  timeout.tv_usec = 0;
+  ret = select(sock-sock + 1, NULL, fds, NULL, timeout);
+  if(ret == 0)
+return herror_new(hssl_write, HSOCKET_ERROR_SEND, Socket timeout);
+  if(ret == -1)
+return herror_new(hssl_write, HSOCKET_ERROR_SEND, select error);
 
   if ((count = send(sock-sock, buf, len, 0)) == -1)
 return herror_new(hssl_write, HSOCKET_ERROR_SEND, send failed (%s),


Bug#524818: msmtp: crontab and mutt difficulties to work

2009-04-20 Thread yellowprotoss
Package: msmtp
Version: 1.4.15-1
Severity: normal

Hello,

I noted that the msmtp is not working with the crontab. I use now the nbsmtp, 
to replace, and crontab can send email. 
simple test : * * * * * echo yes|mail robert  
crontab test did not work


So the configuration of the machine:
I installed those stuffs:
Code:

dpkg -l | grep msm
ii  msmtp   1.4.15-1  light 
SMTP client with support for server pr

and mutt

Code:

$ dpkg -l | grep mail
ii  iceape-mailnews 1.0.13~pre080614i-0etch1  
Iceape Mail  Newsgroups and Address Book
ii  kmail   4:3.5.9-5 KDE 
Email client
ii  kmailcvt4:3.5.9-5 KDE 
KMail mail folder converter
ii  libksieve0  4:3.5.9-5 KDE 
mail/news message filtering library
ii  libktnef1   4:3.5.9-5 
Library for handling KTNEF email attachments
ii  libmailtools-perl   2.03-1
Manipulate email in perl programs
ii  libmailutils1   1:1.2+dfsg1-4 GNU 
Mail abstraction library
rc  mailutils   1:1.2+dfsg1-4 GNU 
mailutils utilities for handling mail
ii  metamail2.7-54
implementation of MIME
ii  mime-support3.44-1MIME 
files 'mime.types'  'mailcap', and sup
ii  mutt1.5.18-6  
text-based mailreader supporting MIME, GPG,
ii  procmail3.22-16   
Versatile e-mail processor
rc  sendmail-base   8.14.3-5  
powerful, efficient, and scalable Mail Trans
rc  sendmail-bin8.14.3-5  
powerful, efficient, and scalable Mail Trans
ii  sendmail-cf 8.14.3-5  
powerful, efficient, and scalable Mail Trans

then the file of .muttrc:
Code:

# Boring details
set realname = frenchn00b
set from = frenchn00b.frenchn...@gmail.com
set use_from = yes
set envelope_from =yes

# Use a signature
#set signature=~/.signature

# Use msmtp rather than sendmail. Check that
# the path is correct for your system:
set sendmail=/usr/bin/msmtp

# If not set in ~/.bashrc:
set spoolfile = /var/spool/mail/frenchn00b


$ cat .msmtprc
Code:

#Gmail account

account gmail
host smtp.gmail.com
from frenchn00b.frenchn...@gmail.com
auth on
tls on
tls_certcheck off
user frenchn00b.frenchn...@gmail.com
password THEPASSWORDINCLEAR
port 587

then do this:
Code:

 mutt -e 'set content_type=text/html' frenchn00b.frenchn...@gmail.com -s 
subject hello  page.htm

and it should work to send emails, but but 

I can see successfully emails, really, from the shell. bash.

crontab does not like it. Any single trials from teh mutt or whatever into 
crontab causes problem. 

--
Install info:
http://www.linuxquestions.org/questions/linux-general-1/echo-mypage.htm-mutt-s-hello-news-myemailgmail.com-624938/page2.html

Best regards





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

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

Versions of packages msmtp depends on:
ii  debconf [debcon 1.5.24   Debian configuration management sy
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libgcrypt11 1.4.1-1  LGPL Crypto library - runtime libr
ii  libgnutls26 2.4.2-6+lenny1   the GNU TLS library - runtime libr
ii  libgpg-error0   1.4-2library for common error values an
ii  libgsasl7   0.2.26-2 GNU SASL library
ii  libidn111.8+20080606-1   GNU libidn library, implementation
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libntlm00.3.13-1 NTLM authentication library
ii  libtasn1-3  1.4-1Manage ASN.1 structures (runtime)
ii  ucf 3.0016   Update Configuration File: preserv
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages msmtp recommends:
ii  ca-certificates   20080809   Common CA certificates

msmtp suggests no packages.

-- debconf information:
  msmtp/host:
  msmtp/tls: false
  msmtp/maildomain:
  msmtp/sysconfig: false
  msmtp/auto_from: true
  msmtp/port: 25



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

Bug#496781: [Reportbug-maint] Bug#496781: reportbug: Creates bad signatures when signing utf8 text

2009-04-20 Thread Bjørn Mork
Sandro Tosi mo...@debian.org writes:

  Feel free to downgrade this bug to wishlist, or close it
 with wontfix if you find that most appropriate.

 Well, I'd rather come to an agreement with out about what to do. From
 the analysis you did, it seems this bug is in the external programs
 used by reportbug, and not in reportbug itself, so I'm kind of
 thinking about closing it, what do you think?

Agreed.  Please close.

I've tried to recreate the bug without success since my last reply.
Which indicates that it might just have been a configuration error
somewhere on my side.

Thanks for your attention,

Bjørn



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



Bug#524812: exec type, creates directive does not create

2009-04-20 Thread Tim Stoop

I'm not a maintainer, but thought I'd help here anyway:

Op 20-apr-2009, om 6:26 heeft Jayen Ashar het volgende geschreven:

  exec {
mail ja...@science.unsw.edu.au -s \kB available on /: `df / |  
tail -n 1 | sed -r 's/ +/	/g' | cut -f4` - `hostname`\:

  path = [/bin, /sbin, /usr/bin, /usr/sbin],
  creates = /var/tmp/partition_usage_20090420;
  }

does not create /var/tmp/partition_usage_20090420 as advertised and  
executes the command every time puppet runs


Correct, like the manual says: A file that *this*command*  
creates.[0] (emphasis added by me). You'll need to make sure that  
the command you execute creates the file. For example by adding   
touch /var/tmp/partition_usage_20090420 at the end of the command.


[0] http://reductivelabs.com/trac/puppet/wiki/TypeReference#creates

--
Kind regards,
Met vriendelijke groet,

Tim Stoop




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



Bug#524812: [Pkg-puppet-devel] Bug#524812: exec type, creates directive does not create

2009-04-20 Thread Russ Allbery
Jayen Ashar ja...@science.unsw.edu.au writes:

   exec {
 mail ja...@science.unsw.edu.au -s \kB available on /: `df / | tail -n 1 
 | sed -r 's/ +/ /g' | cut -f4` - `hostname`\:
   path = [/bin, /sbin, /usr/bin, /usr/sbin],
   creates = /var/tmp/partition_usage_20090420;
   }

 does not create /var/tmp/partition_usage_20090420 as advertised and
 executes the command every time puppet runs

creates doesn't mean quite what you think it means.  The creates
attribute tells Puppet that your command will create that file, and hence
the command should not be run if that file already exists.  It doesn't
tell Puppet to create the file; your command has to do that.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/



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



Bug#524812: exec type, creates directive does not create

2009-04-20 Thread Jayen Ashar
thank you for the clarification.  then i this bug is a documentation 
ambiguity.  i thought the doc was saying puppet creates this file, and 
so it would be useful if you wanted to execute something exactly once on 
every machine in your puppet pool.


Tim Stoop wrote:

I'm not a maintainer, but thought I'd help here anyway:

Op 20-apr-2009, om 6:26 heeft Jayen Ashar het volgende geschreven:

  exec {
mail ja...@science.unsw.edu.au -s \kB available on /: `df / | 
tail -n 1 | sed -r 's/ +//g' | cut -f4` - `hostname`\:

  path = [/bin, /sbin, /usr/bin, /usr/sbin],
  creates = /var/tmp/partition_usage_20090420;
  }

does not create /var/tmp/partition_usage_20090420 as advertised and 
executes the command every time puppet runs


Correct, like the manual says: A file that *this*command* creates.[0] 
(emphasis added by me). You'll need to make sure that the command you 
execute creates the file. For example by adding  touch 
/var/tmp/partition_usage_20090420 at the end of the command.


[0] http://reductivelabs.com/trac/puppet/wiki/TypeReference#creates

--Kind regards,
Met vriendelijke groet,

Tim Stoop



--
Jayen Ashar 
Technical Officer   
Computing Center
School of Mathematics and Statistics
M029, Red Center
The University of New South Wales SYDNEY NSW 2052
Ph: + 61 (2) 93857016
Fax: + 61 (2) 93857192
CRICOS provider code: 00098G



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



Bug#524815: [INTL:kk] Updated Kazakh translation

2009-04-20 Thread Christian Perrier
Quoting Timur Birsh (t...@linukz.org):
 Package: iso-codes
 Version: N/A
 Severity: wishlist
 Tags: l10n patch
 
 Please find attached the updated Kazakh translation of the iso-codes package.
 Sorry, forgot to attach the file. Please close previous bug.


:-)

You can always send additionnal information to an existing by report
by sending a mail to bugnr@bugs.debian.org. So, in that case, you
could have sent the file to 524...@bugs.debian.org

Similarly, you can close a bug yourself by just sending a mail to
bugnr-d...@bugs.debian.org, just as I'm doing right now.

The Debian BTS is something very opened. We just trust users for not
messing around with it and that basically works..:)


Anyway, thanks for your update. It will be committed.




signature.asc
Description: Digital signature


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

2009-04-20 Thread Hakan BAYINDIR
Package: kdebase-workspace-bin
Version: 4:4.2.2-2
Severity: normal
File: /usr/bin/plasma

When show only tasks that are minimized is selected under taskbar settings in 
plasma, all window buttons including minimized windows disappear. Present 
windows plugin is still able to present all windows. It's notable that some GTK 
applications' windows (such as pidgin's chat windows) vanish to background of 
the desktop rather than the taskbar area when the option is selected and the 
window is minimized. This behaviour is not observed in QT4 applications such as 
konsole under same circumstances.

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

Kernel: Linux 2.6.29-1-686-bigmem (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 kdebase-workspace-bin depends on:
ii  kaboom1.1.0  The Debian KDE settings migration 
ii  kdebase-runtime   4:4.2.2-1  runtime components from the offici
ii  kdebase-workspace-data4:4.2.2-2  shared data files for the KDE 4 ba
ii  kdebase-workspace-libs4+5 4:4.2.2-2  libraries provided by the KDE 4 ba
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE 4 appli
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libfontconfig12.6.0-3generic font configuration library
ii  libfreetype6  2.3.9-4FreeType 2 font engine, shared lib
ii  libgcc1   1:4.3.3-8  GCC support library
ii  libgl1-mesa-glx [libgl1]  7.4-2  A free implementation of the OpenG
ii  libglib2.0-0  2.20.1-1   The GLib library of C routines
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libpam0g  1.0.1-9Pluggable Authentication Modules l
ii  libphonon44:4.3.1-1  Phonon multimedia framework for Qt
ii  libplasma34:4.2.2-2  library for the KDE 4 Plasma deskt
ii  libpng12-01.2.35-1   PNG library - runtime
ii  libqimageblitz4   1:0.0.4-4  QImageBlitz image effects library
ii  libqt4-dbus   4.4.3-2Qt 4 D-Bus module
ii  libqt4-qt3support 4.4.3-2Qt 3 compatibility library for Qt 
ii  libqt4-script 4.4.3-2Qt 4 script module
ii  libqt4-svg4.4.3-2Qt 4 SVG module
ii  libqt4-xml4.4.3-2Qt 4 XML module
ii  libqtcore44.4.3-2Qt 4 core module
ii  libqtgui4 4.4.3-2Qt 4 GUI module
ii  libsm62:1.1.0-2  X11 Session Management library
ii  libsoprano4   2.2.2+dfsg.1-1 libraries for the Soprano RDF fram
ii  libstdc++64.3.3-8The GNU Standard C++ Library v3
ii  libstreamanalyzer00.6.5-1streamanalyzer library for Strigi 
ii  libusb-0.1-4  2:0.1.12-13userspace USB programming library
ii  libx11-6  2:1.2.1-1  X11 client-side library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxi62:1.2.1-2  X11 Input extension library
ii  libxinerama1  2:1.0.3-2  X11 Xinerama extension library
ii  libxklavier12 3.9-1  X Keyboard Extension high-level AP
ii  libxrandr22:1.3.0-2  X11 RandR extension library
ii  libxrender1   1:0.9.4-2  X Rendering Extension client libra
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  libxxf86misc1 1:1.0.1-3  X11 XFree86 miscellaneous extensio
ii  phonon4:4.3.1-1  metapackage for Phonon multimedia 
ii  plasma-widgets-workspace  4:4.2.2-2  KDE 4 base workspace Plasma widget
ii  x11-utils 7.4+1  X11 utilities
ii  x11-xserver-utils 7.4+2  X server utilities

Versions of packages kdebase-workspace-bin recommends:
ii  plasma-scriptengines  4:4.2.2-2  a metapackage to install all Plasm

Versions of packages kdebase-workspace-bin suggests:
ii  x11-xkb-utils 7.4+2  X11 XKB utilities

-- 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#524820: qemu: fails to use usb token product in virtual computer runs windowsxp

2009-04-20 Thread gulfstream
Package: qemu
Version: 0.10.1-1
Severity: normal

In order to use online bank services, I install a windowsxp in qemu because it 
supports ie only. The transactions of online bank need a usb token to encrypt 
and sign the messages. But the qemu does not support the usb token fine. I can 
view the certifcate which stores in the usb token, but the internet explorer 
crash when internet explorer use the certifcate stored in the usb token to 
encrypt and sign the messages of online bank services without any informations. 
I suspect the issue was lead by usb interface compatibility of qemu.


Best regards,
Gulfstream


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

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

Versions of packages qemu depends on:
ii  bochsbios  2.3.7-1   BIOS for the Bochs emulator
ii  libasound2 1.0.19-1  shared library for ALSA applicatio
ii  libbluetooth2  3.36-1Library to use the BlueZ Linux Blu
ii  libbrlapi0.5   3.10~r3724-1.1braille display access via BRLTTY 
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libesd-alsa0 [libesd0] 0.2.41-3  Enlightened Sound Daemon (ALSA) - 
ii  libgnutls262.6.4-2   the GNU TLS library - runtime libr
ii  libncurses55.7+20090404-1shared libraries for terminal hand
ii  libpulse0  0.9.14-2  PulseAudio client libraries
ii  libsdl1.2debian1.2.13-4+b1   Simple DirectMedia Layer
ii  libvdeplug22.2.2-3   Virtual Distributed Ethernet - Plu
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  openbios-ppc   1.0-3 PowerPC Open Firmware
ii  openbios-sparc 1.0-1 SPARC Open Firmware
ii  openhackware   0.4.1-4   OpenFirmware emulator for PowerPC
ii  vgabios0.6c-1VGA BIOS software for the Bochs an
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages qemu recommends:
ii  debootstrap 1.0.10lenny1 Bootstrap a basic Debian system
ii  sharutils   1:4.6.3-1shar, unshar, uuencode, uudecode
ii  vde22.2.2-3  Virtual Distributed Ethernet

Versions of packages qemu suggests:
pn  kqemu-source  none (no description available)
ii  samba 2:3.3.2-1  SMB/CIFS file, print, and login se
ii  sudo  1.7.0-1Provide limited super user privile

-- 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#524822: xserver-xorg-core: X: Libgcrypt warning: missing initialization - please fix the application

2009-04-20 Thread Sven Joachim
Package: xserver-xorg-core
Version: 2:1.6.1-1

The following message from libgrcypt11 appears in the syslog whenever X
starts:

X: Libgcrypt warning: missing initialization - please fix the application


-- 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  8. Jun 2006  /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1695356 15. Apr 13:47 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation GeForce 8500 GT (rev a1)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1794 20. Apr 08:33 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section Module
Loadint10
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
Option  XkbOptionscompose:rwin
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  PS/2
Option  Emulate3Buttons   false
Option  ZAxisMapping  4 5
EndSection

Section Device
Identifier  GeForce 8500 GT
Driver  nvidia
Option  NoLogotrue
EndSection

Section Monitor
Identifier  Yakumo TFT
HorizSync   31-64
VertRefresh 50-60
#DisplaySize96 96
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Device  GeForce 8500 GT
Monitor Yakumo TFT
DefaultDepth24
SubSection Display
Depth   1
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth   4
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth   8
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth   15
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth   16
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth   24
Modes   1280x1024 1152x864 1024x768 800x600 
640x480
EndSubSection
EndSection

Section ServerLayout
Option  AutoAddDevicesoff
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
EndSection

Section DRI
Mode0666
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 11335 20. Apr 05:42 /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-amd64 x86_64 Package files:  100 
/var/lib/dpkg/status  release a=now  500 http://ftp.debian.org sid/main 
Packages  release o=Debian,a=unstable,l=Debian,c=main  origin 
ftp.debian.org Pinned packages:
Current Operating System: Linux turtle 2.6.28.9-amd64 #3 SMP Mon Apr 6 11:02:50 
CEST 2009 x86_64
Build Date: 15 April 2009  11:46:22AM
xorg-server 2:1.6.1-1 (bgog...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Apr 20 05:42:01 2009
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Yakumo TFT
(**) |   |--Device GeForce 8500 GT
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(**) Option AutoAddDevices off
(**) Not automatically adding devices
(==) Automatically enabling devices
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,

Bug#524816: Timeout messages

2009-04-20 Thread Russell Coker
Please replace Socket timeout in the last two patches with Socket write 
timeout and Socket connect timeout as appropriate.

-- 
russ...@coker.com.au
http://etbe.coker.com.au/  My Main Blog
http://doc.coker.com.au/   My Documents Blog



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



Bug#524823: lsb-base: log_end_msg in /lib/lsb/init-functions always returns 1 = breaks acpid update

2009-04-20 Thread Erbureth
Package: lsb-base
Version: 3.2-22
Severity: important

package acpid fails to update for not being able to distinguish between 
success and failure in stopping acpid daemon

Preparing to replace acpid 1.0.8-6 (using .../acpid_1.0.8-7_amd64.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_amd64.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_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)



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

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

Versions of packages lsb-base depends on:
ii  ncurses-bin   5.7+20090404-1 terminal-related programs and man
ii  sed   4.1.5-8The GNU sed stream editor

lsb-base recommends no packages.

lsb-base 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#524544: upgrading setroubleshoot doesn't remove the init script

2009-04-20 Thread Pierre Chifflier
severity 524544 normal
thanks


On Sat, Apr 18, 2009 at 02:57:57AM +0530, Ritesh Raj Sarraf wrote:
 Package: setroubleshoot
 Version: 2.1.6-2
 Severity: important
 
 As per the changelog in this version, setroubleshoot doesn't ship an
 init script anymore.
 
 For users upgrading from the older version (2.0.x), the init script is
 not removed. It is not even disabled and has stale symlinks in
 /etc/rc2.d/
 This might lead to incorrect behavior during system boot.
 
 

Hi,

I agree the script should be removed (it was not because it is part of
/etc).

Yet the fact that it remains is harmless, since it will start the server
normally, for at most 10 seconds :)

I'll force remove in next release.

Regards,
Pierre




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



Bug#524824: policykit: mounting removable drives in KDE4 stopped working with default settings

2009-04-20 Thread Marcus Better
Package: policykit
Version: 0.9-3
Severity: normal

Today I was suddenly unable to mount a removable USB drive (a digital
camera) in KDE4, something that used to work before. In between I have
updated a bunch of packages, notably from KDE 4.2.1 to 4.2.2, so maybe
it's related to this.

The device shows up in the plugged devices widget, but selecting the
drive's icon in Dolphin gives a message about PermissionDenied for the
action org.freedesktop.hal.storage.mount-removable.

Some web searches turned up a workaround, I added the following rule
PolicyKit.conf and it started working:

match action=org.freedesktop.hal.storage.mount-removable 
return result=yes /
/match

I think this should work out of the box.

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

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

Versions of packages policykit depends on:
ii  adduser   3.110  add and remove users and groups
ii  consolekit0.3.0-2framework for defining and trackin
ii  dbus  1.2.12-1   simple interprocess messaging syst
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.12-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.80-3 simple interprocess messaging syst
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
ii  libpam0g  1.0.1-9Pluggable Authentication Modules l
ii  libpolkit-dbus2   0.9-3  library for accessing PolicyKit vi
ii  libpolkit-grant2  0.9-3  library for obtaining privileges v
ii  libpolkit20.9-3  library for accessing PolicyKit

policykit recommends no packages.

Versions of packages policykit suggests:
pn  policykit-gnome   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#524826: aptitude-gtk should complain before removing itself

2009-04-20 Thread Michal Čihař
Package: aptitude
Version: 0.5.1-1
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

with recent apt upgrade in unstable, aptitude offered me as solution to
remove aptitude-gtk (what was okay for me). However as I did this
withint aptitude-gtk, it obviously removed files it requires and it
lead to crash of it.

I know I should not do this and did I expect problems, but I think
aptitude-gtk should protect against uninstalling itself while it is
running. Maybe simillar warning like uninstalling essential packages
would be useful.

- -- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


- -- Package-specific info:
aptitude 0.4.11.11 zkompilován Apr 16 2009 23:38:07
Kompilátor: g++ 4.3.3
Zkompilováno proti:
  apt verze 4.6.0
  NCurses verze 5.7
  libsigc++ verze: 2.0.18
  Podpora Ept povolena.

Aktuální verze knihoven:
  NCurses verze: ncurses 5.7.20090404
  cwidget verze: 0.5.12
  Apt verze: 4.6.0
linux-vdso.so.1 =  (0x7fffafbfe000)
libapt-pkg-libc6.9-6.so.4.7 = /usr/lib/libapt-pkg-libc6.9-6.so.4.7 
(0x7ff5a7637000)
libncursesw.so.5 = /lib/libncursesw.so.5 (0x7ff5a73ec000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0x7ff5a71e7000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0x7ff5a6f14000)
libept.so.0 = /usr/lib/libept.so.0 (0x7ff5a6c9b000)
libxapian.so.15 = /usr/lib/libxapian.so.15 (0x7ff5a692f000)
libz.so.1 = /usr/lib/libz.so.1 (0x7ff5a6718000)
libpthread.so.0 = /lib/libpthread.so.0 (0x7ff5a64fd000)
libstdc++.so.6 = /usr/lib/libstdc++.so.6 (0x7ff5a61f1000)
libm.so.6 = /lib/libm.so.6 (0x7ff5a5f6e000)
libgcc_s.so.1 = /lib/libgcc_s.so.1 (0x7ff5a5d57000)
libc.so.6 = /lib/libc.so.6 (0x7ff5a5a04000)
libutil.so.1 = /lib/libutil.so.1 (0x7ff5a5801000)
libdl.so.2 = /lib/libdl.so.2 (0x7ff5a55fd000)
/lib64/ld-linux-x86-64.so.2 (0x7ff5a78f8000)
Terminal: xterm
$DISPLAY is set.
`which aptitude`: /usr/bin/aptitude
aptitude version information:

aptitude linkage:

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

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6. 0.7.21Advanced front-end for dpkg
ii  libc6  2.9-7 GNU C Library: Shared libraries
ii  libcwidget30.5.12-4  high-level terminal interface libr
pn  libept0none(no description available)
ii  libgcc11:4.3.3-8 GCC support library
ii  libncursesw5   5.7+20090404-1shared libraries for terminal hand
ii  libsigc++-2.0-0c2a 2.0.18-2  type-safe Signal Framework for C++
ii  libstdc++6 4.3.3-8   The GNU Standard C++ Library v3
ii  libxapian151.0.10-2  Search engine library
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
ii  libparse-debianchangelog-perl 1.1.1-2parse Debian changelogs and output

Versions of packages aptitude suggests:
pn  debtags   none (no description available)
pn  tasksel   none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknsIkkACgkQ3DVS6DbnVgT6MQCglMOQa2TqdeGhdjX29hVCVlUb
5GAAnjNgq7l3zYGOTOvgq0Zk2uSqOIPR
=Xz4r
-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#524830: [INTL:es] Spanish debconf template translation for console-cyrillic

2009-04-20 Thread Francisco Javier Cuadrado
Package: console-cyrillic
Version: 0.9-15.2
Severity: wishlist
Tags: l10n patch


Sorry for the duplicate, but I made a mistake.

-- 
Saludos

Fran
# console-cyrillic po-debconf translation to Spanish
# Copyright (C) 2005, 2009 Software in the Public Interest
# This file is distributed under the same license as the console-cyrillic package.
#
# Changes:
#   - Initial translation
#   César Gómez Martín cesar.go...@gmail.com, 2005
#
#   - Updates
#   Francisco Javier Cuadrado fcocuadr...@gmail.com, 2009
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
#   info -n '(gettext)PO Files'
#   info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#   - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas de traducción en
# http://www.debian.org/intl/spanish/notas
#
#   - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid 
msgstr 
Project-Id-Version: console-cyrillic 0.9-15.2\n
Report-Msgid-Bugs-To: console-cyril...@packages.debian.org\n
POT-Creation-Date: 2008-08-10 10:38-0300\n
PO-Revision-Date: 2009-04-07 09:29+0100\n
Last-Translator: César Gómez Martín cesar.go...@gmail.com\n
Language-Team: Debian l10n Spanish debian-l10n-span...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Do you want to setup Cyrillic on the console at boot-time?
msgstr ¿Quiere instalar el modo cirílico en la consola al arrancar el sistema? 

#. Type: boolean
#. Description
#: ../templates:1001
msgid If you accept, the package console-cyrilic will setup Cyrillic on the console at boot-time.
msgstr Si acepta, el paquete console-cyrillic instalará el modo cirílico en la consola al arrancar el sistema.

#. Type: boolean
#. Description
#: ../templates:1001
msgid Otherwise, refuse if you don't use Cyrillic the whole time or if for some reason you want to use the console setup by console-data package.
msgstr Responda negativamente si no utiliza letras cirílicas todo el tiempo o si por alguna razón quiere usar la configuración del paquete console-data.

#. Type: note
#. Description
#: ../templates:2001
msgid Your /etc/console-cyrillic file will be preserved unchanged.
msgstr Su fichero /etc/console-cyrillic se mantendrá sin cambios.

#. Type: note
#. Description
#: ../templates:2001
msgid You have requested Debconf not to change the configuration file /etc/console-cyrillic.  The new version of this file will be written in /etc/console-cyrillic.debconf instead.  Note that this file is not read by console-cyrillic and will have no effect.
msgstr Ha pedido que Debconf no cambie el fichero de configuración /etc/console-cyrillic. En su lugar, la nueva versión de este fichero se escribirá en /etc/console-cyrillic.debconf. Tenga en cuenta que este fichero no lo lee console-cyrillic y no tendrá ningún efecto.

#. Type: string
#. Description
#: ../templates:4001
msgid What virtual consoles do you use?
msgstr ¿Qué consolas virtuales utiliza?

#. Type: string
#. Description
#: ../templates:4001
msgid Please enter a space delimited list of virtual consoles you use. The usual Unix filename wildcards are allowed (*, ? and [...]).
msgstr Por favor, introduzca las consolas virtuales que usa como una lista delimitada por espacios. Se permiten los comodines habituales de nombres de fichero (*, ? y [...])

#. Type: string
#. Description
#: ../templates:4001
msgid If you are unsure, then use the default /dev/tty[1-6], it is for six virtual consoles. If you use devfs, then enter /dev/vc/[1-6] instead.
msgstr Si no está seguro, entonces utilice la opción por omisión /dev/tty[1-6] que es para seis consolas virtuales. Si utiliza devfs, entonces introduzca /dev/vc/[1-6] en su lugar.

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

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

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

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

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Bold
msgstr Terminal eslavo en negrita

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Framebuffer
msgstr Terminal eslavo con framebuffer

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Normal
msgstr Terminal asiático normal

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

Bug#522221: pidgin crashes on startup

2009-04-20 Thread Philip J. Clark


Just to add a bit more information, this is still happening, but I have 
narrowed it done as only being due to one account (my gmail/google talk 
one).


Philip J. Clark wrote:

Package: pidgin
Version: 2.5.5-1
Severity: normal

pidgin crashes immediately upon starting it up in Debian unstable. 


Pidgin 2.5.5 has segfaulted and attempted to dump a core file.
This is a bug in the software and has happened through
no fault of your own.


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

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

Versions of packages pidgin depends on:
ii  gconf22.24.0-7   GNOME configuration database syste
ii  libatk1.0-0   1.24.0-2   The ATK accessibility toolkit
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libcairo2 1.8.6-2+b1 The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.12-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.80-3 simple interprocess messaging syst
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
ii  libgstreamer0.10-00.10.22-2  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.14.7-5   The GTK+ graphical user interface 
ii  libgtkspell0  2.0.13-2   a spell-checking addon for GTK's T

ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.22.4-3   Layout and rendering of internatio
ii  libpurple02.5.5-1multi-protocol instant messaging l
ii  libsm62:1.1.0-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.2-1X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-19  minimal Perl system

ii  pidgin-data   2.5.5-1multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.22-4  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.14-2  GStreamer plugins from the good 


Versions of packages pidgin suggests:
ii  evolution-data-server2.24.5-3evolution database backend server
ii  gnome-panel  2.20.3-5+b1 launcher and docking facility for 
ii  libsqlite3-0 3.6.12-1SQLite 3 shared library


-- no debconf information







smime.p7s
Description: S/MIME Cryptographic Signature


Bug#492722: [SPAM] - Bug#492722: RPC fails, package unable to create admin user,after install ejabberdctl not working - Found word(s) list error in the Text body

2009-04-20 Thread Sergei Golovan
Hi Michael!

2008/7/30 Michael Flaig mfl...@pro-linux.de:

 srv-2000:~#
 srv-2000:~# ps ax | grep epmd
 20069 ?        S      0:00 epmd -daemon
 20093 ?        S      0:00 epmd -daemon
 20102 ?        S      0:00 epmd -daemon
 20104 pts/1    S+     0:00 grep epmd

 You can see every time after epmd -daemon is started there is a syslog
 message stating epmd running - daemon =1 but ps ax shows one more
 process.

Are there any news on this bug? I still cannot reproduce it on any hardware and
software environment available to me. If it's gone, I'd like to close
it. If not, I'd be better to debug it again.

Cheers!
-- 
Sergei Golovan



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



Bug#524832: [INTL:es] Spanish debconf template translation for dtc-xen

2009-04-20 Thread Francisco Javier Cuadrado
Package: dtc-xen
Version: 0.3.27-2
Severity: wishlist
Tags: l10n patch


-- 
Saludos

Fran
# dtc-xen po-debconf translation to Spanish
# Copyright (C) 2007, 2008, 2009 Software in the Public Interest
# This file is distributed under the same license as the dtc-xen package.
#
# Changes:
#   - Initial translation
#   Enrique Matias Sanchez cronop...@gmail.com, 2007
#
#   - Updates
#   Francisco Javier Cuadrado fcocuadr...@gmail.com, 2008, 2009
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
#   info -n '(gettext)PO Files'
#   info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
#   - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
#   - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid 
msgstr 
Project-Id-Version: dtc-xen 0.3.27-2\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2009-03-30 10:27+0200\n
PO-Revision-Date: 2009-04-16 15:34+0100\n
Last-Translator: Francisco Javier Cuadrado fcocuadr...@gmail.com\n
Language-Team: Debian l10n Spanish debian-l10n-span...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../dtc-xen.templates:1001
msgid Server port:
msgstr Puerto del servidor:

#. Type: string
#. Description
#: ../dtc-xen.templates:1001
msgid Default is 8089. Please enter the port the dtc-xen SOAP server will bind to.
msgstr El puerto predefinido es el 8089. Introduzca el puerto al que se enlazará el servidor SOAP de dtc-xen.

#. Type: string
#. Description
#: ../dtc-xen.templates:2001
msgid SOAP server login:
msgstr Nombre de usuario para el servidor SOAP:

#. Type: string
#. Description
#: ../dtc-xen.templates:2001
msgid Dtc-xen will start it's Python based SOAP server to listen for incoming requests over a TCP socket. A remote application (like the dtc web hosting control panel) can then connect to it in order to start, stop, create and destroy a VPS.
msgstr Dtc-xen ejecutará un servidor SOAP basado en Python para escuchar las peticiones entrantes por una conexión TCP. Una aplicación remota (como el panel de control web de dtc) puede conectarse para ejecutar, parar, crear y/o destruir un VPS.

#. Type: string
#. Description
#: ../dtc-xen.templates:2001
msgid Please enter the login name to connect to the server.
msgstr Introduzca el nombre de usuario para conectar con el servidor.

#. Type: password
#. Description
#: ../dtc-xen.templates:3001
msgid SOAP server pass:
msgstr Contraseña del servidor SOAP:

#. Type: password
#. Description
#: ../dtc-xen.templates:3001
msgid Dtc-xen will generate a .htpasswd file for the login you have just configured.
msgstr Dtc-xen generará un archivo «.htpasswd» para los datos de identificación que acaba de configurar.

#. Type: password
#. Description
#: ../dtc-xen.templates:3001
msgid Please enter the password to use in that file.
msgstr Introduzca la contraseña a usar en ese archivo.

#. Type: string
#. Description
#: ../dtc-xen.templates:4001
msgid Server domain name:
msgstr Nombre del dominio del servidor:

#. Type: string
#. Description
#: ../dtc-xen.templates:4001
msgid Please enter the domain name for the dtc-xen server. This will be used as a part of the URL by the SOAP dtc panel client like node.example.com.
msgstr Introduzca el nombre del dominio del servidor dtc-xen. Esto se usará como parte de la URL del panel del cliente SOAP de dtc, como «nodo.ejemplo.com».

#. Type: string
#. Description
#: ../dtc-xen.templates:5001
msgid VPS Server node number:
msgstr Número de nodo del servidor VPS:

#. Type: string
#. Description
#: ../dtc-xen.templates:5001
msgid Please enter the value to use to set up VPS numbering.
msgstr Introduzca el valor a usar para configurar la numeración de los VPS.

#. Type: string
#. Description
#: ../dtc-xen.templates:5001
msgid Assuming this value is '', the VPS numbers will be 'xenYY', YY being the VPS number itself (xenYY), and  being the Xen server number. This node number must be 4 or 5 characters long.
msgstr Asumiendo que este valor es «», los números del VPS serán «xenYY», siendo YY el número del VPS (xenYY), y  el número del servidor Xen. Este número de nodo debe tener 4 o 5 caracteres de longitud.

#. Type: string
#. Description
#: ../dtc-xen.templates:5001
msgid As a consequence of this choice, the server's hostname will be node.example.com (which you can later add in your DTC control panel).
msgstr Como consecuencia de esta elección, el nombre de la máquina del servidor será «nodo.ejemplo.com» (que se podrá añadir más 

Bug#272335: [rt.debian.org #1298] Bug#272335: www.debian.org do not support mod_gzip

2009-04-20 Thread Holger Levsen
Hi,

On Montag, 20. April 2009, Stephen Gran via RT wrote:
 A quick look at the munin stats suggests we don't use all that much
 bandwidth at present (or cpu, for that matter) so maybe it doesn't
 matter either way?

ain't there are third factor to consider: the bandwidth(+cpu) used on the user 
side? if the user has little bandwidth, mod_gzip enhances the browsing 
experience (if cpu is available to unzip).


regards,
Holger



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


Bug#514829: Only bonding is problematic

2009-04-20 Thread Marc Haber
tags #514829 confirmed
thanks

On Wed, Feb 11, 2009 at 10:12:34AM +0100, Vincent Bernat wrote:
 The only problem is with this setup:
 
 iface member1 inet manual
   mac ca:fe:ab:ba:00:03
 iface member2 inet manual
   mac ca:fe:ab:ba:00:04
 iface aggregate inet manual
   slaves member1 member2 

The current code eats this:
iface dotqa inet manual
  mac 08:00:27:75:70:02

iface dotqb inet manual
  mac 08:00:27:72:48:03

iface aggregate inet manual
  slaves dotqa dotqb
  address 192.168.9.26/24
  route_test 192.168.10.0/24 192.168.9.27

and yields the following result after ifup dotqa, dotqb, and aggregate:
[84/584...@ifupdown:~$ ip addr
1: lo: LOOPBACK mtu 16436 qdisc noqueue state DOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state 
UNKNOWN qlen 1000
link/ether 08:00:27:74:69:01 brd ff:ff:ff:ff:ff:ff
inet 192.168.8.24/24 brd 192.168.8.255 scope global eth0
inet6 fe80::a00:27ff:fe74:6901/64 scope link
   valid_lft forever preferred_lft forever
3: dotqa: BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP mtu 1500 qdisc pfifo_fast 
master aggregate state UNKNOWN qlen 1000
link/ether 08:00:27:75:70:02 brd ff:ff:ff:ff:ff:ff
4: dotqb: BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP mtu 1500 qdisc pfifo_fast 
master aggregate state UNKNOWN qlen 1000
link/ether 08:00:27:75:70:02 brd ff:ff:ff:ff:ff:ff
5: dotqc: BROADCAST,MULTICAST mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
link/ether 08:00:27:c4:cd:04 brd ff:ff:ff:ff:ff:ff
17: bond0: BROADCAST,MULTICAST,MASTER mtu 1500 qdisc noop state DOWN
link/ether 00:00:00:00:00:00 brd ff:ff:ff:ff:ff:ff
18: aggregate: BROADCAST,MULTICAST,MASTER,UP,LOWER_UP mtu 1500 qdisc noqueue 
state UP
link/ether 08:00:27:75:70:02 brd ff:ff:ff:ff:ff:ff
inet 192.168.9.26/24 brd 192.168.9.255 scope global aggregate
inet6 fe80::a00:27ff:fe75:7002/64 scope link
   valid_lft forever preferred_lft forever
[85/585...@ifupdown:~$ ip route
192.168.10.0/24 via 192.168.9.27 dev aggregate
192.168.9.0/24 dev aggregate  proto kernel  scope link  src 192.168.9.26
192.168.8.0/24 dev eth0  proto kernel  scope link  src 192.168.8.24
default via 192.168.8.254 dev eth0

Is that the intended result?

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835



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



Bug#524652: setroubleshoot: sealert segfault when clicked

2009-04-20 Thread Pierre Chifflier
On Sun, Apr 19, 2009 at 12:47:36AM +0530, Ritesh Raj Sarraf wrote:
 Package: setroubleshoot
 Version: 2.1.6-2
 Severity: important
 
 When a violation is raised, an alert pops up in the System Tray.
 When I click on the (se)alert in the system tray, it segfaults.

Arg.

 
 Relevant logs from:
 
 dmesg:
   [  349.149973] sealert[5892]: segfault at 8d ip 0809e5ea sp bfb04954
 error 4 in python2.5[8048000+fb000]
 
   ** (seapplet:5339): WARNING **: Error showing notification: The name
 org.freedesktop.Notifications was not provided by any .service files

Could this be something similar to
https://bugs.launchpad.net/ubuntu/+source/mail-notification/+bug/72382
?

Do you have notification-daemon installed ? If no,
Can you try installing it, and see if it works ?

Thanks,
Pierre



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



Bug#524829: [INTL:es] Spanish debconf template translation for request-tracker3.8

2009-04-20 Thread Francisco Javier Cuadrado
Package: console-cyrillic
Version: 0.9-15.2
Severity: wishlist
Tags: l10n patch


-- 
Saludos

Fran
# console-cyrillic po-debconf translation to Spanish
# Copyright (C) 2005, 2009 Software in the Public Interest
# This file is distributed under the same license as the console-cyrillic package.
#
# Changes:
#   - Initial translation
#   César Gómez Martín cesar.go...@gmail.com, 2005
#
#   - Updates
#   Francisco Javier Cuadrado fcocuadr...@gmail.com, 2009
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
#   info -n '(gettext)PO Files'
#   info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#   - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas de traducción en
# http://www.debian.org/intl/spanish/notas
#
#   - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid 
msgstr 
Project-Id-Version: console-cyrillic 0.9-15.2\n
Report-Msgid-Bugs-To: console-cyril...@packages.debian.org\n
POT-Creation-Date: 2008-08-10 10:38-0300\n
PO-Revision-Date: 2009-04-07 09:29+0100\n
Last-Translator: César Gómez Martín cesar.go...@gmail.com\n
Language-Team: Debian l10n Spanish debian-l10n-span...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Do you want to setup Cyrillic on the console at boot-time?
msgstr ¿Quiere instalar el modo cirílico en la consola al arrancar el sistema? 

#. Type: boolean
#. Description
#: ../templates:1001
msgid If you accept, the package console-cyrilic will setup Cyrillic on the console at boot-time.
msgstr Si acepta, el paquete console-cyrillic instalará el modo cirílico en la consola al arrancar el sistema.

#. Type: boolean
#. Description
#: ../templates:1001
msgid Otherwise, refuse if you don't use Cyrillic the whole time or if for some reason you want to use the console setup by console-data package.
msgstr Responda negativamente si no utiliza letras cirílicas todo el tiempo o si por alguna razón quiere usar la configuración del paquete console-data.

#. Type: note
#. Description
#: ../templates:2001
msgid Your /etc/console-cyrillic file will be preserved unchanged.
msgstr Su fichero /etc/console-cyrillic se mantendrá sin cambios.

#. Type: note
#. Description
#: ../templates:2001
msgid You have requested Debconf not to change the configuration file /etc/console-cyrillic.  The new version of this file will be written in /etc/console-cyrillic.debconf instead.  Note that this file is not read by console-cyrillic and will have no effect.
msgstr Ha pedido que Debconf no cambie el fichero de configuración /etc/console-cyrillic. En su lugar, la nueva versión de este fichero se escribirá en /etc/console-cyrillic.debconf. Tenga en cuenta que este fichero no lo lee console-cyrillic y no tendrá ningún efecto.

#. Type: string
#. Description
#: ../templates:4001
msgid What virtual consoles do you use?
msgstr ¿Qué consolas virtuales utiliza?

#. Type: string
#. Description
#: ../templates:4001
msgid Please enter a space delimited list of virtual consoles you use. The usual Unix filename wildcards are allowed (*, ? and [...]).
msgstr Por favor, introduzca las consolas virtuales que usa como una lista delimitada por espacios. Se permiten los comodines habituales de nombres de fichero (*, ? y [...])

#. Type: string
#. Description
#: ../templates:4001
msgid If you are unsure, then use the default /dev/tty[1-6], it is for six virtual consoles. If you use devfs, then enter /dev/vc/[1-6] instead.
msgstr Si no está seguro, entonces utilice la opción por omisión /dev/tty[1-6] que es para seis consolas virtuales. Si utiliza devfs, entonces introduzca /dev/vc/[1-6] en su lugar.

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

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

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

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

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Bold
msgstr Terminal eslavo en negrita

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Slavic Framebuffer
msgstr Terminal eslavo con framebuffer

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Normal
msgstr Terminal asiático normal

#. Type: select
#. Choices
#: ../templates:5001
msgid Terminus Asian Bold
msgstr Terminal asiático en negrita

#. Type: select
#. Choices

Bug#498529: Any news?

2009-04-20 Thread Michal Čihař
Hi

Any reason why you write this to -submitter address?

Also it is quite usual to use email body not only subject.

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#524827: gnash broken in latest build - error with libavutil

2009-04-20 Thread Adam Bartley
Package: gnash
Version: 0.8.5-1
Severity: grave
Justification: renders package unusable

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

The latest version for powerpc is broken. It completely fails to launch in
firefox, although the plugin is correctly installed and reports its
presence. I think that there was a problem with the build against libavutil,
given that launching gnash on the command line produces the following.

/usr/bin/gtk-gnash: error while loading shared libraries:
/usr/lib/altivec/libavutil.so.50: R_PPC_REL24 relocation at 0x0d556b1c for
symbol `open64' out of range

Some link to the 64 bit powerpc has, perhaps, been incorrectly built for the
32 bit altivec system thta I am using?

With best wishes,

Adam Bartley

-- System Information:
Debian Release: squeeze/sid

  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.28-1-powerpc
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnash depends on:
ii  gnash-common  0.8.5-1free SWF movie player - common
fil
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-7  GCC support library
ii  libglib2.0-0  2.20.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.16.1-2   The GTK+ graphical user
interface
ii  libstdc++64.3.3-7The GNU Standard C++ Library v3

gnash recommends no packages.
gnash suggests no packages.

-- no debconf information


Bug#272335: [rt.debian.org #1298] Bug#272335: www.debian.org do not support mod_gzip

2009-04-20 Thread Stephen Gran via RT
This one time, at band camp, Holger Levsen via RT said:
 
 URL: https://rt.debian.org/Ticket/Display.html?id=1298 
 
 Hi,
 
 On Montag, 20. April 2009, Stephen Gran via RT wrote:
  A quick look at the munin stats suggests we don't use all that much
  bandwidth at present (or cpu, for that matter) so maybe it doesn't
  matter either way?
 
 ain't there are third factor to consider: the bandwidth(+cpu) used on the 
 user 
 side? if the user has little bandwidth, mod_gzip enhances the browsing 
 experience (if cpu is available to unzip).

Sure, it's a factor to take into account, but I don't think it's worth
changing the setup for a hypothetical issue.  I'm only talking at
present about issues we can actualy measure, which lead me to believe we
don't need to make any changes.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -



signature.asc
Description: PGP signature


Bug#524804: more info

2009-04-20 Thread Michal Čihař
Hi

Dne Mon, 20 Apr 2009 00:15:04 -0400
Michael S. Gilbert michael.s.gilb...@gmail.com napsal(a):

 i was looking at the link as provided in redhat's announcement.  this
 seems to be CVE-2009-1285, which debian is already tracking as
 unimportant.  however, the phpmyadmin page considers the issue to be
 critical.  perhaps the debian severity is too low?

The difference might be in fact that Debian package protects setup
script by htpasswd on installation.

(But I'm not in security team to know real cause of this severity.)

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#272335: [rt.debian.org #1298] Bug#272335: www.debian.org do not support mod_gzip

2009-04-20 Thread Holger Levsen via RT
Hi,

On Montag, 20. April 2009, Stephen Gran via RT wrote:
 A quick look at the munin stats suggests we don't use all that much
 bandwidth at present (or cpu, for that matter) so maybe it doesn't
 matter either way?

ain't there are third factor to consider: the bandwidth(+cpu) used on the user 
side? if the user has little bandwidth, mod_gzip enhances the browsing 
experience (if cpu is available to unzip).


regards,
Holger




signature.asc
Description: PGP signature


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

2009-04-20 Thread Rafael Laboissiere
* Thomas Weber thomas.weber.m...@gmail.com [2009-04-20 00:11]:

 On Sun, Apr 19, 2009 at 05:47:11PM +0200, Luk Claes wrote:
  Package: octave3.0
  Version: 1:3.0.5-2
  Severity: grave
  
  Hi
  
  The postinst of octave3.0 seems to hang on at least the mipsel buildds (for 
  unstable) [1].
  
  This issue blocks the buildds from building any other package till the 
  octave3.0 process (mentioned in the build log) is killed manually. This has 
  already caused delays for security updates and transitions...
 
 Installation of octave3.0 in a mipsel (qemu) environment  works without
 a problem. Is there something specific about the mipsel buildds?

Indeed, this seems to be a random problem on the mipsel buildd.  Some
octave-* packages built correctly on mipsel recently, like
octave-econometrics on 2009-04-17 [1] and octave-data-smoothing on
2009-04-14 [2].  Both were built against octave3.0 3.0.5-2, so the postinst
script ran fine, without hanging.

[1] 
https://buildd.debian.org/fetch.cgi?pkg=octave-econometricsver=1%3A1.0.7-3arch=mipselstamp=1239954430file=log
[2] 
https://buildd.debian.org/fetch.cgi?pkg=octave-data-smoothingver=1.1.1-2arch=mipselstamp=1239721086file=log

It will be very hard for us to debug this random bug on the buildd.  Any
suggestions on how to proceed?

-- 
Rafael



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



Bug#524831: pidgin: privacy settings don't work for MSN

2009-04-20 Thread sean finney
Package: pidgin
Version: 2.5.5-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hi,

if i try to set the privacy settings for an MSN account in pidgin,
they're forgotten across application exit/start.


sean

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

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

Versions of packages pidgin depends on:
ii  gconf2   2.26.0-1GNOME configuration database syste
ii  libatk1.0-0  1.24.0-2The ATK accessibility toolkit
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libgstreamer0.10-0   0.10.22-3   Core GStreamer libraries and eleme
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface 
ii  libgtkspell0 2.0.13-2a spell-checking addon for GTK's T
ii  libice6  2:1.0.5-1   X11 Inter-Client Exchange library
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio
ii  libpurple0   2.5.5-1 multi-protocol instant messaging l
ii  libsm6   2:1.1.0-2   X11 Session Management library
ii  libstartup-notification0 0.10-1  library for program launch feedbac
ii  libx11-6 2:1.2.1-1   X11 client-side library
ii  libxss1  1:1.1.3-1   X11 Screen Saver extension library
ii  perl 5.10.0-19   Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]   5.10.0-19   minimal Perl system
ii  pidgin-data  2.5.5-1 multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.22-5  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.14-2  GStreamer plugins from the good 

Versions of packages pidgin suggests:
ii  evolution-data-server2.24.5-4+b1 evolution database backend server
ii  gnome-panel  2.24.3-1+b1 launcher and docking facility for 
ii  libsqlite3-0 3.6.12-1SQLite 3 shared library

- -- no debconf information

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

iD8DBQFJ7CThynjLPm522B0RArW2AJ49mRfvr3JHPKNe5Cy4eM0g2JE6qgCfUb7c
+5l75oZzj/aGWNMGPXQPLY8=
=NTSr
-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#524833: libpurple0: Crashes in Jabber plugin

2009-04-20 Thread Wartan Hachaturow
Package: libpurple0
Version: 2.5.5-1
Severity: normal

Here's the backtrace:

(gdb) run
Starting program: /usr/bin/pidgin 
[Thread debugging using libthread_db enabled]
[New Thread 0xb70bb750 (LWP 19550)]
warning: Lowest section in /usr/lib/libicudata.so.40 is .hash at 00b4

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb70bb750 (LWP 19550)]
0xb43f31e0 in ?? ()
(gdb) bt
#0  0xb43f31e0 in ?? ()
#1  0xb7527ef6 in __xmlRaiseError (schannel=0xb43f31e0, channel=0, 
data=0xa3583b4, ctx=0xaeb5808, nod=0x0, domain=1, 
code=5, level=XML_ERR_FATAL, file=0x0, line=1, str1=0x0, str2=0x0, 
str3=0x0, int1=0, col=193, 
msg=0xb761a068 Extra content at the end of the document\n) at error.c:612
#2  0xb752c51b in xmlFatalErr (ctxt=0xaeb5808, error=171279284, info=0xb763d678 
\002) at parser.c:464
#3  0xb75418da in xmlParseChunk__internal_alias (ctxt=0xaeb5808, chunk=0x0, 
size=0, terminate=1) at parser.c:11473
#4  0xb46d9571 in jabber_parser_free () from /usr/lib/purple-2/libjabber.so.0
#5  0xb46d95ad in jabber_parser_setup () from /usr/lib/purple-2/libjabber.so.0
#6  0xb46d2e6e in ?? () from /usr/lib/purple-2/libjabber.so.0
#7  0x0aead708 in ?? ()
#8  0x0ae9cce0 in ?? ()
#9  0xb79ce820 in ?? ()
#10 0xb46ea5f0 in ?? () from /usr/lib/purple-2/libjabber.so.0
#11 0x0aead708 in ?? ()
#12 0x0aead648 in ?? ()
#13 0xbf9c5968 in ?? ()
#14 0xb46d424b in ?? () from /usr/lib/purple-2/libjabber.so.0
#15 0x0aead708 in ?? ()
#16 0x0002 in ?? ()
#17 0xb79ce9d8 in ?? ()
#18 0xb4be1420 in ?? () from /usr/lib/purple-2/ssl-nss.so
#19 0x0a0e36b8 in ?? ()
#20 0x0001 in ?? ()
#21 0xbf9c5988 in ?? ()
#22 0xb4bdf475 in ?? () from /usr/lib/purple-2/ssl-nss.so
#23 0x0aead648 in ?? ()
#24 0x0a0e36b8 in ?? ()
#25 0x0001 in ?? ()
#26 0x0001 in ?? ()
#27 0xb788fe8c in ?? () from /usr/lib/libpurple.so.0
#28 0x0aee4b20 in ?? ()
#29 0xbf9c59a8 in ?? ()
#30 0xb77f51b9 in purple_certificate_verify_complete () from 
/usr/lib/libpurple.so.0
Backtrace stopped: previous frame inner to this frame (corrupt stack?)

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

Kernel: Linux 2.6.29-rc8-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 libpurple0 depends on:
ii  libavahi-client3 0.6.25-1Avahi client library
ii  libavahi-common3 0.6.25-1Avahi common library
ii  libavahi-glib1   0.6.25-1Avahi glib integration library
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libgadu3 1:1.8.0+r592-3  Gadu-Gadu protocol library - runti
ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libmeanwhile11.0.2-3 open implementation of the Lotus S
ii  libnspr4-0d  4.7.4-2 NetScape Portable Runtime Library
ii  libnss3-1d   3.12.3-1Network Security Service libraries
ii  libperl5.10  5.10.0-19   Shared Perl library
ii  libsasl2-2   2.1.22.dfsg1-23 Cyrus SASL - authentication abstra
ii  libsasl2-modules 2.1.22.dfsg1-23 Cyrus SASL - pluggable authenticat
ii  libsilc-1.1-21.1.7-2 SILC library (silc-toolkit)
ii  libxml2  2.7.3.dfsg-1GNOME XML library
ii  libzephyr3   2.1.20070719.SNAPSHOT-3 Project Athena's notification serv
ii  perl 5.10.0-19   Larry Wall's Practical Extraction 
ii  perl-base [perla 5.10.0-19   minimal Perl system
ii  pidgin-data  2.5.5-1 multi-protocol instant messaging c

Versions of packages libpurple0 recommends:
ii  ca-certificates   20081127   Common CA certificates
ii  libpurple-bin 2.5.5-1multi-protocol instant messaging l

Versions of packages libpurple0 suggests:
ii  tcl8.48.4.19-3   Tcl (the Tool Command Language) v8
ii  tk8.4 8.4.19-3   Tk toolkit for Tcl and X11, v8.4 -

-- no debconf information

-- 
Regards, Vartan.
Be different: conform.



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



Bug#411982: Just 4 Info - a workaround

2009-04-20 Thread Peter Hofer

If you load pgsql.so BEFORE you load curl.so PHP will work fine 

( mv /etc/php5/conf.d/curl.ini /etc/php5/conf.d/z_curl.ini 

Regards 

Peter 

(Works on Etch + Lenny) 




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



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

2009-04-20 Thread Luk Claes
Rafael Laboissiere wrote:
 * Thomas Weber thomas.weber.m...@gmail.com [2009-04-20 00:11]:
 
 On Sun, Apr 19, 2009 at 05:47:11PM +0200, Luk Claes wrote:
 Package: octave3.0
 Version: 1:3.0.5-2
 Severity: grave

 Hi

 The postinst of octave3.0 seems to hang on at least the mipsel buildds (for 
 unstable) [1].

 This issue blocks the buildds from building any other package till the 
 octave3.0 process (mentioned in the build log) is killed manually. This has 
 already caused delays for security updates and transitions...
 Installation of octave3.0 in a mipsel (qemu) environment  works without
 a problem. Is there something specific about the mipsel buildds?
 
 Indeed, this seems to be a random problem on the mipsel buildd.  Some
 octave-* packages built correctly on mipsel recently, like
 octave-econometrics on 2009-04-17 [1] and octave-data-smoothing on
 2009-04-14 [2].  Both were built against octave3.0 3.0.5-2, so the postinst
 script ran fine, without hanging.
 
 [1] 
 https://buildd.debian.org/fetch.cgi?pkg=octave-econometricsver=1%3A1.0.7-3arch=mipselstamp=1239954430file=log
 [2] 
 https://buildd.debian.org/fetch.cgi?pkg=octave-data-smoothingver=1.1.1-2arch=mipselstamp=1239721086file=log
 
 It will be very hard for us to debug this random bug on the buildd.  Any
 suggestions on how to proceed?

Maybe this is related to the kernel bug for the Broadcom hardware which
is triggered by the new glibc (put Aurelien in Cc)?

Cheers

Luk



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



Bug#498294: easytag: diff for NMU version 2.1.4-1.1

2009-04-20 Thread Michal Čihař
Hi

Dne Sun, 19 Apr 2009 15:13:54 +0200
Benjamin Drung benjamin.dr...@gmail.com napsal(a):

 Version: 2.1.4-1.1
 
 The non-maintainer upload was done on 2008-09-08.

Please do not close bug of package you do not maintain.

Also NMU bugs should be closed when maintainer acknowledges the NMU.

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#524834: ITP: syncmaildir -- Sync Mail Dir is a set of tools to synchronize Maildirs

2009-04-20 Thread Enrico Tassi
Package: wnpp
Severity: wishlist
Owner: Enrico Tassi gareuselesi...@debian.org


* Package name: syncmaildir
  Version : 0.9.2
  Upstream Author : Enrico Tassi gareuselesi...@users.sf.net
* URL : http://syncmaildir.sf.net
* License : GPL
  Programming Lang: C, Lua, Bash
  Description : Sync Mail Dir is a set of tools to synchronize Maildirs

  Sync Mail Dir is a set of utilities to synchronize a pair of mail
  boxes in Maildir format, using SSH to transfer data.
  
  Unlike OfflineIMAP It requires no IMAP server to be installed on the
  remote host.
 
  Sync Mail Dir design is similar to the one Maildirsync, but is more
  efficient in terms of CPU cycles and disk I/O.

-- 
Enrico Tassi



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



Bug#524681: gnome-volume-manager: Additionals informations

2009-04-20 Thread Davide Maglio
Now with last update, recognizes usb drive but don't automount. In
system - preference - input and removable device don't see any tab of
removable device. I don't know if the problem is linked. (sorry for my
english...)

Davide Maglio

Il giorno dom, 19/04/2009 alle 19.49 +0200, Guillaume Delacour ha
scritto:
 Package: gnome-volume-manager
 Severity: normal
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 $ dpkg -l nautilus|grep ^ii
 ii  nautilus
 2.20.0-7   file manager and graphical shell for GNOME
 
 (same as nautilus-cd-burner)
 
 I just see this new behaviour after an upgrade that i've done yesterday
 and i don't have consolekit installed anymore (maybe related, but don't sure 
 for me).
 
 
 
 - -- System Information:
 Debian Release: squeeze/sid
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages gnome-volume-manager depends on:
 ii  gconf2 2.24.0-7  GNOME configuration database 
 syste
 ii  gnome-mount0.7-2 wrapper for (un)mounting and 
 eject
 ii  hal0.5.11-8  Hardware Abstraction Layer
 ii  libart-2.0-2   2.3.20-2  Library of functions for 2D 
 graphi
 ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
 ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
 ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
 ii  libc6  2.9-4 GNU C Library: Shared libraries
 ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics 
 libra
 ii  libdbus-1-31.2.12-1  simple interprocess messaging 
 syst
 ii  libdbus-glib-1-2   0.80-3simple interprocess messaging 
 syst
 ii  libfontconfig1 2.6.0-3   generic font configuration 
 library
 ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared 
 lib
 ii  libgconf2-42.24.0-7  GNOME configuration database 
 syste
 ii  libglade2-01:2.6.4-1 library to load .glade files at 
 ru
 ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
 ii  libgnome2-02.24.1-2  The GNOME 2 library - runtime 
 file
 ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented 
 display
 ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User 
 Interf
 ii  libgnomevfs2-0 1:2.24.0-2GNOME Virtual File System 
 (runtime
 ii  libgtk2.0-02.14.7-5  The GTK+ graphical user 
 interface 
 ii  libhal10.5.11-8  Hardware Abstraction Layer - 
 share
 ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
 ii  libnotify1 [libnotify1-gtk 0.4.5-1   sends desktop notifications to a 
 n
 ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA 
 ORB
 ii  libpango1.0-0  1.22.4-2  Layout and rendering of 
 internatio
 ii  libpopt0   1.14-4lib for parsing cmdline 
 parameters
 ii  libsm6 2:1.1.0-2 X11 Session Management library
 ii  libx11-6   2:1.2.1-1 X11 client-side library
 ii  libxml22.7.3.dfsg-1  GNOME XML library
 
 Versions of packages gnome-volume-manager recommends:
 ii  gthumb   3:2.10.10-2 an image viewer and browser
 ii  nautilus-cd-burner   2.20.0-1CD Burning front-end for Nautilus
 ii  sound-juicer 2.24.0-2GNOME 2 CD Ripper
 ii  totem2.22.2-5A simple media player for the 
 GNOM
 
 Versions of packages gnome-volume-manager suggests:
 ii  rhythmbox  0.11.6-1.1+b1 music player and organizer for 
 GNO
 ii  serpentine 0.9-6 An application for creating 
 audio 
 pn  wine   none(no description available)
 ii  xsane  0.996-1   featureful graphical frontend 
 for 
 
 - -- no debconf information
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)
 
 iEYEARECAAYFAknrZDcACgkQ35KHK503hANe/wCeKrAv6AAOgCxHDvb5y7cWSDd9
 IoQAmwdpMXfonuJA03ccTHNpsYpLRPfC
 =GzBX
 -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#524652: setroubleshoot: sealert segfault when clicked

2009-04-20 Thread Ritesh Raj Sarraf
On Monday 20 Apr 2009 12:54:07 Pierre Chifflier wrote:
 Do you have notification-daemon installed ? If no,
 Can you try installing it, and see if it works ?

I installed notification-daemon but still no luck.

strace hints that there is a dbus error

poll([{fd=5, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=5, revents=POLLOUT}])
writev(5, [{l\1\0\1\0\0\0\0\1\0\0\0n\0\0\0\1\1o\0\25\0\0\0/org/fre..., 128}, 
{, 0}], 2) = 128
gettimeofday({1240215450, 64362}, NULL) = 0
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])
read(5, l\2\1\1\f\0\0\0\1\0\0\0=\0\0\0\6\1s\0\7\0\0\0:1.1320\0..., 2048) = 
264
read(5, 0x95db3e0, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)
fstat64(5, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
fcntl64(5, F_GETFL) = 0x802 (flags O_RDWR|O_NONBLOCK)
gettimeofday({1240215450, 70488}, NULL) = 0
writev(5, [{l\1\0\1\0\0\0\2\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre..., 
144}, {!\0\0\0org.fedoraproject.Setroubles..., 38}], 2) = 182
gettimeofday({1240215450, 70862}, NULL) = 0
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])
read(5, l\3\1\1R\0\0\0\3\0\0\0u\0\0\0\6\1s\0\7\0\0\0:1.1320\0..., 2048) = 
218
read(5, 0x95db3e0, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)
gettimeofday({1240215450, 71187}, NULL) = 0
writev(5, [{l\1\0\1,\0\0\0\3\0\0\0\210\0\0\0\1\1o\0\25\0\0\0/org/fre..., 
152}, {!\0\0\0org.fedoraproject.Setroubles..., 44}], 2) = 196
gettimeofday({1240215450, 88477}, NULL) = 0
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])
read(5, l\3\1\0010\0\0\0\4\0\0\0u\0\0\0\6\1s\0\7\0\0\0:1.1320\0..., 2048) = 
184
read(5, 0x95db3e0, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)
gettimeofday({1240215450, 461159}, NULL) = 0
send(3, 11setroubleshoot: [dbus.ERROR]..., 147, 0) = 147
^^
close(3)= 0
rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {0x80fb080, [], 0}, 8) = 0
rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, {0x80fb080, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {0x80fb080, [], 0}, 8) = 0
rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, {0x80fb080, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[HUP INT QUIT ILL TRAP ABRT BUS FPE 
KILL USR1 SEGV USR2 PIPE ALRM TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG 
XCPU XFSZ VTALRM PROF WINCH IO PWR SYS RTMIN RT_1], 8) = 0
rt_sigprocmask(SIG_SETMASK, ~[HUP INT QUIT ILL TRAP ABRT BUS FPE KILL USR1 
SEGV USR2 PIPE ALRM TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG XCPU XFSZ 
VTALRM PROF WINCH IO PWR SYS RTMIN RT_1], NULL, 8) = 0
exit_group(0)   = ?


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#441298: Still reproducible?

2009-04-20 Thread Martin MAURER
Hi,

I still get a crash when closing tabs by middle click. This only happens
sporadically, when I have a lot of tabs open and start closing them. 

I meanwhile use HoverCloseButton (X button when moving the mouse over a
tab) to close the tabs. I can't recall crashing kde when using this or
Ctrl-W, but I can't tell for sure neither.

I have konqueror 3.5.10.dfsg.1-2 now and the backtrace has changed a
little bit:


[Thread debugging using libthread_db enabled]
[New Thread 0xb7e2c700 (LWP 10555)]
[KCrash handler]
#6  0xb7f7a424 in __kernel_vsyscall ()
#7  0x42450640 in *__GI_raise (sig=value optimized out)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
#8  0x42452008 in *__GI_abort () at abort.c:88
#9  0x427e00a8 in __gnu_cxx::__verbose_terminate_handler ()
   from /usr/lib/libstdc++.so.6
#10 0x427ddf85 in ?? () from /usr/lib/libstdc++.so.6
#11 0x427ddfc2 in std::terminate () from /usr/lib/libstdc++.so.6
#12 0x427dec65 in __cxa_pure_virtual () from /usr/lib/libstdc++.so.6
#13 0x412b82f1 in KonqViewManager::removeTab (this=value optimized
out, 
tab=value optimized out)
at /tmp/buildd/kdebase-3.5.10.dfsg.1/./konqueror/konq_viewmgr.cc:565
#14 0x412b850d in KonqMainWindow::slotRemoveTabPopupDelayed (this=)

at /tmp/buildd/kdebase-3.5.10.dfsg.1/./konqueror/konq_mainwindow.cc:2752
#15 0x412db4c6 in KonqMainWindow::qt_invoke (this=value optimized
out, 
_id=value optimized out, _o=) at ./konq_mainwindow.moc:694
#16 0x44e677aa in QObject::activate_signal (this=value optimized out, 
clist=value optimized out, o=value optimized out)
at kernel/qobject.cpp:2359
#17 0x451c4f8e in QSignal::signal (this=value optimized out, t0=)
at .moc/release-shared-mt/moc_qsignal.cpp:100
#18 0x44e8470d in QSignal::activate (this=value optimized out)
at kernel/qsignal.cpp:215
#19 0x44e8bac3 in QSingleShotTimer::event (this=) at
kernel/qtimer.cpp:289
#20 0x44e02dc5 in QApplication::internalNotify (this=value optimized
out, 
receiver=value optimized out, e=value optimized out)
at kernel/qapplication.cpp:2638
#21 0x44e03e06 in QApplication::notify (this=value optimized out, 
receiver=value optimized out, e=value optimized out)
at kernel/qapplication.cpp:2375
#22 0x416bbde2 in KApplication::notify (this=value optimized out, 
receiver=value optimized out, event=value optimized out)
at /tmp/buildd/kdelibs-3.5.10.dfsg.1/./kdecore/kapplication.cpp:550
#23 0x44df8603 in QEventLoop::activateTimers (this=)
at kernel/qapplication.h:523
#24 0x44dadcbe in QEventLoop::processEvents (this=value optimized
out, 
flags=value optimized out) at kernel/qeventloop_x11.cpp:392
#25 0x44e1b7a0 in QEventLoop::enterLoop (this=value optimized out)
at kernel/qeventloop.cpp:201
#26 0x44e1b666 in QEventLoop::exec (this=) at kernel/qeventloop.cpp:148
#27 0x44e0345f in QApplication::exec (this=) at
kernel/qapplication.cpp:2761
#28 0x412d7a2c in kdemain (argc=value optimized out, 
argv=value optimized out)
at /tmp/buildd/kdebase-3.5.10.dfsg.1/./konqueror/konq_main.cc:206
#29 0xb7f6f464 in kdeinitmain (argc=1, argv=0x959f388) at
konqueror_dummy.cc:3
#30 0x0804f2f1 in launch (argc=1, _name=0x959eac4 konqueror, 
args=0x959eace \001, cwd=0x0, envc=1, envs=0x959eade , 
reset_env=false, tty=0x0, avoid_loops=false, 
startup_id_str=0x959eae3
nicisha;1240214933;43349;3969_TIME1110535)
at /tmp/buildd/kdelibs-3.5.10.dfsg.1/./kinit/kinit.cpp:673
#31 0x0804fa7d in handle_launcher_request (sock=9)
at /tmp/buildd/kdelibs-3.5.10.dfsg.1/./kinit/kinit.cpp:1240
#32 0x080500ca in handle_requests (waitForPid=0)
at /tmp/buildd/kdelibs-3.5.10.dfsg.1/./kinit/kinit.cpp:1443
#33 0x08050b6a in main (argc=5, argv=0xbfb77f84, envp=0xbfb77f9c)
at /tmp/buildd/kdelibs-3.5.10.dfsg.1/./kinit/kinit.cpp:1908




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


Bug#524652: setroubleshoot: sealert segfault when clicked

2009-04-20 Thread Pierre Chifflier
On Mon, Apr 20, 2009 at 01:48:54PM +0530, Ritesh Raj Sarraf wrote:
 On Monday 20 Apr 2009 12:54:07 Pierre Chifflier wrote:
  Do you have notification-daemon installed ? If no,
  Can you try installing it, and see if it works ?
 
 I installed notification-daemon but still no luck.
 
 strace hints that there is a dbus error
 

[...]

 gettimeofday({1240215450, 461159}, NULL) = 0
 send(3, 11setroubleshoot: [dbus.ERROR]..., 147, 0) = 147
 ^^

You might want to add -s 256 to your strace arguments to show the error
string.

I do not see any SIGSEGV in your trace, is this part ok now ?

I'd also be careful with notification-daemon and dbus stuff, maybe you
need to restart your X session if you just installed it.

I just uploaded 2.1.9, maybe you'd want to check if the error is still
present.

Cheers,
Pierre


signature.asc
Description: Digital signature


Bug#524828: having xserver-xorg-input-wacom installed crashes X (sid) on X60 tablet

2009-04-20 Thread Ron

Oh, and just to clarify my earlier request, you say this:

 xorg.conf is non-existant.

But the log you attached says:

 (==) Using config file: /etc/X11/xorg.conf
 (==) ServerLayout Default
 (**) |--Screen Default Screen (0)
 (**) |   |--Monitor Configured Monitor
 (**) |   |--Device Configured Video Device
 (**) |--Input Device Generic Keyboard
 (**) |--Input Device Cursor
 (**) |--Input Device Stylus
 (**) |--Input Device Eraser

Which unless I'm misreading says it did still find one to read from?

 Ron





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



Bug#272335: [rt.debian.org #1298] Bug#272335: www.debian.org do not support mod_gzip

2009-04-20 Thread Simon Paillard via RT
On Mon, Apr 20, 2009 at 07:37:31AM +, Stephen Gran via RT wrote:
 This one time, at band camp, Holger Levsen via RT said:
  URL: https://rt.debian.org/Ticket/Display.html?id=1298 
  
  On Montag, 20. April 2009, Stephen Gran via RT wrote:
   A quick look at the munin stats suggests we don't use all that much
   bandwidth at present (or cpu, for that matter) so maybe it doesn't
   matter either way?

By the way, there are 0 figures for apache access / volume on
http://munin.debian.org/debian.org/klecker.debian.org.html

  ain't there are third factor to consider: the bandwidth(+cpu) used on the 
  user 
  side? if the user has little bandwidth, mod_gzip enhances the browsing 
  experience (if cpu is available to unzip).
 
 Sure, it's a factor to take into account, but I don't think it's worth
 changing the setup for a hypothetical issue.  I'm only talking at
 present about issues we can actualy measure, which lead me to believe we
 don't need to make any changes.
 
Given the high volume of static text content, we can think it (at
least) worth the try.

And you're right, that's currently not a issue, but a possible
improvement.

Apache will cache the compressed pages anyway, so the CPU impact would
not be that high, for an improved downloading time (serveral dozens of
%) on the user side where the pages will display faster.

And since the compression level can set, it can be used to tune the CPU
usage.

Best regards.

-- 
Simon Paillard





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



Bug#510279: udev rule is ignored at startup

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

Hi Kevin,

I wonder whether/how this bug is related to #524665. If it is related
the permissions might get overwritten by udev's file
/etc/rules.d/91-permissions.rules (now living in /lib/udev/rules.d/).

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

iEYEARECAAYFAknsOUMACgkQWN0/4pnhQbRHygCfTQ0Ip67guYXMOIP9zd+UuJ++
a5UAoMmcmxFpmohUgrz2Ocvvg/luWgKL
=za2Q
-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#519972: git-cola: should use private module dirs.

2009-04-20 Thread David Aguilar
On  0, Bernd Zeimetz b...@debian.org wrote:
 Package: git-cola
 Version: 1.3.5.28-1
 Severity: serious
 
 git-cola ships private modules, they should be installed to 
 /usr/share/git-cola
 according to the policy [1], if there is not a good reason to install them
 system-wide. As the modules are not used by any other program, they should
 be moved into the private directory.
 
 [1] 
 http://www.debian.org/doc/packaging-manuals/python-policy/ch-programs.html#s-current_version_progs


The latest release of git-cola fixes this bug.

http://cola.tuxfamily.org/releases/cola-1.3.7.4-src.tar.gz


enjoy,

-- 

David





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



Bug#498529: Any news?

2009-04-20 Thread Eugen Dedu

Michal Čihař wrote:

Hi


Hi,

Sorry for both of them.


Any reason why you write this to -submitter address?


My habit is to write always to -submitter so that he is informed too, 
because he is interested in this bug - in fact it's his bug...


--
Eugen



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



Bug#524835: ITP: thaifonts-siampradesh -- Thai TrueType fonts derived from DIP/SIPA contested fonts

2009-04-20 Thread Theppitak Karoonboonyanan
Package: wnpp
Severity: wishlist
Owner: Theppitak Karoonboonyanan t...@linux.thai.net


* Package name: thaifonts-siampradesh
  Version : 0.2.0
  Upstream Author : Department of Intellectual Property (DIP), Ministry of
Commerce; Software Industry Promotion Agency (Public
Organization) (SIPA)
* URL : http://linux.thai.net/projects/thaifonts-siampradesh
* License : OFL-alike, with written notification requirement (see below)
  Programming Lang: Fontforge sfd
  Description : Thai TrueType fonts derived from DIP/SIPA contest fonts

This package provides Thai fonts derived from winning fonts of a contest
arranged by Department of Intellectual Properties and Software Industry
Promotion Agency, Thailand, in TrueType format. It includes fonts with new
original designs for use in normal texts as well as decorative and
hand-writing fonts.

* License:

Font Computer Program License Agreement

Reserved Font Names for this Font Computer Program:
TH Krub, TH Krub Italic, TH Krub Bold, TH Krub Bold Italic,
TH Niramit AS, TH Niramit AS Italic, TH Niramit AS Bold, TH Niramit AS Bold 
Italic,
TH Kodchasal, TH Kodchasal Italic, TH Kodchasal Bold, TH Kodchasal Bold Italic,
TH Sarabun PSK, TH Sarabun PSK Italic, TH Sarabun PSK Bold, TH Sarabun PSK Bold 
Italic,
TH K2D July8, TH K2D July8 Italic, TH K2D July8 Bold, TH K2D July8 Bold Italic,
TH Mali Grade 6, TH Mali Grade 6 Italic, TH Mali Grade 6 Bold, TH Mali Grade 6 
Bold Italic,
TH Chakra Petch, TH Chakra Petch Italic, TH Chakra Petch Bold, TH Chakra Petch 
Bold Italic,
TH Baijam, TH Baijam Italic, TH Baijam Bold, TH Baijam Bold Italic,
TH KoHo, TH KoHo Italic, TH KoHo Bold, TH KoHo Bold Italic,
TH Fah Kwang, TH Fah Kwang Italic, TH Fah Kwang Bold, TH Fah Kwang Bold Italic.

This Font Computer Program is the copyright of the Department of Intellectual
Property (DIP), Ministry of Commerce and the Software Industry Promotion Agency
(Public Organization) (SIPA) 

The purposes of this Font Computer Program License are to stimulate worldwide
development of cooperative font creation, to benefit for academic, to share and
to develop in partnership with others.

Terms and Conditions of the Font Computer Program

(1) Allow to use without any charges and allow to reproduce, study, adapt and
distribute this Font Computer Program. Neither the original version nor adapted
version of Font Computer Program may be sold by itself, except bundled and/or
sold with any computer program.

(2) If you wish to adapt this Font Computer Program, you must notify copyright
owners (DIP  SIPA) in writing.

(3) No adapted version of Font Computer Program may use the Reserved Font
Name(s), the name(s) of the copyright owners and the author(s) of the Font
Computer Program must not be used to promote or advertise any adapted version,
except obtaining written permission from copyright owners and the author(s).

(4) The adapted version of Font Computer Program must be released under the
term and condition of this license.

DISCLAIMER
THE FONT COMPUTER PROGRAM AND RELATED FILES ARE PROVIDED “AS IS” AND WITHOUT
WARRANTY OF ANY KIND.  NO GUARANTEES ARE MADE THAT THIS FONT COMPUTER PROGRAM
WILL WORK AS EXPECTED OR WILL BE DEVELOPED FURTHUR IN ANY SPECIFIC WAY.  THERE
IS NO OFFER OR GUARANTEE OF TECHNICAL SUPPORT.  



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



Bug#510279: udev rule is ignored at startup

2009-04-20 Thread Marco d'Itri
On Apr 20, Micha Lenk mi...@lenk.info wrote:

 I wonder whether/how this bug is related to #524665. If it is related
 the permissions might get overwritten by udev's file
 /etc/rules.d/91-permissions.rules (now living in /lib/udev/rules.d/).
It's not since the problem is the owner and not the permissions.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#524836: In some applications and applets, the unlock or grant button does not work.

2009-04-20 Thread Mike Bentzen

Package: policykit-gnome
Version: 0.9.2-1
Severity: important

In some applications and applets, the unlock or grant button does not work.

Examples:
After selecting a connection in the Wired connections list, pressing the 
Unlock button in Network manager applet (nm-connection-editor)

does not have any effect.

In the polkit-gnome-authorization application, choosing any selecting 
any property, then pressing the grant button shows a dialog which
allows the user to select a Beneficiary. After selecting a user from the 
drop down list, and pressing the Grant... button, nothing happens.


In both scenarios, the button is able to be clicked, and has a picture 
of grey keys, but once clicked, nothing happens.


However, when I use the network-admin utility, and press the unlock 
button (with the same grey keys), it brings up a dialog asking for the

superuser's password.

Kindest Regards,
Mike


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

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

Versions of packages policykit-gnome depends on:
ii  dbus-x11 1.2.12-1simple interprocess 
messaging syst

ii  libc62.9-7   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess 
messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess 
messaging syst
ii  libgconf2-4  2.26.0-1GNOME configuration 
database syste

ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user 
interface
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of 
internatio
ii  libpolkit-dbus2  0.9-3   library for accessing 
PolicyKit vi

ii  libpolkit-gnome0 0.9.2-1 PolicyKit-gnome library
ii  libpolkit-grant2 0.9-3   library for obtaining 
privileges v

ii  libpolkit2   0.9-3   library for accessing PolicyKit
ii  policykit0.9-3   framework for managing 
administrat


policykit-gnome recommends no packages.

policykit-gnome 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#524837: vala-utils: Missing vala-gen-project

2009-04-20 Thread Enrico Tassi
Package: vala-utils
Version: 0.7.0-1
Severity: normal

The package description declares the package provides vala-gen-project,
but...

  ta...@birba:~/work-area/a$ dpkg -L vala-utils 
  /.
  /usr
  /usr/bin
  /usr/bin/vapicheck
  /usr/share
  /usr/share/doc
  /usr/share/doc/vala-utils
  /usr/share/doc/vala-utils/changelog.gz
  /usr/share/doc/vala-utils/README
  /usr/share/doc/vala-utils/NEWS.gz
  /usr/share/doc/vala-utils/THANKS
  /usr/share/doc/vala-utils/changelog.Debian.gz
  /usr/share/doc/vala-utils/copyright
  /usr/share/doc/vala-utils/AUTHORS

Cheers

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

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

Versions of packages vala-utils depends on:
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libglib2.0-0  2.20.1-1   The GLib library of C routines
ii  libvala0  0.7.0-1C# like language for the GObject s

vala-utils recommends no packages.

Versions of packages vala-utils suggests:
ii  libgtk2.0-dev 2.16.1-2   Development files for the GTK+ lib

-- no debconf information

-- 
Enrico Tassi



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



Bug#519439: disk-manager: Ithink that I have a solution

2009-04-20 Thread Ghent
Package: disk-manager
Version: 1.0.1-2
Severity: normal

I changed that I think be small errors. The sorting being already made by 
origin but not it is needed.
I attach a file with the differences.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (980, 'testing'), (965, 'testing-proposed-updates'), (960, 
'testing'), (940, 'stable'), (920, 'stable'), (80, 'unstable'), (60, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages disk-manager depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-glade2 2.14.1-1   GTK+ bindings: Glade support
ii  python-gtk2   2.14.1-1   Python bindings for the GTK+ widge
ii  python-support0.8.7  automated rebuilding support for P
ii  python2.5 2.5.4-1An interactive high-level object-o

Versions of packages disk-manager recommends:
ii  dmsetup 2:1.02.30-3  The Linux Kernel Device Mapper use
ii  module-init-tools   3.7-pre9-1   tools for managing Linux kernel mo
ii  ntfs-3g 1:2009.2.1-1 read-write NTFS driver for FUSE

disk-manager suggests no packages.

-- no debconf information
diff -u -r DiskManager.orig_debian/Fstab/FstabData.py DiskManager.mod_ghent/Fstab/FstabData.py
--- DiskManager.orig_debian/Fstab/FstabData.py	2008-06-23 18:40:40.0 +0200
+++ DiskManager.mod_ghent/Fstab/FstabData.py	2009-04-20 10:58:04.0 +0200
@@ -55,7 +55,7 @@
 
 
 # Write entry in MntFile in this order :
-path_order = (/, /usr, /home)
+path_order = (/, /usr, /opt, /var, /home)
 
 # System partitions :
 system = { exact  : (/, /home, /tmp),
diff -u -r DiskManager.orig_debian/Fstab/Fstab.py DiskManager.mod_ghent/Fstab/Fstab.py
--- DiskManager.orig_debian/Fstab/Fstab.py	2009-04-20 10:55:14.0 +0200
+++ DiskManager.mod_ghent/Fstab/Fstab.py	2009-04-20 11:04:50.0 +0200
@@ -466,11 +466,11 @@
 try :
 ix =  list(FstabData.path_order).index(x)
 except ValueError :
-ix = 0
+ix = len(FstabData.path_order)
 try :
-iy =  list(FstabData.path_order).index(x)
+iy =  list(FstabData.path_order).index(y)
 except ValueError :
-iy = 0
+iy = len(FstabData.path_order)
 if ix  iy :
 return 1
 if ix  iy :


Bug#524838: Patch panabright.sh to work with the new panasonic_laptop driver

2009-04-20 Thread Matthias Hentges
Package: acpi-support
Version: 0.109-11
Severity: important
Tags: patch

The Debian version of panabright.sh only works with the old pcc_acpi
driver, which doesn`t compile against
any recent kernel. The out-of-kernel pcc_acpi driver has since been
replaced by the in-kernel panasonic-laptop module.

If affected by the bug, one can not use the brightness hotkeys to
adjust the brightness of the LCD, as the new driver uses
/sys/* while the old one used /proc/*.

The attached patch detects which driver is active and acts
accordingly, fixing the non-functional brightness hotkeys.
Please note that I was not able to test the script with the old pcc_acpi driver.


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

Kernel: Linux 2.6.30-rc2 (SMP w/1 CPU core; PREEMPT)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages acpi-support depends on:
ii  acpi-support-base 0.109-11   scripts for handling base ACPI eve
ii  acpid 1.0.8-7Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface
ii  finger0.17-12user information lookup program
ii  hdparm8.9-3  tune hard disk parameters for high
ii  laptop-detect 0.13.7 attempt to detect a laptop
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip
ii  powermgmt-base1.30+nmu1  Common utils and configs for power
ii  vbetool   1.1-2  run real-mode video BIOS code to a
ii  x11-xserver-utils 7.4+2  X server utilities

Versions of packages acpi-support recommends:
ii  dbus  1.2.12-1   simple interprocess messaging syst
ii  hal   0.5.11-8   Hardware Abstraction Layer
ii  nvclock   0.8b4-1Allows you to overclock your nVidi
ii  pm-utils  1.2.4-2utilities and scripts for power ma
ii  radeontool1.5-5  utility to control ATI Radeon back
ii  toshset   1.74-3 Access much of the Toshiba laptop

Versions of packages acpi-support suggests:
pn  laptop-mode-tools none (no description available)

-- no debconf information


-- 
Matthias Hentges
Cologne / Germany

GPG -  gpg --keyserver gpg-keyserver.de --recv-keys 0xAF3030D9

My OS: Debian SID: Geek by Nature, Linux by Choice



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



Bug#524665: Order of rules file processing broken?

2009-04-20 Thread Micha Lenk
Package: udev
Version: 0.140-2

Hi udev maintainers,

when investigating the reasons for bug #524665 I discovered a
discrepancy between the udev man page and what apparently happens on
Joachim's system. The udev man page says in section Rules files:

The udev rules are read from the files located in the
  default rules directory /lib/udev/rules.d/, the custom rules
  directory /etc/udev/rules.d/ and the temporary rules directory
  /dev/.udev/rules.d/. All rule files are sorted and processed in
  lexical order, regardless in which of these directories they live.

In opposite to this Joachim experienced something different: The rules
in /lib/udev/rules.d/91-permissions.rules get applied after the rules
in /etc/udev/rules.d/z60_libchipcard-tools.rules. So the rules from
z60_libchipcard-tools.rules get overwritten by those from
91-permessions.rules even though 91-... comes before z60_... in
lexical order.

Is this a bug in udev or did Joachim observe some weird special cases
(i.e. caused by a race condition)?

I definitely need your help. What do you suggest in order to fix the
bug?

Regards
  Micha

- Forwarded message from Joachim Breitner nome...@debian.org -

Subject: Bug#524665: udev group setting does not work
From: Joachim Breitner nome...@debian.org
To: Debian Bug Tracking System sub...@bugs.debian.org
Date: Sat, 18 Apr 2009 23:13:23 +0200

Package: libchipcard-tools
Version: 4.2.7-2
Severity: important
File: /etc/udev/rules.d/z60_libchipcard-tools.rules

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Micha,

for a while (probably since some udev upgrade), the file
/dev/bus/usb/003/006 (numbers vary, of course) do not have the proper
chipcard group setting any more.

I have attached a udev log with priority=info that shows what happens
when pluggin in my card reader. The settings from
/etc/udev/rules.d/z60_libchipcard-tools.rules do get applied, but are
later overridden by a line in /lib/udev/rules.d/91-permissions.rules:

SUBSYSTEM==usb, ENV{DEVTYPE}==usb_device, \
MODE=0664

Which, as it seems, also resets the group.

I assume that you need to change your udev rule number, or move it to
/lib or something. I guess you should consult the udev maintainers for
that.

Greetings,
Joachim


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

- -- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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 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-2 configuration files for libchipcar
ii  libchipcardc 4.2.7-2 library for accessing smartcards
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libgcc1  1:4.3.3-8   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-8 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

Versions of packages libchipcard-tools recommends:
ii  hal  0.5.12~git20090406.46dc48-1 Hardware Abstraction Layer

Versions of packages libchipcard-tools suggests:
ii  libccid   1.3.10-1   PC/SC driver for USB CCID smart ca
pn  libtowitoko2  none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknqQnMACgkQ9ijrk0dDIGx+fgCfa5jkz/vnlSFf3EO+1SEceT9u
//MAnjxUXm9wDnoj1yE5TUlluZ3imTY3
=K5/l
-END PGP SIGNATURE-




- End forwarded message -



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



Bug#523653: Add support for a configuration file

2009-04-20 Thread Rolf Leggewie

forwarded 523653 https://bugs.launchpad.net/pastebinit/+bug/334920
stop

Damyan, thank you for your report.

Damyan Ivanov wrote:

It would be nice if pastebinit could read options from a configuration file


it already does: ~/.pastebinit.xml

I guess it's not documented yet.  This is already known upstream: 
https://bugs.launchpad.net/pastebinit/+bug/334920




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



Bug#524652: setroubleshoot: sealert segfault when clicked

2009-04-20 Thread Ritesh Raj Sarraf
On Monday 20 Apr 2009 13:58:23 you wrote:
 You might want to add -s 256 to your strace arguments to show the error
 string.

Thank Pierre. That yielded the following:
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])  
 
read(5, 
l\2\1\1\n\0\0\0\1\0\0\0=\0\0\0\6\1s\0\5\0\0\0:1.79\0\0\0\5\1u\0\1\0\0\0\10\1g\0\1s\0\0\7\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\5\0\0\0:1.79\0l\4\1\1\n\0\0\0\2\0\0\0\215\0\0\0\1\1o\0\25\0\0\0/org/freedesktop/DBus\0\0\0\2\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\3\1s\0\f\0\0\0NameAcquired\0\0\0\0\6\1s\0\5\0\0\0:1.79\0\0\0\10\1g\0\1s\0\0\7\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\5\0\0\0:1...,
 
2048) = 260
read(5, 0x8b9a830, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)   
fstat64(5, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0 
 
fcntl64(5, F_GETFL) = 0x802 (flags O_RDWR|O_NONBLOCK)   
 
gettimeofday({1240219746, 660013}, NULL) = 0
 
writev(5, 
[{l\1\0\1\0\0\0\2\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/freedesktop/DBus\0\0\0\6\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\2\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\3\1s\0\f\0\0\0GetNameOwner\0\0\0\0\10\1g\0\1s\0\0,
 
144}, {!\0\0\0org.fedoraproject.Setroubleshootd\0, 38}], 2) = 182 
   
gettimeofday({1240219746, 660482}, NULL) = 0
 
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])  
 
read(5, 
l\3\1\1R\0\0\0\3\0\0\0u\0\0\0\6\1s\0\5\0\0\0:1.79\0\0\0\4\1s\0)\0\0\0org.freedesktop.DBus.Error.NameHasNoOwner\0\0\0\0\0\0\0\5\1u\0\2\0\0\0\10\1g\0\1s\0\0\7\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0M\0\0\0Could
 
not get owner of name 'org.fedoraproject.Setroubleshootd': no such name\0, 
2048) = 218 
read(5, 0x8b9a830, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)   
gettimeofday({1240219746, 660969}, NULL) = 0
 
writev(5, [{l\1\0\1,
\0\0\0\3\0\0\0\210\0\0\0\1\1o\0\25\0\0\0/org/freedesktop/DBus\0\0\0\6\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\2\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0\3\1s\0\22\0\0\0StartServiceByName\0\0\0\0\0\0\10\1g\0\2su\0,
 
152}, {!\0\0\0org.fedoraproject.Setroubleshootd\0\0\0\0\0\0\0, 44}], 2) = 
196  
gettimeofday({1240219746, 672696}, NULL) = 0
 
poll([{fd=5, events=POLLIN}], 1, 25000) = 1 ([{fd=5, revents=POLLIN}])  
 
read(5, l\3\1\0010\0\0\0\4\0\0\0u\0\0\0\6\1s\0\5\0\0\0:1.79\0\0\0\4\1s\0.
\0\0\0org.freedesktop.DBus.Error.Spawn.ChildSignaled\0\0\5\1u\0\3\0\0\0\10\1g\0\1s\0\0\7\1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0+\0\0\0Process
 
/usr/bin/sealert received signal 11\0, 2048) =184
read(5, 0x8b9a830, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)
gettimeofday({1240219747, 798131}, NULL) = 0
send(3, 11setroubleshoot: [dbus.ERROR] could not start dbus: 
org.freedesktop.DBus.Error.Spawn.ChildSignaled: Process /usr/bin/sealert 
received signal 11\0, 147, 0) = 147
close(3)= 0

 I do not see any SIGSEGV in your trace, is this part ok now ?

No. In dmesg, it still says that it crashed.

 I'd also be careful with notification-daemon and dbus stuff, maybe you
 need to restart your X session if you just installed it.
I just did a reboot and the problem is still there.

 I just uploaded 2.1.9, maybe you'd want to check if the error is still
 present.
Will test with it once it hits the archives.

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#524730: problem with text in pdf files created with cups-pdf

2009-04-20 Thread Volker Behr
Just some information from upstream:
I just checked CUPS-PDF 2.5.0 using the CUPS-PDF.ppd with two tests:
a) printing a textfile directly to a PDF
   (lp -d CUPS-PDF .bashrc) 
b) converting a textfile with a2ps to PS and then printing it to PDF
   (a2ps .bashrc -o - | lp -d CUPS-PDF)

In either case the text was fully intact and I could copy and paste
arbitraty sections out of it and do a text-search on it.

So this might be an issue of the application creating the the original
document (maybe this application already creates a PS file with text
being converted to graphics). If that is the case, CUPS-PDF works as
designed since it never got any text to convert.

BEWARE: the above mentioned tests were NOT done on a Debian system! So
you should try to reproduce them.

Regards,
Volker

-- 

Dr. rer. nat. Volker Christian Behr
Experimentelle Physik V (Biophysik), Physikalisches Institut
Universitaet Wuerzburg, Am Hubland, 97074 Wuerzburg, Germany

Office: Room F-069a
+49-931-31-85766 (phone)
+49-931-888-5851 (fax)

On Sun, 2009-04-19 at 15:40 +0200, Anders Lagerås wrote:
 Package: cups-pdf
 Version: 2.5.0-1
 Severity: important
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 If CUPS-PDF.ppd is used as recommended does not the pdf files created contain
 text, instead is everthing seems to be handled as graphics, resulting in large
 non searchable pdf files.
 
 - -- System Information:
 Debian Release: squeeze/sid
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
 Locale: LANG=en_US, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages cups-pdf depends on:
 ii  cups 1.3.10-1Common UNIX Printing System(tm) 
 - 
 ii  cups-client  1.3.10-1Common UNIX Printing System(tm) 
 - 
 ii  ghostscript  8.64~dfsg-1 The GPL Ghostscript 
 PostScript/PDF
 ii  libc62.9-7   GNU C Library: Shared libraries
 ii  libpaper-utils   1.1.23+nmu1 library for handling paper 
 charact
 
 cups-pdf recommends no packages.
 
 Versions of packages cups-pdf suggests:
 pn  system-config-printer-gnome | none (no description available)
 
 - -- no debconf information
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)
 
 iEYEARECAAYFAknrKdwACgkQw5UvgfnzqGq0NgCePLg2Fp8P4kSt64wJ+hyDNQQv
 MZcAnRtqxI98Ieyg77ng6hpsRUNVhUtu
 =W7Ed
 -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#513585: kdm: Login fails due to missing pam upgrade

2009-04-20 Thread Mike McGavin
Just to indicate some replication, I also experienced this in the last few
days.  Presumably it's just a incorrect version for the pam dependencies of
the kdm package, or something like that.

I installed kdm 4.2.2-2 from Debian Unstable on my amd64 system, along with
many other KDE4 packages.  It left me with libpam0g 0.99.7.1-5.  The KDM
login screen would load fine, but whenever entered a username/password and
tried to log in, I'd immediately get a pop-up error dialog indicating than
an error had occurred and that I should check the KDM log file(s) for more
information.  (Unfortunately I don't have the exact error message text, but
it wasn't very helpful.)  The /var/log/kdm.log file didn't have any useful
information, but I eventually discovered some suspect lines in
/var/log/syslog that pointed to pam.  Notably lines like:

Apr 19 17:37:54 mira kdm_greet[9623]: Unknown V_xxx code 4 from core
Apr 19 17:37:55 mira kdm: :0[9607]: PAM pam_setcred: NULL pam handle passed
Apr 19 17:37:55 mira kdm: :0[9607]: pam_setcred() for izogi failed: System
error
Apr 19 17:37:55 mira kdm: :0[9607]: Client start failed
Apr 19 17:37:55 mira kdm: :0[9607]: PAM pam_setcred: NULL pam handle passed
Apr 19 17:37:55 mira kdm: :0[9607]: pam_setcred(DELETE_CRED) failed: System
error

[--snip--]

Apr 19 17:38:09 mira kdm: :0[11203]: PAM error: Bad item passed to
pam_*_item()

When I upgraded libpam0g from version 0.99.7.1-5 to 1.0.1-0 and
libpam-modules from 0.99.7.1-5 to 1.0.1-9 and the problems went away.  (I
already had libpam-runtime 1.0.1-9 from an earlier occasion before
installing kdm 4.2.)


Bug#272335: [rt.debian.org #1298] Bug#272335: www.debian.org do not support mod_gzip

2009-04-20 Thread Simon Paillard
On Mon, Apr 20, 2009 at 07:37:31AM +, Stephen Gran via RT wrote:
 This one time, at band camp, Holger Levsen via RT said:
  URL: https://rt.debian.org/Ticket/Display.html?id=1298 
  
  On Montag, 20. April 2009, Stephen Gran via RT wrote:
   A quick look at the munin stats suggests we don't use all that much
   bandwidth at present (or cpu, for that matter) so maybe it doesn't
   matter either way?

By the way, there are 0 figures for apache access / volume on
http://munin.debian.org/debian.org/klecker.debian.org.html

  ain't there are third factor to consider: the bandwidth(+cpu) used on the 
  user 
  side? if the user has little bandwidth, mod_gzip enhances the browsing 
  experience (if cpu is available to unzip).
 
 Sure, it's a factor to take into account, but I don't think it's worth
 changing the setup for a hypothetical issue.  I'm only talking at
 present about issues we can actualy measure, which lead me to believe we
 don't need to make any changes.
 
Given the high volume of static text content, we can think it (at
least) worth the try.

And you're right, that's currently not a issue, but a possible
improvement.

Apache will cache the compressed pages anyway, so the CPU impact would
not be that high, for an improved downloading time (serveral dozens of
%) on the user side where the pages will display faster.

And since the compression level can set, it can be used to tune the CPU
usage.

Best regards.

-- 
Simon Paillard



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



Bug#484876: apt-mirror bug still present in lenny 6 monthes after a known fix

2009-04-20 Thread Alain Baeckeroot
The fix works for me too, but it is still not pushed in lenny after 6 monthes !

What can we do to push this fix into stable lenny ?




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



Bug#524262: tumgreyspf: greylist is skipped, when SPF returns access neither permitted nor denied

2009-04-20 Thread Thomas Goirand
Hi,

I've been trying to find out what's going on. Any suggestion on what to fix?

Thomas



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



Bug#524841: Patch panabright.sh to work with the new panasonic_laptop driver

2009-04-20 Thread Matthias Hentges
Package: acpi-support
Version: 0.109-11
Severity: important
Tags: patch

And here is the patch that should have been attached to my first mail *cough*

-- 
Matthias Hentges
Cologne / Germany

GPG -  gpg --keyserver gpg-keyserver.de --recv-keys 0xAF3030D9

My OS: Debian SID: Geek by Nature, Linux by Choice
--- ./panabright.sh.orig	2009-04-19 18:24:27.0 +
+++ ./panabright.sh	2009-04-19 18:29:39.0 +
@@ -16,10 +16,20 @@
 fi
 
 # get brightness parameters
-
-BRIGHTNESS=$(( `cat /proc/acpi/pcc/$INTERFACE` ))
-MAXBRIGHT=$(( `cat /proc/acpi/pcc/$INTERFACE_max` ))
-MINBRIGHT=$(( `cat /proc/acpi/pcc/$INTERFACE_min` ))
+# The new in-kernel driver uses /sys/.../panasonic, while the old
+# pcc_acpi driver uses /proc/acpi/pcc
+if test -d /sys/class/backlight/panasonic
+then
+	BRIGHTNESS=`cat /sys/class/backlight/panasonic/brightness`
+	MAXBRIGHT=`cat /sys/class/backlight/panasonic/max_brightness`
+	MINBRIGHT=20
+	BRIGHTNESS_ADJUST=/sys/class/backlight/panasonic/brightness
+else
+	BRIGHTNESS=$(( `cat /proc/acpi/pcc/$INTERFACE` ))
+	MAXBRIGHT=$(( `cat /proc/acpi/pcc/$INTERFACE_max` ))
+	MINBRIGHT=$(( `cat /proc/acpi/pcc/$INTERFACE_min` ))
+	BRIGHTNESS_ADJUST=/proc/acpi/pcc/$INTERFACE
+fi
 
 # adjust span so that there are 10 brightness increments
 
@@ -34,7 +44,7 @@
else
   BRIGHTNESS=$(( $MINBRIGHT ))
fi
-   echo $BRIGHTNESS  /proc/acpi/pcc/$INTERFACE
+   echo $BRIGHTNESS  ${BRIGHTNESS_ADJUST}
 elif [ x$1 = xup ]; then
LIMIT=$(( $MAXBRIGHT - $SPAN ))
if [ $BRIGHTNESS -lt $LIMIT ]; then
@@ -42,7 +52,7 @@
else
   BRIGHTNESS=$(( $MAXBRIGHT ))
fi
-   echo $BRIGHTNESS  /proc/acpi/pcc/$INTERFACE
+   echo $BRIGHTNESS  ${BRIGHTNESS_ADJUST}
 else
echo 2 Unknown argument $1
 fi


Bug#524840: RFP: libkiokudb-perl -- Object Graph storage engine for Perl

2009-04-20 Thread Peter Makholm
Package: wnpp
Severity: wishlist

* Package name: libkiokudb-perl
  Version : 0.26
  Upstream Author : Yuval Kogman nothingm...@woobling.org
* URL : http://search.cpan.org/dist/KiokuDB/
* License : Artistic or GPL-1+ (e.g as Perl)
  Programming Lang: Perl
  Description : Object Graph storage engine for Perl

KiokuDB is a Moose based frontend to various data stores, somewhere in between
Tangram and Pixie.

Its purpose is to provide persistence for regular objects with as little
effort as possible, without sacrificing control over how persistence is
actually done, especially for harder to serialize objects.

KiokuDB is also non-invasive: it does not use ties, AUTOLOAD, proxy objects,
sv_magic or any other type of trickery.

Many features important for proper Perl space semantics are supported,
including shared data, circular structures, weak references, tied structures,
etc.

Available storage backends includes: BerkelyDB, DBI, CouchDB, and a File based
backend.

The following unpackaged Perl distributions is needed as well:

- App-Cmd
- asa
- Data-UUID-LibUUID
- Hash-Util-FieldHash-Compat
- IO-TieCombine
- MooseX-App-Cmd
- MooseX-Blessed-Reconstruct
- MooseX-Role-Parameterized
- MooseX-Types (ITP: #524713)
- MooseX-Types-Path-Class
- MooseX-Types-Set-Object
- MooseX-YAML
- Search-GIN
- Test-TempDir
- YAML-LibYAML



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



Bug#523707: uploaded to mentors

2009-04-20 Thread Jérémy Lal

see
http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=spawn-fcgi

cheers,
Jérémy.




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



Bug#524845: libslang2 depends on libpng12-0

2009-04-20 Thread Wolfgang Walter
Package: libslang2
Version: 2.1.4-2
Severity: serious

libslang2 depends on libpng12-0.

Either libpng12-0 is really needed, in this case libpng12-0 probably needs to 
go into /lib.

Or, as it seems, libpng12-0 is not needed, just suggested.

Regards,
-- 
Wolfgang Walter
Studentenwerk München
Anstalt des öffentlichen Rechts



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



Bug#524842: rpm: FTBFS

2009-04-20 Thread Adrian Bunk
Package: rpm
Version: 4.4.2.3-1
Severity: serious

--  snip  --

# dpkg-buildpackage

make[5]: Entering directory `/tmp/rpm-4.4.2.3/popt'
/bin/sh ./libtool --tag=CC   --mode=compile x86_64-linux-gnu-gcc 
-DHAVE_CONFIG_H -I. -I. -I.-g -O2 -c -o popt.lo popt.c
../libtool: line 821: X--tag=CC: command not found
../libtool: line 854: libtool: ignoring unknown tag : command not found
../libtool: line 821: X--mode=compile: command not found
../libtool: line 988: *** Warning: inferring the mode of operation is 
deprecated.: command not found
../libtool: line 989: *** Future versions of Libtool will require --mode=MODE 
be specified.: command not found
../libtool: line 1132: Xx86_64-linux-gnu-gcc: command not found
../libtool: line 1132: X-DHAVE_CONFIG_H: command not found
../libtool: line 1132: X-I.: command not found
../libtool: line 1132: X-I.: command not found
../libtool: line 1132: X-I.: command not found
../libtool: line 1132: X-g: command not found
../libtool: line 1132: X-O2: command not found
../libtool: line 1132: X-c: command not found
../libtool: line 1184: Xpopt.lo: command not found
../libtool: line 1189: libtool: compile: cannot determine name of library 
object from `': command not found
make[5]: *** [popt.lo] Error 1
make[5]: Leaving directory `/tmp/rpm-4.4.2.3/popt'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/tmp/rpm-4.4.2.3/popt'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/tmp/rpm-4.4.2.3/popt'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/rpm-4.4.2.3'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/rpm-4.4.2.3'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
# exit

--  snip  --


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



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



Bug#524843: debian-installer

2009-04-20 Thread Aliel
Package: installation-reports

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/i386/iso-cd/debian-testing-i386-netinst.iso
Date: 19.04.2009
Machine: Dell optiplex 320
Processor: Intel Pentium 4 CPU 3.00Ghz x86 Family 15Model 4 Stepping 9
Memory: 512 Mb
Hadrd Drive: SATA Samsung

jau...@ubuntu:~$ lspci -knn
00:00.0 Host bridge [0600]: ATI Technologies Inc Radeon Xpress 200 Host Bridge 
[1002:5a33] (rev 01)
Kernel modules: ati-agp
00:01.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a3f]
Kernel modules: shpchp
00:12.0 SATA controller [0106]: ATI Technologies Inc SB600 Non-Raid-5 SATA 
[1002:4380]
Kernel driver in use: ahci
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI0) 
[1002:4387]
Kernel driver in use: ohci_hcd
00:13.1 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI1) 
[1002:4388]
Kernel driver in use: ohci_hcd
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI2) 
[1002:4389]
Kernel driver in use: ohci_hcd
00:13.3 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI3) 
[1002:438a]
Kernel driver in use: ohci_hcd
00:13.4 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI4) 
[1002:438b]
Kernel driver in use: ohci_hcd
00:13.5 USB Controller [0c03]: ATI Technologies Inc SB600 USB Controller (EHCI) 
[1002:4386]
Kernel driver in use: ehci_hcd
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] 
(rev 13)
Kernel driver in use: piix4_smbus
Kernel modules: i2c-piix4
00:14.1 IDE interface [0101]: ATI Technologies Inc SB600 IDE [1002:438c]
Kernel driver in use: pata_atiixp
00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA) 
[1002:4383]
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB600 PCI to LPC Bridge 
[1002:438d]
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge 
[1002:4384]
01:05.0 VGA compatible controller [0300]: ATI Technologies Inc RC410 [Radeon 
Xpress 200] [1002:5a61]
02:09.0 Ethernet controller [0200]: Broadcom Corporation BCM4401-B0 100Base-TX 
[14e4:170c] (rev 02)
Kernel driver in use: b44
Kernel modules: b44

ubu...@jaunty:~$ lspci -nn
00:00.0 Host bridge [0600]: ATI Technologies Inc Radeon Xpress 200 Host Bridge 
[1002:5a33] (rev 01)
00:01.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a3f]
00:12.0 SATA controller [0106]: ATI Technologies Inc SB600 Non-Raid-5 SATA 
[1002:4380]
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI0) 
[1002:4387]
00:13.1 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI1) 
[1002:4388]
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI2) 
[1002:4389]
00:13.3 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI3) 
[1002:438a]
00:13.4 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI4) 
[1002:438b]
00:13.5 USB Controller [0c03]: ATI Technologies Inc SB600 USB Controller (EHCI) 
[1002:4386]
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] 
(rev 13)
00:14.1 IDE interface [0101]: ATI Technologies Inc SB600 IDE [1002:438c]
00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA) 
[1002:4383]
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB600 PCI to LPC Bridge 
[1002:438d]
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge 
[1002:4384]
01:05.0 VGA compatible controller [0300]: ATI Technologies Inc RC410 [Radeon 
Xpress 200] [1002:5a61]
02:09.0 Ethernet controller [0200]: Broadcom Corporation BCM4401-B0 100Base-TX 
[14e4:170c] (rev 02)


Not booting the kernel: i see massage after press install Decompressing 
Linux... Parsing ELF... done Booting the kernel.
[  1.299640] PCI: Cannot allocate resource region 1 of device :00:14.0

after, all freez

and i see some massage in EXPERT MODE, then last 2 from them:
[  1.508005] parport_pc 00:07: reported by plug and play ACPI
[  1.508005] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]

after, all freez to

I can not to start installation in Lenny, kernel freez after press install, but 
Ethc installation works nice.



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



Bug#522028: metacity: window frame context menu always opening in main screen

2009-04-20 Thread Gerfried Fuchs
found 522028 1:2.24-0.2
thanks

* Josselin Mouette j...@debian.org [2009-04-01 18:31:31 CEST]:
 Le mardi 31 mars 2009 à 10:04 +0200, Gerfried Fuchs a écrit :
   ... at least it feels like that. I have an external monitor attached
  and turned on with xrandr as --right-of. I then open e.g. evolution or
  urxvt or any application. When I then right-click on the window frame to
  get the context menu for e.g. making a window get displayed on all work
  spaces the menu always gets opened on the main screen, not on the
  current one next to the mouse cursor - which is highly inconvenient and
  annoying.
  
   I hope metacity is the proper culprit here as it does create that menu
  entries.
 
 Does it still happen with metacity 2.24 in unstable?

 Unfortunately, yes.
Rhonda



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



Bug#461636: KDEInit could not launch . . .

2009-04-20 Thread Michael Leupold
How did you launch Konqueror as root? Did you login as root, use su or sudo? 
Or was there even a menu option to launch a root konqueror?



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



Bug#524709: Switch to prompt for manual overriding of all autoconf decisions

2009-04-20 Thread Mark Hobley

 From: Ralf Wildenhues ralf.wildenh...@gmx.de

 Please consider
 - using the right configure switches to enable
 cross-compilation if that is an issue for you,

 Both issues are extensively discussed in the Autoconf
 manual.

I am aware of this. Unfortunately, some decisions are still made automatically, 
and need overriding. The number of build options available
is less than the number of decisions being made.

This is a major problem when buildstrapping and scratch building, where you 
need to know that a package will build on a target machine that does not yet 
exist, and the target machine has some configuration differences to the current 
build machine (In my case, the same architecture, but a modified operating 
system, for example, a different shell, a different awk tool, a
different Native Language Support handler, etc, etc.). The autoconf tool may 
decide to use particular shell tools, or facilities to package build
that will not exist on the target. This means that I have no way of knowing
whether a package will rebuild on the target, because it did not build
using the same facilities on the test host. This means that if I have to modify 
a package source, and it becomes broken on the target, I have no way of knowing 
whether the breakage is as a result of my modification, or whether the breakage 
was already there, and the package would not have built anyway, even before my 
modifications were made.

If I had full control of the autoconf process, this would be a lot easier.
At the moment, I am having to try and reverse engineer squillions and 
squillions of pages of autoconf generated junk, to try and track down build 
decisions, in the hope of creating an override. And to compound the problem, 
the junk is not in a central location, but within each package. So I make a 
modification on one set of build scripts for one package, and I have to start 
all over again to make the same modification on another set of build scripts. 
(I wish we had scripts in a central shared location, so modifying one script, 
is global.)

It would be nice to have full control, of the build process without having to 
try and reverse engineer squillions of pages of generated junk (of which only 
some is actually relevant to my platform).

Mark.







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



Bug#524847: xmonad: fails to build/rebuild

2009-04-20 Thread Michal Suchanek hramr...@centrum.cz
Package: xmonad
Version: 0.8.1-3
Severity: important


The libghc6-xmonad package searches for ghc binary during build but
Debian only provides ghc6.

This can be worked around by adding /usr/lib/ghc-version/bin into the
path. However,

xmonad --recompile

also needs this directory added into path.

Otherwise it fails to build xmonad from the user configuration file but
does not report any error.

This would also likely happen if user created a configuration file and
did not have the recommended -dev packages installed. Recompile would
file without giving any reason.

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

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

Versions of packages xmonad depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libffi5   3.0.7-1Foreign Function Interface library
ii  libgmp3c2 2:4.2.2+dfsg-3 Multiprecision arithmetic library
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxinerama1  2:1.0.3-2  X11 Xinerama extension library
ii  x11-utils 7.3+2+nmu1 X11 utilities

Versions of packages xmonad recommends:
ii  libghc6-xmonad-dev0.8.1-3A lightweight X11 window manager
ii  libghc6-xmonad-doc0.8.1-3A lightweight X11 window manager; 

xmonad 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#524731: /usr/games/fretsonfire: should depends on libgl1-mesa-dev

2009-04-20 Thread Evgeni Golov
Hi,

On Sun, 19 Apr 2009 15:42:01 +0200 Bertrand Marc wrote:

 I was unable to launch fretsonfire without the package libgl1-mesa-dev. I
 only got an error like
 File /usr/lib/python2.5/ctypes/__init__.py, line 348, in __init__
 self._handle = _dlopen(self._name, mode)
 OSError: ('GL: cannot open shared object file: No such file or directory', 
 'GL', None)
 
 With the package libgl1-mesa-dev installed, fretsonfire works perfectly fine.
 Maybe you should add a dependency or at least have the right python-* (like
 python-opengl?) add the dependency.

Is it enough to install binutils instead of libgl1-mesa-dev?

Regards
Evgeni


pgpccJZNvrfEN.pgp
Description: PGP signature


Bug#305371: Gelukwensen: File Your Claims

2009-04-20 Thread Yahoo / MSN Loterij



Yahoo / MSN Loterij Incoperation
Baley House, Har Road
Sutton, Londen
SM1 4te
Verenigd Koninkrijk.

Dit is om u te informeren dat u een prijs gewonnen geld van
vijfhonderdduizend, Groot-Brittannië Sterlings Pound (£ 500.000,00) voor
de maand april 2009 Loterij promotie, die is georganiseerd door Yahoo /
MSN LOTTERY INC  Windows Live.

U bent contact op te nemen met de gebeurtenissen manager op of vóór de
datum van uw claim, winnaars worden betaald in overeenstemming met zijn /
haar Schikkingsfonds Centre.Yahoo / Msn Loterij prijs moet worden
aangevraagd tot uiterlijk 20 dagen na de datum van Trekkingsspelen Melding
na de trekking datum in die prijs heeft gewonnen. Een prijs niet geclaimd
binnen deze termijn zal worden verbeurd.

Dit zijn je identificatienummers:

Partijnummer . YM09102XN
Reff aantal ... YM35447XN
Winnende nummer ... YM09788XN

Deze nummers vallen binnen uw Locatie bestand, wordt u verzocht contact op
te nemen met de gebeurtenissen manager, stuur uw winnende nummers aan hem,
zodat hij controleert uw vorderingen. Maar u moet invullen en indienen van
dit formulier naar de gebeurtenissen manager voor verificatie  regie over
hoe je kan beweren uw winnende fonds.

1. Volledige naam ..
2. Contact Adres ...
3. Leeftijd 
4. Telefoonnummers ...
5. Burgerlijke staat .
6. Sex 
7. Naasten 
8. Postcode ...
9. Beroep .
10.State :.
11.Country 
12.Nationality 
13. Uw referentie en Partijnummer aan de top van
deze e-mail:

(Contact Events Manager)
===
Naam: Hillary Mr.Martins
E-mail: eventsmanagerclaranced...@live.co.uk
Telefoonnummer: +447024073659
Fax: +448704953004


Hartelijk dank en mijn hartelijke felicitaties nogmaals!

Hoogachtend,
MRS. Joan Anderson
(Yahoo / MSN Loterijspellen / Loterij Coördinator).




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



Bug#524839: ash: vi command line editing does not work

2009-04-20 Thread Michal Suchanek hramr...@centrum.cz
Package: ash
Version: 0.5.4-12
Severity: normal


The man page says that

set -o vi

sets the vi editing mode and that pressing

ESC

should switch to command mode.

setting the option and pressing ESC results in echoing ^[ into the
command line, the vi command mode is not activated.


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

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

Versions of packages ash depends on:
ii  dash  0.5.4-12   POSIX-compliant shell

ash recommends no packages.

ash 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#524844: hardinfo: benchmark results unreadable

2009-04-20 Thread Dominik Litzinger
Package: hardinfo
Version: 0.5c-1
Severity: minor

Describing the bug:
The values of the benchmark results are presented inside sort of a 
progress bar. Values higher than 50% show as white text on very light 
grey backbround which makes them unreadable. I guess hardinfo does not 
take care of the active color scheme but uses fixed font colors.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
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 hardinfo depends on:
ii  libatk1.0-0  1.24.0-2The ATK accessibility toolkit
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.20.0-2The GLib library of C routines
ii  libgtk2.0-0  2.14.7-5The GTK+ graphical user interface 
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio
ii  pciutils 1:3.1.2-3   Linux PCI Utilities

hardinfo recommends no packages.

Versions of packages hardinfo suggests:
ii  mesa-utils7.0.3-7Miscellaneous Mesa GL utilities

-- 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#524665: Order of rules file processing broken?

2009-04-20 Thread Marco d'Itri
On Apr 20, Micha Lenk mi...@lenk.info wrote:

 In opposite to this Joachim experienced something different: The rules
 in /lib/udev/rules.d/91-permissions.rules get applied after the rules
 in /etc/udev/rules.d/z60_libchipcard-tools.rules. So the rules from
 z60_libchipcard-tools.rules get overwritten by those from
 91-permessions.rules even though 91-... comes before z60_... in
 lexical order.
Please reproduce this using udevadm test.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#463285: Closed as duplicate

2009-04-20 Thread Michael Leupold
Closed because it's a duplicate of the aforementioned bug.


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


Bug#524848: hal: input.xkb.layout requires input.keyboard capabilities

2009-04-20 Thread Bjørn Mork
Package: hal
Version: 0.5.12~git20090406.46dc48-2
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Adding input.xkb.layout and input.xkb.variant to other input.keys devices
is useless at best. On my laptop, this ends up setting xkb sttributes on
the two non-keyboard devices 'Video Bus' and 'ThinkPad Extra Buttons'.

The attached patch restricts xkb propertes to input.keyboard only.


Bjørn

- -- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages hal depends on:
ii  acl  2.2.47-2Access control list utilities
ii  adduser  3.110   add and remove users and groups
ii  consolekit   0.3.0-2 framework for defining and trackin
ii  dbus 1.2.1-5 simple interprocess messaging syst
ii  hal-info 20090309-1  Hardware Abstraction Layer - fdi f
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.1-5 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libexpat12.0.1-4 XML parsing C library - runtime li
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libglib2.0-0 2.16.6-1+lenny1 The GLib library of C routines
ii  libhal-storage1  0.5.11-8Hardware Abstraction Layer - share
ii  libhal1  0.5.11-8Hardware Abstraction Layer - share
ii  libpolkit2   0.9-3   library for accessing PolicyKit
ii  libsmbios2   2.0.3.dfsg-1Provide access to (SM)BIOS informa
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii  libvolume-id10.141-1 libvolume_id shared library
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip
ii  mount2.13.1.1-1  Tools for mounting and manipulatin
ii  pciutils 1:3.0.0-6   Linux PCI Utilities
ii  pm-utils 1.1.2.4-1   utilities and scripts for power ma
ii  policykit0.9-3   framework for managing administrat
ii  udev 0.125-7+lenny1  /dev/ and hotplug management daemo
ii  usbutils 0.73-10 Linux USB utilities

Versions of packages hal recommends:
ii  eject   2.1.5+deb1-4 ejects CDs and operates CD-Changer
pn  libsmbios-bin   none   (no description available)

Versions of packages hal suggests:
pn  gnome-device-manager  none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknsTQ0ACgkQ10rqkowbIskOzgCeJmRJWGeD++cVOa1sccVtthJb
x4MAn0AhSxvJ5FuFZHbZiF9TOqDPs6E2
=rrJn
-END PGP SIGNATURE-
--- /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi.orig	2009-04-17 23:27:01.0 +0200
+++ /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi	2009-04-20 12:08:59.0 +0200
@@ -5,7 +5,7 @@
   hal-setup-keymap
 
 
-
+
   base
 
   

Bug#461796: Still reproducible

2009-04-20 Thread Michael Leupold
Are you still able to reproduce this bug with the latest packages (eg. 
4:4.2.2-1)? I can't reproduce this problem here but it might be related to 
your display driver as well.



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



Bug#524846: ITP: between -- game about consciousness and isolation

2009-04-20 Thread Paul Wise
Package: wnpp
Severity: wishlist
Owner: Paul Wise p...@debian.org
X-Debbugs-CC: debian-devel-ga...@lists.debian.org, debian-de...@lists.debian.org

* Package name: between
  Version : 5
  Upstream Author : Jason Rohrer
* URL : 
http://www.esquire.com/features/best-and-brightest-2008/rohrer-game
* License : None (Public Domain)
  Programming Lang: C++, PHP
  Description : game about consciousness and isolation

Long description will be a distillation of the above URL.

This will be maintained by the pkg-games team.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#524849: libslang2: file conflict with slsh (replaces missing?)

2009-04-20 Thread Michal Politowski
Package: libslang2
Version: 2.1.4-2
Severity: normal

Preparing to replace libslang2 2.1.4-1 (using .../libslang2_2.1.4-2_i386.deb) 
...
Unpacking replacement libslang2 ...
dpkg: error processing 
/var/cache/debtorrent/ftp.pl.debian.org_debian_dists_unstable_main_binary-i386/pool/main/s/slang2/libslang2_2.1.4-2_i386.deb
 (--unpack):
 trying to overwrite `/usr/lib/slang/v2/modules/fcntl-module.so', which is also 
in package slsh
Errors were encountered while processing:
 
/var/cache/debtorrent/ftp.pl.debian.org_debian_dists_unstable_main_binary-i386/pool/main/s/slang2/libslang2_2.1.4-2_i386.deb

-- 
Michał Politowski
Talking has been known to lead to communication if practiced carelessly.


signature.asc
Description: Digital signature


Bug#524850: cups: duplex printing stopped working

2009-04-20 Thread Didrik Pinte
Package: cups
Version: 1.3.10-1
Severity: normal

Hi guys,

changing the ip of my printer, I had to reinstall it. It is a HP OfficeJet Pro
L7590 that did work fine. Reinstalling was done by removing the old printer
from cups and install a new printer from the HPIJS toolbox.

Since the reinstall, I cannot print in duplex anymore. When duplex printing is
activated, I got this error in cups error.log :

E [20/Apr/2009:12:34:25 +0200] PID 15424 (/usr/lib/cups/filter/foomatic-rip)
stopped with status 9!
E [20/Apr/2009:12:34:36 +0200] [Job 82] Job stopped due to filter errors.

I have activated foomatic debugging to see what happened and got the following
trying to print a mail from evolution (from /tmp/foomatic-rip.log):

-
foomatic-rip version 4.0.0.203 running...
called with arguments: '82', 'did', 'evolution job #1', '1', 'PageSize=A4
Quality=FromPrintoutMode InputSlot=Default number-up=1 PrintoutMode=Draft
Duplex=DuplexNoTumble job-uuid=urn:uuid:99a43d1c-b7fd-32db-5454-b8aabcc8c8a2'
Getting input from file 
Parsing PPD file ...
Added option Resolution
Added option PageSize
Added option Model
Added option PrintoutMode
Added option InputSlot
Added option Duplex
Added option Quality
Added option ImageableArea
Added option PaperDimension
Added option Font

Parameter Summary
-

Spooler: cups
Printer: Officejet_Pro_L7500
Shell: /bin/bash
PPD file: /etc/cups/ppd/Officejet_Pro_L7500.ppd
ATTR file: 
Printer model: HP Officejet Pro l7500 hpijs, hpijs 3.9.2
Options:  PageSize=A4 Quality=FromPrintoutMode InputSlot=Default number-up=1
PrintoutMode=Draft Duplex=DuplexNoTumble
job-uuid=urn:uuid:99a43d1c-b7fd-32db-5454-b8aabcc8c8a2
Job title: evolution job 1
File(s) to be printed:
STDIN

Ghostscript extra search path ('GS_LIB'): /usr/share/cups/fonts
Pondering option 'PageSize=A4'
Pondering option 'Quality=FromPrintoutMode'
Pondering option 'InputSlot=Default'
Pondering option 'number-up=1'
Unknown option number-up=1.
Pondering option 'PrintoutMode=Draft'
Pondering option 'Duplex=DuplexNoTumble'
Pondering option 'job-uuid=urn:uuid:99a43d1c-b7fd-32db-5454-b8aabcc8c8a2'
Unknown option job-uuid=urn:uuid:99a43d1c-b7fd-32db-5454-b8aabcc8c8a2.
Starting process reset-file (generation 1)
reset-file exited with status 0



File: STDIN



Filetype: PDF
Storing temporary files in /var/spool/cups/tmp
File contains 3 pages
Starting renderer with command: gs -dFirstPage=1  -q -dBATCH -dPARANOIDSAFER
-dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=595
-dDEVICEHEIGHTPOINTS=842 -sDeviceManufacturer=HEWLETT-PACKARD
-sDeviceModel=Officejet Pro K5400 -dDuplex=true -dTumble=false -r300
-sIjsParams=Quality:Quality=4,Quality:ColorMode=2,Quality:MediaType=0,Quality:PenSet=2,Quality:SpeedMech=1,PS:MediaPosition=7
-dIjsUseOutputFD -sOutputFile=-   /var/spool/cups/tmp/foomatic-DJ5Jlf
Starting process kid3 (generation 1)
Starting process kid4 (generation 2)
Starting process renderer (generation 2)
JCL: ^[%-123...@pjl
job data

GPL Ghostscript 8.64: Unrecoverable error, exit code 1
renderer exited with status 1
Possible error on renderer command line or PostScript error. Check options.Kid3
exit status: 3
-

Viewing the created PDF file (/var/spool/cups/tmp/foomtic-DJ5Jlf) using evince
works fine.

I am available for any more information on the problem if needed.

I going on trying to find what could be the problem. I found some information
that could be close to this :
- https://bugs.launchpad.net/ubuntu/+source/cups/+bug/345183
- there seem to be some pdftops updates recently in the Debian package but it
  did not solve the problem.

Thanks for any help,

Didrik



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

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

Versions of packages cups depends on:
ii  adduser  3.110   add and remove users and groups
ii  bc   1.06.94-3.1 The GNU bc arbitrary precision cal
ii  cups-common  1.3.10-1Common UNIX Printing System(tm) - 
ii  debconf [debconf-2.0 1.5.26  Debian configuration management sy
ii  ghostscript  8.64~dfsg-1 The GPL Ghostscript PostScript/PDF
ii  libavahi-compat-libd 0.6.25-1Avahi Apple Bonjour compatibility 
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libcups2 1.3.10-1Common UNIX Printing System(tm) - 
ii  libcupsimage21.3.10-1Common UNIX Printing System(tm) - 
ii  libdbus-1-3  1.2.12-1   

Bug#524835: ITP: thaifonts-siampradesh -- Thai TrueType fonts derived from DIP/SIPA contested fonts

2009-04-20 Thread MJ Ray
Theppitak Karoonboonyanan t...@linux.thai.net wrote:
 * License : OFL-alike, with written notification requirement (see 
 below)

I believe this font is postcard-ware, so does not follow the DFSG, so
cannot be part of debian.  cc'ing debian-legal to check.

 * License:

 Font Computer Program License Agreement

 Reserved Font Names for this Font Computer Program:
 TH Krub, TH Krub Italic, TH Krub Bold, TH Krub Bold Italic,
 TH Niramit AS, TH Niramit AS Italic, TH Niramit AS Bold, TH Niramit AS Bold 
 Italic,
 TH Kodchasal, TH Kodchasal Italic, TH Kodchasal Bold, TH Kodchasal Bold 
 Italic,
 TH Sarabun PSK, TH Sarabun PSK Italic, TH Sarabun PSK Bold, TH Sarabun PSK 
 Bold Italic,
 TH K2D July8, TH K2D July8 Italic, TH K2D July8 Bold, TH K2D July8 Bold 
 Italic,
 TH Mali Grade 6, TH Mali Grade 6 Italic, TH Mali Grade 6 Bold, TH Mali Grade 
 6 Bold Italic,
 TH Chakra Petch, TH Chakra Petch Italic, TH Chakra Petch Bold, TH Chakra 
 Petch Bold Italic,
 TH Baijam, TH Baijam Italic, TH Baijam Bold, TH Baijam Bold Italic,
 TH KoHo, TH KoHo Italic, TH KoHo Bold, TH KoHo Bold Italic,
 TH Fah Kwang, TH Fah Kwang Italic, TH Fah Kwang Bold, TH Fah Kwang Bold 
 Italic.

This is a long list of reserved names.  I don't know Thai words.
Does anyone know if the names are words which would usually be used
otherwise?  If so, this is a significant restriction on derived works
which would break DFSG 3 and/or 4.

 This Font Computer Program is the copyright of the Department of Intellectual
 Property (DIP), Ministry of Commerce and the Software Industry Promotion 
 Agency
 (Public Organization) (SIPA) 

 The purposes of this Font Computer Program License are to stimulate worldwide
 development of cooperative font creation, to benefit for academic, to share 
 and
 to develop in partnership with others.

While not a DFSG problem, I think it's misleading to call this
cooperative font creation when the sale restriction limits economic
participation and the notification requirement means it is not
autonomous.  Compare http://www.ica.coop/coop/principles.html

 Terms and Conditions of the Font Computer Program

 (1) Allow to use without any charges and allow to reproduce, study, adapt and
 distribute this Font Computer Program. Neither the original version nor 
 adapted
 version of Font Computer Program may be sold by itself, except bundled and/or
 sold with any computer program.

 (2) If you wish to adapt this Font Computer Program, you must notify copyright
 owners (DIP  SIPA) in writing.

This makes the font postcard-ware, breaking DFSG 1: free redistribution.

 (3) No adapted version of Font Computer Program may use the Reserved Font
 Name(s), the name(s) of the copyright owners and the author(s) of the Font
 Computer Program must not be used to promote or advertise any adapted version,
 except obtaining written permission from copyright owners and the author(s).

 (4) The adapted version of Font Computer Program must be released under the
 term and condition of this license.

 DISCLAIMER
 THE FONT COMPUTER PROGRAM AND RELATED FILES ARE PROVIDED “AS IS” AND WITHOUT
 WARRANTY OF ANY KIND.  NO GUARANTEES ARE MADE THAT THIS FONT COMPUTER PROGRAM
 WILL WORK AS EXPECTED OR WILL BE DEVELOPED FURTHUR IN ANY SPECIFIC WAY.  THERE
 IS NO OFFER OR GUARANTEE OF TECHNICAL SUPPORT.  

Spelling error: further not furthur.

Hope that helps,
-- 
MJR/slef
My Opinion Only: see http://people.debian.org/~mjr/
Please follow http://www.uk.debian.org/MailingLists/#codeofconduct



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



Bug#507094: Batch Number: 074/05/ZY369

2009-04-20 Thread Irish Online News
You won £750,000.

Contact Mr.Derek White

Send Information: Name Age Country




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



Bug#522780: tags

2009-04-20 Thread Holger Levsen
tags 522780 +patch
severity 522780 serious
User: debian...@lists.debian.org
Usertags: piuparts.debian.org piuparts

Hi Jaakko,

just add update-inetd to Depends:, that fixes the issue. Thus tagging patch.

http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps

full log: http://piuparts.debian.org/sid/fail/tftpd-hpa_0.49-1.log


regards,
Holger


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


Bug#524852: kde-i18n localization packages REMOVED from testing and unstable repositories

2009-04-20 Thread Torsten Doerschel
Package: kde-i18n
Version: 4:3.5.10-2
Severity: important
Tags: l10n

There aren't any KDE localization packages in the testing and unstable 
repositories anymore.
According to the source package webpage, this happened:

[2009-04-08] kde-i18n REMOVED from testing (Britney)
[2009-04-07] Removed 4:3.5.10-2 from unstable (Frank Lichtenheld)

So now eigther an old package version is installed only local or if not yet one 
can use the whole 
KDE only in english.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
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



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



Bug#524824: [Pkg-utopia-maintainers] Bug#524824: policykit: mounting removable drives in KDE4 stopped working with default settings

2009-04-20 Thread Michael Biebl
Marcus Better wrote:
 Package: policykit
 Version: 0.9-3
 Severity: normal
 
 Today I was suddenly unable to mount a removable USB drive (a digital
 camera) in KDE4, something that used to work before. In between I have
 updated a bunch of packages, notably from KDE 4.2.1 to 4.2.2, so maybe
 it's related to this.
 
 The device shows up in the plugged devices widget, but selecting the
 drive's icon in Dolphin gives a message about PermissionDenied for the
 action org.freedesktop.hal.storage.mount-removable.
 
 Some web searches turned up a workaround, I added the following rule
 PolicyKit.conf and it started working:
 
 match action=org.freedesktop.hal.storage.mount-removable 
 return result=yes /
 /match
 
 I think this should work out of the box.

Could you please remove this rule again, reboot and try again.
If that doesn't work, please send me the output of ck-list-sessions.

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#524851: [xserver-xorg-video-intel] X don't start with intel_drv.so: undefined symbol

2009-04-20 Thread Ondrej Kudlik
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: serious

After recent upgrade I'm not able to start X again. No usefull info
in xorg log, but in gdm.log I can see

/usr/bin/X: symbol lookup error:
/usr/lib/xorg/modules/drivers//intel_drv.so: undefined symbol:
drmCheckModesettingSupported

Thanks for your help, tell me if additional info is needed

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.28.7

Debian Release: squeeze/sid
  500 unstable   ftp.debian.cz

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6  (= 2.3.6-6~) | 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


Package's Recommends field is empty.

Package's Suggests field is empty.

# 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 commands as root:
#
#   cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom
#   md5sum /etc/X11/xorg.conf /var/lib/xfree86/xorg.conf.md5sum
#   dpkg-reconfigure xserver-xorg

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
EndSection

Section Extensions
#Option Composite Enable
Option DRI Disable
EndSection

Section Module
Loadi2c
Loadbitmap
#   Loaddbe
Loadddc
#   Loaddri
Loadextmod
#Load   freetype
#Load   glx
Loadint10
#   Loadrecord
#   Loadtype1
#   Loadv4l
Loadvbe
EndSection

Section InputDevice
Identifier  Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout us,cz
Option  XKbOptionsgrp:alt_shift_toggle,grp_led:scroll, 
compose:ralt
EndSection

Section InputDevice
Identifier  Logitech G7
Driver  mouse
Option  Protocol ImPS/2
Option  Device/dev/input/mice
Option  Buttons 9
Option  ZAxisMapping 4 5 8 9
Option  Resolution 800
Option  SendCoreEventstrue
EndSection

Section InputDevice
Identifier  Touchpad
Driver  synaptics
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
Option  CorePointer
Option  SHMConfig on
EndSection

Section Device
Identifier  i915
Driver  intel
#   VideoRam 128000
#   Option  VBERestore true
#Option  monitor-LVDS Fujitsu LCD
#Option  monitor-VGA LCD
EndSection

Section Monitor
Identifier  Fujitsu LCD
#Option DPMS
#HorizSync  30-67
#VertRefresh50-75
Option PreferredMode  1400x1050
EndSection
Section Monitor
Identifier  LCD
#Option DPMS
#HorizSync  30-67
#VertRefresh50-75
Option  RightOf   Fujitsu LCD
Option PreferredMode  1680x1050
EndSection

Section Screen
Identifier  Screen
Device  i915
Monitor Fujitsu LCD
DefaultDepth24
SubSection Display
Depth   24
#Modes  1680x1050 1400x1050 1024x768 800x600
Modes   1400x1050 1024x768 800x600
#Modes  1024x768 800x600
#Virtual3080 3080
EndSubSection
EndSection

Section ServerLayout
Identifier  Layout
Screen  Screen
InputDevice Keyboard
InputDevice Logitech G7
#InputDevice

Bug#524855: hal should recommend hal-info instead of depending on it

2009-04-20 Thread Bjørn Mork
Package: hal
Version: 0.5.12~git20090406.46dc48-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hal-info contains lots of optional configuration data which may or may
not be wanted by the system administrator.  hal can function without it
and is useful without it.  In fact, hal can be even be viewed as more
useful without hal-info if the administrator disagrees with hal-info
defaults.

Please demote the Depends: hal-info to a Recommends: hal-info


Bjørn


- -- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages hal depends on:
ii  acl  2.2.47-2Access control list utilities
ii  adduser  3.110   add and remove users and groups
ii  consolekit   0.3.0-2 framework for defining and trackin
ii  dbus 1.2.1-5 simple interprocess messaging syst
ii  hal-info 20090309-1  Hardware Abstraction Layer - fdi f
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.1-5 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libexpat12.0.1-4 XML parsing C library - runtime li
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libglib2.0-0 2.16.6-1+lenny1 The GLib library of C routines
ii  libhal-storage1  0.5.11-8Hardware Abstraction Layer - share
ii  libhal1  0.5.11-8Hardware Abstraction Layer - share
ii  libpolkit2   0.9-3   library for accessing PolicyKit
ii  libsmbios2   2.0.3.dfsg-1Provide access to (SM)BIOS informa
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii  libvolume-id10.141-1 libvolume_id shared library
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip
ii  mount2.13.1.1-1  Tools for mounting and manipulatin
ii  pciutils 1:3.0.0-6   Linux PCI Utilities
ii  pm-utils 1.1.2.4-1   utilities and scripts for power ma
ii  policykit0.9-3   framework for managing administrat
ii  udev 0.125-7+lenny1  /dev/ and hotplug management daemo
ii  usbutils 0.73-10 Linux USB utilities

Versions of packages hal recommends:
ii  eject   2.1.5+deb1-4 ejects CDs and operates CD-Changer
pn  libsmbios-bin   none   (no description available)

Versions of packages hal suggests:
pn  gnome-device-manager  none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknsWZcACgkQ10rqkowbIslZ5wCdHeu62H5KUKg6fcyIJgde
wmwAn3C+Q/V/SK/tLGIhmcFChJLhPYAB
=0wf9
-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#524854: python-lunar fails to install in squeeze; update-python-modules fails

2009-04-20 Thread Edward Welbourne
Package: python-lunar
Version: 2.0.1-1
Severity: grave
Justification: renders package unusable


When aptitude tried to install python-lunar, it said: quote

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

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

/quote (give or take any typos when I transcribed it from the
console).  A freshly-started python session is subsequently unable to
import lunar, so the package is unusable.

The update-python-modules script is provided by:
ii  python-support 0.8.7 automated rebuilding support for 
Python modules

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

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

Versions of packages python-lunar depends on:
ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libgtksourceview2.0-0  2.4.2-1   shared libraries for the GTK+ synt
ii  liblunar-1-0   2.0.1-1   Chinese Lunar library
ii  libpango1.0-0  1.24.0-3+b1   Layout and rendering of internatio
ii  python2.5  2.5.4-1   An interactive high-level object-o
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

python-lunar recommends no packages.

python-lunar 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#524835: ITP: thaifonts-siampradesh -- Thai TrueType fonts derived from DIP/SIPA contested fonts

2009-04-20 Thread Theppitak Karoonboonyanan
On Mon, Apr 20, 2009 at 5:39 PM, MJ Ray m...@phonecoop.coop wrote:
 Theppitak Karoonboonyanan t...@linux.thai.net wrote:
 * License         : OFL-alike, with written notification requirement (see 
 below)

 I believe this font is postcard-ware, so does not follow the DFSG, so
 cannot be part of debian.  cc'ing debian-legal to check.

FYI, I once posted to consult with debian-legal last year [1],
but have got no answer so far. So, I decide to prepare the
pacakge for non-free.

  [1] http://lists.debian.org/debian-legal/2008/07/msg8.html

 * License:

 Font Computer Program License Agreement

 Reserved Font Names for this Font Computer Program:
 TH Krub, TH Krub Italic, TH Krub Bold, TH Krub Bold Italic,
 TH Niramit AS, TH Niramit AS Italic, TH Niramit AS Bold, TH Niramit AS Bold 
 Italic,
 TH Kodchasal, TH Kodchasal Italic, TH Kodchasal Bold, TH Kodchasal Bold 
 Italic,
 TH Sarabun PSK, TH Sarabun PSK Italic, TH Sarabun PSK Bold, TH Sarabun PSK 
 Bold Italic,
 TH K2D July8, TH K2D July8 Italic, TH K2D July8 Bold, TH K2D July8 Bold 
 Italic,
 TH Mali Grade 6, TH Mali Grade 6 Italic, TH Mali Grade 6 Bold, TH Mali Grade 
 6 Bold Italic,
 TH Chakra Petch, TH Chakra Petch Italic, TH Chakra Petch Bold, TH Chakra 
 Petch Bold Italic,
 TH Baijam, TH Baijam Italic, TH Baijam Bold, TH Baijam Bold Italic,
 TH KoHo, TH KoHo Italic, TH KoHo Bold, TH KoHo Bold Italic,
 TH Fah Kwang, TH Fah Kwang Italic, TH Fah Kwang Bold, TH Fah Kwang Bold 
 Italic.

 This is a long list of reserved names.  I don't know Thai words.
 Does anyone know if the names are words which would usually be used
 otherwise?  If so, this is a significant restriction on derived works
 which would break DFSG 3 and/or 4.

They can be considered proper names.
Each line represents a font family shipped in the package.

 This Font Computer Program is the copyright of the Department of Intellectual
 Property (DIP), Ministry of Commerce and the Software Industry Promotion 
 Agency
 (Public Organization) (SIPA)

 The purposes of this Font Computer Program License are to stimulate worldwide
 development of cooperative font creation, to benefit for academic, to share 
 and
 to develop in partnership with others.

 While not a DFSG problem, I think it's misleading to call this
 cooperative font creation when the sale restriction limits economic
 participation and the notification requirement means it is not
 autonomous.  Compare http://www.ica.coop/coop/principles.html

Well, it's the same restriction as found in DejaVu font, anyway:

The Font Software may be sold as part of a larger software package but no
copy of one or more of the Font Software typefaces may be sold by itself.

 Terms and Conditions of the Font Computer Program

 (1) Allow to use without any charges and allow to reproduce, study, adapt and
 distribute this Font Computer Program. Neither the original version nor 
 adapted
 version of Font Computer Program may be sold by itself, except bundled and/or
 sold with any computer program.

 (2) If you wish to adapt this Font Computer Program, you must notify 
 copyright
 owners (DIP  SIPA) in writing.

 This makes the font postcard-ware, breaking DFSG 1: free redistribution.

Yes, it's my major concern. But after a very long wait (over two
years) to resolve this with the copyright holder, I decided to give
it up, and to ship it as non-free because of this very clause.

 (3) No adapted version of Font Computer Program may use the Reserved Font
 Name(s), the name(s) of the copyright owners and the author(s) of the Font
 Computer Program must not be used to promote or advertise any adapted 
 version,
 except obtaining written permission from copyright owners and the author(s).

 (4) The adapted version of Font Computer Program must be released under the
 term and condition of this license.

 DISCLAIMER
 THE FONT COMPUTER PROGRAM AND RELATED FILES ARE PROVIDED “AS IS” AND WITHOUT
 WARRANTY OF ANY KIND.  NO GUARANTEES ARE MADE THAT THIS FONT COMPUTER PROGRAM
 WILL WORK AS EXPECTED OR WILL BE DEVELOPED FURTHUR IN ANY SPECIFIC WAY.  
 THERE
 IS NO OFFER OR GUARANTEE OF TECHNICAL SUPPORT.

 Spelling error: further not furthur.

Can I edit the license terms/disclaimers? Is it legal to do so?

 Hope that helps,

Thanks for reviewing.

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



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



Bug#524853: xorg: randomly crashes after recent input driver upgrade

2009-04-20 Thread Tobias Wolter
Package: xorg
Version: 1:7.4+1
Severity: important

Doesn't seem like everyone's affected, but for me, X.org right now crashes all
the time, resulting in an unusable system. The server log file says the
following:


Backtrace:
0: /usr/bin/X(xorg_backtrace+0x26) [0x4ef016]
1: /usr/bin/X(xf86SigHandler+0x39) [0x476509]
2: /lib/libc.so.6 [0x7f344cf5c190]
3: /usr/bin/X [0x4d9635]
4: /usr/bin/X [0x454ee8]
5: /usr/bin/X [0x45707e]
6: /usr/bin/X(CheckMotion+0x9b) [0x45890b]
7: /usr/bin/X(ProcessOtherEvent+0x2d9) [0x53bc39]
8: /usr/bin/X(XkbHandleActions+0x21b) [0x562dab]
9: /usr/bin/X(XkbProcessKeyboardEvent+0x116) [0x5635e6]
10: /usr/bin/X [0x55b7a4]
11: /usr/bin/X [0x55b84c]
12: /usr/bin/X [0x4ec878]
13: /usr/bin/X(WaitForSomething+0x56b) [0x4ececb]
14: /usr/bin/X(Dispatch+0x80) [0x44cf90]
15: /usr/bin/X(main+0x3bd) [0x43316d]
16: /lib/libc.so.6(__libc_start_main+0xe6) [0x7f344cf485a6]
17: /usr/bin/X [0x4325f9]

Fatal server error:
Caught signal 11.  Server aborting

This usually seems to happen when using a movement key or backspace - so far,
letters and the like do not seem affected. But it results in my X being most
unusable. The config has been running stable for some time now, and so far
never troubled me. Atteched for convenience.

Please fix this ASAP.

-towo

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

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

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.24.3-3   The GNOME 2 terminal emulator appl
ii  libgl1-mesa-glx [libgl1]  7.4-2  A free implementation of the OpenG
ii  libglu1-mesa  7.4-2  The OpenGL utility library (GLU)
ii  rxvt-unicode [x-terminal-emul 9.06-1 RXVT-like terminal emulator with U
ii  x11-apps  7.3+4  X applications
ii  x11-session-utils 7.3+1  X session utilities
ii  x11-utils 7.4+1  X11 utilities
ii  x11-xfs-utils 7.4+1  X font server utilities
ii  x11-xkb-utils 7.4+2  X11 XKB utilities
ii  x11-xserver-utils 7.4+2  X server utilities
ii  xauth 1:1.0.3-2  X authentication utility
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X
ii  xfonts-base   1:1.0.0-6  standard fonts for X
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X
ii  xfonts-utils  1:7.4+1X Window System font utility progr
ii  xinit 1.1.1-1X server initialisation tool
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu
ii  xserver-xorg  1:7.4+1the X.Org X server
ii  xterm [x-terminal-emulator]   242-1  X terminal emulator

Versions of packages xorg recommends:
ii  xorg-docs 1:1.4-4Miscellaneous documentation for th

xorg suggests no packages.

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

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

Section Extensions
#   Option Composite disable
Option Composite enable
EndSection

Section Module
Loadi2c
Loadbitmap
Loadddc
Loadextmod
Loadfreetype
Loadglx
Load   

Bug#524857: reportbug: Always uses text interface

2009-04-20 Thread Goncalo Marrafa
Package: reportbug
Version: 4.1
Severity: normal

No matter what interface i choose with reportbug --configure, when i run it
it always uses the default console interface.


-- Package-specific info:
** Environment settings:
EDITOR=jmacs

** /home/gjm/.reportbugrc:
reportbug_version 4.1
mode novice
ui urwid
realname Goncalo Marrafa
email g...@uevora.pt
no-cc
header X-Debbugs-CC: g...@uevora.pt
smtphost reportbug.debian.org

-- 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 reportbug depends on:
ii  apt   0.7.21 Advanced front-end for dpkg
ii  python2.5.4-2An interactive high-level object-o
ii  python-reportbug  4.1Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utils  none(no description available)
pn  debsumsnone(no description available)
ii  dlocate0.96.1fast alternative to dpkg -L and dp
ii  file   5.00-1Determines file type using magic
ii  gnupg  1.4.9-4   GNU privacy guard - a free PGP rep
ii  postfix [mail-transport-ag 2.5.5-1.1 High-performance mail transport ag
ii  python-gnome2-extras   2.25.3-2  Extra Python bindings for the GNOM
ii  python-gtk22.12.1-6  Python bindings for the GTK+ widge
ii  python-urwid   0.9.8.4-1 curses-based UI/widget library for
ii  python-vte 1:0.17.4-2+b1 Python bindings for the VTE widget

-- 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#516497: [debian-mysql] Bug#516497: mysql-server-5.0: mysql server fails to start after upgrade

2009-04-20 Thread Hector Oron
Norbert Tretkowski wrote:
 Am Sonntag, den 19.04.2009, 11:04 +0200 schrieb Hector Oron:
 I tried to dist-upgrade to unstable, but same error was ocurring and
 even from experimental.
 
 Are you using splashy?

Yes, I am
ii  splashy   0.3.13-5A
complete user-space boot splash system

Does it make any difference?

Cheers



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



Bug#524860: python-sqlalchemy - can't create schema-qualified tables: unknown database test 'PRAGMA test.table_info(test)'

2009-04-20 Thread Bastian Blank
Package: python-sqlalchemy
Version: 0.5.3-1
Severity: important

Creation of schema-qualified tables fails with the sqlite backend. I
want to use that in the unittests, so I don't require the real database.

| Traceback (most recent call last):
|   File bug.py, line 11, in module
| metadata.create_all(engine)
|   File /var/lib/python-support/python2.5/sqlalchemy/schema.py, line 1765, 
in create_all
| bind.create(self, checkfirst=checkfirst, tables=tables)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
1129, in create
| self._run_visitor(self.dialect.schemagenerator, entity, 
connection=connection, **kwargs)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
1158, in _run_visitor
| visitorcallable(self.dialect, conn, **kwargs).traverse(element)
|   File /var/lib/python-support/python2.5/sqlalchemy/sql/visitors.py, line 
89, in traverse
| return traverse(obj, self.__traverse_options__, self._visitor_dict)
|   File /var/lib/python-support/python2.5/sqlalchemy/sql/visitors.py, line 
200, in traverse
| return traverse_using(iterate(obj, opts), obj, visitors)
|   File /var/lib/python-support/python2.5/sqlalchemy/sql/visitors.py, line 
194, in traverse_using
| meth(target)
|   File /var/lib/python-support/python2.5/sqlalchemy/sql/compiler.py, line 
807, in visit_metadata
| collection = [t for t in sql_util.sort_tables(tables) if 
self._can_create(t)]
|   File /var/lib/python-support/python2.5/sqlalchemy/sql/compiler.py, line 
800, in _can_create
| return not self.checkfirst or not self.dialect.has_table(self.connection, 
table.name, schema=table.schema)
|   File /var/lib/python-support/python2.5/sqlalchemy/databases/sqlite.py, 
line 442, in has_table
| cursor = _pragma_cursor(connection.execute(%stable_info(%s) % (pragma, 
qtable)))
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
824, in execute
| return Connection.executors[c](self, object, multiparams, params)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
888, in _execute_text
| return self.__execute_context(context)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
896, in __execute_context
| self._cursor_execute(context.cursor, context.statement, 
context.parameters[0], context=context)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
950, in _cursor_execute
| self._handle_dbapi_exception(e, statement, parameters, cursor, context)
|   File /var/lib/python-support/python2.5/sqlalchemy/engine/base.py, line 
931, in _handle_dbapi_exception
| raise exc.DBAPIError.instance(statement, parameters, e, 
connection_invalidated=is_disconnect)
| sqlalchemy.exc.OperationalError: (OperationalError) unknown database test 
'PRAGMA test.table_info(test)' ()

Testcode:

from sqlalchemy import MetaData, Table, Column, Integer
from sqlalchemy import create_engine

metadata = MetaData()
abonnement_table = Table('test', metadata,
Column('id', Integer, primary_key=True),
schema='test',
)

engine = create_engine('sqlite:///:memory:')
metadata.create_all(engine)

Bastian

-- 
I'm a soldier, not a diplomat.  I can only tell the truth.
-- Kirk, Errand of Mercy, stardate 3198.9



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



Bug#524363: evolution: Seems like a FAQ... should be fixed... but not AFAICT

2009-04-20 Thread Olivier Berger
Package: evolution
Version: 2.24.5-3
Severity: normal

The problem is still there, unfortunately... maybe it appears after some time, 
or some new emails incoming in between... :(

Even stranger, sometimes, it will refuse to empty the trash (mails are still 
there), even though it doesn't report any error GUI-wise (still some warnings 
in stdout) :-(


However, this bug is a FAQ, it seems : 
http://www.go-evolution.org/FAQ#Why_do_I_get_an_error_.22Summary_and_folder_mismatch.2C_even_after_a_sync.22.3F

It points to bug http://bugzilla.gnome.org/show_bug.cgi?id=213072 which is 
announced as fixed in 2.23.91 ... However it's still not in 2.24.5 AFAICT :(

Should we reopen upstream's bug ?


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

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

Versions of packages evolution depends on:
ii  dbus 1.2.12-1simple interprocess messaging syst
ii  debconf [debconf 1.5.26  Debian configuration management sy
ii  evolution-common 2.24.5-3architecture independent files for
ii  evolution-data-s 2.24.5-4+b1 evolution database backend server
ii  gconf2   2.24.0-7GNOME configuration database syste
ii  gnome-icon-theme 2.24.0-4GNOME Desktop icon theme
ii  libart-2.0-2 2.3.20-2Library of functions for 2D graphi
ii  libatk1.0-0  1.24.0-2The ATK accessibility toolkit
ii  libbluetooth23.36-1  Library to use the BlueZ Linux Blu
ii  libbonobo2-0 2.24.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.24.1-1The Bonobo UI library
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libcamel1.2-14   2.24.5-4+b1 The Evolution MIME message handlin
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libebackend1.2-0 2.24.5-4+b1 Utility library for evolution data
ii  libebook1.2-92.24.5-4+b1 Client library for evolution addre
ii  libecal1.2-7 2.24.5-4+b1 Client library for evolution calen
ii  libedataserver1. 2.24.5-4+b1 Utility library for evolution data
ii  libedataserverui 2.24.5-4+b1 GUI utility library for evolution 
ii  libegroupwise1.2 2.24.5-4+b1 Client library for accessing group
ii  libenchant1c2a   1.4.2-3.3   a wrapper library for various spel
ii  libexchange-stor 2.24.5-4+b1 Client library for accessing Excha
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib
ii  libgconf2-4  2.24.0-7GNOME configuration database syste
ii  libgdata-google1 2.24.5-4+b1 Client library for accessing Googl
ii  libgdata1.2-12.24.5-4+b1 Client library for accessing Googl
ii  libglade2-0  1:2.6.4-1   library to load .glade files at ru
ii  libglib2.0-0 2.20.0-2The GLib library of C routines
ii  libgnome-pilot2  2.0.15-2.4  Support libraries for gnome-pilot
ii  libgnome2-0  2.24.1-2The GNOME 2 library - runtime file
ii  libgnomecanvas2- 2.20.1.1-1  A powerful object-oriented display
ii  libgnomeui-0 2.24.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   1:2.24.1-1  GNOME Virtual File System (runtime
ii  libgtk2.0-0  2.14.7-5The GTK+ graphical user interface 
ii  libgtkhtml-edito 3.24.5-2HTML rendering/editing library - e
ii  libgtkhtml3.14-1 3.24.5-2HTML rendering/editing library - r
ii  libhal1  0.5.11-8Hardware Abstraction Layer - share
ii  libice6  2:1.0.5-1   X11 Inter-Client Exchange library
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libnm-glib0  0.6.6-3 network management framework (GLib
ii  libnotify1 [libn 0.4.5-1 sends desktop notifications to a n
ii  libnspr4-0d  4.7.1-4 NetScape Portable Runtime Library
ii  libnss3-1d   3.12.2.with.ckbi.1.73-2 Network Security Service libraries
ii  liborbit21:2.14.17-0.1   libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio
ii  libpisock9   0.12.3-10   library for communicating with a P
ii  libpisync1   0.12.3-10   synchronization library for PalmOS
ii  

Bug#516497: [debian-mysql] Bug#516497: mysql-server-5.0: mysql server fails to start after upgrade

2009-04-20 Thread Norbert Tretkowski
Am Montag, den 20.04.2009, 13:39 +0200 schrieb Hector Oron:
 Does it make any difference?

Looks like a bug in splashy, which was fixed in 0.3.13-5 about two days
ago, see #522104, #523187, #523449, #523823, #524275, #524276, #524286,
#524314, #524316, #524317 and #524433 for reference.

Norbert




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



Bug#524861: ITP: python-daemon -- Python library to implement a well-behaved Unix daemon process

2009-04-20 Thread Ben Finney
Package: wnpp
Severity: wishlist
Owner: Ben Finney ben+deb...@benfinney.id.au

Package name: python-daemon
Version : 1.4.4
Upstream Author : Ben Finney
URL : http://pypi.python.org/pypi/python-daemon/
License : PSF-2+
Programming Lang: Python
Description : Python library to implement a well-behaved Unix daemon process

This library implements PEP 3143: Standard daemon process library.

A well-behaved Unix daemon process is tricky to get right, but the
required steps are much the same for every daemon program. A
DaemonContext instance holds the behaviour and configured process
environment for the program; use the instance as a context manager to
enter a daemon state.

-- 
 \ “I must say that I find television very educational. The minute |
  `\   somebody turns it on, I go to the library and read a book.” |
_o__)—Groucho Marx |
Ben Finney b...@benfinney.id.au


signature.asc
Description: Digital signature


Bug#524855: hal should recommend hal-info instead of depending on it

2009-04-20 Thread Michael Biebl
severity 524855 wishlist
tags 524855 wontfix
thanks

Bjørn Mork wrote:
 Package: hal
 Version: 0.5.12~git20090406.46dc48-2
 Severity: normal
 
 hal-info contains lots of optional configuration data which may or may
 not be wanted by the system administrator.  hal can function without it
 and is useful without it.  In fact, hal can be even be viewed as more
 useful without hal-info if the administrator disagrees with hal-info
 defaults.

There is a simple mechanism to override the configuration via files in 
/etc/hal/fdi

Given the minimal size and no external dependencies, I don't think demoting the
dependency is a good idea (thus wontfix).
hal-info was not split out into a separate package, because it is an optional
part, but because it is updated more frequently and so can be released
independently from hal.

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#478833: devscripts: popcon sorting for the *-alert scripts

2009-04-20 Thread Jan Hauke Rahm
On Mon, Apr 20, 2009 at 12:55:19PM +0800, Paul Wise wrote:
 On Sun, 2009-04-19 at 18:22 +0200, Jan Hauke Rahm wrote:
 
  Okay, seems like I needed to inversely (is that a word?) sort the hash
  keys. A new patch is attached. If you, Paul, find again some time
  testing would be much apppreciated. I'll leave this topic now to give
  the actual maintainers a chance to review what I've done to the formerly
  nice readable code. :)
 
 Looks good, only weird thing is the popcon rank is negative:

This is actually intentional. Using negative numbers is my simple
solution for inverting the sorting. :) Unfortunately I used a 'if'
instead of an 'unless' and now this pseudo ranking is displayed for
--pc-local but no ranking with remote data. But this is fixed easily.

Let's see what Adam and the others think about it.

 Also:
 
   dict inversely

Yep, the world can be so simple. :-D

Cheers,
Hauke


signature.asc
Description: Digital signature


Bug#524858: hal-info puts configuration files in /usr/share

2009-04-20 Thread Bjørn Mork
Package: hal-info
Version: 20090309-1
Severity: serious
Justification: Policy 10.7.2

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hal-info contains a mix of hardware dependent quirks and system dependent
configuration, all of which are placed in /usr/share/hal.

The files /usr/share/hal/fdi/information/10freedesktop/30-keymap-* are
all examples of files matching the definition of a configuration file in
Debian (policy 10.7.1):

 A file that affects the operation of a program, or provides site- or
  host-specific information, or otherwise customizes the behavior of a
  program. Typically, configuration files are intended to be modified
  by the system administrator (if needed or desired) to conform to local
  policy or to provide more useful site-specific behavior.

Policy require such files to reside in /etc.  My suggestion would be to
move them to /usr/share/doc/hal-info/examples and only keep strict
quirks in /usr/share/hal.  


Bjørn

- -- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

- -- no debconf information

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

iEYEARECAAYFAknsXUIACgkQ10rqkowbIsnnzgCeNjo6TlvxqSH7voDKP0+FRJs1
D7wAniwHqpLkBAxUWYVAVQEgWfMsnuAz
=mOJ6
-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



  1   2   3   4   >