Bug#587488: ITP: qt-assistant-compat -- Qt Assistant compatibility binary (legacy)

2010-06-29 Thread Fathi Boudra
Package: wnpp
Severity: wishlist
Owner: Fathi Boudra f...@debian.org

* Package name: qt-assistant-compat
  Version : .4.6.3
  Upstream Author : Nokia Corporation and/or its subsidiary(-ies)
* URL : http://labs.trolltech.com/
* License : LGPL2 with exception or GPL3
  Programming Lang: C++
  Description : Qt Assistant compatibility binary (legacy)

 This package contains the Qt Assistant compatibility version, based on
 Assistant Document Profile (.adp) files, and the associated
 QtAssistantClient library, for compatibility with applications providing help 
in that
 format.

 New applications should use the new version of Qt Assistant introduced
 in Qt 4.4, based on the Qt Help Framework also introduced in Qt 4.4, instead.



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



Bug#579028: closed by Junichi Uekawa dan...@debian.org (Bug#579028: fixed in pbuilder 0.198)

2010-06-29 Thread Loïc Minier
On Thu, Jun 24, 2010, Debian Bug Tracking System wrote:
* add --keyring option as default parameter to DEBOOTSTRAPOPTS
  (closes: 579028)

 For the record, this makes it relatively unobvious to create foreign
 pbuilders for e.g. Ubuntu on Debian or Debian on Ubuntu etc. because
 one has to override debootstrapopts to unset the keyring arg or set a
 new one.

-- 
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#587420: choqok: it should be able to use OAuth

2010-06-29 Thread Noah Meyerhans
I just uploaded qoauth.  It's got to get through NEW, but once it does,
it shouldn't take long to get the new choqok version uploaded.

noah



signature.asc
Description: Digital signature


Bug#574863: [PATCH] Updated fix for Debian Bug#574863: boot failure with lvm2 and snapshot volumes

2010-06-29 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 06/03/2010 08:41 PM, sean finney wrote:
 and here is a slightly updated patch.  there is no functional change in the
 code, i have only reformatted the whitespace etc so that the code matches
 with the style of the surrounding code.

 i have also tested this now on my primary testing system and haven't
 noticed any problems.

   
I've cleaned up your patch using my more generic string parsing
functions. Could you test attached patch?
   sean

 On Thu, Jun 03, 2010 at 12:41:32AM +0200, sean finney wrote:
   
 okay, I think the attached patch should fix the problem.

 I haven't tested it thoroughly, though my system does boot.  It seems
 there may be a seperate issue with os-prober that results in some junk
 entries being added to grub.conf if the snapshot volumes happen to be
 root filesystems, but that probably needs to be taken up seperately and
 the critical aspect of the bug is fixed anyway.


  sean
 
   
 Author: Sean Finney sean...@debian.org
 Description: Fix for lvm2 parsing failures with snapshot logical volumes

 This patch prevents the lvm2 parsing code from prematurely aborting
 when encountering LV and segment metadata related to snapshot volumes.
 Instead, the parser will now skip over these as if it never saw them,
 which is probably the safest thing to do without a major injection of
 lvm2 support code.

 Bug-Debian: #574863
 --- disk/lvm.c   2010-04-27 15:25:12 +
 +++ disk/lvm.c   2010-06-02 22:12:58 +
 @@ -420,9 +420,11 @@
/* And add all the lvs to the volume group. */
while (1)
  {
 -  int s;
 +  int s, skip_lv = 0, status_visible = 0;
struct grub_lvm_lv *lv;
struct grub_lvm_segment *seg;
 +  char *status = NULL, *status_end = NULL;
 +  grub_size_t status_len = 0;
  
while (grub_isspace (*p))
  p++;
 @@ -431,6 +433,8 @@
  break;
  
lv = grub_malloc (sizeof (*lv));
 +skip_lv = 0; /*Flag to skip snapshots */
 +status_visible = 0; /*Flag to skip non-visible LV's */
  
q = p;
while (*q != ' ')
 @@ -445,6 +449,25 @@
  
lv-size = 0;
  
 +/* read LV status and ignore ones not listed as VISIBLE */
 +p = grub_strstr (p, status = );
 +if (p == NULL)
 +goto lvs_fail;
 +status_end = grub_strchr(p, ']');
 +if (status_end == NULL)
 +goto lvs_fail;
 +status_len = (status_end - p) + 1;
 +status = grub_malloc(status_len + 1);
 +if (status == NULL)
 +goto lvs_fail;
 +grub_memcpy(status, p, status_len);
 +status[status_len] = '\0';
 +if (grub_strstr(status, VISIBLE) != NULL)
 +status_visible = 1;
 +grub_free(status);
 +if (!status_visible)
 +goto lv_parsed;  /* don't bother parsing this one */
 +
lv-segment_count = grub_lvm_getvalue (p, segment_count = );
if (p == NULL)
  goto lvs_fail;
 @@ -465,6 +488,18 @@
seg-extent_count = grub_lvm_getvalue (p, extent_count = );
if (p == NULL)
  goto lvs_segment_fail;
 +
 +/* Skip LV's that have snapshot segments */
 +p = grub_strstr (p, type = );
 +if (p == NULL)
 +goto lvs_segment_fail;
 +p += sizeof(type = ) - 1;
 +if (!grub_strncmp(p, \snapshot\, 10)) {
 +/* Found a snapshot, give up and move on */
 +skip_lv=1;
 +break;
 +}
 +
seg-stripe_count = grub_lvm_getvalue (p, stripe_count = );
if (p == NULL)
  goto lvs_segment_fail;
 @@ -531,12 +566,19 @@
goto fail4;
  }
  
 +lv_parsed: /* all done with parsing this LV, seek to the end */
if (p != NULL)
  p = grub_strchr (p, '}');
if (p == NULL)
  goto lvs_fail;
p += 3;
  
 +if (skip_lv || ! status_visible) {
 +grub_free (lv-name);
 +grub_free (lv);
 +continue;
 +}
 +
lv-number = lv_count++;
lv-vg = vg;
lv-next = vg-lvs;

 



   


 ___
 Grub-devel mailing list
 grub-de...@gnu.org
 http://lists.gnu.org/mailman/listinfo/grub-devel
   


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

=== modified file 'disk/lvm.c'
--- disk/lvm.c	2010-04-27 15:25:12 +
+++ disk/lvm.c	2010-06-29 05:27:15 +
@@ -46,6 +46,52 @@ grub_lvm_getvalue (char **p, char *str)
 }
 
 static int
+grub_lvm_checkvalue (char **p, char *str, char *tmpl)
+{
+  int 

Bug#536288: Typo in notify_get_server_info

2010-06-29 Thread Sebastian Dröge
forwarded 536288 https://bugzilla.gnome.org/show_bug.cgi?id=623096
thanks

Thanks, I've forwarded this issue upstream and will fix it with next
upload.


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


Bug#557968: notification-daemon: [patch] fix crash on theme switching

2010-06-29 Thread Sebastian Dröge
fixed 557968 0.5.0-1
thanks

Hi,
this is apparently fixed in 0.5.0-1.


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


Bug#587435: ibus-clutter: Rebuild with the new libibus-dev

2010-06-29 Thread Ying-Chun Liu (PaulLiu)
severity 587435 important
thanks
On 2010年06月29日 00:28, Changwoo Ryu wrote:
 Package: ibus-clutter
 Version: 0.0+git20090728.a936bacf-1
 Severity: grave

 ibus-clutter is not installable because libibus1 is not available in 
 unstable. Please rebuild it with the new libibus-dev.


   

Hi,

This should be done by requesting a binNMU against release.debian.org.
nmu ibus-client-clutter_0.0+git20090728.a936bacf-1 . ALL . -m rebuild
against new libibus-dev

I can do that later.
But it seems to me that it's a transition of libibus1 - libibus2
It should affect more packages.
I think we should ask ibus maintainer about that.

I lower the severity of this bug because this bug does not belongs to
this package I think.

Regards,
Paul




signature.asc
Description: OpenPGP digital signature


Bug#587451: installation-report: Gigabyte GA-586TX3

2010-06-29 Thread Christian PERRIER
Quoting Márton Németh (nm...@freemail.hu):
 Package: installation-reports
 Severity: normal
 
 
 
 -- Package-specific info:
 
 Boot method: CD
 Image version: 
 http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/i386/iso-cd/debian-testing-i386-netinst.iso
  , the build finished at Sun Jun 13 04:24:35 UTC 2010
 Date: Date and time of the install
 
 Machine: Gigabyte GA-586TX3 desktop computer
 Partitions: df -Tl will do; the raw partition table is preferred
 
 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot:   [O]
 Detect network card:[O]
 Configure network:  [ ]
 Detect CD:  [O]
 Load installer modules: [O]
 Detect hard drives: [O]
 Partition hard drives:  [O]
 Install base system:[O]
 Clock/timezone setup:   [ ]
 User/password setup:[O]
 Install tasks:  [O]
 Install boot loader:[O]
 Overall install:[O]

Given that your installation was a complete success, I do as
usual with reports for successful installations: I close the bug..:-)

This does not of course mean you weren't right to report. Knowing the
installations are correct is important for the d-i team.

Many thanks for your time testing the Debian Installer and reporting
your results. Have fun with your new Debian system!




signature.asc
Description: Digital signature


Bug#584946: [Pkg-chromium-maint] Bug#584946: chromium-browser: segfault on startup on armel (openmoko freerunner)

2010-06-29 Thread Timo Juhani Lindfors
Giuseppe Iuculano giuse...@iuculano.it writes:
 Could you try version 5.0.375.86~r49890-1 when it will be available in
 armel please?

At least -4 does not seem to build:

CC(target) 
out/Release/obj.target/ffmpegsumo/third_party/ffmpeg/source/patched-ffmpeg-mt/libavcodec/bitstream.o
/tmp/ccMn32OM.s: Assembler messages:
/tmp/ccMn32OM.s:66: Error: selected processor does not support `rev r1,r1'
/tmp/ccMn32OM.s:154: Error: selected processor does not support `rev r5,r5'
/tmp/ccMn32OM.s:224: Error: selected processor does not support `rev r2,r2'
/tmp/ccMn32OM.s:1009: Error: selected processor does not support `rev16 r2,r2'
/tmp/ccMn32OM.s:1030: Error: selected processor does not support `rev r1,r1'
/tmp/ccMn32OM.s:1088: Error: selected processor does not support `rev16 r1,r1'
/tmp/ccMn32OM.s:1119: Error: selected processor does not support `rev r2,r2'
/tmp/ccMn32OM.s:1208: Error: selected processor does not support `rev r1,r1'

-- 
https://buildd.debian.org/fetch.cgi?pkg=chromium-browser;ver=5.0.375.86~r49890-4;arch=armel;stamp=125133

-Timo



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



Bug#577224: Status of ITP for scapytain

2010-06-29 Thread David Paleino
Hello Federico,
what's the status of your ITP for scapytain? :)

Kindly,
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#587342: vtun: Support tmpfs for /var/lock

2010-06-29 Thread Stefano Rivera
Hi Martín (2010.06.29_06:01:00_+0200)
 I' m not too sure about the gcc patch. It doesn't seem to do anything
 useful, and I don't see any gcc warnings when compiling main... What
 was the rationale for this?

I don't know why Ubuntu's gcc is spewing out more warnings, but it is:

gcc -Wall -g -O2  -I/usr/include/lzo -I/usr/include/openssl 
-I/usr/include/openssl -I/usr/include/openssl -I/usr/include/openssl 
-DVTUN_CONFIG_FILE=\/etc/vtund.conf\ -DVTUN_PID_DIR=\/var/run\ 
-DVTUN_STAT_DIR=\/var/log/vtund\ -DVTUN_LOCK_DIR=\/var/lock/vtund\ -c main.c
main.c: In function ‘main’:
main.c:194: warning: ignoring return value of ‘dup’, declared with attribute 
warn_unused_result
main.c:195: warning: ignoring return value of ‘dup’, declared with attribute 
warn_unused_result
main.c:196: warning: ignoring return value of ‘dup’, declared with attribute 
warn_unused_result
main.c:201: warning: ignoring return value of ‘chdir’, declared with attribute 
warn_unused_result

etc.

However, that patch has no benefit and just hides warnings. We should be able
to drop it in Ubuntu now that we have no need to fork the packaging any more.

Thanks for the quick response,

SR

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  H: +27 21 465 6908 C: +27 72 419 8559  UCT: x3127


signature.asc
Description: Digital signature


Bug#584203: acpi-fakekey: fails to start at boot

2010-06-29 Thread Michael Meskes
On Mon, Jun 28, 2010 at 04:11:35PM -0400, Michel wrote:
 I did what you suggested and added 'sleep 5' right after:
 
 'if ! modprobe -q uinput; then' to /etc/init.d/acpi-fakekey.
 
 It still fails at boot, but can start manually, like I stated before.

Just to clarify this, you added the line after the fi and not inside the
then branch right? It wouldn't get run inside the then.

 issue. All I know is that it was working fine with alsamixer before

With which version of acpi-support? Does it work again if you install an older 
version ?

http://snapshot.debian.org/binary/acpi-support/

 This is on a Thinkpad T23. xev does not report anything with vol -/+

Ah, just saw you mentioned this before, sorry, missed it.

Some Thinkpad stuff got removed by upstream but was re-added to the Debian
package later on because the kernel key handling failed on some systems. Not
sure what's going on on yours. Could you please run kacpimon and report which
events get generated?

Michael

-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
ICQ 179140304, AIM/Yahoo/Skype michaelmeskes, Jabber mes...@jabber.org
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL



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



Bug#587455: hobbit: state flickrs if more than one ssh port ist tested remotely

2010-06-29 Thread Christoph Berg
severity 587455 wishlist
tags 587455 upstream
thanks

Re: Axel Beckert 2010-06-28 20100628182829.3e5ee2e4...@snitch.localdomain
 So in bb-hosts, I wrote:
 
 123.456.789.123 somehostname # ssh ssh:2200 ssh:

Hi,

I don't think this is supposed to be used in that way. What works is
to add new services to /etc/hobbit/bb-services:

[ssh2200]
   send SSH-2.0-OpenSSH_4.1\r\n
   expect SSH
   options banner
   port 2200

and then use that in bb-hosts:

123.456.789.123 somehostname # ssh ssh2200 ssh

Arguably, your version should also work. I'll leave this as a wishlist item for
upstream.

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


signature.asc
Description: Digital signature


Bug#586660: 586660

2010-06-29 Thread Thiemo Nagel

On 06/28/2010 02:34 PM, Colin Watson wrote:

Then you're almost certainly running into #550704, which has bitten a
lot of people in testing.  Unfortunately other problems have made it
difficult to get a version of grub2 that fixes this into testing in a
timely manner.  In the meantime, I suggest upgrading to grub-common and
grub-pc from unstable.


Thank you!  Installing the sid packages has fixed the problem.

Cheers, Thiemo



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



Bug#582932: Bug #582932

2010-06-29 Thread Karel Bemelmans
I'm getting the same error after doing an upgrade from 3.8.7-1 tot 3.8.8-1:

A a user who had a few reminders set before the upgrade is now getting the 
error Can't call method id on an undefined value at 
/usr/share/request-tracker3.8/html/Elements/MyReminders line 58. on the 
Startpage.

I tried setting the LogStackTraces setting to 'error' as posted above, but even 
after an apache restart I'm not getting any information logged.

Disabling the Reminders box on the Startpage prevents the error from happening.
It also works fine if I make a new ticket, add a reminder and go back to the 
Startpage.
It just seems to go wrong for tickets that had reminders set before the upgrade 
from 3.8.7-1 to 3.8.8-1

Hopes this helps.
 

Bug#509427: update

2010-06-29 Thread Alexander Inyukhin
On Tue, Jun 29, 2010 at 05:17:00AM +0200, Martín Ferrari wrote:
 I haven't received any news on this, and also nobody else seems to be
 affected. Can you still reproduce this problem?

Hi

I can't reproduce this with up-to-date testing and kernel 2.6.33.5.
Probably it was caused by something else in my environment.

I think bug may be closed now.



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



Bug#587489: global: missing icons break htags -i

2010-06-29 Thread Yann Dirson
Package: global
Version: 5.7.1-1

htags -i looks for stuff /usr/share/gtags/icons/, but that directory
is not provided.  Nothing about that in README.Debian or
changelog.Debian, so this must be a bug.

-- 
Yann Dirson - Bertin Technologies



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



Bug#587490: typo3-dummy: [INTL:de] German translation

2010-06-29 Thread Chris Leick

Package: typo3-dummy
Version: 4.3.0-4
Severity: wishlist
Tags: l10n


Hi,

Please find the initial german translation of typo3-dummy attached.

Regards,
Chris
# German translation of typo3-dummy.
# Copyright (C) 2003-2006 Kaspar Skaarhoj.
# This file is distributed under the same license as the typo3-dummy package.
# Chris Leick c.le...@vollbio.de, 2010.
# 
msgid 
msgstr 
Project-Id-Version: typo3-dummy 4.3.0-4\n
Report-Msgid-Bugs-To: typo3-du...@packages.debian.org\n
POT-Creation-Date: 2010-06-20 22:03+0200\n
PO-Revision-Date: 2010-06-23 12:47+0200\n
Last-Translator: Chris Leick c.le...@vollbio.de\n
Language-Team: German debian-l10n-ger...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n


#. Type: select
#. Choices
#: ../typo3-dummy.templates:2001
msgid vhost
msgstr Vhost

#. Type: select
#. Choices
#: ../typo3-dummy.templates:2001
msgid directory
msgstr Verzeichnis

#. Type: select
#. Choices
#: ../typo3-dummy.templates:2001
msgid none
msgstr keine

#. Type: select
#. Description
#: ../typo3-dummy.templates:2002
msgid Apache integration mode:
msgstr Apache-Integrationsmodus:

#. Type: select
#. Description
#: ../typo3-dummy.templates:2002
msgid 
Please choose the method that should be used for integrating the TYPO3 
installation with the apache2 web server:
msgstr 
Bitte wählen Sie die Methode, die für die Integration der TYPO3-Installation 
mit dem Apache2-Webserver benutzt werden soll:

#. Type: select
#. Description
#: ../typo3-dummy.templates:2002
msgid 
 vhost: generates URLs with TYPO3 as part of the domain name, such\n
as http://typo3.example.com/,\n;
 directory: fits TYPO3 within the existing site, making it available\n
at an address like http://www.example.com/cms/,\n;
 none:  does not configure TYPO3 automatically. The server will\n
need manual configuration. Choose this option if you are\n
using a web server other than apache2.
msgstr 
 Vhost:   erstellt URLs mit TYPO3 als Teil des Domain-Namens, wie\n
  beispielsweise http://typo3.beispiel.com/;\n;
 Verzeichnis: passt TYPO3 innerhalb einer existierenden Site ein und macht\n
  es unter einer Adresse, wie http://www.beispiel.com/cms/\n;
  verfügbar;\n
 keine:   konfiguriert TYPO3 nicht automatisch. Der Server wird eine\n
  manuelle Konfiguration benötigen. Benutzen Sie diese Option,\n
  falls Sie einen anderen Webserver als Apache2 benutzen.

#. Type: boolean
#. Description
#: ../typo3-dummy.templates:3001
msgid Should apache2 be restarted after installation?
msgstr Soll Apache2 nach der Installation neu gestartet werden?

#. Type: boolean
#. Description
#: ../typo3-dummy.templates:3001
msgid 
Apache's configuration has been changed to include TYPO3 and activate the 
rewrite module. For these changes to take effect, apache2 must be reloaded.
msgstr 
Apaches Konfiguration wurde geändert, um TYPO3 einzufügen und das 
»Rewrite«-Modul zu aktivieren. Damit diese Änderungen wirksam werden, muss 
Apache2 neu geladen werden.

#. Type: note
#. Description
#: ../typo3-dummy.templates:4001
msgid Old symlink in /etc/apache2/conf.d/
msgstr Alter symbolischer Verweis in /etc/apache2/conf.d/

#. Type: note
#. Description
#: ../typo3-dummy.templates:4001
msgid 
Older versions (before 4.3.0-3) of typo3-dummy installed the apache2 
configuration symlink as /etc/apache2/conf.d/typo3-dummy.conf.
msgstr 
Alte Versionen (vor 4.3.0-3) von Typo3-dummy installierten den symbolischen 
Apache2-Konfigurationsverweis als /etc/apache2/conf.d/typo3-dummy.conf.

#. Type: note
#. Description
#: ../typo3-dummy.templates:4001
msgid 
This has been changed and newer versions place two new symlinks into /etc/
apache2/sites-available/. To prevent failures due to overlapping 
configuration directives you should remove the symlink typo3-dummy.conf 
from /etc/apache2/conf.d/ and merge its contents into one of the new 
configuration files.
msgstr 
Dies wurde geändert und neuere Versionen platzieren zwei neue symbolische 
Verweise in /etc/apache2/sites-available/. Um einen Misserfolg infolge des 
Überschneidens von Konfigurationsdirektiven zu vermeiden, sollten Sie den 
symbolischen Verweis typo3-dummy.conf aus /etc/apache2/conf.d/ entfernen und 
dessen Inhalte in einer der neuen Konfigurationsdateien zusammenführen.



Bug#579960: 32-Bit powerpc Version still not in volatile

2010-06-29 Thread Thomas Kempf

Hallo,
meanwhile package version clamav-daemon_0.96.1+dfsg-1_powerpc.deb 
migrated to testing, but is still not available in volatile, which leads 
to dependency errors between clamav-base and clamav-daemon. Only 
solution is to downgrade to the ancient 0.94-lenny which is a rather bad 
solution for av-software.

Greetings
Tom

--
Thomas Kempf

fon + 49 7321 969845
fax + 49 7321 969890
tke...@hueper.de
http://www.hueper.de

Werbeagentur Hüper GmbH
Im Brühl 1
89520 Heidenheim an der Brenz

Registergericht Amtsgericht Heidenheim an der Brenz
HRB 720441

Geschäftsführer
Peter Hüper
Bernd Weser




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



Bug#587491: lincity-ng: binary

2010-06-29 Thread HJaintsch
Package: lincity-ng
Version: 2.0-2+b1
Severity: important

no binary here...



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

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

Versions of packages lincity-ng depends on:
ii  libc6   2.11.1-3 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.4-5GCC support library
ii  libgl1-mesa-glx [libgl1 7.7.1-3  A free implementation of the OpenG
ii  libphysfs1  2.0.1-1  filesystem abstraction library for
ii  libsdl-gfx1.2-4 2.0.20-1 drawing and graphical effects exte
ii  libsdl-image1.2 1.2.10-2+b1  image loading library for Simple D
ii  libsdl-mixer1.2 1.2.8-6+b1   mixer library for Simple DirectMed
ii  libsdl-ttf2.0-0 2.0.9-1  ttf library for Simple DirectMedia
ii  libsdl1.2debian 1.2.14-6 Simple DirectMedia Layer
ii  libstdc++6  4.4.4-5  The GNU Standard C++ Library v3
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  lincity-ng-data 2.0-2Media files for the city simulator
ii  ttf-dejavu  2.31-1   Metapackage to pull in ttf-dejavu-
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

lincity-ng recommends no packages.

lincity-ng 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#573144: Re: Bug#573144: linux-image-2.6-686: kernel freezes related to i915 handle error

2010-06-29 Thread Zbynek Michl
So 2.6.32-3-686 freezes too. I don't know how to debug it, because kernel seems 
to be completely dead :(

Zbynek


 Hello,
 
 I am experiencing the same problem in 2.6.32-5-686 and 2.6.34-1-686 on my Acer
 laptop with i855 chipset. System freezes randomly as described by Eric. I 
 guess
 that 2.6.32-3-686 was fine, but I am not sure (have not this kernel anymore).
 
 Thanks,
 Zbynek
 



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



Bug#587204: Impress Doesn't Play Audio in PPS/PPT Slides

2010-06-29 Thread Rene Engelhard
Hi,

On Sat, Jun 26, 2010 at 09:16:12AM +0430, Tsu Jan wrote:
 Package: openoffice.org-impress
 Version: 1:3.2.1-3

 Impress can't play audio embedded in PPS or PPT slides.

And in .odps?

 Versions of packages openoffice.org-impress depends on:
 ---
 openoffice.org-core (= 1:3.2.0-9)
 openoffice.org-draw (= 1:3.2.0-9)

Why do you have -impress at 3.2.1-3 and those at 3.2.0-9?
Or is that already the downgraded version?

The info you pasted here is useless, why can't you just use
a sensible format if you think you need to do it yourself
and not let reportbug do it for you...

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#587492: cbrowser: does not start

2010-06-29 Thread Yann Dirson
Package: cbrowser
Version: 0.8-7

This even occurs in a directory in which cscope has already built its
db.  Is anyone able to run this package or should we make this bug RC ?

$ cbrowser 
Error in startup script: invalid command name 
while executing
[handlec_mdline]
(file /usr/bin/cbrowser line 3009)


-- 
Yann Dirson - Bertin Technologies



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



Bug#579960: 32-Bit powerpc Version still not in volatile

2010-06-29 Thread Michael Tautschnig
Hi all,

 Hallo,
 meanwhile package version clamav-daemon_0.96.1+dfsg-1_powerpc.deb
 migrated to testing, but is still not available in volatile, which
 leads to dependency errors between clamav-base and clamav-daemon.
 Only solution is to downgrade to the ancient 0.94-lenny which is a
 rather bad solution for av-software.
 Greetings
 Tom
 

As has already been reported in #586201 the builds for powerpc are still missing
in the lenny-volatile repository. Could we please get some information which
kind fo hickups the volatile buildd is facing currently? Is there anything the
pkg-clamav team could do about it?

Thanks a lot,
Michael



pgprncTXmWeWD.pgp
Description: PGP signature


Bug#587335: fails to upgrade

2010-06-29 Thread Jö Fahlke
Am Mon, 28. Jun 2010, 22:05:25 +0100 schrieb Colin Watson:
 Neither of you mention which version of grub-common you have installed.
 However, it sounds like you're both being hit by #550704, and that Jö
 may be being hit by #542165 as well.  Both are fixed in any version from
 1.98+20100614-1 on, so please upgrade to the latest grub-common in
 unstable and let me know if that fixes things.

Indeed, upgrading grub-common and grub-pc from 1.98-1 to 1.98+20100617-1
allows me to upgrade memtest86+ afterwards.

Thanks,
Jö.

-- 
P.S: P.S. in Emails ist ziemlich überflüssing.


signature.asc
Description: Digital signature


Bug#587419: zonecheck: New release 3.0.1

2010-06-29 Thread Sebastien Delafond
tag 587419 + confirmed pending
thanks

Will get to doing this shortly.

Cheers,

--Seb



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



Bug#578131: [linux-2.6] Copying big files to pendrive is deadly slow

2010-06-29 Thread Antonio Marcos López Alonso
Some facts:

- Still present in linux-image-2.6.32-5-amd64.

- Not present in linux-image-2.6.30-2-amd64. The transfer rate also drops 
after completing one third of the upload to the external device, but just to a 
reasonable 3.5 MB/s.

- It seems to be filesystem-independent (I formatted my pendrive with vfat, 
ntfs and ext4) and device-independent (tested other external storage devices).

- My buddy reports (on a different and more powerful Debian Squeeze amd64 box 
running 2.6.32-5) he is not experiencing anything unusual with transfer rates 
even using my own pendrive. So I guess there must be some combination of 
kernel and hardware issues. 

Regards,
Antonio



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



Bug#579960: 32-Bit powerpc Version still not in volatile

2010-06-29 Thread Philipp Kern
On Tue, Jun 29, 2010 at 11:16:43AM +0200, Michael Tautschnig wrote:
  meanwhile package version clamav-daemon_0.96.1+dfsg-1_powerpc.deb
  migrated to testing, but is still not available in volatile, which
  leads to dependency errors between clamav-base and clamav-daemon.
  Only solution is to downgrade to the ancient 0.94-lenny which is a
  rather bad solution for av-software.
 As has already been reported in #586201 the builds for powerpc are still 
 missing
 in the lenny-volatile repository. Could we please get some information which
 kind fo hickups the volatile buildd is facing currently? Is there anything the
 pkg-clamav team could do about it?

The point of contact would be `powe...@buildd.debian.org'.  Sorry, I seem to
have overlooked your previous mail, otherwise I'd have acted, so thanks for the
new ping.  It was built on praetorius which is not set up to properly upload
packages for volatile.  I signed and uploaded it manually now, so it should
appear shortly.

(In general: late builds won't make it into volatile proper automatically, but
instead they end up in -proposed.  Due to the clamav-data spam I get every
day I usually overlook such builds and might need a prod to copy them over.)

Kind regards,
Philipp Kern
-- 
 .''`.  Philipp KernDebian Developer
: :' :  http://philkern.de Stable Release Manager
`. `'   xmpp:p...@0x539.de Wanna-Build Admin
  `-finger pkern/k...@db.debian.org


signature.asc
Description: Digital signature


Bug#587301: All prints default to US Letter although it should be A4

2010-06-29 Thread Andrei Popescu
On Lu, 28 iun 10, 09:58:22, Rene Engelhard wrote:
 Hi,
 
 On Mon, Jun 28, 2010 at 10:37:12AM +0300, Andrei Popescu wrote:
  On Lu, 28 iun 10, 00:55:20, Rene Engelhard wrote:
  Could there be some timeouts involved? The cups server is on a low-end 
  (PII-333) lan machine and GTK apps do take a while (20-30 secs?) to get 
 
 Maybe. I'd seriously consider your setup though if you need that much to
 connect.
 
This is the best setup possible, given the available resources :(
I tried on a similar setup, where the cups server is on a much faster 
machine and indeed it doesn't do the same, but I was able to override 
cups with libpaper, which does not work on the setup with the slow cups.

My guess is OpenOffice.org is doing something strange if cups is too 
slow.

but definitely not from a hardcoded value in some obscure
non-configuration file.
   
   That is true, but then again that .PS (a .PPD) should not be used
   when you configured your printer correctly in cups.
  
  A fall-back value makes sense to me, but shouldn't it rather be
  /etc/openoffice/psprint.conf (where I uncommented PPD_PageSize=A4)?
 
 To my knowledge that .PS files is not used unless you selected Generic 
 Printer
 (and/or used spadmin), so...

I only used spadmin to try to change the default, is this what you mean 
by used spadmin?

If it matters, I can reproduce it. I just changed back and forth between 
A4 and Letter just by modifying the .PS file.

Any more infos that I can provide?

Regards,
Andrei
P.S. I just tested a QT app, and I also get A4. I think this excludes 
any cups configuration issue, if you still think it might be the reason.
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic



signature.asc
Description: Digital signature


Bug#507788: sysctl.conf read before ipv6 module loaded, so cannot set ipv6 settings

2010-06-29 Thread Jérémie Rodriguez
Hello,

It seems that procps version = 3.2.8-8 doesn't fix the problem. I run a
Debian Squeeze and at boot time, I get :

Setting kernel variables ...
error: net.ipv6.bindv6only is an unknown key
error: net.ipv6.conf.eth0.autoconf is an unknown key
failed.

Theses keys are in files under the /etc/sysctl.d/ directory.

Anyone has the problem anymore ?

Thanks.

-- 
Jérémie Rodriguez

Equipe Réseau Intra et Télécom
Centre Inter-Etablissements pour les Services Réseaux (CISR)

Université Claude Bernard - Lyon 1
Bât. Doyen Braconnier
21 avenue Claude Bernard
69622 Villeurbanne Cedex

Tél. : 04-72-43-10-38 (interne : 31038)
Mobile : 06-78-00-32-82



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



Bug#586554: initramfs-tools fails to upgrade from 0.96.1 to 0.97

2010-06-29 Thread maximilian attems
On Tue, Jun 29, 2010 at 09:05:55AM +0900, Olaf Meeuwissen wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Thanks for the info.  I've checked the dash and bash manual pages but
 running under errexit seems to be the same as using `set -e`.  The hook
 provided by iscan has done a `set -e` from the beginning so that can't
 be the reason (unless I misunderstood the errexit stuff).
 
 FTR, I've attached the hook scripts template.  The @...@ stuff is
 substituted at package build time.

hmm I don'T see at a quick look why it failed.
 
 Hope this helps,

but I don't get it'S purpose?

why do you want mkinitramfs to clean some file in your statedir?
this seems the wrong location to do such

also why does it need udev (just a minor nit..)?

 #! /bin/sh
 #  Copyright (C) 2009  SEIKO EPSON CORPORATION
 #
 #  License: GPLv2+
 
 
 state_d...@deb_configure_localstatedir@/lib/@DEB_SOURCE_PACKAGE@
 
 
 set -e
 
 PREREQS=udev
 
 prereqs()
 {
 echo $PREREQS
 }
 
 case $1 in
 prereqs)
   prereqs
   exit 0
   ;;
 esac
 
 . /usr/share/initramfs-tools/hook-functions
 
 test -r $STATE_DIR/clean-files || exit 0
 
 awk '{print $2}' $STATE_DIR/clean-files \
 | while read file; do
 test -e ${DESTDIR}$file  rm -f ${DESTDIR}$file
 done




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



Bug#587493: choose-mirror: Strange wget error message in the installation log

2010-06-29 Thread Petter Reinholdtsen

Package:  choose-mirror
Version:  2.32
User: debian-...@lists.debian.org
UserTags: debian-edu

In Debian Edu, we automatically search for error: in the installation
log to detect errors during installation.  When PXE installing, I get
this one:

  Jun 28 23:18:29 main-menu[555]: (process:2840): wget: server returned
error: HTTP/1.0 404 Not Found

It is a bogus error message that is creating noise and confusion in
the Debian Edu test installation.

I've tried to track down where it come from, and as far as I
understand from the log it must originate from choose-mirror.

This is the relevant log fragment:

Jun 28 23:18:28 main-menu[555]: DEBUG: resolver (localization-config-udeb): 
package doesn't exist (ignored)
Jun 28 23:18:28 anna-install: Queueing udeb partman-lvm for later installation
Jun 28 23:18:28 anna-install: Queueing udeb partman-auto-lvm for later 
installation
Jun 28 23:18:28 main-menu[555]: INFO: Falling back to the package description 
for auto-install
Jun 28 23:18:28 main-menu[555]: INFO: Falling back to the package description 
for ai-choosers
Jun 28 23:18:28 main-menu[555]: INFO: Menu item 'choose-mirror' selected
Jun 28 23:18:28 anna-install: Queueing udeb apt-mirror-setup for later 
installation
Jun 28 23:18:28 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/oldstable/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:28 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/stable/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/lenny/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/testing/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/squeeze/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/unstable/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/sid/Release -O - | grep -E 
'^(Suite|Codename):'
Jun 28 23:18:29 choose-mirror[2847]: INFO: suite/codename set to: 
testing/squeeze
Jun 28 23:18:29 choose-mirror[2847]: DEBUG: command: wget -q 
http://ftp.skolelinux.org/debian/dists/squeeze/main/binary-i386/Release -O - | 
grep ^Architecture:
Jun 28 23:18:29 anna-install: Queueing udeb squeeze-support for later 
installation
Jun 28 23:18:29 main-menu[555]: (process:2840): wget: server returned error: 
HTTP/1.0 404 Not Found
Jun 28 23:18:29 main-menu[555]: DEBUG: resolver (libc6-udeb): package doesn't 
exist (ignored)

The URLs in the log seem to work, so I do not understand why wget is
complaining.  Is there some other wget calls that are not reported to
the log?

The only wget calls I find in choose-mirror do not throw away error
messages.  Perhaps they should?  If so, this untested patch should
implement it:

debian/changelog

  * Throw away stderr when calling wget, to avoid getting bogus error
messages in the installation log.

--- choose-mirror.c (revision 63581)
+++ choose-mirror.c (working copy)
@@ -243,7 +243,7 @@
free(directory);
directory = strdup(debconf-value);
 
-   asprintf(command, wget -q %s://%s%s/dists/%s/Release -O - | grep -E 
'^(Suite|Codename):',
+   asprintf(command, wget -q %s://%s%s/dists/%s/Release -O - 2/dev/null 
| grep -E '^(Suite|Codename):',
 protocol, hostname, directory, name);
di_log(DI_LOG_LEVEL_DEBUG, command: %s, command);
f = popen(command, r);
@@ -757,7 +757,7 @@
if (strlen(debconf-value)  0) {
codename = strdup(debconf-value);
 
-   asprintf(command, wget -q 
%s://%s%s/dists/%s/main/binary-%s/Release -O - | grep ^Architecture:,
+   asprintf(command, wget -q 
%s://%s%s/dists/%s/main/binary-%s/Release -O - 2/dev/null | grep 
^Architecture:,
 protocol, hostname, directory, codename, ARCH_TEXT);
di_log(DI_LOG_LEVEL_DEBUG, command: %s, command);
f = popen(command, r);

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#579960: 32-Bit powerpc Version still not in volatile

2010-06-29 Thread Michael Tautschnig
close 586201
thanks

Hi Philipp,

Thanks a lot for the prompt response and action!!

[...]

 
 The point of contact would be `powe...@buildd.debian.org'.  Sorry, I seem to
 have overlooked your previous mail, otherwise I'd have acted, so thanks for 
 the
 new ping.  It was built on praetorius which is not set up to properly upload
 packages for volatile.  I signed and uploaded it manually now, so it should
 appear shortly.
 

I wasn't quite sure how independent the volatile build infrastructure (and hence
buildd maintainers) is from the usual build process. But thanks a lot for the
info, will contact the respective buildd list next time!

 (In general: late builds won't make it into volatile proper automatically, but
 instead they end up in -proposed.  Due to the clamav-data spam I get every
 day I usually overlook such builds and might need a prod to copy them over.)
 

Maybe you should speak to Marc about this; he's doing the clamav-data thing
pretty much independent of the pkg-clamav team so I cannot speak for him here.
But anyway, if similar problems arise in the future I'll first speak to the
buildd maintainers and then contact you, if necessary.

Thanks again for your immediate response,
Michael



pgpXIxmJDGi73.pgp
Description: PGP signature


Bug#426780: [php-maint] Bug#426780: Bug#426780: (no subject)

2010-06-29 Thread Olaf van der Spek

On 26-6-2010 18:07, Thomas Goirand wrote:


- Original message -

who's really using PHP as
CGI?


I think using php used as CGI is cool. You can run any php version, and using 
sbox from cern, which does a chroot and many setlimits() calls, secures 
policies under shared hosting env, but as keeping a quite good freedom in 
usages. I would like this php cgi-bin feature of php to be ketp in Debian.


Yeah, we should certainly not remove it.

Olaf



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



Bug#587485: musixtex: makes texlive-full uninstallable, has wrong deps/replace

2010-06-29 Thread Roland Stigge
Hi,

On 06/29/2010 06:14 AM, Norbert Preining wrote:
 Package: musixtex
 Version: 1:0.114-2
 Severity: important
 
 Hi everyone,
 
 the recent upload of musixtex wasn't well timed or well prepared:
 - it makes texlive-full uninstallable, as texlive-full depends on 
   musixtexli-slurps and musixlyr, which you conflict/replace with,
   but *NOT* doing a Provide: musixlyr, musixtex-slurps
   which you *should* have done since you are providing it.
   Please fix that.
 
 - furthermore, you are depending on texlive-base-bin which is not
   existent anymore in the target distribution, please either remove it
   completely, or replaces it with texlive-binaries

I will fix both issues today. musixtex now includes both musixtex-slurps
and musixlyr (should Provides: it).

Sorry for the lack of coordination! Feel free to contact me for further
ideas how to improve the situation.

bye,
  Roland



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



Bug#587494: ITP: xgks -- X11 Graphical Kernel System

2010-06-29 Thread Alastair McKinstry
Package: wnpp
Severity: wishlist
Owner: Alastair McKinstry mckins...@debian.org

* Package name: xgks
  Version : 2.6
  Upstream Author :  UCAR/Unidata
* URL : http://xgks.sourceforge.net/
* License : BSD
  Programming Lang: C, Fortran
  Description : X11 Graphical Kernel System

XGKS is a level 2C implementation of the ANSI Graphical Kernel System (GKS) 
for use in a Unix environment with the X Window System. It supports the 
Fortran language binding and a C language binding based on the 1988 draft. 

XGKS is used in both the CDMS2 and FERRET climate tools which are currently
being packaged for Debian.

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



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



Bug#582932: [request-tracker-maintainers] Bug#582932: Bug #582932

2010-06-29 Thread Dominic Hargreaves
On Tue, Jun 29, 2010 at 10:10:25AM +0200, Karel Bemelmans wrote:
 I'm getting the same error after doing an upgrade from 3.8.7-1 tot 3.8.8-1:
 
 A a user who had a few reminders set before the upgrade is now getting the 
 error Can't call method id on an undefined value at 
 /usr/share/request-tracker3.8/html/Elements/MyReminders line 58. on the 
 Startpage.
 
 I tried setting the LogStackTraces setting to 'error' as posted above, but 
 even after an apache restart I'm not getting any information logged.
 
 Disabling the Reminders box on the Startpage prevents the error from 
 happening.
 It also works fine if I make a new ticket, add a reminder and go back to the 
 Startpage.
 It just seems to go wrong for tickets that had reminders set before the 
 upgrade from 3.8.7-1 to 3.8.8-1
 
 Hopes this helps.

It's very useful to hear feedback on this bug. Can you confirm that
you didn't change the configuration at all at the time of this upgrade?
In particular, to the $rtname configuration variable?

I'll make upstream aware of your comment on the linked ticket and
see if I can reproduce the issue myself later this week.

Thanks,
Dominic.


-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#587495: ark does not support utf-8 filenames and directory names?

2010-06-29 Thread Giorgos Pallas
Package: ark
Version: 4:4.4.4-1
Severity: normal


I think that ark does not support utf-8 filenames and directory names. All
the zip archives are shown with question marks instead of greek letters.
If I select from within KDE - Extract archive here, then the directories
are extracted with correct filenames.

If you want me to send you a sample zip file, send me an email.

Thanks!


-- 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=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ark depends on:
ii  kdebase-runtime   4:4.4.4-1  runtime components from the offici
ii  libarchive1   2.8.3-1Single library to read/write tar, 
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libkdecore5   4:4.4.4-2  the KDE Platform Core Library
ii  libkdeui5 4:4.4.4-2  the KDE Platform User Interface Li
ii  libkfile4 4:4.4.4-2  the File Selection Dialog Library 
ii  libkhtml5 4:4.4.4-2  the KHTML Web Content Rendering En
ii  libkio5   4:4.4.4-2  the Network-enabled File Managemen
ii  libkonq5  4:4.4.4-1  core libraries for Konqueror
ii  libkparts44:4.4.4-2  the Framework for the KDE Platform
ii  libqt4-dbus   4:4.6.3-1  Qt 4 D-Bus module
ii  libqtcore44:4.6.3-1  Qt 4 core module
ii  libqtgui4 4:4.6.3-1  Qt 4 GUI module
ii  libstdc++64.4.4-5The GNU Standard C++ Library v3

Versions of packages ark recommends:
ii  bzip2  1.0.5-4   high-quality block-sorting file co
ii  p7zip-full 9.04~dfsg.1-1 7z and 7za file archivers with hig
ii  unzip  6.0-4 De-archiver for .zip files
ii  zip3.0-3 Archiver for .zip files

Versions of packages ark suggests:
pn  rar   none (no description available)
pn  unrar | unrar-freenone (no description available)

-- no debconf information



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



Bug#582932: [request-tracker-maintainers] Bug#582932: Bug #582932

2010-06-29 Thread Karel Bemelmans
The configuration file was not changed during the upgrade. I installed RT using 
dbconfig and those settings were used to perform the upgrade, so $rtname was 
not changed.

I did not get any errors, just 1 warning about setting RTAddressRegexp in the 
config file, which I haven't added yet as it did not seem to be necessary for 
my setup.

I currently fixed my RT by removing all the tickets of type 'reminder' and 
status 'new', and re-adding them on the site. This seems to be working even 
though I can't really spot any difference between the rows I deleted and the 
new ones I've added.


-Oorspronkelijk bericht-
Van: Dominic Hargreaves [mailto:d...@earth.li]
Verzonden: dinsdag 29 juni 2010 11:52
Aan: Karel Bemelmans;582...@bugs.debian.org
Onderwerp: Re: [request-tracker-maintainers] Bug#582932: Bug #582932

It's very useful to hear feedback on this bug. Can you confirm that
you didn't change the configuration at all at the time of this upgrade?
In particular, to the $rtname configuration variable?

I'll make upstream aware of your comment on the linked ticket and
see if I can reproduce the issue myself later this week.





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



Bug#587496: grads won't open netcdf(3) file - Error parsing time units in SDF file

2010-06-29 Thread Frank Schäffer
Package: grads
Version: 2.0.a8-1
Severity: important


trying to sdfopen a netcdfile results in:
ga- sdfopen time_monthly_99_01.nc
Scanning self-describing file:  time_monthly_99_01.nc
Definition of kt in /usr/share/xml/udunits/udunits2-common.xml, line 90, 
overrides prefixed-unit 100 kilogram
Definition of microns in /usr/share/xml/udunits/udunits2-common.xml, line 
308, overrides prefixed-unit 1e-15 second
Definition of ft in /usr/share/xml/udunits/udunits2-common.xml, line 405, 
overrides prefixed-unit 1e-12 kilogram
Definition of yd in /usr/share/xml/udunits/udunits2-common.xml, line 413, 
overrides prefixed-unit 8.64e-20 second
Definition of pt in /usr/share/xml/udunits/udunits2-common.xml, line 634, 
overrides prefixed-unit 1e-09 kilogram
Definition of at in /usr/share/xml/udunits/udunits2-common.xml, line 1031, 
overrides prefixed-unit 1e-15 kilogram
Definition of ph in /usr/share/xml/udunits/udunits2-common.xml, line 1549, 
overrides prefixed-unit 3.6e-09 second
Definition of nt in /usr/share/xml/udunits/udunits2-common.xml, line 1556, 
overrides prefixed-unit 1e-06 kilogram
ut_get_converter(): Units not convertible
ut_get_converter(): Units not convertible
ut_get_converter(): Units not convertible
ut_get_converter(): Units not convertible
ut_get_converter(): Units not convertible
ut_get_converter(): Units not convertible
gadsdf: Error parsing time units in SDF file.

ncdump of the header in file:
netcdf time_monthly_99_01 {
dimensions:
xt_i = 348 ;
yt_j = 318 ;
zt_k = 15 ;
xu_i = 348 ;
yu_j = 318 ;
zw_k = 15 ;
Surface = 1 ;
Time = UNLIMITED ; // (34 currently)
xt_i_edges = 351 ;
yt_j_edges = 321 ;
zt_k_edges = 16 ;
xu_i_edges = 351 ;
yu_j_edges = 321 ;
zw_k_edges = 16 ;
variables:
...
...

The ncdf file is standard netcdf compliant created with netcdf version 3.6.2

Installing binary CentOS4.8-x86_64 (a.k.a. RHEL4) from grads homepage to 
/usr/local/ and setting up according
to install instructions described on grads homepage works fine and does not 
show this issue

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

Kernel: Linux 2.6.34-0.slh.10-sidux-amd64 (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grads depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libhdf5-serial-1.8.4 [lib 1.8.4-patch1-2 Hierarchical Data Format 5 (HDF5) 
ii  libnetcdf61:4.1.1-5  An interface for scientific data a
ii  libreadline6  6.1-3  GNU readline and history libraries
ii  libudunits2-0 2.1.15-4   Library for handling of units of p
ii  libx11-6  2:1.3.3-3  X11 client-side library

grads recommends no packages.

grads 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#587497: Fails to compile simple functional example from nemerle.org

2010-06-29 Thread Thomas Jollans
Package: nemerle
Version: 0.9.3+dfsg-3
Severity: important

nemerle as available in unstable appears to have some serious problems
with function-objects/delegates. As A simple example: (The code is taken
from http://nemerle.org/Grok_Functionals)

0:pts/1:~/tmp% cat funs.n   
class Functions {
static f (x : int) : int
{
x * 2
}

static run_funval_twice (f : int - int, v : int) : int
{
f (f (v))
}

public static Main () : void
{
System.Console.WriteLine ({0}, run_funval_twice (f, 3))
}
}

0:pts/1:~/tmp% ncc funs.n   
error: internal compiler error: got ArgumentException (type is not TypeBuilder 
but System.MonoType
Parameter name: type)
  at System.Reflection.Emit.TypeBuilder.GetMethod (System.Type type, 
System.Reflection.MethodInfo method) [0x0] 
  at Nemerle.Compiler.ILEmitter.FrameworkGetMethod (System.Type t, 
System.Reflection.MethodInfo m) [0x0] 
  at Nemerle.Compiler.ILEmitter.GetMethodInfo (Nemerle.Compiler.TyVar 
from_type, IMethod meth, Nemerle.Core.list`1 typars) [0x0] 
  at Nemerle.Compiler.ILEmitter.emit (Nemerle.Compiler.Typedtree.TExpr expr) 
[0x0] 
  at Nemerle.Compiler.ILEmitter.emit (Nemerle.Compiler.Typedtree.TExpr expr) 
[0x0] 
  at Nemerle.Compiler.ILEmitter.Run () [0x0] 
  at Nemerle.Compiler.MethodBuilder+_N__N_l29281_29413.apply_void () [0x0] 
  at Nemerle.Compiler.TypeBuilder.FinalizeType () [0x0] 
  at Nemerle.Compiler.TypeBuilder.EmitImplementation () [0x0] 
  at Nemerle.Compiler.TypesManager+_N_emit_impl_24291.apply_void 
(Nemerle.Compiler.TypeBuilder _N_24290) [0x0] 
  at Nemerle.Compiler.TypesManager+_N_maybe_f_24727.apply_void 
(Nemerle.Compiler.TypeBuilder _N_24726) [0x0] 
  at Nemerle.Collections.List.Iter[TypeBuilder] (Nemerle.Core.list`1 l, 
Nemerle.Builtins.FunctionVoid`1 f) [0x0] 
  at Nemerle.Core.list`1[Nemerle.Compiler.TypeBuilder].Iter 
(Nemerle.Builtins.FunctionVoid`1 f) [0x0] 
  at Nemerle.Compiler.TypesManager.Iter (Nemerle.Core.list`1 builders, 
Nemerle.Builtins.FunctionVoid`1 f) [0x0] 
  at Nemerle.Compiler.TypesManager.Iter (Nemerle.Builtins.FunctionVoid`1 f) 
[0x0] 
  at Nemerle.Compiler.TypesManager.compile_all_tyinfos (Boolean aux_phase) 
[0x0] 
  at Nemerle.Compiler.TypesManager+_N__N_l23867_23958.apply_void () [0x0] 
  at Nemerle.Compiler.Solver.Enqueue (Nemerle.Builtins.FunctionVoid action) 
[0x0] 
  at Nemerle.Compiler.TypesManager.EmitDecls () [0x0] 
  at Nemerle.Compiler.Passes.Run () [0x0] 
  at Nemerle.CommandlineCompiler.MainClass.main_with_catching () [0x0] 


If you replace the line f (f (v)) with v, the code compiles and runs
(but obviously doesn't do what it was intended to do)


-- 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_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages nemerle depends on:
ii  libmono-corlib2.0-cil  2.4.4~svn151842-3 Mono core library (for CLI 2.0)
ii  libmono-system2.0-cil  2.4.4~svn151842-3 Mono System libraries (for CLI 2.0
ii  libnemerle0.9-cil  0.9.3+dfsg-3  Class Libraries for Nemerle
ii  mono-runtime   2.4.4~svn151842-3 Mono runtime

nemerle recommends no packages.

nemerle 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#587204: Impress Doesn't Play Audio in PPS/PPT Slides

2010-06-29 Thread Tsu Jan

Hello,

 ... why can't you just use...

First, sorry for the incorrect information -- a part of it was related 
to the older version as I was too tired. Here, I just copy-paste from 
terminal, hoping that reportbug will do the format:


openoffice.org-impress
Version: 1:3.2.1-3
Replaces: openoffice.org ( 1.9), openoffice.org-common ( 
2.0.3+2.0.4m179), openoffice.org-debian-files, openoffice.org2-impress 
( 1:3.2.1-3)

Provides: openoffice.org2-impress
Depends: openoffice.org-core (= 1:3.2.1-3), openoffice.org-draw (= 
1:3.2.1-3), libc6 (= 2.1.3), libgcc1 (= 1:4.1.1), libstdc++6 (= 
4.1.1), libstlport4.6ldbl, ure (= 1.4.0)

Breaks: openoffice.org-presenter-console ( 1.0.3~)

 And in .odps?

I made two identical slides with the older version (1:3.2.0-9), one in 
.odp and the other in .ppt, using the Impress sound gallery. The older 
version played both correctly but the newer one (1:3.2.1-3) just played 
the .odt correctly and couldn't play the sound of the .ppt.


Regards,

Tsu




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



Bug#587301: All prints default to US Letter although it should be A4

2010-06-29 Thread Rene Engelhard
On Tue, Jun 29, 2010 at 12:34:36PM +0300, Andrei Popescu wrote:
 I tried on a similar setup, where the cups server is on a much faster 
 machine and indeed it doesn't do the same, but I was able to override 
 cups with libpaper, which does not work on the setup with the slow cups.
 
 My guess is OpenOffice.org is doing something strange if cups is too 
 slow.

It seems it falls back.

It gets the PPD file from cups, then parses it.

// update the printer info with context information
ppd_file_t* pPPD = m_pCUPSWrapper-ppdOpenFile( 
aPPDFile.getStr() );
if( pPPD )
{
[...]
// set system default paper; printer CUPS PPD options
// may overwrite it
setDefaultPaper( rContext );
for( int i = 0; i  pPPD-num_groups; i++ )
updatePrinterContextInfo( pPPD-groups + i, 
rContext );

rInfo.m_pParser = pNewParser;
rInfo.m_aContext = rContext;

// clean up the mess
m_pCUPSWrapper-ppdClose( pPPD )
}
#if OSL_DEBUG_LEVEL  1
else
fprintf( stderr, ppdOpenFile failed, falling back to 
generic driver\n );
#endif

(above from OOos cupsmgr.cxx)

... and falls back to the generic driver. Note how it sets the default paper 
based on the PPD.

Please try the lib from http://zyklop.dyndns.org/~rene/587301/libvcllx.so 
(built with -DOSL_DEBUG_LEVEL=2)
to get all those OSL_DEBUG_LEVEL-guarded fprintfs printed to the console so 
that we know what exactly is
going on.
But I don't really care if it turns out that it's really because of your cups 
server need 30s to be reached,
that setup is such completely broken

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#587498: Typo in package description

2010-06-29 Thread Erik Esterer
Package: vodovod
Version: 1.10-2
Severity: minor
Tags: patch

Hello.

I found a small typo while translating the package description via DDTSS. The 
patch is included.

Erik
--- control 2008-03-20 19:47:22.0 +0100
+++ control.new 2010-06-29 12:10:18.0 +0200
@@ -11,5 +11,5 @@
  Vodovod is a game similar to Pipe Mania and Pipe Dream, in which you have to
  lead the water from the house to the storage tank. You get a limited number
  of pipes on each level and need to combine them to lead the water from the
- house at the top of the screen to the storage tank at the bottom. It Has
+ house at the top of the screen to the storage tank at the bottom. It has
  joystick/joypad support.


Bug#577009: Fix for Bug#577009 commited to version control

2010-06-29 Thread nijel
tags 577009 pending
thanks
Hi,

The following change has been committed for this bug, and so the
fix will be in the next upload.
===

Changeset [93] by nijel, 2010-06-29 12:10:54 +0200 (Tue, 29 Jun 2010)

Disable constant caching to prevent memory leak (Closes: #577009).

U   trunk/debian/changelog
U   trunk/debian/rules

http://viewsvn.cihar.com/debian-xcache?view=revrevision=93



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



Bug#587401: closed by Torsten Werner twer...@debian.org (Bug#587401: fixed in antlr3 3.2-3)

2010-06-29 Thread Julien BLACHE
Ludovic Claude ludovic.cla...@laposte.net wrote:

Hi,

 Can you open a new bug report for the POM issue and include the build logs?

The build logs are on buildd.debian.org, that's where I read them :)

In the meantime, the build also failed on mips (weird errors :/) and
hppa (same error as on kfreebsd-*).

Not out of the woods just yet :( I wanted to look into the kfreebsd
failures to provide more data, but unfortunately neither kfreebsd-amd64
nor kfreebsd-i386 would install into VMWare 7...

I'll open a new bug with links to the build logs momentarily.

JB.

-- 
 Julien BLACHE jbla...@debian.org  |  Debian, because code matters more 
 Debian  GNU/Linux Developer|   http://www.debian.org
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



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



Bug#587461: `Createform' implicitly converted to pointer at main.c:113

2010-06-29 Thread Stefan Bauer
tags 587461 fixed pending
thanks


Thank you for your report. A new package is soon at mentors,
awaiting sponsoring.

Stefan
-- 
Stefan Bauer -
PGP: E80A 50D5 2D46 341C A887 F05D 5C81 5858 DCEF 8C34
 plzk.de - Linux - because it works --



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



Bug#587499: antlr3: FTBFS on several architectures: hppa, mips, kfreebsd-*

2010-06-29 Thread Julien BLACHE
Source: antlr3
Version: 3.2-3
Severity: serious

Hi,

antlr3 3.2-3 failed to build again on 4 architectures, including the 2
kfreebsd. 3 failures look related, failing with the same error message,
but the fourth one looks weird :/

Failing with an XML exception (invalid NCName) while building the master
POM:
 - hppa
   
https://buildd.debian.org/fetch.cgi?pkg=antlr3ver=3.2-3arch=hppastamp=1277756750file=log
 - kfreebsd-i386
   
https://buildd.debian.org/fetch.cgi?pkg=antlr3ver=3.2-3arch=kfreebsd-i386stamp=1277755004file=log
 - kfreebsd-amd64
   
https://buildd.debian.org/fetch.cgi?pkg=antlr3ver=3.2-3arch=kfreebsd-amd64stamp=1277754086file=log

Weird build failure:
 - mips
   
https://buildd.debian.org/fetch.cgi?pkg=antlr3ver=3.2-3arch=mipsstamp=126868file=log

JB.

-- 
 Julien BLACHE jbla...@debian.org  |  Debian, because code matters more 
 Debian  GNU/Linux Developer|   http://www.debian.org
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



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



Bug#587500: zeromq: new upstream version 2.0.7 available

2010-06-29 Thread Nicolas Noirbent
Package: zeromq
Severity: normal

Hello,

zeromq 2.0.7 has been released on June 4th:

http://www.zeromq.org/blog:v2-0-7-released

Several backwards-incompatible API changes have been introduced in
this release, and as such the updated versions of the Ruby and Python
bindings do not compile against zeromq from unstable.

Cheers,

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

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



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



Bug#587501: [cryptsetup] cryptsetup luksDump /dev/mapper/sda2_crypt fails

2010-06-29 Thread Georg Gast

Package: cryptsetup
Version: 2:1.1.2-1
Severity: normal

The following happens if i try cryptsetup luksDump /dev/sda2_crypt

[code]
cryptsetup luksDump /dev/mapper/sda2_crypt
Device /dev/mapper/sda2_crypt is not a valid LUKS device.
[/code]

But see the following:
[code]
cryptsetup status /dev/mapper/sda2_crypt
/dev/mapper//dev/mapper/sda2_crypt is active:
  cipher:  aes-cbc-essiv:sha256
  keysize: 256 bits
  device:  /dev/sda2
  offset:  2056 sectors
  size:624945144 sectors
  mode:read/write
[/code]

cryptsetup isLuks /dev/mapper/sda2_crypt  echo Ok does not report 
sda2_crypt as a luks device


The partition was installed with the standard Debian/Squeeze Netinstall 
CD. Totally overwritten and then attached LVM on that partition. 
/dev/sda1 is ext2 bootpartition with the kernel.


Please feel free to contact me for more information.

Best Regards

Georg Gast

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 testing security.debian.org
  500 testing ftp.de.debian.org
  500 squeeze www.lamaresh.net

--- Package information. ---
Depends (Version) | Installed
=-+-===
libc6(= 2.3) | 2.11.1-3
libdevmapper1.02.1 (= 2:1.02.36) | 2:1.02.48-2
libpopt0(= 1.16) | 1.16-1
libuuid1(= 2.16) | 2.17.2-3.1
dmsetup   | 2:1.02.48-2


Package's Recommends field is empty.

Suggests  (Version) | Installed
===-+-===
udev| 157-1
initramfs-tools  (= 0.91)  | 0.94.4
 OR linux-initramfs-tool|
busybox | 1:1.15.3-1
dosfstools  | 3.0.9-1



--- Output from package bug script ---
-- /proc/cmdline
root=/dev/mapper/vg-root ro

-- /etc/crypttab
sda2_crypt UUID=cdfd5ebb-8843-4e85-9020-c5124a7aca66 none luks

-- /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# file system mount point   type  options   dump  pass
proc/proc   procdefaults0   0
/dev/mapper/vg-root /   ext4errors=remount-ro 0   1
# /boot was on /dev/sda1 during installation
UUID=c00bc69c-aa3d-4a7e-94e7-a2730039b24c /boot   ext2 
defaults0   2

/dev/mapper/vg-home /home   ext4defaults0   2
/dev/mapper/vg-usr /usrext4defaults0   2
/dev/mapper/vg-swap noneswapsw  0   0
/dev/cdrom/media/cdrom0   udf,iso9660 user,noauto 0   0

-- lsmod
Module  Size  Used by
ppdev   5030  0
lp  7462  0
parport27954  2 ppdev,lp
acpi_cpufreq  0
cpufreq_conservative 5162  0
cpufreq_powersave902  0
cpufreq_stats   2659  0
cpufreq_userspace   1992  0
sco 7209  2
bridge 39598  0
stp 1440  1 bridge
bnep9427  2
rfcomm 29581  4
l2cap  24736  16 bnep,rfcomm
vboxnetadp  4193  0
vboxnetflt 12415  0
vboxdrv  1723686  2 vboxnetadp,vboxnetflt
binfmt_misc 6431  1
uinput  6376  1
fuse   50190  1
ext2   52969  1
loop   11783  0
firewire_sbp2  11514  0
snd_hda_codec_realtek   235506  1
arc41274  2
ecb 1841  2
snd_hda_intel  19907  1
iwlagn 71756  0
snd_hda_codec  54244  2 snd_hda_codec_realtek,snd_hda_intel
uvcvideo   51743  0
iwlcore77442  1 iwlagn
snd_hwdep   5380  1 snd_hda_codec
videodev   29993  1 uvcvideo
snd_pcm_oss32591  0
snd_mixer_oss  12606  1 snd_pcm_oss
btusb   9785  2
v4l1_compat11442  2 uvcvideo,videodev
snd_pcm60471  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_seq_midi4400  0
snd_rawmidi15515  1 snd_seq_midi
snd_seq_midi_event  4628  1 snd_seq_midi
acer_wmi   12640  0
snd_seq42881  2 snd_seq_midi,snd_seq_midi_event
joydev  8411  0
v4l2_compat_ioctl32 8538  1 videodev
bluetooth  41827  9 sco,bnep,rfcomm,l2cap,btusb
led_class   2433  2 iwlcore,acer_wmi
mac80211  136844  2 iwlagn,iwlcore
snd_timer  15582  2 snd_pcm,snd_seq
nvidia  10670090  30
cfg80211  101432  3 iwlagn,iwlcore,mac80211
psmouse49777  0

Bug#587502: kdevelop: Regression. Too many resources is used while doing background jobs.

2010-06-29 Thread Andriy Beregovenko
Package: kdevelop
Version: 4:4.0.0-2.1
Severity: critical
Tags: squeeze
Justification: breaks unrelated software

About week ago I had several minor updates in Qt libs. After this update
background jobs is eating all recources of my PC(I have AMD Athlon(tm) 64 X2
5200+, 1,8G RAM). While this problem is happend, kdevelop use all available
RAM, after than it use big piece if swap. During this time i see strong
hard disk activity.
Step to reproduce:
Import some CMake based project
Wait until start background jobs(I think this is project sources indexing)
Look for RAM/HDD usage and activity.

Also I would say project tree have cross symlinks inside.
Also as I can see kdevelop can not eat more than 1,8-2G RAM (I see this on
another PC with Intel C2D, 4G RAM inside)

If you need additional info I'm ready to answer.

P.S. kdevelop and kdevplatform version .1 is only recompiled sources available
via deb-src repo(using apt-get source + dpkg-buildpackage). But this has no 
effect,
regression is still present.

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

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

Versions of packages kdevelop depends on:
ii  kdebase-runtime  4:4.4.4-1   runtime components from the offici
ii  kdevelop-data4:4.0.0-2.1 data files for the KDevelop IDE
ii  kdevplatform1-libs   1.0.0-1.1   shared libraries for the KDevelop 
ii  lcov 1.8-1.1 Summarise Code coverage informatio
ii  libc62.11.1-3Embedded GNU C Library: Shared lib
ii  libgcc1  1:4.4.4-5   GCC support library
ii  libkdecore5  4:4.4.4-2   the KDE Platform Core Library
ii  libkdeui54:4.4.4-2   the KDE Platform User Interface Li
ii  libkio5  4:4.4.4-2   the Network-enabled File Managemen
ii  libkparts4   4:4.4.4-2   the Framework for the KDE Platform
ii  libktexteditor4  4:4.4.4-2   the KTextEditor interfaces for the
ii  libprocessui4a   4:4.4.4-1   library for ksysguard process user
ii  libqt4-dbus  4:4.6.3-1   Qt 4 D-Bus module
ii  libqt4-help  4:4.6.3-1   Qt 4 help module
ii  libqt4-network   4:4.6.3-1   Qt 4 network module
ii  libqt4-script4:4.6.3-1   Qt 4 script module
ii  libqt4-webkit4:4.6.3-1   Qt 4 WebKit module
ii  libqtcore4   4:4.6.3-1   Qt 4 core module
ii  libqtgui44:4.6.3-1   Qt 4 GUI module
ii  libstdc++6   4.4.4-5 The GNU Standard C++ Library v3
ii  libsublime1  1.0.0-1.1   an user interface library
ii  libthreadweaver4 4:4.4.4-2   the ThreadWeaver Library for the K

Versions of packages kdevelop recommends:
ii  gdb   7.0.1-2The GNU Debugger
ii  valgrind  1:3.5.0-3  A memory debugger and profiler

Versions of packages kdevelop suggests:
ii  cmake 2.8.1-5A cross-platform, open-source make
ii  kdevelop-l10n-uk [kdevelop-l1 4:4.0.0-2  Ukrainian (uk) localization files 

-- 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#519781: manpages-dev: does not install pthread_* manpages (Re: LinuxThreads manual pages)

2010-06-29 Thread Jonathan Nieder
Hi Joey,

Jonathan Nieder wrote:

  - The pages in man-pages are usable and maintained, and I think we should
ship them.  This requires coordination between the two packages.
Actually, manpages-dev should be changed first (with Replaces: glibc-doc,
this requires no action by the glibc maintainers).

Any thoughts on this?  Would you be more comfortable with a versioned
Replaces: (which requires a little more coordination with glibc
maintainers), or is there anything else I can do to help make this
happen?

In particular, if the problem is lack of time, I would be glad to work
on finding a DD willing to sponsor staging this in experimental so we
could try out both changes (manpages-dev, glibc-doc).

Thanks,
Jonathan



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



Bug#587501: [cryptsetup] cryptsetup luksDump /dev/mapper/sda2_crypt fails

2010-06-29 Thread Milan Broz



On 06/29/2010 12:26 PM, Georg Gast wrote:

Package: cryptsetup
Version: 2:1.1.2-1
Severity: normal

The following happens if i try cryptsetup luksDump /dev/sda2_crypt

cryptsetup luksDump /dev/mapper/sda2_crypt
Device /dev/mapper/sda2_crypt is not a valid LUKS device.


man crypsetup:
 status name reports the status for the mapping name.
 luksDump device dumps the header information of a LUKS partition.

IOW
status reports information about active mapping (including underlying
LUKS partition in report)

luksDump shows the information about LUKS on-disk metadata
(even if there is no mapping).


But see the following:
[code]
cryptsetup status /dev/mapper/sda2_crypt
/dev/mapper//dev/mapper/sda2_crypt is active:
cipher:  aes-cbc-essiv:sha256
keysize: 256 bits
device:  /dev/sda2


So you want cryptsetup luksDump /dev/sda2

Milan



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



Bug#587204: Impress Doesn't Play Audio in PPS/PPT Slides

2010-06-29 Thread Rene Engelhard
On Tue, Jun 29, 2010 at 02:38:03PM +0430, Tsu Jan wrote:
 openoffice.org-impress
 Version: 1:3.2.1-3
 Replaces: openoffice.org ( 1.9), openoffice.org-common (  
 2.0.3+2.0.4m179), openoffice.org-debian-files, openoffice.org2-impress  
 ( 1:3.2.1-3)
 Provides: openoffice.org2-impress
 Depends: openoffice.org-core (= 1:3.2.1-3), openoffice.org-draw (=  
 1:3.2.1-3), libc6 (= 2.1.3), libgcc1 (= 1:4.1.1), libstdc++6 (=  
 4.1.1), libstlport4.6ldbl, ure (= 1.4.0)
 Breaks: openoffice.org-presenter-console ( 1.0.3~)

That's the package information. So what? I can get that with
dpkg --info and apt-cache show, too. Interesting would be whihc
packages exactly are on  the systemn. And no, reportbug doesn't magically
rewrite this.

  And in .odps?

 I made two identical slides with the older version (1:3.2.0-9), one in  
 .odp and the other in .ppt, using the Impress sound gallery. The older  
 version played both correctly but the newer one (1:3.2.1-3) just played  
 the .odt correctly and couldn't play the sound of the .ppt.

Aha, so only .ppt affected. Important info.

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#587504: paraview: On-Line help broken

2010-06-29 Thread Henning Glawe
Package: paraview
Version: 3.6.2-4+b1
Severity: normal

Moin,
selecting 'Help:Help' in the menu makes a messagebox show up:

'Couldn't find pqClient.adp.
Try setting the PARAVIEW_HELP environment variable which points to that file'

dlocate shows that this file can be found in /usr/share/doc/paraview/
starting paraview with PARAVIEW_HELP in env from a terminal and selecting the
help option yields:

gl...@ford:~ export PARAVIEW_HELP=/usr/share/doc/paraview/pqClient.adp
gl...@ford:~ paraview 
QFileInfo::absolutePath: Constructed with empty filename
Unknown option: -server Usage: assistant [Options] -collectionFile file Uses
the specified collection file instead of the default one -showUrl url Shows
the document with the url. -enableRemoteControl Enables Assistant to be
remotely controlled. -show widget Shows the specified dockwidget which can be
contents, index, bookmarks or search. -activate widget Activates the
specified dockwidget which can be contents, index, bookmarks or
search. -hide widget Hides the specified dockwidget which can be
contents, index bookmarks or search. -register helpFile Registers the
specified help file (.qch) in the given collection file. -unregister helpFile
Unregisters the specified help file (.qch) from the give collection file.
-setCurrentFilter filter Set the filter as the active filter.
-remove-search-index Removes the full text search index. -quiet Does not
display any error or status message. -help Displays this help.



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

Versions of packages paraview depends on:
ii  libavcodec52   5:0.6~svn20100603-0.0 library to encode decode multimedi
ii  libavformat52  5:0.6~svn20100603-0.0 ffmpeg file format library
ii  libavutil494:0.5.2-1 ffmpeg utility library
ii  libc6  2.11.2-2  Embedded GNU C Library: Shared lib
ii  libexpat1  2.0.1-7   XML parsing C library - runtime li
ii  libfreetype6   2.3.11-1  FreeType 2 font engine, shared lib
ii  libgcc11:4.4.4-6 GCC support library
ii  libgl1-mesa-glx [l 7.7.1-3   A free implementation of the OpenG
ii  libglu1-mesa [libg 7.7.1-3   The OpenGL utility library (GLU)
ii  libhdf5-serial-1.8 1.8.4-patch1-2Hierarchical Data Format 5 (HDF5) 
ii  libice62:1.0.6-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-16.1   The Independent JPEG Group's JPEG 
ii  libopenmpi1.3  1.4.1-3   high performance message passing l
ii  libpng12-0 1.2.44-1  PNG library - runtime
ii  libpython2.6   2.6.5+20100626-1  Shared Python runtime library (ver
ii  libqt4-assistant   4:4.6.3-1 Qt 4 assistant module
ii  libqt4-network 4:4.6.3-1 Qt 4 network module
ii  libqt4-sql 4:4.6.3-1 Qt 4 SQL module
ii  libqt4-xml 4:4.6.3-1 Qt 4 XML module
ii  libqtcore4 4:4.6.3-1 Qt 4 core module
ii  libqtgui4  4:4.6.3-1 Qt 4 GUI module
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libstdc++6 4.4.4-6   The GNU Standard C++ Library v3
ii  libswscale05:0.6~svn20100603-0.0 ffmpeg video scaling library
ii  libtiff4   3.9.4-1   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.3.3-3 X11 client-side library
ii  libxext6   2:1.1.1-3 X11 miscellaneous extension librar
ii  libxml22.7.7.dfsg-3  GNOME XML library
ii  libxt6 1:1.0.7-1 X11 toolkit intrinsics library
ii  python 2.6.5-5   An interactive high-level object-o
ii  python-support 1.0.9 automated rebuilding support for P
ii  qt4-dev-tools  4:4.6.3-1 Qt 4 development tools
ii  tcl8.4 [tclsh] 8.4.19-4  Tcl (the Tool Command Language) v8
ii  tcl8.5 [tclsh] 8.5.8-2   Tcl (the Tool Command Language) v8
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages paraview recommends:
ii  mpi-default-bin   0.6Standard MPI runtime programs
ii  qt4-dev-tools 4:4.6.3-1  Qt 4 development tools

Versions of packages paraview suggests:
pn  h5utils   none (no description available)
pn  hdf5-toolsnone (no description available)

-- no debconf information

-- 
c u
henning



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



Bug#541658: problem not only in the network

2010-06-29 Thread sasha mal
 Pages optimized for IE6 are not necessarily rendered correctly on IE7
 or IE8.. so much for Microsofts own standards.
Man, you still don't get it. MS changed its standard. Standards do change over 
time, that's normal. 

 I can help with investigation of wireshark on debian from late July 2010 if 
 you say exactly what to type in. At this very moment unfortunately no 
 debian, only OS X, sorry.
 Drop me a line then.

Ok.

 It seems to me that it is just hard for most programmers to correctly (with 
 respect to the standards of Cisco  MS, in case there is a difference to 
 RFCs) implement some algorithm,
 which makes the implementation fail in particular networks.

 The RFCs are the standard, Cisco and MS are not. But Cisco, MS, ...
 try to comply with these standards, afaik. If they didn't the internet
 wouldn't work at all.

That's wrong. Noone tries to comply with each other, at least not too hard. 
RFCs describe how the HTTP should work in their opinion. Cisco and MS do the 
world, using those write-ups as a small notice, but primarily they use their 
own internal documentation, code and hardware which much better depicts the 
reality. Who is right, the opus writers or the programmers and hardware 
builders?

 The W3C does the HTML-standards Microsoft used to blatantly ignore.
It's the other way round.
MS does the browser which W3C and the HTML group blatantly ignores.
HTML is non-conformant with the most widespread browser, so it's just wrong for 
the majority of users.



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



Bug#541658: problem not only in the network

2010-06-29 Thread Mike Hommey
On Tue, Jun 29, 2010 at 06:44:18AM -0400, sasha mal wrote:
  Pages optimized for IE6 are not necessarily rendered correctly on IE7
  or IE8.. so much for Microsofts own standards.
 Man, you still don't get it. MS changed its standard. Standards do change 
 over time, that's normal. 
 
  I can help with investigation of wireshark on debian from late July 2010 
  if you say exactly what to type in. At this very moment unfortunately no 
  debian, only OS X, sorry.
  Drop me a line then.
 
 Ok.
 
  It seems to me that it is just hard for most programmers to correctly (with 
  respect to the standards of Cisco  MS, in case there is a difference to 
  RFCs) implement some algorithm,
  which makes the implementation fail in particular networks.
 
  The RFCs are the standard, Cisco and MS are not. But Cisco, MS, ...
  try to comply with these standards, afaik. If they didn't the internet
  wouldn't work at all.
 
 That's wrong. Noone tries to comply with each other, at least not too hard. 
 RFCs describe how the HTTP should work in their opinion. Cisco and MS do the 
 world, using those write-ups as a small notice, but primarily they use their 
 own internal documentation, code and hardware which much better depicts the 
 reality. Who is right, the opus writers or the programmers and hardware 
 builders?
 
  The W3C does the HTML-standards Microsoft used to blatantly ignore.
 It's the other way round.
 MS does the browser which W3C and the HTML group blatantly ignores.
 HTML is non-conformant with the most widespread browser, so it's just wrong 
 for the majority of users.

Will you just stop the pointless babbling and actually help investigate
your bug ?

Mike



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



Bug#541658: problem not only in the network

2010-06-29 Thread sasha mal
Actually, I've provided all information I could.

I'm absolutely not into wireshark or other network tools of whatever kind,
but, if you are lazy and unable to do that yourself, well, I might do that, but 
only starting in late July 2010.



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



Bug#587505: O: zeromq

2010-06-29 Thread Adrian von Bidder
Package: wnpp
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I had hoped to be able to do more than just play around with zeromq for
a short time, but can't find the time.  I had hoped to avoid filing an
orphaning bug since Mato offered to continue packaging, but I've not
heard from him so far.

  http://lists.zeromq.org/pipermail/zeromq-dev/2010-May/003747.html

Note that I'm still willing to sponsor package uploads, but since I'll
not really use 0mq, I'll only be able to ceck basic packaging related
things.  (Mato: I'd find it cool if you could apply as Debian Maintainer
or Debian Developer so sponsoring your uploads would only be a temporary
solution.)

cheers
- -- vbi


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: get my key from http://fortytwo.ch/gpg/92082481

iEYEARECAAYFAkwp1KIACgkQKqpm2L3fmXr8WwCeOq05oKqu3CVVWqcItimAFTML
URsAn1Si6zTQyTlG92PUON0Ook8PQcHG
=Wh6A
-END PGP SIGNATURE-



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



Bug#579960: ClamAV daemon still fails to start on 32 bit PowerPC

2010-06-29 Thread Thomas Kempf

Hi Michael and Philipp,
first of all than you both, for your immediate action!
I immediately updated to the new packages but clamd died with the same 
symtoms as described by Pete in the very first mail of this thread. 
Could there be any regression in this update?

Thanks
Tom

--
Thomas Kempf

fon + 49 7321 969845
fax + 49 7321 969890
tke...@hueper.de
http://www.hueper.de

Werbeagentur Hüper GmbH
Im Brühl 1
89520 Heidenheim an der Brenz

Registergericht Amtsgericht Heidenheim an der Brenz
HRB 720441

Geschäftsführer
Peter Hüper
Bernd Weser




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



Bug#560823: grub-ieee1275: Error Memory Address not Alligned when trying to boot any menu entry

2010-06-29 Thread Axel Beckert
Colin Watson wrote:
  [...] I get the error message Memory Address not Alligned and
  I'm back to the boot prompt ok of OpenPROM/OpenBoot.
 
 Vladimir Serbinenko (upstream) told me that he believes he's fixed this:
 the problem was apparently that Open Firmware only gives us a very small
 stack, so he had to add the ability to switch the stack pointer to our
 own chunk of memory in order to have a decent stack size.  Any version
 from 1.98+20100527-1 onward should have this fix.

Hey, cool!

 If you still have the affected system in operation, could you please
 try upgrading to the current version in unstable and letting us know
 if it resolves this problem?

Will do.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5



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



Bug#587506: pptp-linux: uses strings without depending on binutils

2010-06-29 Thread Adam Borowski
Package: pptp-linux
Version: 1.7.2-5
Severity: normal


This looks obvious:

[~]# pptpsetup --create [...]
sh: strings: command not found
/usr/sbin/pptpsetup: couldn't find MPPE support in pppd.

[~]$ apt-file search usr/bin/strings
binutils: /usr/bin/strings
binutils-multiarch: /usr/bin/strings

[~]# apt-get install binutils

[~]# pptpsetup --create [...]
Using interface ppp0
Connect: ppp0 -- /dev/pts/4
CHAP authentication succeeded
MPPE 128-bit stateless compression enabled
and then it works


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

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

Versions of packages pptp-linux depends on:
ii  libc6  2.11.1-3  Embedded GNU C Library: Shared lib
ii  ppp2.4.4rel-10.1 Point-to-Point Protocol (PPP) - da

pptp-linux recommends no packages.

pptp-linux 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#571008: still exists

2010-06-29 Thread Sandro Tosi
On Sat, Jun 19, 2010 at 12:14, Michael Bienia mich...@bienia.de wrote:
 On 2010-04-07 10:11:27 -0600, dann frazier wrote:
 Looks like this issue still exists in 0.8.1-1.2.

 The patch got added to -1.2 but forgotten to also add it to
 debian/patches/00list. Therefore it doesn't get applied during build.

Gah, sorry about that: I'm uploading it again (let's hope for the last
time ;) ). Thanks for spotting it!

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



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



Bug#587493: choose-mirror: Strange wget error message in the installation log

2010-06-29 Thread Frans Pop
On Tuesday 29 June 2010, Petter Reinholdtsen wrote:
 In Debian Edu, we automatically search for error: in the installation
 log to detect errors during installation.

Then it seems you need to make an exception for this error.

 When PXE installing, I get this one:

   Jun 28 23:18:29 main-menu[555]: (process:2840): wget: server returned
 error: HTTP/1.0 404 Not Found

So, one wget results in a 404. As choose-mirror tries various possible 
suites and codenames and wgets are used for other purposes as well, a 404 
is always a possibility.

 It is a bogus error message that is creating noise and confusion in
 the Debian Edu test installation.

It's not bogus. It's a useful message for troubleshooting and debugging.
The only thing that is a pity is that logging of the error messages to 
stderr gets delayed until the component completes.

 The URLs in the log seem to work, so I do not understand why wget is
 complaining.  Is there some other wget calls that are not reported to
 the log?

Did you check the code?

 The only wget calls I find in choose-mirror do not throw away error
 messages.  Perhaps they should?  If so, this untested patch should
 implement it:

NACK. The errors are too useful to suppress.



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



Bug#587507: tiger don't recognizes fuse.ltspfs used by LTSP 5.x

2010-06-29 Thread Alexandre Cavalcante Alencar
Package: tiger
Version: 1:3.2.2-6
Severity: normal

tiger don't know fuse.ltspfs that is used by ltspfs and ltsp-server for
local media access on thin client systems

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

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

Versions of packages tiger depends on:
ii  binutils2.18.1~cvs20080103-7 The GNU assembler, linker and bina
ii  bsdmainutils6.1.10   collection of more utilities from 
ii  debconf [debconf-2. 1.5.24   Debian configuration management sy
ii  diff2.8.1-12 File comparison utilities
ii  libc6   2.7-18lenny4 GNU C Library: Shared libraries
ii  net-tools   1.60-22  The NET-3 networking toolkit
ii  ucf 3.0016   Update Configuration File: preserv

Versions of packages tiger recommends:
ii  chkrootkit0.48-8 rootkit detector
ii  john  1.7.2-3active password cracking tool
ii  postfix [mail-transport-agent 2.5.5-1.1  High-performance mail transport ag

Versions of packages tiger suggests:
ii  lsof   4.78.dfsg.1-4 List open files

-- debconf information:
  tiger/mail_rcpt: root
  tiger/policy_adapt:



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



Bug#573144: Re: Bug#573144: linux-image-2.6-686: kernel freezes related to i915 handle error

2010-06-29 Thread maximilian attems
On Tue, Jun 29, 2010 at 11:02:55AM +0200, Zbynek Michl wrote:
 So 2.6.32-3-686 freezes too. I don't know how to debug it, because kernel 
 seems to be completely dead :(
 
 Zbynek

did you check with latest experimental intel driver?

also we will shortly make 2.6.35-rcX available.
the old intel driver support is since some time messy, sorry for that.



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



Bug#571008: postgresql-pllua: diff for NMU version 0.8.1-1.3

2010-06-29 Thread Sandro Tosi
tags 571008 + pending
thanks

Dear maintainer,

I've prepared an NMU for postgresql-pllua (versioned as 0.8.1-1.3) and
uploaded it.

Regards.
diff -u postgresql-pllua-0.8.1/debian/changelog postgresql-pllua-0.8.1/debian/changelog
--- postgresql-pllua-0.8.1/debian/changelog
+++ postgresql-pllua-0.8.1/debian/changelog
@@ -1,3 +1,12 @@
+postgresql-pllua (0.8.1-1.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/00list
+- really added 21_missing_includes.dpatch, so that's applied; thanks to
+  Michael Bienia that identified that; Closes: #571008
+
+ -- Sandro Tosi mo...@debian.org  Tue, 29 Jun 2010 13:25:20 +0200
+
 postgresql-pllua (0.8.1-1.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u postgresql-pllua-0.8.1/debian/patches/00list postgresql-pllua-0.8.1/debian/patches/00list
--- postgresql-pllua-0.8.1/debian/patches/00list
+++ postgresql-pllua-0.8.1/debian/patches/00list
@@ -2,0 +3 @@
+21_missing_includes.dpatch


Bug#587508: RM: python-doc-defaults removal from unstable

2010-06-29 Thread Matthias Klose

Package: ftp.debian.org

please remove python-doc-defaults from unstable; the python-doc package is now 
built from python-defaults.




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



Bug#583580: closed by Michael Gilbert michael.s.gilb...@gmail.com (re: dkms: does not build modules for all installed kernels)

2010-06-29 Thread Andrei Popescu
On Du, 06 iun 10, 17:51:09, Debian Bug Tracking System wrote:
 This is an automatic notification regarding your Bug report
 which was filed against the dkms package:
 
 #583580: dkms: does not build modules for all installed kernels
 
 It has been closed by Michael Gilbert michael.s.gilb...@gmail.com.

[...]

 version: 2.1.1.2-3
 
 modules will only be updated for kernels that have the headers package
 installed. 

$ dpkg -l linux-* | grep ^ii
ii  linux-base2.6.34-1~experimental.1   
  Linux image base package
ii  linux-headers-2.6.26-2-amd64  2.6.26-24 
  Header files for Linux 2.6.26-2-amd64
ii  linux-headers-2.6.26-2-common 2.6.26-24 
  Common header files for Linux 2.6.26-2
ii  linux-headers-2.6.29-2-amd64  2.6.29-5  
  Header files for Linux 2.6.29-2-amd64
ii  linux-headers-2.6.29-2-common 2.6.29-5  
  Common header files for Linux 2.6.29-2
ii  linux-headers-2.6.31-1-amd64  2.6.31-2  
  Header files for Linux 2.6.31-1-amd64
ii  linux-headers-2.6.31-1-common 2.6.31-2  
  Common header files for Linux 2.6.31-1
ii  linux-headers-2.6.32-1-amd64  2.6.32-6  
  Header files for Linux 2.6.32-1-amd64
ii  linux-headers-2.6.32-1-common 2.6.32-6  
  Common header files for Linux 2.6.32-1
ii  linux-headers-2.6.32-2-amd64  2.6.32-8  
  Header files for Linux 2.6.32-2-amd64
ii  linux-headers-2.6.32-2-common 2.6.32-8  
  Common header files for Linux 2.6.32-2
ii  linux-headers-2.6.32-3-amd64  2.6.32-9  
  Header files for Linux 2.6.32-3-amd64
ii  linux-headers-2.6.32-3-common 2.6.32-9  
  Common header files for Linux 2.6.32-3
ii  linux-headers-2.6.32-4-amd64  2.6.32-11 
  Header files for Linux 2.6.32-4-amd64
ii  linux-headers-2.6.32-4-common 2.6.32-11 
  Common header files for Linux 2.6.32-4
ii  linux-headers-2.6.32-5-amd64  2.6.32-15 
  Header files for Linux 2.6.32-5-amd64
ii  linux-headers-2.6.32-5-common 2.6.32-15 
  Common header files for Linux 2.6.32-5
ii  linux-image-2.6-amd64 2.6.32+27 
  Linux 2.6 for 64-bit PCs (meta-package)
ii  linux-image-2.6.26-2-amd642.6.26-24 
  Linux 2.6.26 image on AMD64
ii  linux-image-2.6.29-2-amd642.6.29-5  
  Linux 2.6.29 image on AMD64
ii  linux-image-2.6.30-2-amd642.6.30-8  
  Linux 2.6.30 image on AMD64
ii  linux-image-2.6.31-1-amd642.6.31-2  
  Linux 2.6.31 for 64-bit PCs
ii  linux-image-2.6.32-1-amd642.6.32-6  
  Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-2-amd642.6.32-8  
  Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-3-amd642.6.32-9  
  Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-4-amd642.6.32-11 
  Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-5-amd642.6.32-15 
  Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.34-1-amd642.6.34-1~experimental.1   
  Linux 2.6.34 for 64-bit PCs
ii  linux-kbuild-2.6.26   2.6.26-3  
  Kbuild infrastructure for Linux 2.6.26
ii  linux-kbuild-2.6.29   2.6.29-1  
  Kbuild infrastructure for Linux 2.6.29
ii  linux-kbuild-2.6.31   2.6.31.2-1
  Kbuild infrastructure for Linux 2.6.31
ii  linux-kbuild-2.6.32   2.6.32-1  
  Kbuild infrastructure for Linux 2.6.32
ii  linux-libc-dev2.6.32-15 
  Linux support headers for userspace developm
ii  linux-sound-base  1.0.23+dfsg-1 
  base package for ALSA and OSS sound systems

The only headers missing are the ones for 2.6.30-2-amd64, but:

# dpkg-reconfigure nvidia-kernel-dkms

 Uninstall Beginning 
Module:  nvidia
Version: 195.36.24
Kernel:  2.6.26-2-amd64 (x86_64)
-

Status: Before uninstall, this module version was ACTIVE on this kernel.

nvidia.ko:
 - Uninstallation
   - Deleting from: /lib/modules/2.6.26-2-amd64/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms 

Bug#541658: problem not only in the network

2010-06-29 Thread sasha mal
But I'll try the MTU hint as soon as I can, thank you for that.



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



Bug#587509: (no subject)

2010-06-29 Thread Helge Deller
Package: g++-4.4
Version: 4.4.4-6

g++-4.4 is unable to compile the following source code line successfully with 
the compiler flag std=gnu++0x:
  char table[] = { -1, -1 };

Example:
u...@machine# g++-4.4 -std=gnu++0x -funsigned-char -c /tmp/test.c
/tmp/test.c:1: error: narrowing conversion of ‘-0x1’ from ‘int’ to 
‘char’ inside { }
/tmp/test.c:1: error: narrowing conversion of ‘-0x1’ from ‘int’ to 
‘char’ inside { }

Without the --std=gnu++0x flag, g++-4.4 succeeds:
u...@machine# g++-4.4 -funsigned-char -c /tmp/test.c
done

This is a regression, since g++-4.3 succeeds either with or without the 
-std=gnu++0x flag,
-- 
GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01



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



Bug#541658: problem not only in the network

2010-06-29 Thread sasha mal
If you are lazy to reproduce all problems that iceweasel has, close all bugs, 
not just this one.

I've provided as much details as I possibly could. I'm not a wireshark expert 
to help more. Understand that.

The bug has not been fixed. No clear explanation was provided of why the bug 
occurs.

I'll reopen the bug and will keep reopen it until the bug has been fixed, 
according to the debian guidelines.



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



Bug#587510: solr-common: httpcore.jar is missing in WEB-INF/lib

2010-06-29 Thread Jens Brandt

Package: solr-common
Version: 1.4.0+ds1-2
Severity: important

A symlink to /usr/share/java/httpcore.jar is needed when using 
distributed search on several solr-servers (see 
http://wiki.apache.org/solr/DistributedSearch).


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

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

Versions of packages solr-common depends on:
ii  debconf 1.5.32   Debian configuration 
management sy
ii  default-jre-hea 1.6-36   Standard Java or Java 
compatible R
ii  glassfish-mail  1:2.1.1-b31-2Open source Java EE 5 
Application
ii  libcommons-code 1.4-2encoder and decoders such 
as Base6
ii  libcommons-csv- 0.1-SNAPSHOT+svn678580-1 a Java library for working 
with cs
ii  libcommons-file 1.2.1-5  File upload capability to 
your ser
ii  libcommons-http 3.1-9A Java(TM) library for 
creating HT
ii  libcommons-io-j 1.4-3Common useful IO related 
classes
ii  libjaxp1.3-java 1.3.04-5 Java XML parser and 
transformer AP
ii  libjetty-java   6.1.24-2 Java servlet engine and 
webserver
ii  liblucene2-java 2.9.2+ds1-1  Full-text search engine 
library fo
ii  libservlet2.5-j 6.0.26-3 Servlet 2.5 and JSP 2.1 
Java API c

ii  libslf4j-java   1.5.11-2 Simple Logging Facade for Java
ii  libxml-commons- 1.3.05-2 XML Commons external code - 
DOM, S
ii  openjdk-6-jre-h 6b18-1.8-1   OpenJDK Java runtime, using 
Hotspo
ii  sun-java6-jre [ 6.20-dlj-1   Sun Java(TM) Runtime 
Environment (


Versions of packages solr-common recommends:
ii  solr-tomcat  1.4.0+ds1-2 enterprise search server 
based on


Versions of packages solr-common suggests:
ii  libmysql-java  5.1.10+dfsg-2 Java database (JDBC) driver 
for My




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



Bug#587511: glpi: INVALID_MSGID Message-Id is not valid, according to RFC 2822

2010-06-29 Thread root
Package: glpi
Version: 0.72.4-1
Severity: normal

The validation emails sent by GLPI are sometimes detected as Spam, because the 
Message-id is not valid.
It seems that the symbols  and  aren't written at both ends of the MSGID
It's the only difference I noticed between a valid MSGID and an invalid one.

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

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

Versions of packages glpi depends on:
ii  apache-ssl [httpd] 1.3.34-4.1+etch1  versatile, high-performance HTTP s
ii  apache22.2.9-10+lenny8   Apache HTTP Server metapackage
ii  apache2-mpm-prefor 2.2.9-10+lenny8   Apache HTTP Server - traditional n
ii  dbconfig-common1.8.39common framework for packaging dat
ii  debconf [debconf-2 1.5.24Debian configuration management sy
ii  libapache2-mod-php 5.2.6.dfsg.1-1+lenny8 server-side, HTML-embedded scripti
ii  php5   5.2.6.dfsg.1-1+lenny8 server-side, HTML-embedded scripti
ii  php5-mysql 5.2.6.dfsg.1-1+lenny8 MySQL module for php5

glpi recommends no packages.

glpi suggests no packages.

-- debconf information:
  glpi/password-confirm: (password omitted)
  glpi/mysql/app-pass: (password omitted)
  glpi/mysql/admin-pass: (password omitted)
  glpi/app-password-confirm: (password omitted)
  glpi/remote/newhost:
  glpi/dbconfig-remove:
* glpi/dbconfig-upgrade: true
  glpi/webserver: apache, apache-ssl, apache-perl, apache2
  glpi/upgrade-backup: true
* glpi/configuration:
  glpi/install-error: abort
  glpi/remote/host:
* glpi/dbconfig-install: true
  glpi/upgrade-error: abort
  glpi/mysql/admin-user: root
  glpi/internal/reconfiguring: false
  glpi/remove-error: abort
  glpi/db/app-user: glpi
  glpi/db/dbname: glpi
  glpi/dbconfig-reinstall: false
  glpi/mysql/method: unix socket
  glpi/database-type: mysql
  glpi/remote/port:
  glpi/internal/skip-preseed: false
  glpi/passwords-do-not-match:
  glpi/missing-db-package-error: abort
  glpi/purge: false
  glpi/restart: false



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



Bug#541658:

2010-06-29 Thread sasha mal
And, by the way, the connection where the bug occurs is:
PC - wireless - router called inalámbrico - ADSL - spanish telefone company 
telefonica



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



Bug#587512: solr-common: commons-logging.jar is missing in WEB-INF/lib

2010-06-29 Thread Jens Brandt

Package: solr-common
Version: 1.4.0+ds1-2
Severity: important

A symlink to /usr/share/java/commons-logging.jar is also needed when 
using distributed search on several solr-servers (see 
http://wiki.apache.org/solr/DistributedSearch).


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

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

Versions of packages solr-common depends on:
ii  debconf 1.5.32   Debian configuration 
management sy
ii  default-jre-hea 1.6-36   Standard Java or Java 
compatible R
ii  glassfish-mail  1:2.1.1-b31-2Open source Java EE 5 
Application
ii  libcommons-code 1.4-2encoder and decoders such 
as Base6
ii  libcommons-csv- 0.1-SNAPSHOT+svn678580-1 a Java library for working 
with cs
ii  libcommons-file 1.2.1-5  File upload capability to 
your ser
ii  libcommons-http 3.1-9A Java(TM) library for 
creating HT
ii  libcommons-io-j 1.4-3Common useful IO related 
classes
ii  libjaxp1.3-java 1.3.04-5 Java XML parser and 
transformer AP
ii  libjetty-java   6.1.24-2 Java servlet engine and 
webserver
ii  liblucene2-java 2.9.2+ds1-1  Full-text search engine 
library fo
ii  libservlet2.5-j 6.0.26-3 Servlet 2.5 and JSP 2.1 
Java API c

ii  libslf4j-java   1.5.11-2 Simple Logging Facade for Java
ii  libxml-commons- 1.3.05-2 XML Commons external code - 
DOM, S
ii  openjdk-6-jre-h 6b18-1.8-1   OpenJDK Java runtime, using 
Hotspo
ii  sun-java6-jre [ 6.20-dlj-1   Sun Java(TM) Runtime 
Environment (


Versions of packages solr-common recommends:
ii  solr-tomcat  1.4.0+ds1-2 enterprise search server 
based on


Versions of packages solr-common suggests:
ii  libmysql-java  5.1.10+dfsg-2 Java database (JDBC) driver 
for My




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



Bug#587348: RM: kprogress -- ROM; asked by one of the debian kde maintainers as it create conflict in the kde namespace

2010-06-29 Thread Alexander Reichle-Schmehl
Hi!

* Sune Vuorela s...@debian.org [100628 12:20]:

 I discussed it with Benoit and we agreed that it should not have been 
 introduced as kprogress, but instead as a goto-fai-qprogress or a more saying 
 name what the package is actually about.

Okay, it is nice that you talked and agreed.


[..]
 KDE might or might not introduce a more generic progress bar application, 
 should kdialog --progressbar not suffice. So let us resolve the possible 
 conflicts as early as possible.

However, I don't think that KDE applications may claim the letter k as
their namespace.  Or should we also remove packages like kvm-source,
klogd and keepalived?


Best Regards,
  Alexander



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



Bug#584605: Patch attached allows audacity to run on my system

2010-06-29 Thread Adrian Knoth
On Sun, Jun 27, 2010 at 12:26:10AM -0400, Dave Witbrodt wrote:

 Since the 'audacity' upstream does not allow individuals to create their
 own Bugzilla accounts, and I doubt that I'll be touching much 'audacity'
 code in the near future, I was hoping that one of you on the Debian team
 could use your own connections with upstream to pass along what I have
 learned.  Point them at this bug report, and make it clear that they can

I just forwarded your patch to audacity-devel with a link to our BTS.


Thanks for all your work, it was a pleasure to hunt this bug. ;)


Let's hope it gets included in the next release (should I add it to the
Debian package until then?).


Cheerio

-- 
mail: a...@thur.de  http://adi.thur.de  PGP/GPG: key via keyserver



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



Bug#507788: sysctl.conf read before ipv6 module loaded, so cannot set ipv6 settings

2010-06-29 Thread Craig Small
On Tue, Jun 29, 2010 at 10:56:09AM +0200, Jérémie Rodriguez wrote:
 It seems that procps version = 3.2.8-8 doesn't fix the problem. I run a
 Debian Squeeze and at boot time, I get :
Did you read the README file in /usr/share/doc/procps? It explains some
about this.

 Anyone has the problem anymore ?
People with stock Debian kernels do not.

 - Craig
-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 



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



Bug#573525: Is driver related

2010-06-29 Thread Nathan A. Stine
Package: fofix
Severity: normal

I upgraded to the intel driver in experimental (2.12.0) along with mesa (7.8.1)
and no longer experience this issue.  So this is likely a problem with the
driver that is going into Squeeze.

Either way, it is not a problem with Fofix.

Best,

Nathan A. Stine



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

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

Versions of packages fofix depends on:
ii  python2.6.5-5An interactive high-level object-o
ii  python-imaging1.1.7-1+b1 Python Imaging Library
ii  python-numpy  1:1.3.0-3+b2   Numerical Python adds a fast array
ii  python-opengl 3.0.1~b2-1 Python bindings to OpenGL
ii  python-pygame 1.8.1release-2 SDL bindings for games development
ii  python-pysqlite2  2.6.0-1Python interface to SQLite 3
ii  python-support1.0.9  automated rebuilding support for P

Versions of packages fofix recommends:
ii  python-ogg   1.3+repack-5+b1 Python interface to the Ogg librar
pn  python-pyaudio   none  (no description available)
ii  python-pyvorbis  1.4-2+b1Python interface to the Ogg Vorbis

Versions of packages fofix suggests:
pn  python-psyco  none (no description available)

-- no debconf information



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



Bug#587514: ITP: cpupowerd -- daemon for frequency and voltage control of AMD K8 CPUs with undervolting/overvolting capability

2010-06-29 Thread Antti J. Salminen
Package: wnpp
Severity: wishlist
Owner: Antti J. Salminen antti.salmi...@gmail.com


* Package name: cpupowerd
  Version : 0.2.1
  Upstream Author : Markus Strobl markus.str...@gmx.at
* URL : http://cpupowerd.sourceforge.net/
* License : GPL-2
  Programming Lang: C
  Description : daemon for frequency and voltage control of AMD K8 CPUs 
with undervolting/overvolting capability

 cpupowerd can be used with AMD K8 processors to adjust the CPU frequency 
 and voltage dynamically.
 It can be run as a daemon that dynamically adjusts the processor state
 according to load.
 .
 It's capabilities include overvolting as well as undervolting. This means
 you can use it to run your processor at a voltage lower than what it is
 supposed to run at according to it's specifications and make it run cooler
 and with lower power consumption. WARNING: Doing this could cause damage to
 your hardware so only do it if you know what you're doing and are willing to
 accept the risk.
 . 
 Currently it supports only AMD K8 processors like Athlon, Athlon64 (X2), 
 Sempron, Opteron, Turion...



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



Bug#587507: tiger don't recognizes fuse.ltspfs used by LTSP 5.x

2010-06-29 Thread Alexandre Cavalcante Alencar
Here is a patch to fix it. This patch add fuse.ltspfs to LOCAL file
systems list.


Alexandre Alencar
http://blog.alexandrealencar.net/
http://www.alexandrealencar.net/
COBIT, ITIL, CSM, LPI, MCP-I
--- gen_mounts	2010-06-29 08:11:19.0 -0300
+++ gen_mounts-ltsfs	2010-06-29 08:11:06.0 -0300
@@ -129,6 +129,7 @@
   [ $1 = fuse.truecrypt ]  LOCAL=0# Encrypted filesystem, used in Ubuntu 'hardy'
   [ $1 = fuse.encfs ]  LOCAL=0# Encrypted filesystem
   [ $1 = fuse.gvfs-fuse-daemon ]  LOCAL=0 # Used in Ubuntu 'hardy'
+  [ $1 = fuse.ltspfs ]  LOCAL=0 # Used by LTSP 5.x
   # Filesystems of other OS
   [ $1 = msdos ]  LOCAL=1
   [ $1 = umsdos ]  LOCAL=1


Bug#587515: RM: snoopy -- ROM; dependency removed, functionality available from other package

2010-06-29 Thread Marc Haber
Package: ftp.debian.org
Severity: normal

Hi,

please remove snoopy from unstable. It's not installable any more due
to ld.so.preload-manage having been pulled from under its feet, and
its functionality can be obtained by using auditd - at least on Linux.

If an new method to handle ld.so.preloading of library wrappers is
introduced into Debian, I might think about re-adding snoopy to
Debian, but I don't dare to program this myself.

Greetings
Marc



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



Bug#587516: RFP: django-notify -- A Django application which provides temporary user notifications.

2010-06-29 Thread Jochen Breuer
Package: wnpp
Severity: wishlist


* Package name: django-notify
  Version : 1.1.2
  Upstream Author : Chris Beaven smileych...@gmail com
* URL : http://code.google.com/p/django-notify/
* License : MIT
  Programming Lang: Python
  Description : A Django application which provides temporary user 
notifications.

A Django application which provides temporary user notifications.

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



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



Bug#541658: iceweasel doesn't open research.microsoft.com

2010-06-29 Thread sasha mal
Package: iceweasel
Version: 3.0.6-3

The bug exists, the iceweasel package maintainer is lazy and refuses to handle 
it.

Summary:

Iceweasel cannot open research.microsoft.com as well as many pages on the site 
when cookies are enabled. For example, trying to open

http://research.microsoft.com/en-us/people/thoare/

results in a long interval with Waiting for research.microsoft.com... in the 
status line and afterward in the message

Connection Interrupted
The connection to the server was reset while the page was loading.
The network link was interrupted while negotiating a connection. Please try 
again.
[Try again]


Debugging shows that it's a common bug for other systems too (Safari, some 
ancient Windows setups etc.), but not, say, for lynx, or for relatively modern 
Windows:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541658



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



Bug#587517: devscripts: debsnap deletes the destination directory

2010-06-29 Thread Julien Cristau
Package: devscripts
Version: 2.10.64
Severity: grave
Justification: causes non-serious data loss

debsnap's manpage says the reason it insists the destination directory
doesn't exist yet is to avoid files being accidentally overwritten by
what is fetched from the archive.  However:

if (-d $destdir) {
if ($force_actions) {
my $verbose = 1 if $config_vars{DEBSNAP_VERBOSE} eq 'yes';
remove_tree($destdir, { verbose = $verbose });
mkdir($destdir);
}
else {
fatal Destination dir $destdir already exists.\nPlease (re)move it 
first, or use --force to overwrite.;
}
}
else {
mkdir($destdir);
}

This deletes the destination directory and all its contents, even though
nothing in there might have been accidentally overwritten.  This is
utterly insane, and severely undocumented.

Good thing all I've lost (AFAIK...) are git trees that are mirrored on
git.d.o...

Cheers,
Julien


-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
DEBCHANGE_RELEASE_HEURISTIC=changelog
USCAN_SYMLINK=rename
DEBCHANGE_AUTO_NMU=no
DEBCHANGE_MULTIMAINT_MERGE=yes
DEBSIGN_KEYID=0905E40C

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

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

Versions of packages devscripts depends on:
ii  dpkg-dev  1.15.7.2   Debian package development tools
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  perl  5.10.1-13  Larry Wall's Practical Extraction 

Versions of packages devscripts recommends:
ii  at3.1.12-1   Delayed job execution and batch pr
ii  bsd-mailx [mailx] 8.1.2-0.20100314cvs-1  simple mail user agent
ii  bzr   2.1.2-1easy to use distributed version co
ii  curl  7.21.0-1   Get a file from an HTTP, HTTPS or 
ii  cvs   1:1.12.13-12   Concurrent Versions System
ii  darcs 2.4.4-1a distributed, interactive, smart 
ii  dctrl-tools   2.14   Command-line tools to process Debi
ii  debian-keyring [d 2010.06.08 GnuPG (and obsolete PGP) keys of D
ii  dput  0.9.6  Debian package upload tool
ii  epiphany-browser  2.30.2-2   Intuitive GNOME web browser
ii  equivs2.0.8  Circumvent Debian package dependen
ii  fakeroot  1.14.4-1   Gives a fake root environment
ii  git [git-core]1:1.7.1-1  fast, scalable, distributed revisi
ii  git-core  1:1.7.1-1  fast, scalable, distributed revisi
ii  gnupg 1.4.10-4   GNU privacy guard - a free PGP rep
ii  heirloom-mailx [m 12.4-2 feature-rich BSD mail(1)
ii  iceweasel [www-br 3.5.10-1   Web browser based on Firefox
ii  libauthen-sasl-pe 2.1500-1   Authen::SASL - SASL Authentication
ii  libcrypt-ssleay-p 0.57-2 Support for https protocol in LWP
ii  libjson-perl  2.21-1 Perl module to parse and convert t
ii  libparse-debcontr 2.005-2Easy OO parsing of Debian control-
ii  libsoap-lite-perl 0.712-1Perl implementation of a SOAP clie
ii  libterm-size-perl 0.2-4+b1   Perl extension for retrieving term
ii  libtimedate-perl  1.2000-1   collection of modules to manipulat
ii  liburi-perl   1.54-1 module to manipulate and access UR
ii  libwww-perl   5.836-1Perl HTTP/WWW client/server librar
ii  libyaml-syck-perl 1.09-1 Perl module providing a fast, ligh
ii  lintian   2.4.2  Debian package checker
ii  lsb-release   3.2-23.1   Linux Standard Base version report
ii  lynx-cur [www-bro 2.8.8dev.4-1   Text-mode WWW Browser with NLS sup
ii  lzma  4.43-14Compression method of 7z format in
ii  man-db2.5.7-3on-line manual pager
ii  mercurial 1.5.4-2scalable distributed version contr
ii  openssh-client [s 1:5.5p1-4  secure shell (SSH) client, for sec
ii  patch 2.6-2  Apply a diff file to an original
ii  patchutils0.3.1-2Utilities to work with patches
ii  sensible-utils0.0.4  Utilities for sensible alternative
ii  strace4.5.20-2   A system call tracer
ii  subversion1.6.12dfsg-1   Advanced version control system
ii  unzip 6.0-4  De-archiver for .zip files
ii  w3m [www-browser] 0.5.2-4WWW browsable pager with excellent
ii  wdiff 

Bug#523846: IPv6 patch is incorrect

2010-06-29 Thread Kiss Gabor (Bitman)
03_ipv6-support.dpatch introduces a call to inet_pton:

 if( defined $prop-{reverse_lookups} ){
-  $prop-{peerhost} = gethostbyaddr( inet_aton($prop-{peeraddr}), AF_INET 
);
+  $prop-{peerhost} = ( (length($sockname)  16) ? gethostbyaddr( 
inet_pton(AF_INET6, $prop-{peeraddr}), AF_INET6 ) : gethostbyaddr( 
inet_aton($prop-{peeraddr}), AF_INET ) );
 }

but doest not import it from Socket6:

-use Socket qw(inet_aton inet_ntoa AF_INET AF_UNIX SOCK_DGRAM SOCK_STREAM);
+use Socket qw(inet_aton inet_ntoa AF_INET AF_INET6 AF_UNIX SOCK_DGRAM 
SOCK_STREAM);
+use Socket6 qw(inet_ntop);

So if reverse_lookups is enabled error messages come:

Undefined subroutine Net::Server::inet_pton called at 
/usr/share/perl5/Net/Server.pm line 773.

Gabor



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



Bug#587518: mirror submission for ftp.eutelia.it

2010-06-29 Thread 2
Package: mirrors
Severity: wishlist

Submission-Type: new
Site: ftp.eutelia.it
Type: leaf
Archive-architecture: amd64 i386 ia64 
Archive-ftp: /Debian_Mirror/
Archive-rsync: Debian_Mirror/
IPv6: no
Archive-upstream: ftp.de.debian.org
Updates: once
Maintainer: 2 gilberto.troi...@eutelia.it
Country: IT Italy



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



Bug#587505: O: zeromq

2010-06-29 Thread Martin Lucina
Hi,

I would like to proceed with this. Adrian, are you OK with going over the
workflow with me by email? I would prefer at this stage that you sponsor
the upload of 2.0.7 and maybe one more release, and can then look at
applying for DM/DD.

-mato

avbid...@fortytwo.ch said:
 Package: wnpp
 Severity: normal
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi,
 
 I had hoped to be able to do more than just play around with zeromq for
 a short time, but can't find the time.  I had hoped to avoid filing an
 orphaning bug since Mato offered to continue packaging, but I've not
 heard from him so far.
 
   http://lists.zeromq.org/pipermail/zeromq-dev/2010-May/003747.html
 
 Note that I'm still willing to sponsor package uploads, but since I'll
 not really use 0mq, I'll only be able to ceck basic packaging related
 things.  (Mato: I'd find it cool if you could apply as Debian Maintainer
 or Debian Developer so sponsoring your uploads would only be a temporary
 solution.)
 
 cheers
 - -- vbi
 
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)
 Comment: get my key from http://fortytwo.ch/gpg/92082481
 
 iEYEARECAAYFAkwp1KIACgkQKqpm2L3fmXr8WwCeOq05oKqu3CVVWqcItimAFTML
 URsAn1Si6zTQyTlG92PUON0Ook8PQcHG
 =Wh6A
 -END PGP SIGNATURE-
 
 



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



Bug#587520: savelog: allow using xz to compress

2010-06-29 Thread Ariel
Package: debianutils
Version: 3.2.2
Severity: wishlist
File: /usr/bin/savelog

Savelog has an option -j to use bzip2, I would like to request an option to use 
xz as the compression tool.

Personally I think people will transition from bzip2 to xz, so it would be nice 
to be ready for it.

Gnu tar is using -J for xz compression, so I suggest doing the same.

   -Ariel 

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

Kernel: Linux 2.6.30 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages debianutils depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  sensible-utils0.0.4  Utilities for sensible alternative

debianutils recommends no packages.

debianutils 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#587521: ITP: dose3

2010-06-29 Thread Ralf Treinen
Package: wnpp
Severity: wishlist
Owner: Ralf Treinentrei...@debian.org

Package name:dose3
Version: 0.7
Upstream Author: Pietro Abate pietro.ab...@pps.jussieu.fr 
URL: http://gforge.info.ucl.ac.be/frs/download.php/160/dose3-0.7.tar.gz
Licence: GPL =3
Programming Language: OCaml
Tentative Description:
  Dose3 is a framework made of several OCaml libraries for managing
  distribution packages and their dependencies.

  Though not tied to any particular distribution, dose3 constitutes a pool of
  libraries which enable analyzing packages coming from various
  distributions.

  Besides basic functionalities for querying and setting package properties,
  dose3 also implements algorithms for solving more complex problems
  (monitoring package evolutions, correct and complete dependency resolution,
  repository-wide uninstallability checks). 
Maintainer: Debian OCaml Maintainers

Remark: This is the new implementation of the dose2 libraries and the 
accompanying tools, in particular edos-distcheck. We will for the moment
upload only to experimental until we are comfident that the new
implementation can be used as a replacement of the old one. During that
time we will use names of binary packages that do not clash with existing
names of binary packages in unstable. Once we know everything is OK we will
transition from the old edos-distcheck to the new one.

-Ralf.
-- 
Ralf Treinen
Laboratoire Preuves, Programmes et Systèmes
Université Paris Diderot, Paris, France.
http://www.pps.jussieu.fr/~treinen/



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



Bug#587517: [PATCH] debsnap: don't delete the destination directory

2010-06-29 Thread Julien Cristau
Also don't require --force if destdir is the cwd, as documented.
---
 scripts/debsnap.1  |4 +---
 scripts/debsnap.pl |6 +-
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/scripts/debsnap.1 b/scripts/debsnap.1
index f7e59fe..28775c3 100644
--- a/scripts/debsnap.1
+++ b/scripts/debsnap.1
@@ -37,9 +37,7 @@ insist the destination directory does not exist yet unless it 
is explicitly
 specified to be '.' (the current working directory).  This is to avoid files
 being accidentally overwritten by what is fetched from the archive and to
 provide a guarantee for other scripts that only the files fetched will be
-present there upon completion.  Note that this option will remove the
-\fIdestination\fP directory and all of its contents prior to beginning the
-download.
+present there upon completion.
 
 .TP
 .BR \-v ,  \-\-verbose
diff --git a/scripts/debsnap.pl b/scripts/debsnap.pl
index 3fe0738..e4dff76 100755
--- a/scripts/debsnap.pl
+++ b/scripts/debsnap.pl
@@ -21,7 +21,6 @@ use warnings;
 use LWP::Simple;
 use JSON -support_by_pp;
 use File::Basename;
-use File::Path qw/remove_tree/;
 
 my $progname = basename($0);
 my $modified_conf_msg = '';
@@ -215,10 +214,7 @@ else {
 
 my $baseurl = $config_vars{DEBSNAP_BASE_URL}/mr/package/$package/;
 if (-d $destdir) {
-if ($force_actions) {
-my $verbose = 1 if $config_vars{DEBSNAP_VERBOSE} eq 'yes';
-remove_tree($destdir, { verbose = $verbose });
-mkdir($destdir);
+if ($force_actions || $destdir == .) {
 }
 else {
 fatal Destination dir $destdir already exists.\nPlease (re)move it 
first, or use --force to overwrite.;
-- 
1.7.1




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



Bug#548918: uninstallable as ld.so.preload-manager has been removed

2010-06-29 Thread Marc Haber
Hi,

On Tue, Sep 29, 2009 at 06:50:52PM +0200, Luk Claes wrote:
 snoopy is uninstallable in unstable as one of its dependencies 
 ld.so.preload-manager has been removed.

I have filed a removal request against snoopy as I don't see the time
to re-implement ld.so.preload-manager's functionality from inside
snoopy.

snoopy's functionality can - on Linux - be imitated by using auditd.

If Debian will have a new way to handle ld.so.preload in a
standardized process, I might re-introduce snoopy to Debian.

Greetings
Marc

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



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



Bug#584605: Patch attached allows audacity to run on my system

2010-06-29 Thread Dave Witbrodt

I just forwarded your patch to audacity-devel with a link to our BTS.

Thanks for all your work, it was a pleasure to hunt this bug. ;)


Hmmm, when I looked at the upstream website and noticed they had a 
Bugzilla, I assumed that would be the most appropriate way to share my 
info.  I didn't even bother to notice their mailing lists!  (Very 
embarassing  I could easily have subscribed -- temporarily -- and 
let them know about all of this myself.)


At any rate, thanks for forwarding the info.



Let's hope it gets included in the next release (should I add it to the
Debian package until then?).


On the question of having a temporary Debian patch...  this is judgment 
call, so let's consider some facts:


1)  So far, I'm the only one reporting a segfault on startup having to 
do with the 1.3.7 - 1.3.8 open_mixer() changes


2)  I have the patch I need to make 1.3.8+ work on my hardware

In your place, my approach would be to wait to see how upstream responds 
instead of immediately producing a patched Debian package.  If upstream 
seems to be taking a long time without incorporating the change, and if 
even _one_ more bug report about the same issue hits the Debian BTS 
(which I doubt will happen), then I would release a patched package.


Naturally, I don't know (yet) about the Debian policies, practices, and 
standard operating procedures that govern decisions like this... if 
there are any.  If you are asking whether I would like to see official 
DEBs... just for me... then I say, No need!:


  $ apt-cache policy audacity
  audacity:
Installed: 1.3.12-3+fix04
Candidate: 1.3.12-3+fix04
Version table:
   *** 1.3.12-3+fix04 0
  100 /var/lib/dpkg/status
   1.3.12-3 0
  990 http://debian.osuosl.org unstable/main Packages


Thanks (to the whole team) for all of your work,
and especially to Adrian for all of the helpful interaction,
Dave W.



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



Bug#587522: ITP: twms -- tiny WMS service

2010-06-29 Thread Andrew O. Shadoura
Package: wnpp
Severity: wishlist
Owner: Andrew O. Shadoura bugzi...@tut.by

* Package name: twms
  Version : 0.01q
  Upstream Author : Darafei Praliaskouski m...@komzpa.net
* URL : http://code.google.com/p/twms/
* License : GPL-3+
  Programming Lang: Python
  Description : tiny WMS service

 tWMS is a tiny WMS-like script for exporting your map
 tiles to WMS-enabled applications.

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



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



Bug#587348: RM: kprogress -- ROM; asked by one of the debian kde maintainers as it create conflict in the kde namespace

2010-06-29 Thread Sune Vuorela
On Tuesday 29 June 2010 14:28:28 Alexander Reichle-Schmehl wrote:
  KDE might or might not introduce a more generic progress bar application,
  should kdialog --progressbar not suffice. So let us resolve the possible
  conflicts as early as possible.
 
 However, I don't think that KDE applications may claim the letter k as
 their namespace.  Or should we also remove packages like kvm-source,
 klogd and keepalived?

No. I also don't think that KDE appliKations should Klaim Kino or Kernel or 
Kfreebsd.

But in the Kase of kprogress, both in name and desKription, it sounds like a 
very generiK tool, but is infaKt a tool specifiK to goto/gosa/fai.

/Sune



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



Bug#507788: sysctl.conf read before ipv6 module loaded, so cannot set ipv6 settings

2010-06-29 Thread Jérémie Rodriguez
Hello,

My fault, I didn't read the README file (RTFM is always for others :) ).

I tried one of the solutions explained in this file : putting ipv6 in
/etc/modules. After a reboot, the kernel system variables concerning
IPv6 are set as expected.

For information, I use the Debian Xen kernel which doesn't have IPv6
compiled-in but use the module instead.

Cheers.


On 06/29/2010 02:32 PM, Craig Small wrote:
 On Tue, Jun 29, 2010 at 10:56:09AM +0200, Jérémie Rodriguez wrote:
 It seems that procps version = 3.2.8-8 doesn't fix the problem. I run a
 Debian Squeeze and at boot time, I get :
 Did you read the README file in /usr/share/doc/procps? It explains some
 about this.
 
 Anyone has the problem anymore ?
 People with stock Debian kernels do not.
 
  - Craig

-- 
Jérémie Rodriguez

Equipe Réseau Intra et Télécom
Centre Inter-Etablissements pour les Services Réseaux (CISR)

Université Claude Bernard - Lyon 1
Bât. Doyen Braconnier
21 avenue Claude Bernard
69622 Villeurbanne Cedex

Tél. : 04-72-43-10-38 (interne : 31038)
Mobile : 06-78-00-32-82



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



Bug#587523: debsnap: want option to download binary packages

2010-06-29 Thread Julien Cristau
Package: devscripts
Version: 2.10.64
Severity: wishlist

In order to test/bisect stuff, it would be convenient to be able to use
debsnap to download binary packages from snapshot.d.o, e.g.
$ debsnap -a amd64 xterm 256-1
to get xterm_256-1_amd64.deb.  Not sure if that should get all debs from
a given source package, or just the one specified.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#560867: [rt.cpan.org #58911] can't write to remote files lines longer than 32748 chars

2010-06-29 Thread Salvatore Bonaccorso
Hi

On Mon, Jun 28, 2010 at 04:35:41PM -0400, Rafael Kitover via RT wrote:
 URL: https://rt.cpan.org/Ticket/Display.html?id=58911 
 
 I'll take a look, what happens if you split the string in half and write 
 twice?

Thanks. If I split the print up into two calls, each writing 16374
chars it doesn't hang.

Please let me know if I can try to provide more informations. The
version currently used is 0.30 (0.30-1 package in Debian).

Bests and thanks
Salvatore


signature.asc
Description: Digital signature


Bug#515200: pycurl and openssl

2010-06-29 Thread Guido Trotter

Hi Sandro,

We stomped into #515200 the other day, while looking for ways to use pycurl to
replace some functionality in our code. I'm willing to followup with Debian
Legal, but looking at the license of pycurl (which is LGPL or MIT/X) there
should definitely be no problem in compiling it with OpenSSL. What is forbidden
is linking pure GPL programs with OpenSSL, but this wouldn't happen here, as
pycurl is not under the GPL. What would be less clear is the status of pure GPL
software using pycurl+openssl (rather than pycurl+gnutls), and distributed by
Debian. But various packages can continue to depend on the gnutls version to
stay compatible, and also I'm not even sure using a python library would
qualify as linking. Anyway, would you agree that if debian-legal is not
against, we can proceed providing an alternative version? The license seems to
be completely allowing this.

Thanks,

Guido




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



  1   2   3   4   >