Bug#585580: ITP: nautilus-ideviceinfo -- nautilus extension showing extended Idevice (Iphone/Ipod/Ipad) information

2010-06-12 Thread Josselin Mouette
Le samedi 12 juin 2010 à 02:45 +0200, Julien Lavergne a écrit :
 Package: wnpp
 Severity: wishlist
 Owner: Julien Lavergne julien.laver...@gmail.com
 
 * Package name: nautilus-ideviceinfo
   Version : 0.1.0
   Upstream Author : Nikias Bassen, Martin Szulecki, Bastien Nocera
 * URL : http://www.libimobiledevice.org/
 * License : GPL2+, BSD
   Programming Lang: C
   Description : nautilus extension showing extended Idevice
 (Iphone/Ipod/Ipad) information
 
 Nautilus-iDeviceInfo is a nautilus extension showing extended device
 information in the nautilus properties dialog. It shows details like
 serial number, software version, baseband/modem firmware version, and
 storage usage (with nice eye candy).

Frankly I don’t think this has anything to do in nautilus itself. We
have a tool for that now: gnome-disk-utility. It would be way easier and
more consistent to extend it rather than extend the file manager.

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


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


Bug#585597: ITP: libordb-debianmodules-perl -- An ORLite-based ORM Database API

2010-06-12 Thread Alan Haggai Alavi
Package: wnpp
Owner: Alan Haggai Alavi alanhag...@alanhaggai.org
Severity: wishlist

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

* Package name: libordb-debianmodules-perl
  Version : 0.01
  Upstream Author : Ryan Niebur ryanrya...@gmail.com
* URL : http://search.cpan.org/dist/ORDB-DebianModules/
* License : GPL, Artistic
  Programming Lang: Perl
  Description : An ORLite-based ORM Database API

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



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



Bug#585500: emdebian-grip: French translation

2010-06-12 Thread Christian PERRIER
Quoting Neil Williams (codeh...@debian.org):
 tag 585500 + pending
 quit

Hi Neil,

Let's include Nicolas in the loop so that he learns about the errors
in the file (and avoids them later on).and eventually looks to the
other localizable file you're talking about...

 
 On Fri, 11 Jun 2010 06:02:49 +0200
 Christian Perrier bubu...@debian.org wrote:
 
  Package: emdebian-grip
  Severity: wishlist
  Tags: l10n
  
  Attached is the French translation for this package, by Nicolas Sauzède.
 
 There were a few errors in the PO file which I've fixed so that the
 package builds properly - generally these are a result of having to
 translate complete sections of XML and then if the translated string
 does not correctly implement the XML, the translated file cannot be
 parsed. e.g. emphasistag was not followed by /emphasis as it was
 in the msgid. It's one of the difficulties of manpage translations and
 it is hard to test without actually building the modified package.
 
 I've also updated the POT file in the meantime and a few strings that
 have been added did not need translation anyway (command line option
 names and example command lines), so I've completed those.
 
 The current translation in SVN is now:
 n...@calvin:doc$ ~/scripts/msgfmt 
 fr.po: 560 translated messages, 10 fuzzy translations, 9 untranslated
 messages.
 
 I'm happy with that but if the few remaining strings can be done, I'd
 be happy with that too - either pick up the PO from SVN [0] or ask.
 
 [0]
 http://www.emdebian.org/svn/export/7311/current/host/trunk/emdebian-grip/trunk/doc/po/fr.po
 
 BTW, there's also a POT file for program output messages - the copy in
 the source package is mostly up to date (only 2 new strings) but I can
 send the updated file, if requested. Currently, those messages only
 have a Catalan translation.
 ca: 155 translated messages, 1 fuzzy translation, 1 untranslated
 message.
 
 I wasn't planning on uploading the package particularly soon, so I'd
 held off calling for translations. I will probably put in a call for
 translations for program output and manpages in the next few days, so
 that I can hopefully bring in other translations in the same upload.
 
 Thanks for the translation.
 
 -- 
 
 
 Neil Williams
 =
 http://www.data-freedom.org/
 http://www.linux.codehelp.co.uk/
 http://e-mail.is-not-s.ms/
 



-- 




signature.asc
Description: Digital signature


Bug#584846: Detects only 64MB and fails to boot on Intel Green City board if e820 hooked by GRUB2

2010-06-12 Thread Josh Triplett
Package: linux-2.6
Severity: normal

I managed to reproduce the problem using stock upstream kernels and
defconfig, and with defconfig (and no initramfs) the kernel managed to
use little enough memory that it booted successfully with 64MB of RAM.

Investigating, I found that Linux decided not to use e820, and instead
decided to use the older BIOS function 0x88, which cannot report more
than 64MB of RAM.

With some investigation and bisection, I managed to track the problem
down to the following commit:

commit c549e71d073a6e9a4847497344db28a784061455
Author: H. Peter Anvin h...@zytor.com
Date:   Sat Mar 28 13:53:26 2009 -0700

x86, setup: ACPI 3, BIOS workaround for E820-probing code

Impact: ACPI 3 spec compliance, BIOS bug workaround

The ACPI 3 spec added another field to the E820 buffer -- which is
backwards incompatible, since it contains a validity bit.
Furthermore, there has been at least one report of a BIOS which
assumes that the buffer it is pointed at is the same buffer as for the
previous E820 call.  Therefore, read the data into a temporary buffer
and copy the standard part of it if and only if the valid bit is set.

Signed-off-by: H. Peter Anvin h...@zytor.com


A kernel built from c549e71d073a6e9a4847497344db28a784061455 finds 64MB
of RAM; a kernel built from c549e71d073a6e9a4847497344db28a784061455^
successfully finds all 4GB of RAM.

Also note that newer upstream kernels, including v2.6.35-rc3, fail as
well.  Since later kernels revert part of the above commit, the issue
must lie with the parts of the commit not reverted.

And, again, I can reproduce this using the stock upstream GRUB2 1.98
release built from source, by booting it from a USB key, and then
booting the disk MBR via:

set root=(hd1)
drivemap (hd1) (hd0)
chainloader +1
boot


Nothing special about drivemap here; anything that uses grub's mmap
module to reserve memory via e820 (GRUB_MACHINE_MEMORY_RESERVED) will
cause grub to hook e820 and trigger this bug.  However, in stock grub,
only drivemap does this.

- Josh Triplett



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



Bug#582382: rinputd: General update after the debconf review process

2010-06-12 Thread Christian PERRIER
Dear Debian maintainer,

On Sunday, May 02, 2010, I sent you a notification about the beginning of a 
review
action on debconf templates for rinputd.

Then, I sent you a bug report with rewritten templates and announcing
the beginning of the second phase of this action: call for translation
updates.

Translators have been working hard and here is now the result of their efforts.

Please consider using it EVEN if you committed files to your
development tree as long as they were reported.

The attached tarball contains:

- debian/changelog with the list of changes
- debian/control with rewrites of packages' descriptions
- debian/templates with all the rewritten templates file(s)
- debian/po/*.po with all PO files (existing ones and new ones)

As said, please use *at least* the PO files as provided here,
preferrably over those sent by translators in their bug reports. All
of them have been checked and reformatted. In some cases, formatting
errors have been corrected.

The patch.rfr file contains a patch for the templates and control
file(s) alone.

Please note that this patch applies to the templates and control
file(s) of your package as of Sunday, May 02, 2010. If your package was updated
in the meantime, I may have updated my reference copybut I also
may have missed that. This is indeed why I suggested you do not
modified such files while the review process was running,
remember..:-)

It is now safe to upload a new package version with these changes.

Please notify me of your intents with regards to this. 

There is of course no hurry to update your package but feel free to
contact me in case you would need sponsoring or any other action to
fix this.



-- 




patch.tar.gz
Description: Binary data
--- rinputd.old/debian/templates2010-04-28 22:27:59.571513752 +0200
+++ rinputd/debian/templates2010-05-20 07:16:41.270938796 +0200
@@ -1,24 +1,29 @@
-Template: rinputd/about
-Type: text
-_Description: Configure the rinputd sasl username and password
- The following two prompts will help you set up a new sasl user account and
- password. This allows for remote access to this computer.
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-engl...@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
 
 Template: rinputd/username
 Type: string
 Default: rinput
-_Description: Username:
- This is the user account name for the SASL rinputd login. This has no bearing
- on the local login, and will not create a local user account, nor conflict
- with the local user namespace.
+_Description: Remote input username:
+ Please enter a username for the remote input login.
+ .
+ This account will not be created as a local user with shell access.
+ Instead it will allow control of the keyboard and mouse through the
+ remote input daemon.
 
 Template: rinputd/passwd
 Type: password
-_Description: Password:
- Password for the rinputd sasl user account. This password is not related to
- shell level login, but will allow control of the keyboard and mouse through
- the rinputd daemon.
+_Description: Remote input password:
+ Please enter a password for the remote input login.
 
 Template: rinputd/invalid
-Type: text
-_Description: Error: Invalid username or password
+Type: error
+_Description: Invalid username or password
+ Neither the remote input username nor the password can be empty.
+ Please correct them.
--- rinputd.old/debian/control  2010-04-28 22:27:59.571513752 +0200
+++ rinputd/debian/control  2010-05-17 07:10:16.178167723 +0200
@@ -12,13 +12,13 @@
 Architecture: i386 ia64 alpha amd64 armel hppa mips mipsel powerpc s390 sparc
 Depends: sasl2-bin, ${shlibs:Depends}, ${misc:Depends}
 Conflicts: rinputd
-Description: A server daemon for receiving user input events
- rinputd is a server daemon which listens for remote input clients. Clients
- connect over a secure SSL socket and authenticate with the server through the
- Cyrus SASL password database /etc/sasldb2. The client may then initialize an
- input device through the uinput user input event interface. After
- initialization, the client may send input events such as key presses or mouse
- movements.
+Description: server daemon for receiving user input events
+ This package provides a remote input server daemon which listens for
+ connections from rinput clients (such as mobile phone applications). These
+ authenticate via a secure SSL socket through the Cyrus SASL password
+ database, /etc/sasldb2. The uinput user input event interface can
+ then create virtual devices such as a keyboard and mouse under the
+ remote control of the client.
 
 Package: rinputd-dbg
 Section: debug
@@ -26,13 +26,13 @@
 Priority: extra
 Depends: rinputd (= ${binary:Version}), ${misc:Depends}
 Conflicts: rinputd-dbg
-Description: A server daemon for receiving user 

Bug#585534: zsh as login shell breaks parts of gnome-session

2010-06-12 Thread Josselin Mouette
Le vendredi 11 juin 2010 à 17:42 +0200, henry atting a écrit :
  How did you test other window managers? By setting $WINDOW_MANAGER?
 
 Mmh, I did not test them in a gnome-session. To choose I have these
 lines in ~/.xinitirc
 
 case $1 in
 urxvt) exec /usr/bin/urxvt;;
 dwm) exec /usr/bin/dwm;;
 awe) exec /usr/bin/awesome;;
 gno) exec /usr/bin/gnome-session
 esac
 
 
  Do you have any relevant output in .xsession-errors?
 
 No, after quitting gnome-session .xsession-errors remains empty.

Sorry but I can’t reproduce that here. There must be something wrong in
a script of yours.

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


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


Bug#585598: openswan: [INTL:fr] French debconf translation update

2010-06-12 Thread Christian Perrier
Package: openswan
Version: 1:2.6.26+dfsg-1
Severity: wishlist
Tags: patch l10n

Harald, this is the file I sent you in private. I need to link our
coordination robot with a bug report so that we know there is no more
work to do for openswan debconf l10n in French.

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

Kernel: Linux 2.6.32-5-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/dash

Versions of packages openswan depends on:
ii  bind9-host [host]  1:9.7.0.dfsg.P1-1 Version of 'host' bundled with BIN
ii  bsdmainutils   8.0.11collection of more utilities from 
ii  cdebconf [debconf-2.0] 0.149 Debian Configuration Management Sy
ii  debconf [debconf-2.0]  1.5.32Debian configuration management sy
ii  iproute20100519-2networking and traffic control too
ii  ipsec-tools1:0.7.3-7 IPsec tools for Linux
ii  libc6  2.11.1-3  Embedded GNU C Library: Shared lib
ii  libcurl3   7.20.1-2  Multi-protocol file transfer libra
ii  libgmp3c2  2:4.3.2+dfsg-1Multiprecision arithmetic library
ii  libldap-2.4-2  2.4.21-1  OpenLDAP libraries
ii  libpam0g   1.1.1-3   Pluggable Authentication Modules l
ii  openssl0.9.8o-1  Secure Socket Layer (SSL) binary a

openswan recommends no packages.

Versions of packages openswan suggests:
ii  curl  7.20.1-2   Get a file from an HTTP, HTTPS or 
pn  openswan-modules-source | ope none (no description available)

-- Configuration Files:
/etc/ipsec.secrets [Errno 13] Permission non accordée: u'/etc/ipsec.secrets'

-- debconf information excluded
# Translation of openswan debconf templates to French
# Copyright (C) 2004-2008 Christian Perrier bubu...@debian.org
# This file is distributed under the same license as the openswan package.
#
# Christian Perrier bubu...@debian.org, 2004, 2006, 2008, 2010.
msgid 
msgstr 
Project-Id-Version: \n
Report-Msgid-Bugs-To: opens...@packages.debian.org\n
POT-Creation-Date: 2010-06-08 09:02+0200\n
PO-Revision-Date: 2010-04-26 20:26+0200\n
Last-Translator: Christian Perrier bubu...@debian.org\n
Language-Team: fr debian-l10n-fre...@lists.debian.org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: Lokalize 1.0\n
Plural-Forms: Plural-Forms: nplurals=2; plural=n1;\n

#. Type: note
#. Description
#: ../openswan.templates:1001
msgid Old runlevel management superseded
msgstr Abandon de l'ancien système de lancement d'Openswan

#. Type: note
#. Description
#: ../openswan.templates:1001
msgid 
Previous versions of the Openswan package gave a choice between three 
different Start/Stop-Levels. Due to changes in the standard system startup 
procedure, this is no longer necessary or useful. For all new installations 
as well as old ones running in any of the predefined modes, sane default 
levels will now be set. If you are upgrading from a previous version and 
changed your Openswan startup parameters, then please take a look at NEWS.
Debian for instructions on how to modify your setup accordingly.
msgstr 
Les versions précédentes du paquet d'Openswan permettaient de choisir entre 
trois séquences possibles de lancement au démarrage de la machine. Comme 
l'organisation générale des scripts de lancement a été profondément modifiée 
dans le système, cela n'est désormais plus utile. Pour toutes les nouvelles 
installations, ainsi que pour les anciennes qui fonctionnaient selon un des 
trois modes prédéfinis, une séquence de lancement sûre va être mise en 
place. Si vous effectuez une mise à jour et aviez modifié les paramètres de 
lancement d'Openswan, veuillez consulter le fichier NEWS.Debian pour trouver 
les informations qui vous permettront d'adapter vos réglages.

#. Type: boolean
#. Description
#: ../openswan.templates:2001
msgid Restart Openswan now?
msgstr Souhaitez-vous redémarrer Openswan ?

#. Type: boolean
#. Description
#: ../openswan.templates:2001
msgid 
Restarting Openswan is recommended, since if there is a security fix, it 
will not be applied until the daemon restarts. Most people expect the daemon 
to restart, so this is generally a good idea. However, this might take down 
existing connections and then bring them back up, so if you are using such 
an Openswan tunnel to connect for this update, restarting is not recommended.
msgstr 
Redémarrer Openswan est préférable car un éventuel correctif de sécurité ne 
sera actif que si le démon est redémarré. La plupart des utilisateurs 
s'attendent à ce que le démon redémarre et c'est donc le plus souvent le 
meilleur choix. Cependant, cela pourrait interrompre provisoirement des 
connexions en cours, y compris la connexion utilisée actuellement pour 

Bug#585599: mscore: new version

2010-06-12 Thread Mikko
Package: mscore
Severity: wishlist

Please update mscore to 0.9.6

http://musescore.org/en/node/6010



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

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



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



Bug#579963: revelation: Russian [ru] localization is missing

2010-06-12 Thread Yuri Kozlov
Hello.

Updated file is attached.
Before proofreading I run 'make revelation.pot' command in the po/ dir.
The number of lines was cut by half.

-- 
Best Regards,
Yuri Kozlov



ru.po.gz
Description: GNU Zip compressed data


Bug#584846: Detects only 64MB and fails to boot on Intel Green City board if e820 hooked by GRUB2

2010-06-12 Thread Josh Triplett
Package: linux-2.6
Severity: normal

I also just confirmed that the bug still occurs with the latest GRUB2
from bzr:

revno: 2447
revision-id: cjwat...@ubuntu.com-20100611211535-0wnt2vpuk198erq4
parent: cjwat...@ubuntu.com-20100611211216-7le1e2889gr1jpqz
committer: Colin Watson cjwat...@ubuntu.com
branch nick: grub
timestamp: Fri 2010-06-11 22:15:35 +0100
message:
  * include/grub/efi/uga_draw.h (GRUB_EFI_UGA_GLT_MAX): Rename to ...
  (GRUB_EFI_UGA_BLT_MAX): ... this (typo fix).


I tried latest GRUB because I noticed that some e820-related changes had
gone in after the 1.98 release.  This test verifies that those changes
did not affect the bug.

- Josh Triplett



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



Bug#585567: ITP: gobi-loader -- Firmware loader for Qualcomm Gobi USB chipsets.

2010-06-12 Thread Simon Josefsson
Mark Hymers m...@debian.org writes:

 On Fri, 11, Jun, 2010 at 10:34:10PM +0200, Simon Josefsson spoke thus..
 This package would be useful, I have a Lenovo X201 with this chipset.
 
 However, is the program useful without non-free firmware?  If not,
 perhaps it belongs in contrib rather than main?

 I've just uploaded it to contrib.  I'm not sure where in the ITP you
 read that I was going to upload it to main...

Oh great.  I searched for 'contrib' and 'non-free', and not finding it,
I assumed it was going to main.  I'll try to test it...

Thanks,
/Simon



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



Bug#503396: Should have been fixed in 0.03

2010-06-12 Thread Matti Lattu
According to Desktop::Notify::Notification developer Stephen Cavilia 
this bug should have been fixed in 0.03. Unstable (sid) still has 0.01. 
Quote from Stephen:


Hmm, I think i fixed that in the 0.03 release (not by initializing id 
to 0, which allows the close method to potentially send useless messages 
to the daemon, but by defaulting to 0 in the Notify dbus call).


The related suggested fix to Notification.pm was:

sub new {
   my ($class, $server, %params) = @_;

   my $self = \%params;
   $self-{server} = $server;
# original
#$self-{id} = undef;
# changed
   $self-{id} = 0;
   bless $self, $class;
}




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



Bug#565664: openmsx: for such good emulator, no way to configure and use the gamepad

2010-06-12 Thread Joost Yervante Damad
Hello yellowprotoss,

is this still an issue for you?

Thanks, Joost Damad

On Sunday 17 January 2010 22:09:05 Manuel Bilderbeek wrote:
 Hi,
 
 yellowprotoss wrote:
  for such good emulator, no way to configure and use the gamepad
  I also tried into the console.
  
  : New USB device found, idVendor=044f, idProduct=b315
  
  [ 7505.109448] usb 2-1: New USB device strings: Mfr=1, Product=2,
  SerialNumber=0 [ 7505.109461] usb 2-1: Product: Thrustmaster dual analog
  3.2
  [ 7505.109471] usb 2-1: Manufacturer: Mega World
  [ 7505.109768] usb 2-1: configuration #1 chosen from 1 choice
  [ 7505.136621] input: Mega World Thrustmaster dual analog 3.2 as
  /devices/pci:00/:00:1d.0/usb2/2-1/2-1:1.0/input/input18 [
  7505.136867] generic-usb 0003:044F:B315.0005: input,hidraw0: USB HID
  v1.10 Gamepad [Mega World Thrustmaster dual analog 3.2] on
  usb-:00:1d.0-1/input0
 
 My gamepad works fine with openMSX. It's this one:
 
 [3.885508] usb 8-2: new low speed USB device using uhci_hcd and
 address 2
 [4.062621] usb 8-2: New USB device found, idVendor=046d, idProduct=c218
 [4.062624] usb 8-2: New USB device strings: Mfr=1, Product=2,
 SerialNumber=0
 [4.062626] usb 8-2: Product: Logitech RumblePad 2 USB
 [4.062628] usb 8-2: Manufacturer: Logitech
 [4.062688] usb 8-2: configuration #1 chosen from 1 choice
 [5.507673] input: Logitech Logitech RumblePad 2 USB as
 /devices/pci:00/:00:1d.2/usb8/8-2/8-2:1.0/input/input8
 [5.507733] logitech 0003:046D:C218.0004: input,hidraw4: USB HID
 v1.10 Joystick [Logitech Logitech RumblePad 2 USB] on
 usb-:00:1d.2-2/input0
 [5.507739] logitech 0003:046D:C218.0004: Force feedback for Logitech
 Rumblepad 2 by Anssi Hannula anssi.hann...@gmail.com
 
 
 See also http://openmsx.sourceforge.net/manual/user.html#joystick
 
 If your gamepad isn't supported by SDL, then it is also not supported by
 openMSX. But if you have a 'joystick1' device if you type in the
 console: plug joyporta [TAB]
 you can simply plug and use it.

-- 
Joost Yervante Damad - http://damad.be/joost/



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



Bug#584755: (no subject)

2010-06-12 Thread James McCaw
 Of course, the script does not carry over the comments attached to
 each photo by gthumb.

It turns out this isn't entirely correct. For some of my images the
comments seem to show up properly - but presented in the new UI so
differently that I failed to find them, even when looking for them. So
fine...just learning the new 2.11 interface.

For some other images, part of the comment (the Place: tag) gets
into the UI as accessed through the Metadata button in the toolbar,
but some of the comment (the Description: tag) is only visible in
the IPTC information under Caption (bottom right of the main UI of
2.11).

Hope of further use.
James



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



Bug#585600: linux-image-2.6.32-5-686: KMS does not detect display resolutions

2010-06-12 Thread Olivier Berger
Package: linux-2.6
Version: 2.6.32-15
Severity: normal

Hi.

Since the latest radeon X driver has entered testing, KMS is enabled on my 
machine, which results in display resolution badly configured with my monitor. 
I used to have 1280x1024 and no longer have (the fallback 1024x768 is set).

The dmesg messages about EDID being wrong show the problem.

Maybe this is linked to a KVM display switch being present ?

In any case, this is all fine again if I change modesetting to off in 
/etc/modprobe.d/radeon-kms.conf.

Thanks in advance.

Best regards,


-- Package-specific info:
** Version:
Linux version 2.6.32-5-686 (Debian 2.6.32-15) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-1) ) #1 SMP Tue Jun 1 04:59:47 UTC 2010

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-686 
root=UUID=69409b71-d08e-4b5f-9182-72613252479f ro acpi=force quiet

** Not tainted

** Kernel log:
[   59.077325] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.077329] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.077332] 
[   59.077338] radeon :01:00.0: VGA-1: EDID invalid.
[   59.232332] [drm:edid_is_valid] *ERROR* Raw EDID:
[   59.232344] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232350] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232354] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232359] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232363] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232368] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232372] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232377] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.232381] 
[   59.290060] [drm:edid_is_valid] *ERROR* Raw EDID:
[   59.290071] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290076] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290081] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290085] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290090] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290094] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290099] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290104] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.290107] 
[   59.377483] [drm:edid_is_valid] *ERROR* Raw EDID:
[   59.377492] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377496] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377501] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377505] 300 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377510] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377514] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377519] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.377523] 300 00 00 ff 00 00 00 00 00 00 00 00 ff 00 00 00  

[   59.377527] 
[   59.437152] [drm:edid_is_valid] *ERROR* Raw EDID:
[   59.437163] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437168] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437173] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437177] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437182] 300 00 00 00 00 00 00 00 00 00 00 ff 00 00 00 00  

[   59.437186] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437191] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437195] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.437199] 
[   59.437205] radeon :01:00.0: VGA-1: EDID invalid.
[   59.437217] [drm:radeon_vga_detect] *ERROR* VGA-1: probed a monitor but 
no|invalid EDID
[   59.515484] [drm:edid_is_valid] *ERROR* Raw EDID:
[   59.515494] 300 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00  

[   59.515499] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.515504] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.515508] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.515512] 300 00 00 00 00 00 00 00 03 ff ff 00 00 00 00 00  

[   59.515517] 300 00 00 00 00 00 00 00 00 3f ff 00 00 00 00 00  
.?..
[   59.515521] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.515525] 300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[   59.515529] 
[   59.517931] i2c i2c-1: sendbytes: NAK bailout.

Bug#585534: zsh as login shell breaks parts of gnome-session

2010-06-12 Thread henry atting
On Sa, Jun 12 2010, Josselin Mouette wrote:

 Le vendredi 11 juin 2010 à 17:42 +0200, henry atting a écrit :
  How did you test other window managers? By setting $WINDOW_MANAGER?
 
 Mmh, I did not test them in a gnome-session. To choose I have these
 lines in ~/.xinitirc
 
 case $1 in
 urxvt) exec /usr/bin/urxvt;;
 dwm) exec /usr/bin/dwm;;
 awe) exec /usr/bin/awesome;;
 gno) exec /usr/bin/gnome-session
 esac
 
 
  Do you have any relevant output in .xsession-errors?
 
 No, after quitting gnome-session .xsession-errors remains empty.

 Sorry but I can’t reproduce that here. There must be something wrong in
 a script of yours.

Mmh, I don't see what script, normally I start with startx and an empty
.xinitrc.

Anyway, as far as I am concerned this bug can be closed, I switched back
to awesome again which works flawlessly.

Thanks a lot
henry

-- 
http://literaturlatenight.de



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



Bug#369453: Status

2010-06-12 Thread Aurelien Jarno
On Sat, Jun 12, 2010 at 04:15:54AM +, Clint Adams wrote:
 On Fri, Jun 11, 2010 at 08:06:33PM -0700, Herman Swartz wrote:
  Hello,
  
  I also have an application that uses get, set, swap user context functions.
 
 What it boils down to is that someone needs to write this in ARM
 assembly language, and that no one has yet.  I don't know offhand
 how best that can be rectified.
 

Given these functions have been removed in POSIX 2008, they should
probably be avoided.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#583858: (no subject)

2010-06-12 Thread Aurelien Jarno
On Sat, Jun 12, 2010 at 01:38:45AM +0200, André Wöbbeking wrote:
 I probably have the same problem: running Sid x86_64 I updated to eglibc 
 2.11.1-3 (from 2.10.2-9) and apps are crashing. E.g. I tried to build Qt 
 4.6.3 
 and qmake is crashing while configuring.
 
 cat /proc/cpuinfo:
 
 model name  : Intel(R) Core(TM)2 CPU  6600  @ 2.40GHz

I really doubt it's the same problem. The reported bug only affected
x86_64 users running on Core i7.

Does only Qt related applications crashes or also other applications?

 gcc -v:
 
 gcc version 4.4.4 (Debian 4.4.4-4)
 
 gdb qmake:
 
 (gdb) r
 Starting program: qmake 
 
 Program received signal SIGSEGV, Segmentation fault.
 0x0072a060 in strlen ()
 
 (gdb) where
 #0  0x0072a060 in strlen ()
 #1  0x0045b4ba in qstrlen(char const*) ()
 #2  0x00594f47 in QString::fromLatin1_helper(char const*, int) ()
 #3  0x005950c8 in QString::fromAscii_helper(char const*, int) ()
 #4  0x005951c5 in QString::fromAscii(char const*, int) ()
 #5  0x00420b61 in QString::operator=(char const*) ()
 #6  0x00549ca5 in VCCustomBuildTool::VCCustomBuildTool() ()
 #7  0x0054c894 in VCFilter::VCFilter() ()
 #8  0x00553539 in __static_initialization_and_destruction_0 ()
 #9  0x00553565 in global constructors keyed to 
 _ZN16VCCLCompilerToolC2Ev 
 ()
 #10 0x00654d76 in __do_global_ctors_aux ()
 #11 0x006b664b in _init ()
 #12 0x77dc2c50 in ?? () from /usr/lib/libstdc++.so.6
 #13 0x00654cd5 in __libc_csu_init ()
 #14 0x772f0be0 in __libc_start_main (main=value optimized out, 
 argc=value optimized out, ubp_av=value optimized out, 
 init=0x654c90 __libc_csu_init, fini=0x7762e300 initial, 
 rtld_fini=0x77dc2420 typeinfo for std::locale::facet, 
 stack_end=0x7fffe0b8)
 at libc-start.c:187
 #15 0x00402779 in _start ()
 

Could you try to install libc6-dbg and do the backtrace again?

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#536060: masqmail: Logging breaks after rotation

2010-06-12 Thread markus schnalke
[2009-07-07 11:28] Ove Kaaven o...@arcticnet.no
 
 After logrotate has rotated /var/log/masqmail/masqmail.log, it appears that
 at most one more event is logged (i.e., 3 lines in the case of an e-mail
 transmission). After that, further activity is logged to /dev/null.
 As far as I can tell, e-mail delivery still works, it's just not logged.

I can confirm that this bug exists.

Actually it is not directly related to logrotate. The SIGHUP handler
in masqmail is broken and logrotate sends (indirectly via masqmail's
init script) a SIGHUP to masqmail. Thus logging stops also if you
simply send SIGHUP.

The reason why still some messages are logged is such: If you submit
mail into the system by calling `sendmail', then a new instance gets
started and this one does log. This instance is independent to the
daemon which stopped logging.

Currently I can't tell why the daemon does not restart logging. (On
SIGHUP it closes all open fds and exec()s itself again.) I'll dig
deeper in this.


meillo



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



Bug#461765: udacious-plugins-extra: cannot manage to use AMIDI-plug with FluidSynth backend

2010-06-12 Thread Francesco Poli
On Fri, 11 Jun 2010 17:55:57 -0400 John Lindgren wrote:

[...]
 Francesco wrote:
  So, it seems that the FluidSynth backend needs these soundfonts (in SF2
  format, if I understand correctly).
  I cannot find any .sf2 soundfonts in Debian main: where are they
  packaged? ...
 
 How hard did you look?
 
 http://packages.debian.org/search?keywords=soundfontsearchon=namessuite=stablesection=main
 
 Try fluid-soundfont-gm.

I did search the Debian archive for soundfonts, but I failed to find
fluid-soundfont-gm.

Why?  Am I dumb?
Yes, I am indeed dumb, but that does *not* seem to be the reason why I
failed to find the package...   ;-)

According to http://packages.qa.debian.org/f/fluid-soundfont.html
the fluid-soundfont-gm package was first uploaded to Debian unstable on
March 2008, while I submitted the bug report on January 2008!

More recently, I noticed this package named fluid-soundfont-gm and I
thought that maybe it could be used to solve my issue with AMIDI-plug:
unfortunately I haven't found the time to check, so far...  :-(
I will try and see if it works for me.

Thanks a lot for the suggestion!

 
  Help!
  How can I have audacious play MIDI files?
  If there's some obscure trick to be performed, I think it should be
  documented...
 
 I don't think installing a sound font is an obscure trick ...

No, it's not an obscure trick, but it could be included in the Suggests
field of audacious-plugins, anyway...


-- 
 http://www.inventati.org/frx/progs/scripts/pdebuild-hooks.html
 Need some pdebuild hook scripts?
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpYQSB5sN2Tw.pgp
Description: PGP signature


Bug#585601: RFP: apache-mime4j -- MIME and RFC822 parser for Java

2010-06-12 Thread David Paleino
Package: wnpp
Severity: wishlist

* Package name: apache-mime4j
  Version : 0.6
  Upstream Author : The Apache Software Foundation
* URL : http://james.apache.org/mime4j/
* License : Apache-2.0
  Programming Lang: Java
  Description : MIME and RFC822 parser for Java

 mime4j provides a parser, MimeStreamParser, for e-mail message streams in
 plain rfc822 and MIME format. The parser uses a callback mechanism to report
 parsing events such as the start of an entity header, the start of a body,
 etc.
 If you are familiar with the SAX XML parser interface you should have no
 problem getting started with mime4j.


I'll need this package for httpcomponents-client (ITP #575327).

Thank you,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#585602: ITP: gexiv2 -- GObject-based wrapper around the Exiv2 library

2010-06-12 Thread Luca Falavigna
Package: wnpp
Owner: Luca Falavigna dktrkr...@debian.org
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: gexiv2
  Version : 0.0.91
  Upstream Authors: Mike Gemuende m...@gemuende.de
Jim Nelson j...@yorba.org
* URL : http://trac.yorba.org/wiki/gexiv2
* License : GPLv2+
  Programming Lang: C++
  Description : GObject-based wrapper around the Exiv2 library
  gexiv2 is a GObject-based wrapper around the Exiv2 library. It makes
  the basic features of Exiv2 available to GNOME applications.

-- 
  .''`.
 :  :' :   Luca Falavigna dktrkr...@debian.org
 `.  `'
   `-


signature.asc
Description: PGP signature


Bug#537572: RE

2010-06-12 Thread William Wilcox
Good Day!
My name is William Wilcox,I work with the Euro Lottery Company. I can help you
win 4,528,000 GBP, but I charge 40% of the winning prize.Can we make a deal?



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



Bug#585603: gnome-control-center: gnome-display-properties should have a man page

2010-06-12 Thread Olivier Berger
Package: gnome-control-center
Version: 1:2.30.1-1
Severity: wishlist

Hi.

It would be great to have gnome-display-properties coming along with a manpage.

Thanks in advance.

Best regards,


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

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

Versions of packages gnome-control-center depends on:
ii  capplets-data   1:2.30.1-1   configuration applets for GNOME - 
ii  desktop-file-utils  0.15-2   Utilities for .desktop files
ii  gnome-desktop-data  2.30.0-2 Common files for GNOME desktop app
ii  gnome-icon-theme2.30.3-1 GNOME Desktop icon theme
ii  gnome-menus 2.30.0-1 an implementation of the freedeskt
ii  gnome-settings-daemon   2.30.1-1 daemon handling the GNOME session 
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-9 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libcanberra-gtk00.24-1   Gtk+ helper for playing widget eve
ii  libcanberra00.24-1   a simple abstract interface for pl
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libebook1.2-9   2.28.3.1-1   Client library for evolution addre
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-3 GNOME configuration database syste
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgnome-desktop-2-17   2.30.0-2 Utility library for loading .deskt
ii  libgnome-window-settings1   1:2.30.1-1   Utility library for getting window
ii  libgnomekbd42.30.1-2 GNOME library to manage keyboard c
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libmetacity-private01:2.30.1-1   library for the Metacity window ma
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libslab0a   2.30.0-1 beautification app library file
ii  libunique-1.0-0 1.1.6-1  Library for writing single instanc
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxcursor1 1:1.1.10-2   X cursor management library
ii  libxft2 2.1.14-2 FreeType-based font drawing librar
ii  libxi6  2:1.3-4  X11 Input extension library
ii  libxklavier16   5.0-2X Keyboard Extension high-level AP
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  libxss1 1:1.2.0-2X11 Screen Saver extension library

Versions of packages gnome-control-center recommends:
ii  bzip2 1.0.5-4high-quality block-sorting file co
ii  evolution-data-server 2.28.3.1-1 evolution database backend server
ii  gnome-session 2.30.0-1   The GNOME Session Manager - GNOME 
ii  gnome-user-guide  2.30.1-1   GNOME user's guide
ii  policykit-1-gnome 0.96-2 GNOME authentication agent for Pol

Versions of packages gnome-control-center suggests:
ii  gnome-screensaver   2.30.0-1 GNOME screen saver and locker
ii  gstreamer0.10-alsa [gstream 0.10.29-4GStreamer plugin for ALSA
ii  gstreamer0.10-esd [gstreame 0.10.22-1GStreamer plugin for ESD
ii  gstreamer0.10-plugins-bad [ 0.10.18-2+b1 GStreamer plugins from the bad s
ii  gstreamer0.10-plugins-good  0.10.22-1GStreamer plugins from the good 
ii  gstreamer0.10-pulseaudio [g 0.10.22-1GStreamer plugin for PulseAudio
ii  libcanberra-gtk-module  0.24-1   translates Gtk+ widgets signals to
ii  x11-xserver-utils   7.5+1+b1 X server utilities
ii  xscreensaver5.10-7   Automatic screensaver for X

-- 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#585600: linux-image-2.6.32-5-686: KMS does not detect display resolutions

2010-06-12 Thread Olivier Berger
On Sat, Jun 12, 2010 at 09:02:33AM +0200, Olivier Berger wrote:
 Hi.
 
 Since the latest radeon X driver has entered testing, KMS is enabled on my 
 machine, which results in display resolution badly configured with my 
 monitor. I used to have 1280x1024 and no longer have (the fallback 1024x768 
 is set).
 
 The dmesg messages about EDID being wrong show the problem.
 
 Maybe this is linked to a KVM display switch being present ?
 
 In any case, this is all fine again if I change modesetting to off in 
 /etc/modprobe.d/radeon-kms.conf.
 
 Thanks in advance.
 
 Best regards,
 

FYI, the following workaround allowed me to keep using 1280x1024. I've added 
the following lines to /etc/gdm/Init/Default :
xrandr --newmode 1280x1024_60.00  108.00  1280 1328 1440 1688  1024 1025 1028 
1066 +hsync +vsync 
xrandr --addmode VGA-0 1280x1024_60.00

Now, I can select the preferred mode with gnome-display-properties and it is 
kept across session restarts.

Hope this helps.

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



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



Bug#585604: icedove: About menu doesn't open with french locales.

2010-06-12 Thread Fabrice Lorrain
Package: icedove
Version: 3.0.4-3
Severity: minor

Hello,

The about window (to get icedove version) doesn't open when I run icedove
under french local. I got the following error window instead :
Erreur d'analyse XML : erreur dans le traitement d'une référence d'entité 
externe
Emplacement : chrome://messenger/content/aboutDialog.xul
Numéro de ligne 11, Colonne 1 :%aboutDialogDTD;

It open correctly under LANG=C icedove.

My locale conf :
$ locale
LANG=fr_FR.UTF-8
LC_CTYPE=fr_FR.UTF-8
LC_NUMERIC=fr_FR.UTF-8
LC_TIME=fr_FR.UTF-8
LC_COLLATE=fr_FR.UTF-8
LC_MONETARY=fr_FR.UTF-8
LC_MESSAGES=fr_FR.UTF-8
LC_PAPER=fr_FR.UTF-8
LC_NAME=fr_FR.UTF-8
LC_ADDRESS=fr_FR.UTF-8
LC_TELEPHONE=fr_FR.UTF-8
LC_MEASUREMENT=fr_FR.UTF-8
LC_IDENTIFICATION=fr_FR.UTF-8
LC_ALL=

Thanks,

@+,
Fab


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

Kernel: Linux 2.6.32-trunk-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 icedove depends on:
ii  debianutils 3.2.3Miscellaneous utilities specific t
ii  fontconfig  2.8.0-2.1generic font configuration library
ii  libasound2  1.0.23-1 shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.1-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-4GCC support library
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.8.4-1  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.6-2 Network Security Service libraries
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  libsqlite3-03.6.23.1-4   SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.4.4-4  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxrender1 1:0.9.5-2X Rendering Extension client libra
ii  libxt6  1:1.0.7-1X11 toolkit intrinsics library
ii  psmisc  22.11-1  utilities that use the proc file s
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages icedove recommends:
ii  myspell-en-us [myspell-dictio 1:3.2.0-5  English_american dictionary for my
ii  myspell-fr-gut [myspell-dicti 1:1.0-27   The French dictionary for myspell 

Versions of packages icedove suggests:
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libgconf2-42.28.1-3  GNOME configuration database syste
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomevfs2-0 1:2.24.3-1GNOME Virtual File System (runtime
ii  libgssapi-krb5-2   1.8.1+dfsg-5  MIT Kerberos runtime libraries - k
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  ttf-lyx1.6.6-2   TrueType versions of some TeX font

-- Configuration Files:
/etc/icedove/messenger/mailViews.dat [Errno 2] Aucun fichier ou dossier de ce 
type: u'/etc/icedove/messenger/mailViews.dat'
/etc/icedove/pref/icedove.js changed [not included]

-- 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#580629: gdm3 - allows unauthenticated users to change power configuration

2010-06-12 Thread Josselin Mouette
Le vendredi 07 mai 2010 à 23:42 +0200, Bastian Blank a écrit :
 On Fri, May 07, 2010 at 09:18:48PM +0200, Josselin Mouette wrote:
  Le vendredi 07 mai 2010 à 12:08 +0200, Bastian Blank a écrit : 
   gdm3 allows unauthenticated users to change the power configuration,
   including automatic suspend.
   This is a DoS on any non-singleuser machine.
  What do you mean by “unauthenticated users”? Do you mean it is possible
  to change that configuration from the login screen?
 
 Yes. The login screen allow access to gnome-power-manager properties.
 See /usr/share/gdm/autostart/LoginWindow/gnome-power-manager.desktop.

The power manager daemon is launched, but that doesn’t give you access
to the properties.

Could you explain exactly how you would exploit that?

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


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


Bug#585605: no usage instructions in man page pcmanfm 0.9.7

2010-06-12 Thread Bryan Cebuliak
Subject: no usage instructions in man page pcmanfm 0.9.7
Package: pcmanfm
Version: 0.9.7-1
Severity: normal
Tags: upstream

*** Please type your report below this line ***
This output from pcmanfm --help-all needs to be added to the man page:
...
Usage:
  pcmanfm [OPTION...] [FILE1, FILE2,...]

Help Options:
  -h, --help   Show help options
  --help-all   Show all help options
  --help-gtk   Show GTK+ Options

GTK+ Options
  --class=CLASSProgram class as used by the
window manager
  --name=NAME  Program name as used by the
window manager
  --screen=SCREEN  X screen to use
  --sync   Make X calls synchronous
  --gtk-module=MODULES Load additional GTK+ modules
  --g-fatal-warnings   Make all warnings fatal

Application Options:
  -p, --profile=profile name Name of configuration profile
  --desktopLaunch desktop manager
  --desktop-offTurn off desktop manager if it's running
  -d, --daemon-modeRun PCManFM as a daemon
  --desktop-pref   Open desktop preference dialog
  -w, --set-wallpaper=image file Set desktop wallpaper
  --wallpaper-mode=mode  Set mode of desktop wallpaper.
mode=(color|stretch|fit|center|tile)
  --show-pref=nOpen preference dialog. 'n' is
number of the page you want to show (1, 2, 3...).
  --no-desktop No function. Just to be
compatible with nautilus
  --display=DISPLAYX display to use

...

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

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

Versions of packages pcmanfm depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-4   The Cairo 2D vector graphics libra
ii  libfm-gtk00.1.12-1   file management support - GTK+ GUI
ii  libfm00.1.12-1   file management support - core lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages pcmanfm recommends:
ii  gnome-icon-theme 2.30.3-1GNOME Desktop icon theme
ii  gvfs-backends1.6.2-1 userspace virtual filesystem - bac
ii  gvfs-fuse1.6.2-1 userspace virtual filesystem - fus
ii  lxde-icon-theme  0.0.1+svn20091206-2 LXDE Standard icon theme

pcmanfm 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#582790: libmei: diff for NMU version 1.0.1-6.1

2010-06-12 Thread Jakub Wilk

* Sylvestre Ledru sylves...@debian.org, 2010-06-12, 00:16:

I've prepared an NMU for libmei (versioned as 1.0.1-6.1) and uploaded it
to DELAYED/5. Please feel free to tell me if I should delay it longer.

First, sorry for not putting this issues on the top my to do list (I
just get back from holidays).

Second, many thanks for these fixes. No need to delay them.


Okay, I'll reschedule this upload. :)


Third, next time, would you mind commit this fixes into the Debian
Science svn directly ? (I just did it for you).


Sure.

--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#579028: pbuilder: installs untrusted packages without asking

2010-06-12 Thread Loïc Minier
On Fri, Jun 11, 2010, Vagrant Cascadian wrote:
 2007-04-22  Loic Minier l...@dooz.org
 
 * pbuilder-satisfydepends-aptitude: Pass
 Aptitude::ProblemResolver::StepScore and
 Aptitude::CmdLine::Ignore-Trust-Violations flags to aptitude to
 help resolve complex situations relatively common in experimental and
 support unsigned repositories like we do for apt-get.

 Yes, and it was already the default in pbuilder before this change;
 it's a long standing open bug.

-- 
Loïc Minier



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



Bug#555978: debian-policy: Forbid duplicate fields in control files

2010-06-12 Thread Charles Plessy
Le Fri, Jun 11, 2010 at 09:58:28AM -0700, Russ Allbery a écrit :
 
 diff --git a/policy.sgml b/policy.sgml
 index 87b9795..99ab0ff 100644
 --- a/policy.sgml
 +++ b/policy.sgml
 @@ -2398,6 +2398,11 @@ Package: libc6
   /p
  
   p
 +   Each paragraph may contain at most one instance of a particular
 +   field name.
 + /p
 +
 + p
 Many fields' values may span several lines; in this case
 each continuation line must start with a space or a tab.
 Any trailing spaces or tabs at the end of individual

Hi Russ,

as a non-native speaker, I have difficulties with the use of 'may' in your
patch: if fields may be unique, they also may be not unique, so what is the
message in this sentence? It does not give me the impression that the goal
is to discourage the use of the same field name twice in the same paragraph.

How about “A paragraph should not contain data fields having the same name.”

Have a nice day,

-- 
Charles Plessy
Illkirch, France



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



Bug#585599: mscore: new version

2010-06-12 Thread Toby Smithe
Hi Mikko,

2010/6/12 Mikko mikkoso...@gmail.com:
 Please update mscore to 0.9.6

If you check Debian mentors, you'll see I've got a package waiting for
sponsorship there[1]. I have pinged my sponsor from previous
occasions, and am waiting for a response from him.

[1] http://mentors.debian.net/debian/pool/main/m/musescore/

Cheers,

-- 
Toby Smithe



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



Bug#581265: [Pkg-chromium-maint] Bug#581265: release blocking bug

2010-06-12 Thread Giuseppe Iuculano
block 581265 by 583826
thanks

On 05/18/2010 10:21 PM, Moritz Muehlenhoff wrote:
 The situation has changed a bit: Chromium might still be part of Squeeze.
 Guiseppe is currently checking with upstream on the feasibility of a
 upstream support lifetime suitable for the lifetime of Squeeze.
 
 Guiseppe, feel free to lower severity as you see fit.
 

I'm currently waiting for an access to the chromium security team,
anyway before thinking about chromium in squeeze, we really need a team
to work on it.

Cheers,
Giuseppe.



signature.asc
Description: OpenPGP digital signature


Bug#585606: python-ooolib: Wrong import of multiline cell content

2010-06-12 Thread claude
Package: python-ooolib
Version: 0.0.16-1
Severity: normal

When an ODS file contains a cell with multiline content, python-ooolib imports
only the first line of the content. The bug has been reported upstream:
https://sourceforge.net/tracker/?func=detailaid=2529093group_id=87437atid=583168

My patch to resolve the issue:
http://www.2xlibre.net/files/ooolib-multiline.patch

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

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

Versions of packages python-ooolib depends on:
ii  python2.5.2-3An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt

python-ooolib recommends no packages.

python-ooolib 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#584746: Pressing continue w/out selecting an existing bug crashes reportbug (GUI)

2010-06-12 Thread Andreas Neudecker
Package: reportbug
Version: 4.12.2
Severity: normal

The same thing happens here, when I start reportbug using the starter in the
system's main menu (XFCE-System-Reportbug).

* Start reportbug
* select package
* filter list of known bugs according to your needs
* do not pick any of the existing bugs
* click [Continue]
= Reportbug window disappears

So it is impossible to report a new bug.
I consider this a grave bug.

Regards

Andreas




-- Package-specific info:
** Environment settings:
INTERFACE=gtk2

** /home/andreas/.reportbugrc:
reportbug_version 4.12.2
mode standard
ui gtk2
email zap...@gmx.net
no-cc
header X-Debbugs-CC: zap...@gmx.net
smtphost reportbug.debian.org

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.25.3   Advanced front-end for dpkg
ii  python2.5.4-9An interactive high-level object-o
ii  python-reportbug  4.12.2 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utilsnone  (no description available)
pn  debsums  none  (no description available)
pn  dlocate  none  (no description available)
pn  emacs22-bin-common | none  (no description available)
ii  exim44.71-4  metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [ 4.71-4  lightweight Exim MTA (v4) daemon
ii  file 5.04-2  Determines file type using magic
ii  gnupg1.4.10-4GNU privacy guard - a free PGP rep
ii  python-gtk2  2.17.0-2Python bindings for the GTK+ widge
ii  python-gtkspell  2.25.3-4.1+b3   Python bindings for the GtkSpell l
pn  python-urwid none  (no description available)
ii  python-vte   1:0.24.1-1  Python bindings for the VTE widget
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from

-- 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#583858: (no subject)

2010-06-12 Thread André Wöbbeking
On Saturday 12 June 2010, you wrote:

 I really doubt it's the same problem. The reported bug only affected
 x86_64 users running on Core i7.

I can only tell you that I also had tried 2.11.1-1 before and had the same 
problem. And downgrading eglibc helped.

 Does only Qt related applications crashes or also other applications?

I only saw Qt related applications crash but I don't know if other apps are 
affected too. BTW, not all Qt apps crash only some.

  (gdb) where
  #0  0x0072a060 in strlen ()
  #1  0x0045b4ba in qstrlen(char const*) ()
  #2  0x00594f47 in QString::fromLatin1_helper(char const*, int) ()
  #3  0x005950c8 in QString::fromAscii_helper(char const*, int) ()
  #4  0x005951c5 in QString::fromAscii(char const*, int) ()
  #5  0x00420b61 in QString::operator=(char const*) ()
  #6  0x00549ca5 in VCCustomBuildTool::VCCustomBuildTool() ()
  #7  0x0054c894 in VCFilter::VCFilter() ()
  #8  0x00553539 in __static_initialization_and_destruction_0 ()
  #9  0x00553565 in global constructors keyed to
  _ZN16VCCLCompilerToolC2Ev ()
  #10 0x00654d76 in __do_global_ctors_aux ()
  #11 0x006b664b in _init ()
  #12 0x77dc2c50 in ?? () from /usr/lib/libstdc++.so.6
  #13 0x00654cd5 in __libc_csu_init ()
  #14 0x772f0be0 in __libc_start_main (main=value optimized out,
  argc=value optimized out, ubp_av=value optimized out,
  
  init=0x654c90 __libc_csu_init, fini=0x7762e300 initial,
  
  rtld_fini=0x77dc2420 typeinfo for std::locale::facet,
  stack_end=0x7fffe0b8)
  
  at libc-start.c:187
  
  #15 0x00402779 in _start ()
 
 Could you try to install libc6-dbg and do the backtrace again?

Err, this is with libc6-dbg installed.

The initialisation of static variables seems to be the problem. Is it done at a 
different time in 2.11?



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



Bug#585607: reportbug: Add [Back] button to UI

2010-06-12 Thread Andreas Neudecker
Package: reportbug
Version: 4.12.2
Severity: wishlist

The report bug UI only allows for continuing to the next screen. It should also
offer a [back] button to go back to the previous screen.




-- Package-specific info:
** Environment settings:
INTERFACE=gtk2

** /home/andreas/.reportbugrc:
reportbug_version 4.12.2
mode standard
ui gtk2
email zap...@gmx.net
no-cc
header X-Debbugs-CC: zap...@gmx.net
smtphost reportbug.debian.org

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.25.3   Advanced front-end for dpkg
ii  python2.5.4-9An interactive high-level object-o
ii  python-reportbug  4.12.2 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utilsnone  (no description available)
pn  debsums  none  (no description available)
pn  dlocate  none  (no description available)
pn  emacs22-bin-common | none  (no description available)
ii  exim44.71-4  metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [ 4.71-4  lightweight Exim MTA (v4) daemon
ii  file 5.04-2  Determines file type using magic
ii  gnupg1.4.10-4GNU privacy guard - a free PGP rep
ii  python-gtk2  2.17.0-2Python bindings for the GTK+ widge
ii  python-gtkspell  2.25.3-4.1+b3   Python bindings for the GtkSpell l
pn  python-urwid none  (no description available)
ii  python-vte   1:0.24.1-1  Python bindings for the VTE widget
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from

-- 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#583858: (no subject)

2010-06-12 Thread André Wöbbeking
On Saturday 12 June 2010, André Wöbbeking wrote:
 On Saturday 12 June 2010, you wrote:
  I really doubt it's the same problem. The reported bug only affected
  x86_64 users running on Core i7.
 
 I can only tell you that I also had tried 2.11.1-1 before and had the same
 problem. And downgrading eglibc helped.

I forgot to mention: after downgrading eglibc I wanted to start Qt apps 
compiled 
with eglibs 2.11 without recompile but the system complained about different 
sizes of strlen() and related functions (sorry, I can't remember the exact 
message). Does this mean that 2.11 isn't binary compatible?



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



Bug#583858: (no subject)

2010-06-12 Thread Aurelien Jarno
On Sat, Jun 12, 2010 at 12:01:45PM +0200, André Wöbbeking wrote:
 On Saturday 12 June 2010, André Wöbbeking wrote:
  On Saturday 12 June 2010, you wrote:
   I really doubt it's the same problem. The reported bug only affected
   x86_64 users running on Core i7.
  
  I can only tell you that I also had tried 2.11.1-1 before and had the same
  problem. And downgrading eglibc helped.
 
 I forgot to mention: after downgrading eglibc I wanted to start Qt apps 
 compiled 
 with eglibs 2.11 without recompile but the system complained about different 
 sizes of strlen() and related functions (sorry, I can't remember the exact 
 message). Does this mean that 2.11 isn't binary compatible?
 

Ok, this means that you are compiling with binutils-gold, which produce
broken binaries, hence this message.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#583858: (no subject)

2010-06-12 Thread Aurelien Jarno
On Sat, Jun 12, 2010 at 11:44:43AM +0200, André Wöbbeking wrote:
 On Saturday 12 June 2010, you wrote:
 
  I really doubt it's the same problem. The reported bug only affected
  x86_64 users running on Core i7.
 
 I can only tell you that I also had tried 2.11.1-1 before and had the same 
 problem. And downgrading eglibc helped.
 
  Does only Qt related applications crashes or also other applications?
 
 I only saw Qt related applications crash but I don't know if other apps are 
 affected too. BTW, not all Qt apps crash only some.

You mentionned rebuilding Qt 4. Does it happen with binaries you have
rebuilt yourself, or at least that link to libraries you have rebuilt 
yourself?

If yes, make sure you don't have binutils-gold installed, as it is
currently broken with eglibc 2.11 (see bug#585051). Note that the bug is
fixed in the version currently in experimental. 

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#584603: patch not correct

2010-06-12 Thread Peter Palfrader
On Mon, 07 Jun 2010, Peter Palfrader wrote:

 just a quick heads up.
 
 As it is the patch does not work correctly.
 
 At the very least it requires s/geoip/geoip6/ in one line, but even then
 it does not yet work for me for v6.
 
 To be continued,

Try this one instead.

- it uses get_code instead of get_name for ipv6, to get 'AT' instead of
  'Austria' just like it expects.  (GeoIP_country_name_by_ipnum_v6 vs.
  GeoIP_country_code_by_ipnum_v6).
- it does not segfault when the databases are not available, and
  properly logs if it needs databases but they aren't installed.
- I also moved the database pointers to function static variables
  instead of global statics.  I did that during debugging, but I think
  it should be fine.

patch is against the package in sid, not against bind in sid including
the patch previously submitted to this bug.

Cheers,
-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/
diff -u bind9-9.7.0.dfsg.P1/lib/dns/acl.c bind9-9.7.0.dfsg.P1/lib/dns/acl.c
--- bind9-9.7.0.dfsg.P1/lib/dns/acl.c
+++ bind9-9.7.0.dfsg.P1/lib/dns/acl.c
@@ -29,14 +29,11 @@
 #include isc/once.h
 #include isc/string.h
 #include isc/util.h
+#include dns/log.h
 
 #include dns/acl.h
 #include dns/iptable.h
 
-#ifdef SUPPORT_GEOIP
-static GeoIP *geoip = NULL;
-#endif
-
 /*
  * Create a new ACL, including an IP table and an array with room
  * for 'n' ACL elements.  The elements are uninitialized and the
@@ -391,30 +388,65 @@
 	int indirectmatch;
 	isc_result_t result;
 
+	#ifdef SUPPORT_GEOIP
+	static GeoIP *geoip = NULL;
+	static isc_boolean_t geoip_init_tried = ISC_FALSE;
+	#ifdef GEOIP_V6
+	static GeoIP *geoip6 = NULL;
+	static isc_boolean_t geoip6_init_tried = ISC_FALSE;
+	#endif
+	#endif
+
 	switch (e-type) {
 #ifdef SUPPORT_GEOIP
 	case dns_aclelementtype_ipcountry:
 		/* Country match */
-		if (NULL == geoip) {
-			geoip = GeoIP_new(GEOIP_MEMORY_CACHE);
+		if (NULL == geoip  !geoip_init_tried) {
+			geoip_init_tried = ISC_TRUE;
+			if (GeoIP_db_avail(GEOIP_COUNTRY_EDITION)) {
+geoip = GeoIP_open_type(GEOIP_COUNTRY_EDITION, GEOIP_MEMORY_CACHE);
+if (NULL == geoip)
+	isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
+		  DNS_LOGMODULE_ACL, ISC_LOG_NOTICE,
+		  Failed to open geoip database for ipv4);
+			} else {
+isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
+	  DNS_LOGMODULE_ACL, ISC_LOG_NOTICE,
+	  geoip database for ipv4 is not available);
+			}
 		}
-		if (NULL != geoip) {
-			const char *value = NULL;
+#ifdef GEOIP_V6
+		if (NULL == geoip6  !geoip6_init_tried) {
+			geoip6_init_tried = ISC_TRUE;
+			if (GeoIP_db_avail(GEOIP_COUNTRY_EDITION_V6)) {
+geoip6 = GeoIP_open_type(GEOIP_COUNTRY_EDITION_V6, GEOIP_MEMORY_CACHE);
+if (NULL == geoip6)
+	isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
+		  DNS_LOGMODULE_ACL, ISC_LOG_NOTICE,
+		  Failed to open geoip database for ipv6);
+			} else {
+isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
+	  DNS_LOGMODULE_ACL, ISC_LOG_NOTICE,
+	  geoip database for ipv6 is not available);
+			}
+		}
+#endif
+
+const char *value = NULL;
 
-			if (reqaddr-family == AF_INET) {
-value = GeoIP_country_code_by_addr(geoip,inet_ntoa(reqaddr-type.in));
+		if (reqaddr-family == AF_INET  geoip) {
+			value = GeoIP_country_code_by_addr(geoip,inet_ntoa(reqaddr-type.in));
 #ifdef GEOIP_V6
-			} else if (reqaddr-family == AF_INET6) {
-value = GeoIP_country_name_by_ipnum_v6(geoip, (geoipv6_t)reqaddr-type.in6);
+		} else if (reqaddr-family == AF_INET6  geoip6) {
+			value = GeoIP_country_code_by_ipnum_v6(geoip6, (geoipv6_t)reqaddr-type.in6);
 #endif
-			}
+		}
 
-			if ((NULL != value)  (2 == strlen(value))) {
-if ((e-country[0] == value[0])  (e-country[1] == value[1])) {
-	return (ISC_TRUE);
-}
+		if ((NULL != value)  (2 == strlen(value))) {
+			if ((e-country[0] == value[0])  (e-country[1] == value[1])) {
+return (ISC_TRUE);
 			}
-}
+		}
 		return (ISC_FALSE);
 #endif
 


Bug#585608: linux-image-2.6.32-5-686: SAA7146: BUG: unable to handle kernel NULL pointer dereference at (null)

2010-06-12 Thread Matthias Pitzl
Package: linux-2.6
Version: 2.6.32-15
Severity: important


When doing a channel scan with my Haupauge WinTV Nexus-S rev 2.3 card, i
get an kernel oops. Seems to be a general problem not only with this
kernel version. Unfortunately i only have a trace for 2.6.43-rc7 but
it's the same trace as i get with kernel versions 2.6.32-3 and 2.6.32-5:

[  773.280361] IP: [f825a7ba] saa7146_buffer_next+0x5e/0x1ed
[saa7146_vv]
[  773.280361] *pde = 
[  773.280361] Oops:  [#1] SMP
[  773.280361] last sysfs file: /sys/module/nfsd/initstate
[  773.280361] Modules linked in: nfsd exportfs nfs lockd nfs_acl
auth_rpcgss sunrpc f71882fg coretemp loop lnbp21 stv0299 dvb_ttpci
snd_hda_codec_realtek dvb_core saa7146_vv videodev v4l1_compat
snd_hda_intel saa7146 snd_hda_codec videobuf_dma_sg snd_hwdep
videobuf_core snd_pcm i2c_i801 ttpci_eeprom psmouse snd_timer intel_agp
evdev pcspkr snd i2c_core serio_raw agpgart video processor rng_core
soundcore button output snd_page_alloc usb_storage uhci_hcd ehci_hcd
thermal sd_mod crc_t10dif thermal_sys usbcore nls_base e1000e [last
unloaded: scsi_wait_scan]
[  773.280361]
[  773.280361] Pid: 0, comm: swapper Not tainted 2.6.34-rc7 #7
A9830IMS/A9830IMS
[  773.280361] EIP: 0060:[f825a7ba] EFLAGS: 00010246 CPU: 0
[  773.280361] EIP is at saa7146_buffer_next+0x5e/0x1ed [saa7146_vv]
[  773.280361] EAX: f68b3008 EBX: f733d900 ECX: 0001 EDX: 0002
[  773.280361] ESI: ffd4 EDI: f68b3000 EBP:  ESP: c135fefc
[  773.280361]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[  773.280361] Process swapper (pid: 0, ti=c135e000 task=c138cb60
task.ti=c135e000)
[  773.280361] Stack:
[  773.280361]  f68b3000 f733d900 c13640bc 000a f825e5f6 f733d900
fff7fbf7 f825a759
[  773.280361] 0 f733d900  f812bdfc fff7fbf7 f6a1e240 
c106793a 
[  773.280361] 0  c1364080 000a c13640bc c135ff80 c1069072
000a 000a
[  773.280361] Call Trace:
[  773.280361]  [f825e5f6] ? vbi_irq_done+0x99/0x9f [saa7146_vv]
[  773.280361]  [f825a759] ? vv_callback+0x10f/0x112 [saa7146_vv]
[  773.280361]  [f812bdfc] ? interrupt_hw+0x9f/0x1a8 [saa7146]
[  773.280361]  [c106793a] ? handle_IRQ_event+0x49/0xe7
[  773.280361]  [c1069072] ? handle_level_irq+0x55/0x9e
[  773.280361]  [c10044cb] ? handle_irq+0x17/0x1c
[  773.280361]  [c1003da9] ? do_IRQ+0x38/0x8e
[  773.280361]  [c1002d30] ? common_interrupt+0x30/0x38
[  773.280361]  [c10086e6] ? mwait_idle+0x59/0x5e
[  773.280361]  [c1001ae7] ? cpu_idle+0x91/0xaa
[  773.280361]  [c13b9881] ? start_kernel+0x31c/0x321
[  773.280361] Code: 50 fc 25 f8 e8 9d 0e 01 c9 83 c4 1c 8b 43 44 89 c2
c1 fa 08 38 c2 75 04 0f 0b eb fe 8b 77 08 8d 47 08 39 c6 74 6b 83 ee 2c
31 ed 8b 4e 2c 8b 56 30 89 51 04 89 0a c7 46 2c 00 01 10 00 c7 46 30
[  773.280361] EIP: [f825a7ba] saa7146_buffer_next+0x5e/0x1ed
[saa7146_vv] SS:ESP 0068:c135fefc
[  773.280361] CR2: 
[  773.985900] ---[ end trace ec43c18100749f7e ]---
[  773.999765] Kernel panic - not syncing: Fatal exception in interrupt
[  774.018832] Pid: 0, comm: swapper Tainted: G  D2.6.34-rc7 #7
[  774.037908] Call Trace:
[  774.045272]  [c126b5c4] ? panic+0x37/0xa8
[  774.057844]  [c10050e0] ? oops_end+0x88/0x93
[  774.071195]  [c1019bfd] ? no_context+0x10d/0x116
[  774.085581]  [c1019f62] ? do_page_fault+0x0/0x242
[  774.100232]  [c1019d04] ? bad_area_nosemaphore+0xa/0xc
[  774.116194]  [c126d6c3] ? error_code+0x73/0x78
[  774.130077]  [f825a7ba] ? saa7146_buffer_next+0x5e/0x1ed
[saa7146_vv]
[  774.149941]  [f825e5f6] ? vbi_irq_done+0x99/0x9f [saa7146_vv]
[  774.167718]  [f825a759] ? vv_callback+0x10f/0x112 [saa7146_vv]
[  774.185762]  [f812bdfc] ? interrupt_hw+0x9f/0x1a8 [saa7146]
[  774.203023]  [c106793a] ? handle_IRQ_event+0x49/0xe7
[  774.218459]  [c1069072] ? handle_level_irq+0x55/0x9e
[  774.233890]  [c10044cb] ? handle_irq+0x17/0x1c
[  774.247758]  [c1003da9] ? do_IRQ+0x38/0x8e
[  774.260590]  [c1002d30] ? common_interrupt+0x30/0x38
[  774.276023]  [c10086e6] ? mwait_idle+0x59/0x5e
[  774.289890]  [c1001ae7] ? cpu_idle+0x91/0xaa
[  774.303243]  [c13b9881] ? start_kernel+0x31c/0x321

This can be easily reproduced using the following command:
scan -v /usr/share/dvb/dvb-s/Astra-19.2E

The crash happens after a short random time.

I tried also the different firmware versions for ths DVB-S card but this
doesn't seem to make any difference. I already sent a bug report to
linux-me...@vger.kernel.org.

I also tried to start the kernel with nosmp, noapic, noacpi but this
also does not fix the problem.

-- Package-specific info:
** Version:
Linux version 2.6.32-5-686 (Debian 2.6.32-15) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-1) ) #1 SMP Tue Jun 1 04:59:47 UTC 2010

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-686 
root=UUID=23c9a18d-19a0-4d5e-9e65-551dea6f8e93 ro console=tty0 
console=ttyS0,38400n8 quiet

** Not tainted

** Kernel log:
[1.993415] usb 1-5: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[1.993422] usb 1-5: Product: 

Bug#585609: linux-base: postinstall script fails on loop-aes partitions

2010-06-12 Thread Winfried Tilanus
Package: linux-base
Version: 2.6.32-15
Severity: normal
Tags: squeeze


linux-base.postinst fails on loop-aes partitions configured in /etc/fstab like 
this:
/dev/sda7   /tmpext3
defaults,loop=/dev/loop5,encryption=AES256,phash=random/1777 0 0
/dev/sda6   /varext3
defaults,loop=/dev/loop6,encryption=AES256,gpgkey=/root/masterkey.gpg

The error comes from tune2fs (Bad magic number in super-block while trying to 
open /dev/sda7) on line 1045 of the postinst script.

tnx,

Winfried

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

Kernel: Linux 2.6.32-3-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 linux-base depends on:
ii  debconf [debconf-2.0] 1.5.32 Debian configuration management sy
ii  libapt-pkg-perl   0.1.24 Perl interface to libapt-pkg
ii  libuuid-perl  0.02-3+b1  Perl extension for using UUID inte
ii  udev  154-1  /dev/ and hotplug management daemo
ii  util-linux2.16.2-0   Miscellaneous system utilities

linux-base recommends no packages.

linux-base suggests no packages.

-- debconf information:
  linux-base/disk-id-manual-boot-loader:
  linux-base/disk-id-manual:
  linux-base/disk-id-convert-plan-no-relabel: true
* linux-base/disk-id-convert-auto: true
* linux-base/disk-id-convert-plan: true



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



Bug#585610: icedove: Printing ALWAYS prints to Letter, A4 cannot be selected anywhere, even though printer has ONLY A4

2010-06-12 Thread Andreas Neudecker
Package: icedove
Version: 3.0.4-3
Severity: important

It is impossible to print to A4 in Icedove.

Default setting is Letter even though the physical printer has only A4
configured and loaded.
Even with the virtual CUPS PDF printer it is not possible to select any other
page size because the respective entry is disabled and shows Letter as preset
(File-Print-Page Setup). Actually, all entries on that page except duplex,
pages per sheet and scaling are disabled for any printer, real or virtual.

This is very annoying and makes printing in icedove unusable for anyone who
does not by default use letter format, i.e. innumerable users in many countries
other than the US.

Regards

Andreas




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

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

Versions of packages icedove depends on:
ii  debianutils 3.2.3Miscellaneous utilities specific t
ii  fontconfig  2.8.0-2.1generic font configuration library
ii  libasound2  1.0.22-2 shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-9 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-1GCC support library
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.8.4-1  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.6-2 Network Security Service libraries
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libsqlite3-03.6.23.1-4   SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.4.4-1  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxrender1 1:0.9.5-2X Rendering Extension client libra
ii  libxt6  1:1.0.7-1X11 toolkit intrinsics library
ii  psmisc  22.11-1  utilities that use the proc file s
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages icedove recommends:
ii  myspell-de-at [myspell-dict 20091006-4.1 Austrian (German) dictionary for m
ii  myspell-de-ch [myspell-dict 20091006-4.1 Swiss (German) dictionary for mysp
ii  myspell-de-de [myspell-dict 20091006-4.1 German dictionary for myspell
ii  myspell-en-us [myspell-dict 1:3.2.0-5English_american dictionary for my

Versions of packages icedove suggests:
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libgconf2-42.28.1-3  GNOME configuration database syste
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomevfs2-0 1:2.24.3-1GNOME Virtual File System (runtime
ii  libgssapi-krb5-2   1.8.1+dfsg-5  MIT Kerberos runtime libraries - k
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  ttf-lyx1.6.6-2   TrueType versions of some TeX font

-- Configuration Files:
/etc/icedove/messenger/mailViews.dat [Errno 2] Datei oder Verzeichnis nicht 
gefunden: u'/etc/icedove/messenger/mailViews.dat'

-- 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#572757: No amarok-specific icons

2010-06-12 Thread Jacek Politowski
Package: amarok
Version: 2.3.1-1
Severity: normal

I have a similar issue here.

Although I can see all the icons mentioned in original bug report, I don't have
system tray (notification area) icon for Amarok. Instead, I see the icon with
question mark, as the ones on screenshots from original bug report.

I did all the steps mentioned:
$ kbuildsycoca4 --noincremental

$ ls -l 
/usr/share/kde4/apps/amarok/icons/hicolor/*/actions/collection-amarok.png
(resulting in 4 files)
(i can see actually 232 files mathing pattern
/usr/share/kde4/apps/amarok/icons/hicolor/*/actions/*-amarok.png)

$ rm ~/.kde/cache-*/kpc/Amarok-pixmaps.*
$ rm ~/.kde/cache-*/kpc/kde-icon-cache.*

All of this didn't help.


After starting Amarok from terminal, I can see, among others, a message:
QSystemTrayIcon::setVisible: No Icon set


I also started Amarok with $ LANG=C amarok, and it didn't help either.



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

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

Versions of packages amarok depends on:
ii  amarok-common   2.3.1-1  architecture independent files for
ii  amarok-utils2.3.1-1  utilities for Amarok media player
ii  kdebase-runtime 4:4.4.4-1runtime components from the offici
ii  libc6   2.11.1-3 Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls 7.20.1-2 Multi-protocol file transfer libra
ii  libgcc1 1:4.4.4-4GCC support library
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgpod40.7.2-2+b1   library to read and write songs an
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libkdecore5 4:4.4.4-1the KDE Platform Core Library
ii  libkdeui5   4:4.4.4-1the KDE Platform User Interface Li
ii  libkdnssd4  4:4.4.4-1the DNS-SD Protocol Library for th
ii  libkfile4   4:4.4.4-1the File Selection Dialog Library 
ii  libkio5 4:4.4.4-1the Network-enabled File Managemen
ii  libknewstuff2-4 4:4.4.4-1the Get Hot New Stuff v2 Library
ii  libknewstuff3-4 4:4.4.4-1the Get Hot New Stuff v3 Library
ii  libkutils4  4:4.4.4-1various utility classes for the KD
ii  liblastfm0  0.4.0~git20090710-1  The Last.fm web services library
ii  libloudmouth1-0 1.4.3-5  Lightweight C Jabber library
ii  libmtp8 1.0.3-1  Media Transfer Protocol (MTP) libr
ii  libmysqlclient165.1.47-1 MySQL database client library
ii  libphonon4  4:4.6.0really4.4.2-1 the core library of the Phonon mul
ii  libplasma3  4:4.4.4-1the Plasma Library for the KDE Pla
ii  libqca2 2.0.2-1  libraries for the Qt Cryptographic
ii  libqt4-dbus 4:4.6.3-1Qt 4 D-Bus module
ii  libqt4-network  4:4.6.3-1Qt 4 network module
ii  libqt4-script   4:4.6.3-1Qt 4 script module
ii  libqt4-sql  4:4.6.3-1Qt 4 SQL module
ii  libqt4-svg  4:4.6.3-1Qt 4 SVG module
ii  libqt4-webkit   4:4.6.3-1Qt 4 WebKit module
ii  libqt4-xml  4:4.6.3-1Qt 4 XML module
ii  libqtcore4  4:4.6.3-1Qt 4 core module
ii  libqtgui4   4:4.6.3-1Qt 4 GUI module
ii  libqtscript4-core   0.1.0-3  Qt Script bindings for the Qt 4 Co
ii  libqtscript4-gui0.1.0-3  Qt Script bindings for the Qt 4 Gu
ii  libqtscript4-networ 0.1.0-3  Qt Script bindings for the Qt 4 Ne
ii  libqtscript4-sql0.1.0-3  Qt Script bindings for the Qt 4 SQ
ii  libqtscript4-uitool 0.1.0-3  Qt Script bindings for the Qt 4 Ui
ii  libqtscript4-xml0.1.0-3  Qt Script bindings for the Qt 4 XM
ii  libsolid4   4:4.4.4-1Solid Library for KDE Platform
ii  libstdc++6  4.4.4-4  The GNU Standard C++ Library v3
ii  libstreamanalyzer0  0.7.2-1  streamanalyzer library for Strigi 
ii  libstreams0 0.7.2-1  streams library for for Strigi Des
ii  libtag-extras1  1.0.1-2  TagLib extras library - support fo
ii  libtag1c2a  1.6.3-1  TagLib Audio Meta-Data Library
ii  libthreadweaver44:4.4.4-1the ThreadWeaver Library for the K
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  phonon  4:4.6.0really4.4.2-1 metapackage for the Phonon multime
ii  phonon-backend-gstr 4:4.6.0really4.4.2-1 Phonon GStreamer 

Bug#585611: libgtkada2: please update to recent autotools

2010-06-12 Thread Ludovic Brenta
Package: src:libgtkada2
Version: 2.14.2-1
Severity: wishlist
Tags: upstream

lintian reports the following errors with libgtkada2:

E: libgtkada2 source: ancient-autotools-helper-file config.guess 2001-09-04
E: libgtkada2 source: ancient-autotools-helper-file config.sub 2001-09-07

After reading /usr/share/doc/autotools-dev/README.Debian.gz provided by
the package autotools-dev, I tried to remove the two offending files and
regenerate them with autoreconf but got this error:

autoreconf: configure.in: AM_GNU_GETTEXT is used, but not
AM_GNU_GETTEXT_VERSION

This indicates a bug in configure.in, which is incompatible with recent
versions of autoconf.

I have the following relevant packages installed:

ii  autoconf  2.65-4 automatic configure script builder
ii  automake  1:1.11.1-1 A tool for generating GNU Standards-compliant Makefiles

-- 
Ludovic Brenta.



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



Bug#539096: elmerfem: FTBFS with python 2.6

2010-06-12 Thread Jakub Wilk

severity 539096 important
thanks

* Fabrice Coutadeur fabric...@ubuntu.com, 2009-07-29, 03:47:

This package needed some adaptation to build fine with python 2.6.

Here is the patch that we applied in Ubuntu to fix the FTBFS with 
python2.6.


Of course, we would prefer a patch that does not hardcode any Python 
version, but use the version that happens to be the default at build 
time. That way the package could be fixed *before* python-defaults is 
uploaded to unstable, and then only binNMUed afterwards.


--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#356995: new version

2010-06-12 Thread Martijn van Brummelen

Hi Philippe,

Can you tell me if you are able to reproduce this bug it the latest 
version of grsync?


Thanks.

Regards,
Martijn van Brummelen



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



Bug#567942: coccinelle: preparation for python 2.6 transition

2010-06-12 Thread Jakub Wilk

severity 567942 important
thanks

* Bhavani Shankar right2bh...@gmail.com, 2010-02-01, 17:28:

In Ubuntu, we've applied the attached patch to achieve the following:

 * Merge from debian testing.  Remaining changes:
   - debian/control: build-depend on python2.6-dev,
 set XB-Python-Version to 2.6


We would prefer a patch that does not hardcode any Python versions.

--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#585600: linux-image-2.6.32-5-686: KMS does not detect display resolutions

2010-06-12 Thread Julien Cristau
On Sat, Jun 12, 2010 at 09:02:33 +0200, Olivier Berger wrote:

 Since the latest radeon X driver has entered testing, KMS is enabled on my 
 machine, which results in display resolution badly configured with my 
 monitor. I used to have 1280x1024 and no longer have (the fallback 1024x768 
 is set).
 
 The dmesg messages about EDID being wrong show the problem.
 
 Maybe this is linked to a KVM display switch being present ?
 
That seems likely.  Can you attach an X log with kms disabled?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#585555: Please don't set the default audio output in /etc/mplayer/mplayer.conf

2010-06-12 Thread David Henningsson
On 2010-06-11 19:31, Andres Mejia wrote:
 severity 58 wishlist
 tags 58 wontfix
 thanks
 
 Considering the integration of pulseaudio by many distributions and projects, 
 and considering the fact that Debian's gnome package ultimitely depends on 
 pulseaudio through it's dependencies, it's reasonable to assume that 
 pulseaudio will be installed on a user's machine, for the majority case.
 
 Also, I think having the sound device taken over by one program, leaving 
 other 
 programs with no sound, is a bigger issue than waiting a few seconds for 
 mplayer to start playback.
 
 On Friday 11 June 2010 12:13:36 Pascal Gervais wrote:
 Package: mplayer
 Version: 2:1.0~rc3+svn20100502-3
 Severity: normal

 Hi

 Since the update from version 2:1.0~rc3+svn20090426 to version
 2:1.0~rc3+svn20100502 in May 2010, mplayer takes six to seven seconds
 before starting to play any video and audio, trying to find pulseaudio
 on a system where pulseaudio is not installed.

 So, can you please let ao=pulse,alsa,sdl:aalib commented in
 /etc/mplayer/mplayer.conf and add in README.Debian that pulseaudio
 users should use ao=pulse in ~/.mplayer/config or specify the '-ao
 pulse' option on their command line.

 Thanks

Wouldn't it be a better solution to try to troubleshoot why it takes so
long for the pa driver to detect that PA is not installed?

// David



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



Bug#585612: xserver-xorg-video-intel: crash in debian squeeze after closing and then opening lid

2010-06-12 Thread david b
Package: xserver-xorg-video-intel
Version: 2:2.9.1-4
Severity: important

I note that there is a bug 476087 - 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476087 that may be similar to 
the following bug report.
Debian lenny on a intel latitude D400 when running gdm, I can close the screen 
of the laptop and when I open it I see gdm again.
After upgrading to debian squeeze (on the 9th) when I am running gdm, I close 
the screen of the laptop and when I open it I see *gray* nothingness.
The system will not accept any keyboard or other input after I open the lid and 
see the gray screen. 
Now I cannot close the laptop's screen because it will crash. This occurs when 
I use the squeeze kernel, a custom compiled 2.6.32.7 kernel and the 
debian lenny 2.6.26 kernel which I had not removed.

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (900, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

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



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



Bug#369453: Bug 369453 User Context Switching

2010-06-12 Thread Herman Swartz
Then, since these functions were removed from Posix 2008, should the support of 
these same functions be removed for all the other platforms?

Herman


  



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



Bug#585525: tell logcheck to ignore packet truncated warnings

2010-06-12 Thread Ola Lundqvist
Thanks. Simplified it slightly, and new package is in build right now.

Best regards,

// Ola

On Fri, Jun 11, 2010 at 01:53:03PM +0200, martin f krafft wrote:
 Package: ntop
 Version: 3:3.3-13
 Severity: wishlist
 Tags: patch
 
 Please add the following rule:
 
   +^\w{3} [ :0-9]{11} [._[:alnum:]-]+ 
 ntop\[[[:digit:]]{2,5}\]:[[:space:]]+\*\*WARNING\*\* packet truncated 
 \([[:digit:]]+-[[:digit:]]+\)$
 
 to filter the countless warnings I get like this:
 
   Jun 11 13:25:29 wall ntop[2911]:   **WARNING** packet truncated (8754-8232)
 
 I don't know what they are trying to warn me about, ntop works fine,
 and I don't really see who is truncating packets, and for what
 reason.
 
 -- System Information:
 Debian Release: squeeze/sid
   APT prefers unstable
   APT policy: (500, 'unstable'), (1, 'experimental')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.33-2-amd64 (SMP w/1 CPU core)
 Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 
 
 -- 
  .''`.   martin f. krafft madd...@d.o  Related projects:
 : :'  :  proud Debian developer   http://debiansystem.info
 `. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
   `-  Debian - when you have better things to do than fixing systems



-- 
 - Ola Lundqvist ---
/  o...@debian.org Annebergsslingan 37  \
|  o...@inguza.com  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#585613: postgresql-common scripts should accept alphanumerical version id

2010-06-12 Thread Nils Goroll
Package: postgresql-common
Version: 94lenny1

I need to run a customized postgresql installation and wanted to get good
integration into the debian installation when I realized that the highly useful
postgresql-common scripts only support purely numerical version ids. Here's a
simplistic example:

# pg_createcluster 8.3nfs test
Use of uninitialized value $version in concatenation (.) or string at
/usr/bin/pg_createcluster line 281.
Use of uninitialized value $version in concatenation (.) or string at
/usr/bin/pg_createcluster line 282.
Use of uninitialized value $version in concatenation (.) or string at
/usr/bin/pg_createcluster line 286.
Error: invalid version:

I'll attach suggested patches to extend the scripts to also handle
alphanumerical version ids matching the regexp

[a-z]*\d+.\d+[a-z]*

This was seen on:

# uname -a
Linux name 2.6.26-2-amd64 #1 SMP Tue Mar 9 22:29:32 UTC 2010 x86_64 GNU/Linux
# cat /etc/debian_version
5.0.4

Thank you,

Nils

-- 

** * * UPLEX - Nils Goroll Systemoptimierung

Schwanenwik 24
22087 Hamburg

tel +49 40 28805731
mob +49 170 2723133
fax +49 40 42949753

http://uplex.de/
diff -rub usr/bin.o/pg_createcluster usr/bin/pg_createcluster
--- usr/bin.o/pg_createcluster  2009-02-06 00:00:51.0 +0100
+++ usr/bin/pg_createcluster2010-06-11 18:26:55.0 +0200
@@ -50,16 +50,19 @@
 sub init_db {
 $datadir = (-l $_[1]) ? readlink $_[1] : $_[1];
 
+my $v;
+($v = $_[0])  =~ y/0-9.//cd;
+
 if (system 'install', '-d', '-o', $_[2], '-g', $_[3], $datadir) {
 error 'could not create data directory; you might need to run this 
program with root privileges';
 }
 
 @initdb = ((get_program_path 'initdb', $_[0]), '-D', $datadir);
-if ($_[0] ge '8.0') {
+if ($v ge '8.0') {
 push @initdb, ('-A', 'ident sameuser');
 }
 die 'Internal error: could not determine initdb path' unless $initdb[0];
-if (!$encoding and $version  8) { 
+if (!$encoding and $nversion  8) { 
 $encoding = get_encoding_from_locale();
 }
 push @initdb, ('--encoding', $encoding) if $encoding;
@@ -73,7 +76,7 @@
 
 # pre-8.2 servers do not ignore LANG when LC_ALL is set; work around this
 # bug
-if ($_[0] le '8.2'  $ENV{'LC_ALL'}) {
+if ($v le '8.2'  $ENV{'LC_ALL'}) {
 $ENV{'LANG'} = $ENV{'LC_ALL'};
 }
 
@@ -106,7 +109,7 @@
 
@pathcomps = split ('/', $file);
$target .= '/' . $pathcomps[-1];
-if ($version lt '8') {
+if ($nversion lt '8') {
 $oldgid = $);
 $olduid = $;
 $) = $gid;
@@ -274,7 +277,8 @@
 
 error 'clusters must not be owned by root' unless $owneruid  $ownergid;
 
-($version) = $ARGV[0] =~ /^(\d+\.\d+)$/;
+($version) = $ARGV[0] =~ /^([a-z]*\d+\.\d+[a-z]*)$/;
+($nversion = $version)  =~ y/0-9.//cd;
 ($cluster) = $ARGV[1] =~ /^([-.\w]+)$/;
 error 'invalid cluster name' unless defined $cluster;
 
@@ -337,7 +341,7 @@
 move_conffile $datadir/pg_ident.conf, $confdir, $owneruid, $ownergid, '640', 
'ident_file';
 chown $owneruid, $ownergid, $datadir, $confdir, $confdir/start.conf or die 
chown: $!;
 
-if ($version ge '8.0') {
+if ($nversion ge '8.0') {
 PgCommon::set_conf_value $version, $cluster, 'postgresql.conf', 
'data_directory', $datadir;
 } else {
 # pre-8.0 clusters did not have data_directory and thus need a pgdata 
symlink
@@ -395,7 +399,7 @@
 }
 
 # create autovacuum log file for servers  8.1
-if ($version  8.1) {
+if ($nversion  8.1) {
 $real_logfile = /var/log/postgresql/pg_autovacuum-$version-$cluster.log;
 if (! -e $real_logfile) {
 open L, $real_logfile or error could not create log file 
$real_logfile;
@@ -407,7 +411,7 @@
 }
 
 # version specific default configuration tweaking
-$conf_fn = configure_$version;
+$conf_fn = configure_$nversion;
 $conf_fn =~tr/./_/;
 $conf_fn if defined $conf_fn and $newcluster;
 
@@ -426,7 +430,7 @@
 # so, enable SSL
 
 if ($newcluster  -e '/etc/ssl/certs/ssl-cert-snakeoil.pem'  
-$ssl_key_access  $version ge '8.0') {
+$ssl_key_access  $nversion ge '8.0') {
 symlink '/etc/ssl/certs/ssl-cert-snakeoil.pem', $datadir.'/server.crt';
 symlink '/etc/ssl/private/ssl-cert-snakeoil.key', $datadir.'/server.key';
 
@@ -455,7 +459,7 @@
 $createsuccess = 1;
 
 # configure to create external PID file
-if ($version ge '8.0'  $socketdir eq '/var/run/postgresql') {
+if ($nversion ge '8.0'  $socketdir eq '/var/run/postgresql') {
 PgCommon::set_conf_value $version, $cluster, 'postgresql.conf', 
'external_pid_file', /var/run/postgresql/$version-$cluster.pid;
 }
 
diff -rub usr/bin.o/pg_ctlcluster usr/bin/pg_ctlcluster
--- usr/bin.o/pg_ctlcluster 2009-02-06 00:02:22.0 +0100
+++ usr/bin/pg_ctlcluster   2010-06-11 18:29:34.0 +0200
@@ -131,7 +131,7 @@
 }
 
 sub autovacuum_start {
-if ($version ge '8.1') {
+if ($nversion ge '8.1') {
error 'PostgreSQL 8.1 and above has an integrated autovacuum daemon 
which cannot be controlled 

Bug#585614: Fails to open any mp3's to split

2010-06-12 Thread Ron
Package: mp3splt-gtk
Version: 0.5.6-1+b1
Severity: grave

Hi Ryan,

This is the same bug we discussed a while back on IRC (and the subject
says it all really anyway).  I'm filing it here now partly as a reminder
for you (since it's been a while), partly as notice for the release team
(since including this in squeeze if it doesn't work at all seems silly),
and partly as documentation for an NMU I might do if you don't have any
reasons to object to that.

Cheers,
Ron


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

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

Versions of packages mp3splt-gtk depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libaudclient2   2.1-1audacious dbus remote control libr
ii  libc6   2.10.2-7 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgstreamer0.10-0  0.10.29-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libmcs1 0.7.1-1  Abstraction library to store confi
ii  libmowgli1  0.6.1-1  a high performance development fra
ii  libmp3splt-mp3 [libmp3splt- 0.5.6-1  MP3 plugin for mp3splt
ii  libmp3splt-ogg [libmp3splt- 0.5.6-1  Ogg Vorbis plugin for mp3splt
ii  libmp3splt0 0.5.6-1  library for splitting MP3 and Ogg 
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libsamplerate0  0.1.7-3  Audio sample rate conversion libra
ii  libxml2 2.7.7.dfsg-2 GNOME XML library

mp3splt-gtk recommends no packages.

Versions of packages mp3splt-gtk suggests:
ii  audacious 2.1-1  small and fast audio player which 

-- 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#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11

2010-06-12 Thread Matthias Klose

On 11.06.2010 15:22, Aurelien Jarno wrote:

reassign 584610 gcc-4.4
tag 584610 + pending
thanks

On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote:

Matthias Klose a écrit :

On 06.06.2010 00:51, Aurelien Jarno wrote:

On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote:

Package: eGLIBC
Version: 2.11.1-2
Severity: serious

gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11:

https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666


This FTBFS is caused by the following change:

|2009-11-20  Jakub Jelinekja...@redhat.com
|
|PR libc/10103
|
|* math/math.h: Provide *l long double prototypes redirecting
|to double functions even when __NO_LONG_DOUBLE_MATH and not
|__LDBL_COMPAT.
|* math/complex.h: Likewise.

These functions were present before in the library, but not exported
in the headers. This has been changed as it is required by ISO C99.

GCC tries to find these functions in the GLIBC by compiling a program,
so it was failing before, and is successful now. When they are already
present in the GLIBC it does not re-export them.

Strangely this should also affect ARM, but it seems to build correctly.
I haven't investigated why.

While these functions are strictly not needed in libstdc++6 anymore, we
have two options:
- revert the GLIBC change, which means we break the C99 compatibility
(as before)
- patch GCC to export these functions anyway.

What's your opinion?


For ARM I did choose the second option, but didn't get any feedback about it.
So maybe it's time to ask the mips and arm porters?

The patch applied for armel is:
http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log



I think we should go for the same patch on mips, it's probably better to
be ISO C99 compliant on the glibc side.



As we discussed, this bug has to be fixed on the gcc side. I have just
checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5.

I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I
don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed
in the SVN and the package is in experimental.


proposed instead
http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html

Joseph Meyers suggested that the symbols should only be exported for the old 
mips O32 ABI, not for the mips64 and n32 ABIs.




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



Bug#585615: salome: FTBFS on many architectures

2010-06-12 Thread Denis Barbier
Package: src:salome
Version: 5.1.3-9
Severity: serious
Tags: patch

Hello,

Here are 2 patches:
  * kernel-cleanup.patch
 Fix FTBFS when compiling with lam
  * geom-fix-powerpc.patch
 Fix FTBFS on powerpc

Denis


kernel-cleanup.patch
Description: Binary data


geom-fix-powerpc.patch
Description: Binary data


Bug#585616: RM: x11vnc [hppa] -- NBS; obsolete binary, prevents migration to testing

2010-06-12 Thread Julien Cristau
Package: ftp.debian.org
Severity: normal

Hi,

the libvncserver source package stopped building the x11vnc binary
package a while back, and its replacement FTBFS on hppa (bug 559088).
This is preventing migration of libvncserver to testing, which in turn
is apparently needed by kdenetwork.

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#583187: aMSN shouldn't compile with v4l support on non linux archs

2010-06-12 Thread Sjoerd Simons
On Wed, Jun 09, 2010 at 11:20:27AM -0430, Muammar El Khatib wrote:
 On 07/06/2010 21:31, Sjoerd Simons wrote:
  
  Attached debdiff makes amsn build on kFreeBSD again.
  
 
 Thanks for the patch, but with it, aMSN fails to load in other
 architectures e.g. amd64 (see pictures attached). The reason is because
 the files listed in Makefile.in in FOUND_OS for linux are not in their
 respective places.

Looking at the debdiff i supplied i'm not sure how that could happen unless it
was a pre-existing issue. For the linux build all files should still end up in
the same location as before. Also the amsn package i build on my machine seem
to start fine (although i don't use msn so i couldn't test any further)

Any updates on this, it's blocking a whole set of my packages from going into
testing which is starting to become quite annoying :)

  Sjoerd
-- 
Chemist who falls in acid is absorbed in work.



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



Bug#555978: debian-policy: Forbid duplicate fields in control files

2010-06-12 Thread Emilio Pozuelo Monfort
On 12/06/10 11:18, Charles Plessy wrote:
 as a non-native speaker, I have difficulties with the use of 'may' in your
 patch: if fields may be unique, they also may be not unique, so what is the
 message in this sentence? It does not give me the impression that the goal
 is to discourage the use of the same field name twice in the same paragraph.

See http://legal-dictionary.thefreedictionary.com/May

2) in statutes, and sometimes in contracts, the word may must be read in
context to determine if it means an act is optional or mandatory, for it may be
an imperative.

You ought to read it as must in this context.

Not a native speaker either, so I may be mistaken :)

Cheers,
Emilio



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



Bug#585588: [update-notifier-kde] Please, add kcm module and support for execute the upgrade.

2010-06-12 Thread Sune Vuorela
On Saturday 12 June 2010 02:13:18 you wrote:
 Package: update-notifier-kde
 Version: 1.0
 Severity: wishlist
 
 --- Please enter the report below this line. ---
 Please, implement a kcm module to configure this application and implement
 support for do the upgrade.

What do you want to configure in a kcm module ?

Update-notifier is just to *notify* the user, not to do anything else, so 
support for the upgrade is outside the scope of update-notifier-kde, and makes 
this bug void.

/Sune
-- 
I cannot open a controller of a shell, how does it work?

First you should boot the front-side bus over the LCD terminale for resetting 
the computer.



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



Bug#585617: ITP: mcron -- Guile-based program for running jobs at regular times

2010-06-12 Thread dale_mellor
Package: wnpp
Severity: wishlist

I am the upstream developer and maintainer of the GNU mcron package, and intend
to create a Debian package for it.

The GNU package mcron (Mellor's cron) can be a 100% compatible replacement for
Vixie cron (though the Debian package will not be configured this way, but as a
stand-alone utility for users not requiring any root privileges). It is written
in pure Guile, and allows configuration files to be written in scheme (as well
as Vixie's original format) for infinite flexibility in specifying when jobs
should be run.

The package carries the GPLv3.

The package's homepage is http://www.gnu.org/software/mcron and it can be
downloaded from ftp://ftp.gnu.org/gnu/mcron.



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



Bug#580629: gdm3 - allows unauthenticated users to change power configuration

2010-06-12 Thread Bastian Blank
On Sat, Jun 12, 2010 at 10:44:51AM +0200, Josselin Mouette wrote:
 The power manager daemon is launched, but that doesn’t give you access
 to the properties.
 Could you explain exactly how you would exploit that?

Start a new greeter (available via several locations), modify the power
management settings (suspend on lid close for example), close the lid.

Bastian

-- 
But Captain -- the engines can't take this much longer!



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



Bug#585588: sense of this bug

2010-06-12 Thread Rafael Belmonte
If you never will add support to do the upgrade, then this wishlist hasn't
sense. The kcm module would be to configure for instance, which application
would do the upgrade, the frequence to check for updates, etc...


Bug#585609: linux-base: postinstall script fails on loop-aes partitions

2010-06-12 Thread Ben Hutchings
On Sat, 2010-06-12 at 12:16 +0200, Winfried Tilanus wrote:
 Package: linux-base
 Version: 2.6.32-15
 Severity: normal
 Tags: squeeze
 
 
 linux-base.postinst fails on loop-aes partitions configured in /etc/fstab 
 like this:
 /dev/sda7 /tmpext3
 defaults,loop=/dev/loop5,encryption=AES256,phash=random/1777 0 0
 /dev/sda6 /varext3
 defaults,loop=/dev/loop6,encryption=AES256,gpgkey=/root/masterkey.gpg
 
 The error comes from tune2fs (Bad magic number in super-block while
 trying to open /dev/sda7) on line 1045 of the postinst script.

I don't think this is fixable.  Since these partitions are encrypted we
cannot read the filesystem label or UUID before they are mounted.  Note
also that loop-aes is not included in squeeze.  I strongly recommend you
switch to dm-crypt.

Ben.

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


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


Bug#585612: xserver-xorg-video-intel: crash in debian squeeze after closing and then opening lid

2010-06-12 Thread Julien Cristau
On Sat, Jun 12, 2010 at 20:42:28 +1000, david b wrote:

 Package: xserver-xorg-video-intel
 Version: 2:2.9.1-4
 Severity: important
 
 I note that there is a bug 476087 - 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476087 that may be similar 
 to the following bug report.
 Debian lenny on a intel latitude D400 when running gdm, I can close the 
 screen of the laptop and when I open it I see gdm again.
 After upgrading to debian squeeze (on the 9th) when I am running gdm, I close 
 the screen of the laptop and when I open it I see *gray* nothingness.
 The system will not accept any keyboard or other input after I open the lid 
 and see the gray screen. 
 Now I cannot close the laptop's screen because it will crash. This occurs 
 when I use the squeeze kernel, a custom compiled 2.6.32.7 kernel and the 
 debian lenny 2.6.26 kernel which I had not removed.
 
Please attach the relevant X and kernel logs.  Is the machine accessible
over the network when that happens?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#556714: FTBFS with binutils-gold

2010-06-12 Thread Vincent Bernat
OoO Pendant  le temps  de midi  du mardi 17  novembre 2009,  vers 12:16,
Peter Fritzsche peter.fritzs...@gmx.de disait :

 Tried to build your package and it fails to build with GNU binutils-gold. The
 important difference is that --no-add-needed is the default behavior of of GNU
 binutils-gold. Please provide all needed libraries to the linker when building
 your executables.

Hi Peter!

I  am  about to  upload  Xnee 3.06.  Unfortunately,  this  has not  been
fixed. Since I don't want to change automake files, I will ping upstream
and help it to solve the problem.
-- 
NO ONE WANTS TO HEAR FROM MY ARMPITS
NO ONE WANTS TO HEAR FROM MY ARMPITS
NO ONE WANTS TO HEAR FROM MY ARMPITS
-+- Bart Simpson on chalkboard in episode 3F01


pgp5K1NCTLa8C.pgp
Description: PGP signature


Bug#585618: mesa: FTBFS on kfreebsd and hurd (gallium/auxiliary: os/os_time.c:51:4: error: #error Unsupported OS

2010-06-12 Thread Julien Cristau
Package: mesa
Version: 7.8.1-2
Severity: serious

mesa in experimental ftbfs on kfreebsd and hurd:
https://buildd.debian.org/pkg.cgi?pkg=mesamaint=dist=experimental

gcc -c -I. -I../../../src/gallium/include
-I../../../src/gallium/auxiliary -I../../../src/gallium/drivers  -Wall
-g -O2 -Wall -Wmissing-prototypes -std=c99 -ffast-math
-fvisibility=hidden -fno-strict-aliasing  -fPIC   -D_GNU_SOURCE
-DPTHREADS -DHAVE_POSIX_MEMALIGN -DGLX_USE_TLS -DPTHREADS
-DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DGLX_INDIRECT_RENDERING
-DHAVE_ALIAS -D__STDC_CONSTANT_MACROS os/os_time.c -o os/os_time.o
os/os_time.c:51:4: error: #error Unsupported OS
os/os_time.c: In function 'os_time_get':
os/os_time.c:93: warning: control reaches end of non-void function
make[4]: *** [os/os_time.o] Error 1

Would be nice if porters could take a look.  Otherwise we can disable
gallium there (I thought we already did, but apparently not).

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#585619: cfengine3: cf-agent segfault when using variable policy on list

2010-06-12 Thread Daniel Dehennin
Package: cfengine3
Version: 3.0.5+dfsg-1
Severity: normal

The variables policy[1] does not work with list but works with string.

I attach the promise.cf and a gdb trace[2], removing the policy on
list variable make it works:

--8---cut here---start-8---
/usr/sbin/cf-agent -K -DClass1
R: Redefined in Class1 context
R: 0
R: 1
R: 2
R: @(l2)
--8---cut here---end---8---

Regards.

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

Kernel: Linux 2.6.33.2+hati.1 (SMP w/2 CPU cores; PREEMPT)
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 cfengine3 depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libdb4.8  4.8.30-1   Berkeley v4.8 Database Libraries [
ii  libpcre3  8.02-1 Perl 5 Compatible Regular Expressi
ii  libssl0.9.8   0.9.8o-1   SSL shared libraries

cfengine3 recommends no packages.

cfengine3 suggests no packages.

-- no debconf information


Footnotes: 
[1]  http://www.cfengine.org/manuals/cf3-reference.html#policy-in-vars

[2]  like described at http://www.cfengine.org/pages/troubleshoot

-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x6A2540D1

body common control
{
bundlesequence = { test };
version = 0.0.1;
}

bundle agent test
{
vars:
any::

changing string = Value in any context,
   policy = overridable;

list slist = {0, @(l1), @(l2)};

Class1::
l1 slist = {1, 2};
changing string = Redefined in Class1 context;

Class2::

l2 slist = {3, 4};

reports:

Yr2010::
$(changing);
$(list);
}
gdb /usr/sbin/cf-agent
GNU gdb (GDB) 7.1-debian
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/sbin/cf-agent...Reading symbols from 
/usr/lib/debug/usr/sbin/cf-agent...done.
done.
(gdb) run -v -K -DClass1
Starting program: /usr/sbin/cf-agent -v -K -DClass1
[Thread debugging using libthread_db enabled]
cf3 Cfengine - autonomous configuration engine - commence self-diagnostic 
prelude
cf3 
cf3 Work directory is /home/dad/.cfagent
cf3 cf3: INFO: /home/dad/.cfagent/bin is a symbolic link, not a true directory!
cf3 Making sure that locks are private...
cf3 Checking integrity of the state database
cf3 Checking integrity of the module directory
cf3 Checking integrity of the PKI directory
cf3 Looking for a source of entropy in /home/dad/.cfagent/randseed
cf3 Loaded /home/dad/.cfagent/ppkeys/localhost.priv
cf3 Loaded /home/dad/.cfagent/ppkeys/localhost.pub
cf3 Setting cfengine default port to 5308 = 5308
cf3 Reference time set to Sat Jun 12 14:01:10 2010
cf3 Cfengine - 3.0.5 (C) Cfengine AS 2008-
cf3 
cf3 Host name is: hati
cf3 Operating System Type is linux
cf3 Operating System Release is 2.6.33.2+hati.1
cf3 Architecture = x86_64
cf3 Using internal soft-class linux for host hati
cf3 The time is now Sat Jun 12 14:01:10 2010
cf3 
cf3 # Extended system discovery is only available in version Nova and above
cf3 Additional hard class defined as: 64_bit
cf3 Additional hard class defined as: linux_2_6_33_2_hati_1
cf3 Additional hard class defined as: linux_x86_64
cf3 Additional hard class defined as: linux_x86_64_2_6_33_2_hati_1
cf3 GNU autoconf class from compile time: compiled_on_linux_gnu
cf3 Address given by nameserver: 192.168.1.2
cf3 Interface 1: lo
cf3 Interface 2: eth0
cf3 Adding alias hati..
cf3 Trying to locate my IPv6 address
cf3 Found IPv6 address inet6:
cf3 Found IPv6 address fe80::21b:fcff:fed8:2c02
cf3 Found IPv6 address inet6:
cf3 Looking for environment from cf-monitor...
cf3 Unable to detect environment from cfMonitord
cf3 This appears to be a debian system.
cf3 Looking for Debian version...
cf3 No Debian version number found.
cf3 ***
cf3  Loading persistent classes
cf3 ***
cf3 ***
cf3  Loaded persistent memory
cf3 ***
cf3   Verifying the syntax of the inputs...
cf3Parsing file 

Bug#580629: gdm3 - allows unauthenticated users to change power configuration

2010-06-12 Thread Josselin Mouette
Le samedi 12 juin 2010 à 13:20 +0200, Bastian Blank a écrit :
 On Sat, Jun 12, 2010 at 10:44:51AM +0200, Josselin Mouette wrote:
  The power manager daemon is launched, but that doesn’t give you access
  to the properties.
  Could you explain exactly how you would exploit that?
 
 Start a new greeter (available via several locations), modify the power
 management settings (suspend on lid close for example), close the lid.

Yes, but *how* do you modify those settings from the greeter?

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


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


Bug#585620: xterm: Please consider defaulting to freetype font rendering

2010-06-12 Thread Roger Leigh
Package: xterm
Version: 259-1
Severity: wishlist

Hi,

Utilising FreeType is already done for most of the other common
terminal emulators in Debian, and looks vastly better, as well
as not using the archaic XLFD/X11 Core Fonts.

The following patch to /etc/X11/app-defaults/XTerm enables
font rendering with FreeType.  This is already done for most
of the other common terminal emulators in Debian, and looks
vastly better.

I'm not sure if faceNameDoublesize should also be specified,
since I just see boxes with or without (while XTerm is linked
with fontconfig, gnome-terminal/konsole display Japanese just
fine).  Is the FreeType/Xft support broken here?  This working
fine with the default X fonts (9x15), but not when using
-fa/.faceName.  Maybe I shouldn't be also using Monospace for
-fd/faceNameDoublesize, since this doesn't have the necessary
glyphs?

It would also be nice to display the menus in similar manner, but
I didn't find a suitable resource name for that--does one exist?
 

132a133,135
 *VT100.faceName: Monospace
 *VT100.faceSize: 14


Regards,
Roger

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

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

Versions of packages xterm depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-2 shared libraries for terminal hand
ii  libutempter0  1.1.5-3A privileged helper for utmp/wtmp 
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxaw7   2:1.0.7-1  X11 Athena Widget library
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxmu6   2:1.0.5-1  X11 miscellaneous utility library
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  xbitmaps  1.1.0-1Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.5+4  X11 utilities

Versions of packages xterm suggests:
pn  xfonts-cyrillic   none (no description available)

-- Configuration Files:
/etc/X11/app-defaults/XTerm changed [not included]

-- 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#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11

2010-06-12 Thread Aurelien Jarno
On Sat, Jun 12, 2010 at 01:06:44PM +0200, Matthias Klose wrote:
 On 11.06.2010 15:22, Aurelien Jarno wrote:
 reassign 584610 gcc-4.4
 tag 584610 + pending
 thanks
 
 On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote:
 Matthias Klose a écrit :
 On 06.06.2010 00:51, Aurelien Jarno wrote:
 On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote:
 Package: eGLIBC
 Version: 2.11.1-2
 Severity: serious
 
 gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11:
 
 https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666
 
 This FTBFS is caused by the following change:
 
 |2009-11-20  Jakub Jelinekja...@redhat.com
 |
 |PR libc/10103
 |
 |* math/math.h: Provide *l long double prototypes redirecting
 |to double functions even when __NO_LONG_DOUBLE_MATH and not
 |__LDBL_COMPAT.
 |* math/complex.h: Likewise.
 
 These functions were present before in the library, but not exported
 in the headers. This has been changed as it is required by ISO C99.
 
 GCC tries to find these functions in the GLIBC by compiling a program,
 so it was failing before, and is successful now. When they are already
 present in the GLIBC it does not re-export them.
 
 Strangely this should also affect ARM, but it seems to build correctly.
 I haven't investigated why.
 
 While these functions are strictly not needed in libstdc++6 anymore, we
 have two options:
 - revert the GLIBC change, which means we break the C99 compatibility
 (as before)
 - patch GCC to export these functions anyway.
 
 What's your opinion?
 
 For ARM I did choose the second option, but didn't get any feedback about 
 it.
 So maybe it's time to ask the mips and arm porters?
 
 The patch applied for armel is:
 http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log
 
 
 I think we should go for the same patch on mips, it's probably better to
 be ISO C99 compliant on the glibc side.
 
 
 As we discussed, this bug has to be fixed on the gcc side. I have just
 checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5.
 
 I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I
 don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed
 in the SVN and the package is in experimental.
 
 proposed instead
 http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html
 
 Joseph Meyers suggested that the symbols should only be exported for
 the old mips O32 ABI, not for the mips64 and n32 ABIs.
 

Indeed the n32 and 64 ABIs do not export these symbols, so there is no
need to add compat for them. It's something I should have verified.

Do you want me to update the patch in the SVN or do you plan to
introduce the patch you submitted to upstream instead?

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#584829: xdm: Please remove vt7 option on hurd-i386

2010-06-12 Thread Julien Cristau
On Mon, Jun  7, 2010 at 00:43:20 +0200, Samuel Thibault wrote:

 hurd-i386 doesn't (yet) have vt switching, could you please remove the
 use of the vt7 option on hurd-i386, which makes xdm fail to start?  See
 attached patch.
 
Applied, thanks.

http://git.debian.org/?p=pkg-xorg/app/xdm.git;a=commitdiff;h=fad1ef84b49bf683a133de67feddd90f6282bde0

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#585619: Acknowledgement (cfengine3: cf-agent segfault when using variable policy on list)

2010-06-12 Thread Daniel Dehennin
ow...@bugs.debian.org (Debian Bug Tracking System) writes:


[...]

Here is the problematic promises.cf.

Regards.
-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x6A2540D1

body common control
{
bundlesequence = { test };
version = 0.0.1;
}

bundle agent test
{
vars:
any::

changing string = Value in any context,
   policy = overridable;

list slist = {0, @(l1), @(l2)},
   policy = ifdefined;

Class1::
l1 slist = {1, 2};
changing string = Redefined in Class1 context;

Class2::

l2 slist = {3, 4};

reports:

Yr2010::
$(changing);
$(list);
}


pgpaY4Ui35rr6.pgp
Description: PGP signature


Bug#585620: xterm: Please consider defaulting to freetype font rendering

2010-06-12 Thread Thomas Dickey

On Sat, 12 Jun 2010, Roger Leigh wrote:


Package: xterm
Version: 259-1
Severity: wishlist

Hi,

Utilising FreeType is already done for most of the other common
terminal emulators in Debian, and looks vastly better, as well
as not using the archaic XLFD/X11 Core Fonts.


That's up to the packager.  Some users may not like the extra overhead, of 
course (I don't have a count of the terminal emulators which do/do not 
support FreeType).


It's also possible to make this deferred to allow the user to enable it at 
runtime, by setting face and size resources, but setting the renderFont 
resource to false.  (They could turn the menu entry on/off...).



The following patch to /etc/X11/app-defaults/XTerm enables
font rendering with FreeType.  This is already done for most
of the other common terminal emulators in Debian, and looks
vastly better.

I'm not sure if faceNameDoublesize should also be specified,
since I just see boxes with or without (while XTerm is linked
with fontconfig, gnome-terminal/konsole display Japanese just
fine).  Is the FreeType/Xft support broken here?  This working
fine with the default X fonts (9x15), but not when using
-fa/.faceName.  Maybe I shouldn't be also using Monospace for
-fd/faceNameDoublesize, since this doesn't have the necessary
glyphs?


perhaps the latter - the Xft fonts tend to be poor on coverage.
To handle them properly, I'll have to implement font-sets.


It would also be nice to display the menus in similar manner, but
I didn't find a suitable resource name for that--does one exist?


for the Athena widgets - probably not.

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net



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



Bug#555978: debian-policy: Forbid duplicate fields in control files

2010-06-12 Thread Andrew McMillan
On Sat, 2010-06-12 at 18:18 +0900, Charles Plessy wrote:
 Le Fri, Jun 11, 2010 at 09:58:28AM -0700, Russ Allbery a écrit :
  
  diff --git a/policy.sgml b/policy.sgml
  index 87b9795..99ab0ff 100644
  --- a/policy.sgml
  +++ b/policy.sgml
  @@ -2398,6 +2398,11 @@ Package: libc6
  /p
   
  p
  + Each paragraph may contain at most one instance of a particular
  + field name.
  +   /p
  +
  +   p
Many fields' values may span several lines; in this case
each continuation line must start with a space or a tab.
Any trailing spaces or tabs at the end of individual
 
 Hi Russ,
 
 as a non-native speaker, I have difficulties with the use of 'may' in your
 patch: if fields may be unique, they also may be not unique, so what is the
 message in this sentence? It does not give me the impression that the goal
 is to discourage the use of the same field name twice in the same paragraph.
 
 How about “A paragraph should not contain data fields having the same name.”

Hi Charles,

In this sense 'may' should be read as 'must', however I think that if it
causes readability issues for non-native english speakers then the word
'must' should actually be used...

Each paragraph must contain at most one instance of a particular
 field name.

Is that clearer?

Cheers,
Andrew.
-- 

andrew (AT) morphoss (DOT) com+64(272)DEBIAN
 Building more free and open source software for New Zealanders




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


Bug#585621: ITP: opencc -- simplified-traditional chinese conversion library

2010-06-12 Thread LI Daobing
Package: wnpp
Severity: wishlist
Owner: LI Daobing lidaob...@debian.org

* Package name: opencc
  Version : 0.0.1
  Upstream Author : BYVoid byvo...@gmail.com
* URL : http://code.google.com/p/open-chinese-convert/
* License : Apache 2.0
  Programming Lang: C
  Description : simplified-traditional chinese conversion library
 opencc is a library for converting character between traditional chinese and
 simplified chinese.



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



Bug#585620: xterm: Please consider defaulting to freetype font rendering

2010-06-12 Thread Thomas Dickey

On Sat, 12 Jun 2010, Roger Leigh wrote:


Package: xterm
Version: 259-1
Severity: wishlist

Hi,

Utilising FreeType is already done for most of the other common
terminal emulators in Debian, and looks vastly better, as well
as not using the archaic XLFD/X11 Core Fonts.


actually, monospace/14 is less legible on my display than 10x20
(both, of course use the same archaic alphabet)

awai

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net



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



Bug#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11

2010-06-12 Thread Matthias Klose

On 12.06.2010 13:48, Aurelien Jarno wrote:

On Sat, Jun 12, 2010 at 01:06:44PM +0200, Matthias Klose wrote:

On 11.06.2010 15:22, Aurelien Jarno wrote:

reassign 584610 gcc-4.4
tag 584610 + pending
thanks

On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote:

Matthias Klose a écrit :

On 06.06.2010 00:51, Aurelien Jarno wrote:

On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote:

Package: eGLIBC
Version: 2.11.1-2
Severity: serious

gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11:

https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666


This FTBFS is caused by the following change:

|2009-11-20  Jakub Jelinekja...@redhat.com
|
|PR libc/10103
|
|* math/math.h: Provide *l long double prototypes redirecting
|to double functions even when __NO_LONG_DOUBLE_MATH and not
|__LDBL_COMPAT.
|* math/complex.h: Likewise.

These functions were present before in the library, but not exported
in the headers. This has been changed as it is required by ISO C99.

GCC tries to find these functions in the GLIBC by compiling a program,
so it was failing before, and is successful now. When they are already
present in the GLIBC it does not re-export them.

Strangely this should also affect ARM, but it seems to build correctly.
I haven't investigated why.

While these functions are strictly not needed in libstdc++6 anymore, we
have two options:
- revert the GLIBC change, which means we break the C99 compatibility
(as before)
- patch GCC to export these functions anyway.

What's your opinion?


For ARM I did choose the second option, but didn't get any feedback about it.
So maybe it's time to ask the mips and arm porters?

The patch applied for armel is:
http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log



I think we should go for the same patch on mips, it's probably better to
be ISO C99 compliant on the glibc side.



As we discussed, this bug has to be fixed on the gcc side. I have just
checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5.

I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I
don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed
in the SVN and the package is in experimental.


proposed instead
http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html

Joseph Meyers suggested that the symbols should only be exported for
the old mips O32 ABI, not for the mips64 and n32 ABIs.



Indeed the n32 and 64 ABIs do not export these symbols, so there is no
need to add compat for them. It's something I should have verified.

Do you want me to update the patch in the SVN or do you plan to
introduce the patch you submitted to upstream instead?


already done for 4.4 and currently testing for 4.5. backport to the 4.3 branch 
is needed (maybe for 4.1 as well).


  Matthias



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



Bug#580629: gdm3 - allows unauthenticated users to change power configuration

2010-06-12 Thread Bastian Blank
On Sat, Jun 12, 2010 at 02:14:03PM +0200, Josselin Mouette wrote:
 Le samedi 12 juin 2010 à 13:20 +0200, Bastian Blank a écrit :
  On Sat, Jun 12, 2010 at 10:44:51AM +0200, Josselin Mouette wrote:
   The power manager daemon is launched, but that doesn’t give you access
   to the properties.
   Could you explain exactly how you would exploit that?
  Start a new greeter (available via several locations), modify the power
  management settings (suspend on lid close for example), close the lid.
 Yes, but *how* do you modify those settings from the greeter?

There is a power settings applet in the lower right of the display, near
the shutdown button.

Bastian

-- 
Oblivion together does not frighten me, beloved.
-- Thalassa (in Anne Mulhall's body), Return to Tomorrow,
   stardate 4770.3.



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



Bug#585622: katepart automatically delete highlighted text

2010-06-12 Thread Michael Tsang
Package: kate
Version: 4:4.4.3-1
Severity: grave
Justification: causes non-serious data loss

1 open a text/plain document in Konqueror
2 highlight some text in the embedded katepart
3 click on another tab
4 click on the tab with embedded katepart again

expected result: the text is still highlighted
actual result: the text is deleted without prior notice, resulting in
data loss


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

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

Versions of packages kate depends on:
ii  kdebase-runtime   4:4.4.3-1  runtime components from the offici
ii  libc6 2.10.2-9   Embedded GNU C Library: Shared lib
ii  libkde3support4   4:4.4.3-2  the KDE 3 Support Library for the 
ii  libkdecore5   4:4.4.3-2  the KDE Platform Core Library
ii  libkdeui5 4:4.4.3-2  the KDE Platform User Interface Li
ii  libkfile4 4:4.4.3-2  the File Selection Dialog Library 
ii  libkio5   4:4.4.3-2  the Network-enabled File Managemen
ii  libknewstuff2-4   4:4.4.3-2  the Get Hot New Stuff v2 Library
ii  libknewstuff3-4   4:4.4.3-2  the Get Hot New Stuff v3 Library
ii  libkparts44:4.4.3-2  the Framework for the KDE Platform
ii  libktexteditor4   4:4.4.3-2  the KTextEditor interfaces for the
ii  libplasma34:4.4.3-2  the Plasma Library for the KDE Pla
ii  libqt4-dbus   4:4.6.2-4  Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.6.2-4  Qt 3 compatibility library for Qt 
ii  libqt4-xml4:4.6.2-4  Qt 4 XML module
ii  libqtcore44:4.6.2-4  Qt 4 core module
ii  libqtgui4 4:4.6.2-4  Qt 4 GUI module
ii  libstdc++64.4.4-1The GNU Standard C++ Library v3

kate recommends no packages.

Versions of packages kate suggests:
ii  aspell0.60.6-4   GNU Aspell spell-checker
ii  khelpcenter4  4:4.4.3-1  Help Center for KDE 4
ii  konsole   4:4.4.3-1  X terminal emulator for KDE 4

-- 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#583858: (no subject)

2010-06-12 Thread André Wöbbeking
On Saturday 12 June 2010, Aurelien Jarno wrote:

 You mentionned rebuilding Qt 4. Does it happen with binaries you have
 rebuilt yourself, or at least that link to libraries you have rebuilt
 yourself?

Yes

 If yes, make sure you don't have binutils-gold installed, as it is
 currently broken with eglibc 2.11 (see bug#585051).

Thanks for the pointer! Removing gold solves my problem :-)

 Note that the bug is fixed in the version currently in experimental.

Good to know.



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



Bug#585623: pcmanfm 0.9.7 problems with gksudo

2010-06-12 Thread Till M
Package: pcmanfm
Version: 0.9.7-1
Severity: normal

When selecting open as root in the tools menu pcmanfm loads as root with an
auth error and a blank screen, after several seconds, perhaps 40, the error
disappears and the files are shown.  Click the button in the error dialog has
no effect.

It works fine if I set the prefs to gksu %s, rather than gksudo %s but then I
need to issue the root password.  I find this unacceptable!



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

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

Versions of packages pcmanfm depends on:
ii  libc6 2.10.2-9   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-4   The Cairo 2D vector graphics libra
ii  libfm-gtk00.1.12-1   file management support - GTK+ GUI
ii  libfm00.1.12-1   file management support - core lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages pcmanfm recommends:
ii  gnome-icon-theme  2.30.3-1   GNOME Desktop icon theme
ii  gvfs-backends 1.6.2-1userspace virtual filesystem - bac
ii  gvfs-fuse 1.6.2-1userspace virtual filesystem - fus

pcmanfm 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#585624: icedove 3.0.4 doesn't follow network.protocol-handler.app.http* any more.

2010-06-12 Thread Fabrice Lorrain
Package: icedove
Version: 3.0.4-3
Severity: normal

Hello,

Since my migration to version 3, icedove opens http url in galeon instead of
iceweasel.

Looking at the pb, it seems that icedove doesn't follow
the network.protocol-handler.app.http* anymore and is only using x-www-browser.

Changing the value either in /etc/icedove/pref/icedove.js or in
~/.icedove/*/pref.js doesn't change anything :

$ grep protocol-handler /etc/icedove/pref/icedove.js
pref(network.protocol-handler.app.http, /usr/bin/iceweasel);
pref(network.protocol-handler.app.https, /usr/bin/iceweasel);

$ grep protocol-handler prefs.js 
user_pref(network.protocol-handler.app.http, iceweasel);
user_pref(network.protocol-handler.app.https, iceweasel);

$ ls -l /etc/alternatives/x-www-browser
lrwxrwxrwx 1 root root 15  1 mai   14:02 /etc/alternatives/x-www-browser - 
/usr/bin/galeon

@+,
Fab


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

Kernel: Linux 2.6.32-trunk-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 icedove depends on:
ii  debianutils 3.2.3Miscellaneous utilities specific t
ii  fontconfig  2.8.0-2.1generic font configuration library
ii  libasound2  1.0.23-1 shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.1-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-4GCC support library
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.8.4-1  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.6-2 Network Security Service libraries
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  libsqlite3-03.6.23.1-4   SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.4.4-4  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxrender1 1:0.9.5-2X Rendering Extension client libra
ii  libxt6  1:1.0.7-1X11 toolkit intrinsics library
ii  psmisc  22.11-1  utilities that use the proc file s
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages icedove recommends:
ii  myspell-en-us [myspell-dictio 1:3.2.0-5  English_american dictionary for my
ii  myspell-fr-gut [myspell-dicti 1:1.0-27   The French dictionary for myspell 

Versions of packages icedove suggests:
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libgconf2-42.28.1-3  GNOME configuration database syste
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomevfs2-0 1:2.24.3-1GNOME Virtual File System (runtime
ii  libgssapi-krb5-2   1.8.1+dfsg-5  MIT Kerberos runtime libraries - k
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  ttf-lyx1.6.6-2   TrueType versions of some TeX font

-- Configuration Files:
/etc/icedove/messenger/mailViews.dat [Errno 2] Aucun fichier ou dossier de ce 
type: u'/etc/icedove/messenger/mailViews.dat'
/etc/icedove/pref/icedove.js changed:
// This is the Debian specific preferences file for Mozilla Firefox
// You can make any change in here, it is the purpose of this file.
// You can, with this file and all files present in the
// /etc/thunderbird/pref directory, override any preference that is
// present in /usr/lib/thunderbird/defaults/pref directory.
// While your changes will be kept on upgrade if you modify files in
// /etc/thunderbird/pref, please note that they won't be kept if you
// do them in /usr/lib/thunderbird/defaults/pref.
pref(extensions.update.enabled, true);
// Use LANG environment variable to choose locale
pref(intl.locale.matchOS, true);
// Disable default mail checking (gnome).
pref(mail.shell.checkDefaultMail, false);
// if you are not using gnome
pref(network.protocol-handler.app.http, 

Bug#585609: linux-base: postinstall script fails on loop-aes partitions

2010-06-12 Thread Winfried Tilanus
On 06/12/2010 01:28 PM, Ben Hutchings wrote:

Hi,

 I don't think this is fixable.  Since these partitions are encrypted we
 cannot read the filesystem label or UUID before they are mounted.

If this isn't fixable, the script should not fail (leaving the system in
an inconsistent state) but warn it can't use UUID's or labels on some
file systems, including the warning that the system might not boot
correctly.

 Note
 also that loop-aes is not included in squeeze.  I strongly recommend you
 switch to dm-crypt.

I am happy to switch to dm-crypt if somebody can help me to setup
dm-crypt with the following characteristics:
- master key gpg encrypted, decryptable with multiple private gpg keys
- gpg private keys stored on gpg card, no storage of gpg private keys on
disk
- mounting of volumes early during boot
Until I know how to do that with dm-crypt, I stay with loop-aes.

best wishes,

Winfried









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



Bug#585051: (no subject)

2010-06-12 Thread André Wöbbeking
I can confirm this also for C++ programs. It's an interaction of eglibc 2.11 
and 
gold. eglibc 2.10 and gold work together and  eglibc 2.11 without gold also 
works.



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



Bug#585620: xterm: Please consider defaulting to freetype font rendering

2010-06-12 Thread Julien Cristau
On Sat, Jun 12, 2010 at 08:44:07 -0400, Thomas Dickey wrote:

 On Sat, 12 Jun 2010, Roger Leigh wrote:
 
 Package: xterm
 Version: 259-1
 Severity: wishlist
 
 Hi,
 
 Utilising FreeType is already done for most of the other common
 terminal emulators in Debian, and looks vastly better, as well
 as not using the archaic XLFD/X11 Core Fonts.
 
 actually, monospace/14 is less legible on my display than 10x20
 (both, of course use the same archaic alphabet)
 
I've never found an Xft font I found as legible as the default core font
in xterm, so I'm a bit reluctant to make that change...

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#585626: pcmanfm does not show mounted drives listed in fstab

2010-06-12 Thread Till M
Package: pcmanfm
Version: 0.9.7-1
Severity: normal

pcmanfm 0.9.7 shows my windows drive in the left column but not my linux drives
even though they are mounted and listed in fstab.  Also there is not sign of my
linux drive in (shudders when writing these words) My Computer bleh. since
when did we start using windows naming conventions? sickening really :(

Also I can't mount my windows drive, I get a message saying Authorization is
Required.  I have no idea where to even begin fixing this one on this version.
I did have poliyKit rules written for the last version, but some how these were
blasted away by something :(

Anyway, it would have been nice to still offer the older version 0.5.2, at
least it worked as expected, this version is so far from being finished I
really have no use for it.  I think it was a bit premature to force it on as an
upgrade, it's more a downgrade.



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

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

Versions of packages pcmanfm depends on:
ii  libc6 2.10.2-9   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-4   The Cairo 2D vector graphics libra
ii  libfm-gtk00.1.12-1   file management support - GTK+ GUI
ii  libfm00.1.12-1   file management support - core lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages pcmanfm recommends:
ii  gnome-icon-theme  2.30.3-1   GNOME Desktop icon theme
ii  gvfs-backends 1.6.2-1userspace virtual filesystem - bac
ii  gvfs-fuse 1.6.2-1userspace virtual filesystem - fus

pcmanfm 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#580629: gdm3 - allows unauthenticated users to change power configuration

2010-06-12 Thread Josselin Mouette
tag 580629 + pending
thanks

Le samedi 12 juin 2010 à 14:53 +0200, Bastian Blank a écrit :
 There is a power settings applet in the lower right of the display, near
 the shutdown button.

Ah indeed, I hadn’t tested gdm3 on a laptop.

This is fixed in the SVN.

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


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


Bug#568399: Internal compiler failure at -O3 on ia64

2010-06-12 Thread Steve M. Robbins
Package: g++-4.4
Version: 4.4.4-4
Severity: normal

On May 7, insighttoolkit was successfully built on ia64 using
g++-4.4_4.4.3-7 [1]

Today, it fails using g++-4.4_4.4.4-4 [2]


cd 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB
  /usr/bin/c++   -D_ITKBasicFiltersBPython_EXPORTS -DSWIG_GLOBAL 
-Wno-deprecated   -ftemplate-depth-50 -Wall -Wno-deprecated -w -O3 -DNDEBUG 
-fPIC 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Algorithms
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/BasicFilters
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/IO
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/FEM
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/NeuralNetworks
 -I/build/buildd-ins
 ighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/SpatialObject 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/MetaIO
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/NrrdIO
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/NrrdIO
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/DICOMParser
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/DICOMParser
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/expat
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/expat
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/nifti/niftilib
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/nifti/znzlib
 -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insi
 ghttoolkit-3.18.0/Utilities/itkExtHdrs 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/Statistics
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/v3p/netlib
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/vcl
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/core
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/v3p/netlib
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/vcl
 
-I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/core
 -I/usr/include/gdcm-2.0 -I/usr/include/python2.5 -I/usr/include/tcl8.5 
-I/usr/lib/jvm/java-
 6-openjdk/include   -o 
CMakeFiles/_ITKBasicFiltersBPython.dir/wrap_itkNormalizeImageFilterPython.o -c 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilterPython.cxx
In file included from 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.h:304,
 from 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageToImageFilter.h:24,
 from 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/BasicFilters/itkNormalizeImageFilter.h:20,
 from 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilter.cxx:18,
 from 
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilterPython.cxx:997:
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.txx:
 In constructor 'itk::ImageSourceTOutputImage::ImageSource() [with 
TOutputImage = itk::Imageshort unsigned int, 2u]':
/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.txx:47:
 internal compiler error: in sel_create_recovery_block, at sel-sched-ir.c:5229
Please submit a full bug report,
with preprocessed source if appropriate.
See file:///usr/share/doc/gcc-4.4/README.Bugs for instructions.


[1] 
https://buildd.debian.org/fetch.cgi?pkg=insighttoolkit;ver=3.18.0-2;arch=ia64;stamp=1273329008
[2] 
https://buildd.debian.org/fetch.cgi?pkg=insighttoolkitarch=ia64ver=3.18.0-3stamp=1276345215file=log
 



-- 
To UNSUBSCRIBE, email to 

Bug#585627: hplip: Error with hpmudext module : hp-* dont works

2010-06-12 Thread Eloi COUTANT
Package: hplip
Version: 3.10.5-1
Severity: grave

When i try to launch hp-* commands (hp-clean, hp-check, hp-align,
hp-toolbox), i have this error :

$# hp-clean
Traceback (most recent call last):
  File /usr/bin/hp-clean, line 38, in module
from base import device, utils, maint, tui, module
  File /usr/share/hplip/base/device.py, line 37, in module
import status
  File /usr/share/hplip/base/status.py, line 40, in module
import hpmudext
ImportError: No module named hpmudext

Kind regards


-- Package-specific info:
#part type=text/plain disposition=attachment description=Bug script output
warning: Version: (Not available - cups-config. Unable to determine installed 
version of CUPS.)
warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP 
functionality may not function properly.
warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP 
functionality may not function properly.

HP Linux Imaging and Printing System (ver. 3.10.5)
Dependency/Version Check Utility ver. 14.3

Copyright (c) 2001-9 Hewlett-Packard Development Company, LP
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to distribute it
under certain conditions. See COPYING file for more details.

Note: hp-check can be run in three modes:
1. Compile-time check mode (-c or --compile): Use this mode before compiling 
the HPLIP supplied tarball (.tar.gz or .run) to determine if the proper 
dependencies are installed 
to successfully compile HPLIP.  


2. Run-time check mode (-r or --run): Use this mode to determine if a distro 
supplied package (.deb, .rpm, etc) or an already built HPLIP supplied tarball 
has the proper   
dependencies installed to successfully run. 


3. Both compile- and run-time check mode (-b or --both) (Default): This mode 
will check both of the above cases (both compile- and run-time dependencies).   
   

Saving output in log file: hp-check.log

Initializing. Please wait...

---
| SYSTEM INFO |
---

Basic system information:
Linux PikaBoo 2.6.32-trunk-amd64 #1 SMP Sun Jan 10 22:40:40 UTC 2010 x86_64 
GNU/Linux

Distribution:
debian experimental

Checking Python version...
OK, version 2.6.5 installed

Checking PyQt 4.x version...
OK, version 4.7.3 installed.

Checking for CUPS...
Status: le programmateur n’est pas en cours d’exécution
error_log is set to level: warn

Checking for dbus/python-dbus...
dbus daemon is running.
python-dbus version: 0.83.1



| RUNTIME DEPENDENCIES |



Checking for dependency: CUPS - Common Unix Printing System...
OK, found.

Checking for dependency: CUPS DDK - CUPS driver development kit...

Checking for dependency: GhostScript - PostScript and PDF language interpreter 
and previewer...
OK, found.

Checking for dependency: PIL - Python Imaging Library (required for commandline 
scanning with hp-scan)...
OK, found.

Checking for dependency: PolicyKit - Administrative policy framework...
OK, found.

Checking for dependency: PyQt 4 DBus - DBus Support for PyQt4...
OK, found.

Checking for dependency: Python DBus - Python bindings for DBus...
OK, found.

Checking for dependency: Python libnotify - Python bindings for the libnotify 
Desktop notifications...

Checking for dependency: Python XML libraries...
OK, found.

Checking for dependency: Python 2.3 or greater - Required for fax 
functionality...
OK, found.

Checking for dependency: Reportlab - PDF library for Python...
OK, found.

Checking for dependency: SANE - Scanning library...
OK, found.

Checking for dependency: scanimage - Shell scanning program...
OK, found.

Checking for dependency: xsane - Graphical scanner frontend for SANE...
OK, found.


--
| HPLIP INSTALLATION |
--


Currently installed HPLIP version...
HPLIP 3.10.5 currently installed in '/usr/share/hplip'.

Current contents of '/etc/hp/hplip.conf' file:
# hplip.conf.  Generated from hplip.conf.in by configure.

[hplip]
version=3.10.5

[dirs]
home=/usr/share/hplip
run=/var/run
ppd=/usr/share/ppd/hplip/HP
ppdbase=/usr/share/ppd/hplip
doc=/usr/share/doc/hplip-doc/HTML
icon=no
cupsbackend=/usr/lib/cups/backend
cupsfilter=/usr/lib/cups/filter
drv=/usr/share/cups/drv

# Following values are determined at configure time and cannot be changed.
[configure]
network-build=yes
pp-build=yes
gui-build=yes
scanner-build=yes
fax-build=yes
dbus-build=yes
cups11-build=no
doc-build=yes
shadow-build=no
hpijs-install=yes
foomatic-drv-install=yes
foomatic-ppd-install=yes
foomatic-rip-hplip-install=no
hpcups-install=yes
cups-drv-install=yes
cups-ppd-install=no
internal-tag=3.10.4.16
restricted-build=no

Bug#585619: cfengine3: cf-agent segfault when using variable policy on list

2010-06-12 Thread Antonio Radici
Hi,
can you please include the content of your ~/.cfagent ? (except the
binaries). I'm not able to reproduce the problem with the single promise
file you attached.

Cheers
Antonio



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



Bug#585051: (no subject)

2010-06-12 Thread Matthias Klose

On 12.06.2010 15:19, André Wöbbeking wrote:

I can confirm this also for C++ programs. It's an interaction of eglibc 2.11 and
gold. eglibc 2.10 and gold work together and  eglibc 2.11 without gold also
works.


no, it's not 2.11, but 2.11 glibc built --with-multi-arch.  Would the glibc 
maintainers consider to disable this configure option?  2.11 doesn't contain any 
optimized functions, only 2.12 starts providing these for some architectures.


  Matthias



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



Bug#585628: acl2: Broken maintainer address

2010-06-12 Thread Joerg Jaspert
Package: acl2
Severity: serious

The mail to the maintainer bounces:

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  c...@maguirefamily.org
retry timeout exceeded

-- This is a copy of the message --

To: c...@debian.org
From: Archive Administrator d...@ftp-master.debian.org
Subject: Processing of acl2_3.6.1-2_i386.changes
Date: Fri, 11 Jun 2010 13:32:55 +

[...]

-- 
bye, Joerg
graphviz (old license)
[...]
Changes
  * Burn it! Burn it all!! 


pgpckBNrvkC98.pgp
Description: PGP signature


Bug#585609: linux-base: postinstall script fails on loop-aes partitions

2010-06-12 Thread Ben Hutchings
On Sat, 2010-06-12 at 15:23 +0200, Winfried Tilanus wrote:
 On 06/12/2010 01:28 PM, Ben Hutchings wrote:
 
 Hi,
 
  I don't think this is fixable.  Since these partitions are encrypted we
  cannot read the filesystem label or UUID before they are mounted.
 
 If this isn't fixable, the script should not fail (leaving the system in
 an inconsistent state) but warn it can't use UUID's or labels on some
 file systems, including the warning that the system might not boot
 correctly.

It does not leave the system in an inconsistent state.  You need to
reconfigure linux-base and answer the questions differently.

It is really a problem of the loop-aes package that it changes the
semantics of the fstab type and options.

 I am happy to switch to dm-crypt if somebody can help me to setup
 dm-crypt with the following characteristics:
 - master key gpg encrypted, decryptable with multiple private gpg keys
 - gpg private keys stored on gpg card, no storage of gpg private keys on
 disk
 - mounting of volumes early during boot
 Until I know how to do that with dm-crypt, I stay with loop-aes.

I expect that cryptsetup supports this.

Ben.

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


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


Bug#584846: Detects only 64MB and fails to boot on Intel Green City board if e820 hooked by GRUB2

2010-06-12 Thread Ben Hutchings
Josh Triplett reported this problem with memory sizing:

On Fri, 2010-06-11 at 23:03 -0700, Josh Triplett wrote:
 Package: linux-2.6
 Severity: normal
 
 I managed to reproduce the problem using stock upstream kernels and
 defconfig, and with defconfig (and no initramfs) the kernel managed to
 use little enough memory that it booted successfully with 64MB of RAM.
 
 Investigating, I found that Linux decided not to use e820, and instead
 decided to use the older BIOS function 0x88, which cannot report more
 than 64MB of RAM.
 
 With some investigation and bisection, I managed to track the problem
 down to the following commit:
 
 commit c549e71d073a6e9a4847497344db28a784061455
 Author: H. Peter Anvin h...@zytor.com
 Date:   Sat Mar 28 13:53:26 2009 -0700
 
 x86, setup: ACPI 3, BIOS workaround for E820-probing code
 
 Impact: ACPI 3 spec compliance, BIOS bug workaround
 
 The ACPI 3 spec added another field to the E820 buffer -- which is
 backwards incompatible, since it contains a validity bit.
 Furthermore, there has been at least one report of a BIOS which
 assumes that the buffer it is pointed at is the same buffer as for the
 previous E820 call.  Therefore, read the data into a temporary buffer
 and copy the standard part of it if and only if the valid bit is set.
 
 Signed-off-by: H. Peter Anvin h...@zytor.com
 
 
 A kernel built from c549e71d073a6e9a4847497344db28a784061455 finds 64MB
 of RAM; a kernel built from c549e71d073a6e9a4847497344db28a784061455^
 successfully finds all 4GB of RAM.
 
 Also note that newer upstream kernels, including v2.6.35-rc3, fail as
 well.  Since later kernels revert part of the above commit, the issue
 must lie with the parts of the commit not reverted.
 
 And, again, I can reproduce this using the stock upstream GRUB2 1.98
 release built from source, by booting it from a USB key, and then
 booting the disk MBR via:
 
 set root=(hd1)
 drivemap (hd1) (hd0)
 chainloader +1
 boot
 
 
 Nothing special about drivemap here; anything that uses grub's mmap
 module to reserve memory via e820 (GRUB_MACHINE_MEMORY_RESERVED) will
 cause grub to hook e820 and trigger this bug.  However, in stock grub,
 only drivemap does this.
 
 - Josh Triplett
 
 
 

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


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


Bug#585629: gtg: RTM plugin shows warning unless python-simplejson is installed

2010-06-12 Thread Tim Retout
Package: gtg
Version: 0.2.4-1
Severity: normal

Running gtg from the terminal, with the RTM plugin enabled, I get this
warning:

t...@arneb:~$ gtg 
[1] 7213
t...@arneb:~$ /usr/share/gtg/GTG/plugins/rtm_sync/rtmProxy.py:24:
ImportWarning: simplejson module is not available, falling back to the
internal JSON parser. Please consider installing the simplejson module from
http://pypi.python.org/pypi/simplejson.
  from GTG.plugins.rtm_sync.pyrtm.rtm import createRTM

It seems to me that 'python-simplejson' should be added to
'Recommends' to avoid this.

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

Kernel: Linux 2.6.33-2-amd64 (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 gtg depends on:
ii  python2.5.4-9An interactive high-level object-o
ii  python-configobj  4.7.2+ds-1 simple but powerful config file re
ii  python-dbus   0.83.1-1   simple interprocess messaging syst
ii  python-glade2 2.17.0-2   GTK+ bindings: Glade support
ii  python-gnome2 2.28.1-1   Python bindings for the GNOME desk
ii  python-gtk2   2.17.0-2   Python bindings for the GTK+ widge
ii  python-support1.0.8  automated rebuilding support for P
ii  python-xdg0.19-1 Python library to access freedeskt

gtg recommends no packages.

gtg 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#585584: aptitude latex-cjk-all issue

2010-06-12 Thread Frank Küster
aaron jaguar.sm...@gmail.com wrote:

 fmtutil-sys failed. Output has been stored in
 /tmp/fmtutil.EkAAFeGw

/usr/bin/fmtutil: line 924: /usr/share/texlive-bin/debianize-fmtutil: No such 
file or directory

It should be in texlive-binaries:

What is the output of

dpkg -l latex-cjk-common texlive-binaries texlive-common tex-common 
texlive-latex-base

It should be pulled in by the chain latex-cjk-all - latex-cjk-common -
texlive-latex-base - texlive-binaries.

Regards, Frank
-- 
Dr. Frank Küster
Debian Developer (TeXLive)
VCD Aschaffenburg-Miltenberg, ADFC Miltenberg
B90/Grüne KV Miltenberg



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



Bug#585630: [l10n:cs] Initial Czech translation of PO debconf template for package astk 1.8.0-2

2010-06-12 Thread Michal Simunek
Package: astk
Version: 1.8.0-2
Severity: wishlist
Tags: l10n, patch

In attachment there is initial Czech translation of PO debconf template
(cs.po) for package astk, please include it.

Best regards

-- 
Michal Šimůnek
# Czech PO debconf template translation of astk.
# Copyright (C) 2010 Michal Simunek
# This file is distributed under the same license as the astk package.
# Michal Simunek michal.simu...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: astk 1.8.0-2\n
Report-Msgid-Bugs-To: a...@packages.debian.org\n
POT-Creation-Date: 2010-06-09 07:51+0200\n
PO-Revision-Date: 2010-06-12 15:02+0200\n
Last-Translator: Michal Simunek michal.simu...@gmail.com\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Description
#: ../astk.templates:2001
msgid aster platform:
msgstr aster platforma:

#. Type: select
#. Description
#: ../astk.templates:2001
msgid  Select aster platform.
msgstr Vyberte aster platformu.

#. Type: select
#. Type
#: ../astk.templates:3001
msgid string
msgstr řetězec

#. Type: select
#. Description
#: ../astk.templates:3002
msgid ASTK server domain name:
msgstr Doména ASTK serveru:

#. Type: select
#. Description
#: ../astk.templates:3002
msgid 
Please enter the domain name of the server that this ASTK client should 
connect to.
msgstr 
Zadejte prosím doménu serveru, ke kterému se má tento ASTK klient 
připojit.

#. Type: string
#. Description
#: ../astk.templates:4001
msgid ASTK server host name:
msgstr Název hostitele ASTK serveru:

#. Type: string
#. Description
#: ../astk.templates:4001
msgid 
Please enter the host name (without domain name) of the server that this 
ASTK client should connect to.
msgstr 
Zadejte prosím název hostitele serveru (bez domény), ke kterému se má tento 
ASTK klient připojit.

#. Type: string
#. Description
#: ../astk.templates:5001
msgid ASTK client node name:
msgstr Název ASTK klientského uzlu:

#. Type: string
#. Description
#: ../astk.templates:5001
msgid 
Please enter the public name by which this client will be known on the 
network. It must be a unique name within the domain.
msgstr 
Zadejte prosím veřejný název, pod kterým bude tento klient na síti 
vystupovat. Název musí být v doméně jedinečný.

#. Type: select
#. Description
#: ../astk.templates:6001
msgid Standard editor:
msgstr Standardní editor

#. Type: select
#. Description
#: ../astk.templates:6001
msgid 
Please select the command line that ASTK should use to launch an editor.
msgstr 
Vyberte prosím příkaz, který má ASTK použít ke spuštění editoru.

#. Type: select
#. Description
#: ../astk.templates:7001
msgid Standard terminal emulator:
msgstr Standardní emulátor terminálu:

#. Type: select
#. Description
#: ../astk.templates:7001
msgid 
Please select the command line that ASTK should use to launch a terminal 
window.
msgstr 
Vyberte prosím příkaz, který má ASTK použít ke spuštění okna terminálu.

#. Type: select
#. Description
#: ../astk.templates:8001
msgid ASTK server MPI implementation:
msgstr MPI implementace na ASTK serveru:

#. Type: select
#. Description
#: ../astk.templates:8001
msgid 
Please select the MPI implementation used by the server that this ASTK 
client should connect to.
msgstr 
Vyberte prosím MPI implementaci používanou na serveru, ke kterému se 
má tento ASTK klient připojit.

#. Type: select
#. Description
#: ../astk.templates:9001
msgid ASTK server bit width:
msgstr Bitová šířka ASTK serveru:

#. Type: select
#. Description
#: ../astk.templates:9001
msgid 
Please select the bit width of the server that this ASTK client should 
connect to.
msgstr 
Vyberte prosím bitovou šířku serveru, ke kterému se má tento ASTK 
klient připojit.


  1   2   3   >