Bug#597569: unblock: apt-listchanges/2.85.5

2010-09-21 Thread Christian PERRIER
Quoting Sandro Tosi (mo...@debian.org):
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package apt-listchanges
 
 Meh, I'm really sorry for the mess: with 2.85.4 I wrongly updated the debconf
 template instead of the program po file.. with this upload I'm fixing this.
 
 unblock apt-listchanges/2.85.5


With strong support from my side..:-)

Thanks for your reactivity, Sandro



signature.asc
Description: Digital signature


Bug#547665: RFP: valide -- IDE for Vala

2010-09-21 Thread David Paleino
2010/9/21 Nicolas Joseph nicolas.jos...@valaide.org:
 Le 20/09/2010 09:15, David Paleino a écrit :
    - long descriptions are a bit too short :)

 I find inspiration and I try to improve this.

Great, thanks :)

    - debian/valide.lintian: should be named valide.lintian-overrides. After
      that, you can drop valide.dirs, and the hack in debian/rules to install
      this file.

 I renamed the lintian file, but I don't know how to hack debian/rules.

I meant: rename that file (you did it), and then remove the
cp debian/valide.lintian /usr/share/lintian-overrides/ line from
debian/rules. :)
There's dh_lintian (called automatically) taking care of creating the directory
and putting the file there.

 Except my comments, I fixed the other problems in the upsteam
 repository: https://code.launchpad.net/~valide/valide/trunk

Seems like I can't find the fixed files :)

(for instance, debian/changelog still lists all the versions, and the first
one is also targetted at lucid...)

I'll wait for a .dsc on mentors.debian.net ;)

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



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



Bug#547665: RFP: valide -- IDE for Vala

2010-09-21 Thread Nicolas Joseph
Le 21/09/2010 08:14, David Paleino a écrit :
 repository: https://code.launchpad.net/~valide/valide/trunk
 
 Seems like I can't find the fixed files :)
   
With the push it's better...

 (for instance, debian/changelog still lists all the versions, and the first
 one is also targetted at lucid...)

 I'll wait for a .dsc on mentors.debian.net ;)

   
ok, but it's the development version, what is the correct version?
0.7.1-1~dev (the next release is 0.7.1)?



signature.asc
Description: OpenPGP digital signature


Bug#597599: munin-plugins-extra: ejabberd_ script breaks munin-graph and fails with current versions of ejabberd

2010-09-21 Thread Gerald Turner
Package: munin-plugins-extra
Version: 1.4.5-2
Severity: normal

As for the first part of this bug, once ejabberd_ plugins have been
enabled, I get a bazillion logs like the following, and all graphing
fails:

  2010/09/20 09:40:38 [WARNING] munin_set_var_loc: Setting unknown option 
'uptime' at Unzane;nyarlathotep.unzane.com:ejabberd_uptime Can't use string 
(in days) as a HASH ref while strict refs in use at 
/usr/share/perl5/Munin/Master/Utils.pm line 609.

This is because the script has a broken line of config output for the
uptime flavor:

  echo 'uptime in days'

Next part of this bug is that the scripts invocation of ejabberdctl
seems to use an old syntax that is no longer supported with the ejabberd
2.1.5 versions currently in Debian squeeze.

In particular it's exeucting commands like:

  ejabberdctl vhost $host stats onlineusers

The 'vhost $host' args are gone and should be substitued with subcommand
specific bits like:

  ejabberdctl stats-host onlineusers $host

Attached is a simple patch that solves both.

Thanks!

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

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

Versions of packages munin-plugins-extra depends on:
ii  munin-node1.4.5-2network-wide graphing
framework (n
ii  perl  5.10.1-14  Larry Wall's Practical
Extraction

munin-plugins-extra recommends no packages.

Versions of packages munin-plugins-extra suggests:
pn  libnet-netmask-perl   none (no description available)
pn  libnet-telnet-perlnone (no description available)
ii  python2.6.5-13   interactive high-level
object-orie

-- no debconf information

-- 
Gerald Turner   Email: gtur...@unzane.com   JID: gtur...@unzane.com
GPG: 0xFA8CD6D5  21D9 B2E8 7FE7 F19E 5F7D  4D0C 3FA0 810F FA8C D6D5
--- munin-1.4.5.orig/plugins/node.d/ejabberd_.in	2009-11-20 15:41:39.0 -0800
+++ munin-1.4.5/plugins/node.d/ejabberd_.in	2010-09-20 23:16:52.0 -0700
@@ -220,7 +220,7 @@
 	done;
 elif [ $MODE = uptime ]; then
 	echo 'graph_title Uptime of ejabberd server'
-	echo 'uptime in days'
+	echo 'graph_vlabel uptime in days'
 	echo uptime.label uptime
 	echo 'uptime.draw AREA'
 fi
@@ -237,7 +237,7 @@
 if [ $MODE = users ]; then
 for host in $vhosts; do
 	formathost=$(echo $host | tr '.' '_')
-	echo connected_users_$formathost.value $($EJCTL vhost $host stats onlineusers); 
+	echo connected_users_$formathost.value $($EJCTL stats-host onlineusers $host); 
 	echo connected_unique_users_$formathost.value $($EJCTL connected-users | awk -v var=$host -F/ '{users[$1]} END {for (user in users) {if (index(user,var)) {count++}} print count}'); 
 done
 exit 0
@@ -246,7 +246,7 @@
 if [ $MODE = registrations ]; then
 for host in $vhosts; do
 	formathost=$(echo $host | tr '.' '_')
-	num=$($EJCTL vhost $host stats registeredusers)
+	num=$($EJCTL stats-host registeredusers $host)
 if [ $? != 0 ]; then
 num=U
 fi
@@ -259,7 +259,7 @@
for host in $vhosts; do
 	formathost=$(echo $host | tr '.' '_')
 		for status in $statuses; do
-			num=$($EJCTL vhost $host status-num $status)
+			num=$($EJCTL status-num-host $status $host)
 			if [ $? != 0 ]; then
 num=U
 			fi
@@ -284,12 +284,12 @@
 for host in $vhosts; do
 for num in $days; do
 formathost=$(echo $host | tr '.' '_')
-echo usersindays_${formathost}_${num}.value $($EJCTL vhost $host num-active-users $num);
+echo usersindays_${formathost}_${num}.value $($EJCTL num-active-users $host $num);
 done;
 done;
 	exit 0
 fi
 
 if [ $MODE = uptime ]; then
-	echo uptime.value $($EJCTL stats uptime-seconds | awk '{printf %.2f, $1/86400}')
+	echo uptime.value $($EJCTL stats uptimeseconds | awk '{printf %.2f, $1/86400}')
 fi


Bug#586774: Random X server crashes

2010-09-21 Thread Andreas Beckmann
On Saturday, 18. September 2010 17:42:19 Marc F. Clemente wrote:
 I upgraded to 195.36.31-2 on Aug 26.  No problems.

 I upgraded to 195.36.31-3 on Sep 3.  No problems...  Until Sep 12.  Now
 I start getting random crashes again.  This is what Xorg.log says:

Please try 256.53-1 (in experimental).


Thanks

Andreas



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



Bug#595390: invalid dkms conf

2010-09-21 Thread Andreas Beckmann
Hi Ivan,

did you try reinstalling dkms? Eventually even purge dkms and install it 
again.


Andreas



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



Bug#582076: nvidia-glx: TwinViewXineramaInfoOrder causes segfault in X server on startup

2010-09-21 Thread Andreas Beckmann
On Wednesday, 19. May 2010 13:03:41 Russell Stuart wrote:
 On Tue, 2010-05-18 at 16:12 +0200, Andreas Beckmann wrote:
  That would be better since only you can provide all the information
  required by NVIDIA, e.g. running the nvidia-bug-report.sh script (which
  is included in the Debian nvidia-glx package).

 I have submitted a bug report for this to linux-b...@nvidia.com.

Did you try the new upstream releases? Eventually something has been fixed 
there. Debian packages are available:

unstable: 195.36.31-3
experimental: 256.53-1

Andreas



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



Bug#595903: apt-setup: Fail to set up DVD as APT source during installation - Bug Reopen

2010-09-21 Thread Prema
Source : apt-setup
Version: 0.47

This bug still exists in the latest fix also.
The patch in 0.47 version does add an entry in /etc/apt/sources.list.,
 but the grub installation and selecting a Standard system install under
tasksel  fails with an error,
File not found  and Failed to fetch cdrom errors.
Manually doing a apt-get update inside /target also didnt help.


-- 
With luv n cheers.,
Prema


Bug#424243: nvidia-kernel-source: nvidia kernel module is eating way too much of power

2010-09-21 Thread Andreas Beckmann
On Wednesday, 16. May 2007 00:06:45 Christophe Troestler wrote:
 Package: nvidia-kernel-source
 Version: 1.0.8776-4
 Severity: wishlist

 I used PowerTOP (http://www.linuxpowertop.org/ ; unstable package
 powertop) to try to optimize my system for power consumption and the
 nvidia kernel module is second on the list with more and 144 wakeups
 per second even when idle.  It would be nice if it was less energy
 hungry.  (I know this issue needs to be forwarded upstream but I post
 it here for the record.)

Is this issue still present with the current driver versions in unstable 
(195.36.31-3) and experimental (256.53-1)?

Forwarding this problem upstream has to be done by you because following 
NVIDIA's bug reporting guidelines you will have to run their 
nvidia-bug-report.sh script (included in the Debian packages). For more 
infomation, look here: http://www.nvnews.net/vbulletin/showthread.php?t=46678


Andreas



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



Bug#597473: closed by Mehdi Dogguy me...@dogguy.org (Re: Bug#597473: unblock: boinc/6.10.58+dfsg-3)

2010-09-21 Thread Steffen Möller
On 09/20/2010 09:39 PM, Debian Bug Tracking System wrote:
 This is an automatic notification regarding your Bug report
 which was filed against the release.debian.org package:
 
 #597473: unblock: boinc/6.10.58+dfsg-3

Many thanks for your review!
Steffen



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



Bug#597600: postgresql-9.0: pg_upgrade fails because it can't find pg_upgrade_support.so

2010-09-21 Thread Paolo Scarabelli
Package: postgresql-9.0
Version: 9.0.0-1
Severity: important


I just installed postgresql 9.0 from sid, installation went fine but when I try 
to run 
pg_upgrade to upgrade a postgres 8.4 cluster I get the following error:

/usr/lib/postgresql/9.0/bin/pg_upgrade -d /var/lib/postgresql/8.4/main -D 
/var/lib/postgresql/9.0/main -b /usr/lib/postgresql/8.4/bin -B 
/usr/lib/postgresql/9.0/bin -v

Running in verbose mode
sh: /usr/lib/postgresql/8.4/bin/pg_config: No such file or directory
sh: /usr/lib/postgresql/9.0/bin/pg_config: No such file or directory
Performing Consistency Checks
-
Checking old data directory (/var/lib/postgresql/8.4/main)  ok
Checking old bin directory (/usr/lib/postgresql/8.4/bin)ok
Checking new data directory (/var/lib/postgresql/9.0/main)  ok
Checking new bin directory (/usr/lib/postgresql/9.0/bin)ok


pg_upgrade_support.so must be created and installed in 
/pg_upgrade_support.so


Please note that, although not visible in the above pasted output, the error 
line I see in the terminal
looks like the following:

pg_upgrade_support.so must be created and installed in [0006]pgrade_support.so

[0006] represents a non ascii character which I see as a square containing the 
numbers 0006 on
two lines (if it's not clear I can send you a screenshot).


Please, let me know if you need more information.


Regards,


Paolo.


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

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

Versions of packages postgresql-9.0 depends on:
ii  libc6 2.11.2-5   Embedded GNU C Library: Shared lib
ii  libcomerr21.41.12-2  common error description library
ii  libgssapi-krb5-2  1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries - k
ii  libkrb5-3 1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries
ii  libldap-2.4-2 2.4.23-5   OpenLDAP libraries
ii  libpam0g  1.1.1-6Pluggable Authentication Modules l
ii  libpq59.0.0-1PostgreSQL C client library
ii  libssl0.9.8   0.9.8o-2   SSL shared libraries
ii  libxml2   2.7.7.dfsg-4   GNOME XML library
ii  locales   2.11.2-5   Embedded GNU C Library: National L
ii  postgresql-client-9.0 9.0.0-1front-end programs for PostgreSQL 
ii  postgresql-common 110PostgreSQL database-cluster manage
ii  ssl-cert  1.0.26 simple debconf wrapper for OpenSSL
ii  tzdata2010l-1time zone and daylight-saving time

postgresql-9.0 recommends no packages.

Versions of packages postgresql-9.0 suggests:
ii  pidentd [ident-server]  3.0.19.ds1-5 TCP/IP IDENT protocol server with 

-- 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#597450: Confirmed Workaround

2010-09-21 Thread Theppitak Karoonboonyanan
reassign 597450 libwnck 2.30.4-1
thanks

On Tue, Sep 21, 2010 at 9:38 AM, Theppitak Karoonboonyanan
t...@linux.thai.net wrote:

 And a new culprit is found: libwnck. Downgrading libwnck22 to
 2.30.3-1 solves the problem, even with the current gnome-panel
 2.30.2-2 in sid.

And what's wrong with 2.30.4-1 is in upstream commit bbe6f86
([core, wnckprop] Stop using gdk_display). As part of the commit,
a member 'display' has been added to LayoutManager, but is never
initialized.

The attached patch fixes it in my box.

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


02_layout_manager_init.patch
Description: Binary data


Bug#585131: Backtrace

2010-09-21 Thread Ralf Hildebrandt
I recompiled pfqueue with debug information and retrieved this
backtrace:

Program received signal SIGABRT, Aborted.
0xb7fe2424 in __kernel_vsyscall ()
(gdb) bt
#0  0xb7fe2424 in __kernel_vsyscall ()
#1  0xb7e5f751 in raise () from /lib/i686/cmov/libc.so.6
#2  0xb7e62b82 in abort () from /lib/i686/cmov/libc.so.6
#3  0xb7e9618d in ?? () from /lib/i686/cmov/libc.so.6
#4  0xb7ea0281 in ?? () from /lib/i686/cmov/libc.so.6
#5  0xb7ea1ad8 in ?? () from /lib/i686/cmov/libc.so.6
#6  0xb7ea4bbd in free () from /lib/i686/cmov/libc.so.6
#7  0x0804a6c9 in show_cursor () at fe_ncurses.c:497
#8  0x0804b567 in queue_show () at fe_ncurses.c:700
#9  0x0804c6f8 in main (argc=1, argv=0xbc84) at fe_ncurses.c:
(gdb) 

Alas, 
#define BUF_SIZE 250
and later:
buf = (char*)malloc(BUF_SIZE);
...
free ( buf );

:(

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de




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



Bug#597452: nvidia-glx: libGL.so symlink missing

2010-09-21 Thread Andreas Beckmann
On Monday, 20. September 2010 22:16:18 Manuel Bilderbeek wrote:
...
 Well, I guess that's OK...
The links look fine.

 But how did it become broken!? (I've never messed around with things
 outside of normal aptitude.)

Do you have any old versions of the nvidia or nvidia-legacy or fglrx packages 
in the config-files-remaining state?

COLUMNS=200 dpkg -l '*nvidia*' '*fglrx*' | grep ^rc


Andreas



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



Bug#592872: Amarok doesn't play audio cd

2010-09-21 Thread sander
Hi!
Is there anything I can do to help find the cause of this?

--
Oliver Sander

 Hello,

 On penktadienis 13 Rugpjūtis 2010 18:01:30 Oliver Sander wrote:
 Package: amarok
 Version: 2.3.1-1
 Severity: normal

 Amarok doesn't play my audio CDs. I have tried two ways:

 a) Open amarok from the device manager which correctly
 suggests amarok to play the inserted CD. Then amarok
 shows n tracks, with n being the correct number of tracks
 on the cd. However, the names of the songs are not
 recognized, and they all have length 0:00. None of the
 songs is playable.

 I can't reproduce this one.

 b) Start amarok from a konsole. Initially, the cd is not
 mentioned in the playlist. I go to playlist -- add media.
 The file dialog shows the audio cd and all files on it
 the way dolphin would (all correct, apparently). However,
 when I try to select a track, the file dialog closes directly
 after clicking on the file name, before clicking 'okay'.
 Needless to say: nothing is played again.

 The cd plays nicely if I copy it to my harddrive first.

 Well, it's true that it happens sometimes. Amarok fails to detect Audio CD
 or
 its contents (be it startup or on insertion of the disc). However, I can't
 reproduce this part of the bug reliably. I suspect KDE audiocd:// kioslave
 should be blamed for this...

 --
 Modestas Vainius modes...@vainius.eu






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



Bug#596236: xserver-xorg-video-intel: xrandr shows extra LVDS output

2010-09-21 Thread Julien Cristau
On Tue, Sep 21, 2010 at 01:57:46 +0300, Dmitry Baryshev wrote:

 Then bootsplash will stop working, i915.modeset=0 fixes this.
 
I don't care about bootsplash.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#592204: nvidia-vdpau-driver: Segfault on VDPAU using apps that call XCloseDisplay

2010-09-21 Thread Andreas Beckmann
On Wednesday, 25. August 2010 03:33:38 Andreas Beckmann wrote:
 I could reproduce this with mplayer from Debian (but not the one from
 debian-multimedia.org) and driver 195.36.31. Stacktrace looked like this:
...
 Let's check this again once we got 256.xx driver packages out ... and
 report to upstream if the problem still exists.

256.53-1 is in experimental, but I can't test it right now. Can you try it? 
And test with the new libvdpau, too.


Andreas



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



Bug#597601: FTBFS : cr_atomic.h: No such file or directory

2010-09-21 Thread Jonathan KLEE
Source: blcr
Version: 0.8.2-13

Hi,

I'm trying to build blcr (0.8.2-13) on x86_64 from scratch with pbuilder but
I have the following error :

libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../libcr -I.. -D_GNU_SOURCE
-D_REENTRANT -I../include -I../../include -I../../libcr/arch/i686/ -Wall
-Wno-unused-function -Wall -g -O2 -MT libcr_la-cr_async.lo -MD -MP -MF
.deps/libcr_la-cr_async.Tpo -c ../../libcr/cr_async.c  -fPIC -DPIC -o
.libs/libcr_la-cr_async.o
In file included from ../../libcr/cr_async.c:37:
../../libcr/cr_private.h:63:23: error: cr_atomic.h: No such file or
directory
In file included from ../../libcr/cr_private.h:65,
 from ../../libcr/cr_async.c:37:
../../libcr/cr_rb_lock.h:47: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'cri_rb_lock_t'
../../libcr/cr_rb_lock.h:52: error: expected ')' before '*' token
../../libcr/cr_rb_lock.h:61: error: expected ')' before '*' token
../../libcr/cr_rb_lock.h:74: error: expected ')' before '*' token

Jonathan


Bug#597592: brasero: On-the-fly burning segfaults Brasero

2010-09-21 Thread Josselin Mouette
Hi,

Le lundi 20 septembre 2010 à 23:44 -0400, Paul Jones a écrit :
 Package: brasero
 Version: 2.30.3-1
 Severity: important
 
 That pretty much describes the problem. With  on-the-fly burning checked
 brasero segfaults, with it unchecked it works fine. Awesome, actually since it
 is perhaps the only cd burning frontend that properly uses cdrdao for audio
 cds.
 
 Anyway, when it segfaults, the log says the following in brasero-session.log:
 
 Checking session consistency (brasero_burn_check_session_consistency brasero-
 burn.c:1741)
 Unsupported type of task operation
 Session error : An internal error occurred (brasero_burn_record brasero-
 burn.c:2839)

Thanks for reporting. However to debug that I’d need a backtrace.
See http://wiki.debian.org/HowToGetABacktrace

Thanks,
-- 
 .''`.
: :' : “You would need to ask a lawyer if you don't know
`. `'   that a handshake of course makes a valid contract.”
  `---  J???rg Schilling




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



Bug#597565: libgwenhywfar uses invalid data-root

2010-09-21 Thread Micha Lenk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Emil,

Emil Langrock schrieb:
 I recreated that patch for kmymoney 4.5 myself. It applies cleanly

 See http://bugs.debian.org/593933 to get the version I used to test compile
 in builder with an unstable/experimental /etc/apt/sources.list

 The only problem i notice is that I cannot configure aqbanking anymore
 because I always get 311: Could not create setup dialog.
 
 I think I found the problem. I had to link
 
 sudo ln -s /usr/share/aqbanking /usr/share/libgwenhywfar60/aqbanking
 
 and then the GWEN_PathManager_FindFile is able to find the dialogs. I think 
 the problem is that --datarootdir in in libgwenhywfar is set to 
 /usr/share/libgwenhywfar60 instead of /usr/share.

I used --datarootdir=/usr/share/libgwenhywfar60 by intent to have all
platform independent files in a path that contains libgwenhywfar's
soname. Otherwise I would have to split the files located in /usr/share
into a separate package. In earlier version ( 3.99.xbeta) I considered
it to much of packaging overhead, so I decided to not split the package.
With Gwen 4.x several files were added, so I might reconsider...

- From my point of view the error is that AqBanking fails to use the path
that was legitimately configured for Gwenhywfar. At build time AqBanking
could query Gwenhywfar's datarootdir by using pkg-config:

pkg-config --variable=datarootdir gwenhywfar

(For not using pkg-configure the gwenhywfar-config binary needs a simple
extension to provide also the datarootdir.)

 This is also the reason why 
 locales are installed in the wrong path (under 
 /usr/share/libgwenhywfar60/locales instead of /usr/share/locales).

What explicitly do you mean by wrong path? What exactly is wrong with it?

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

iEYEARECAAYFAkyYYgkACgkQWN0/4pnhQbRyPACfVfIC8dcgZ0+G5kzWsluOfS9E
Q/MAnjCLnM32ODJ3ewORXPqRpHBxDcIm
=ZECV
-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#597450: Confirmed Workaround

2010-09-21 Thread Theppitak Karoonboonyanan
Upstream bug filed:

https://bugzilla.gnome.org/show_bug.cgi?id=630229

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



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



Bug#597599: munin-plugins-extra: ejabberd_ script breaks munin-graph and fails with current versions of ejabberd

2010-09-21 Thread Holger Levsen
tags 597599 + patch confirmed upstream
thanks

Hi Gerald,

thanks for your bugreport and patch!

On Dienstag, 21. September 2010, Gerald Turner wrote:
 In particular it's exeucting commands like:

   ejabberdctl vhost $host stats onlineusers

 The 'vhost $host' args are gone and should be substitued with subcommand
 specific bits like:

   ejabberdctl stats-host onlineusers $host

does this also already work in lenny or only in squeeze?


cheers,
Holger


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


Bug#596701: Bug #596701

2010-09-21 Thread Soren Stoutner
Unfortunately these steps don't work for me.  The only thing that works is to 
block all cookies from youtube.com, including session cookies.

Is there some debugging output I can get that will tell me why this is failing 
(and why it fails for me but not for others)?  This problem affects all three 
of my amd64 Debian Testing machines.

On Monday, September 20, 2010 08:35:00 pm Gabriele Giacone wrote:
 On 09/20/2010 10:37 PM, Thomas Yorke wrote:
 Fortunately we should solve in another way.
 Please follow these steps:
 
 1 - Start your browser
 2 - Accept cookies (not session-only cookies) from youtube.com
 3 - Remove old cookies from youtube.com
 4 - Go to youtube.com and watch videos until you get:
   An error occurred, please try again later
 5 - Restart your browser
 
 Now you can watch yt videos accepting cookies from youtube.com

-- 
Soren Stoutner
so...@stoutner.org
623-262-6169


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


Bug#597255: bug#597255

2010-09-21 Thread Glenn Morris

BTW, I did not post here owing to the refusal to fix

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

but I see my address got posted anyway (3 times). :(

(Not a huge deal, never mind.)



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



Bug#570365: nvidia-glx: problem confirmed in with latest xen hypervisor

2010-09-21 Thread Andreas Beckmann
On Saturday, 14. August 2010 20:09:53 Michel Briand wrote:
 Package: nvidia-glx
 Version: 195.36.24-4

 Test results point at a problem between Xen Hypervisor and
 NVIDIA driver memory management.

Thanks for the detailed test report. Could you try the new versions of the 
driver, too? 195.36.31-3 is in unstable and 256.53-1 in experimental.
Also it would be nice if you could test with the official Debian 2.6.32 kernel 
(and xen hypervisor) packages (preferably the versions from unstable) instead 
of a backport kernel.

Andreas



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



Bug#597602: fusionforge: gforge-web-apache2 ships a copy of viewvc, without a mention in copyright file

2010-09-21 Thread Olivier Berger
Package: fusionforge
Version: 5.0.1+svn10155-1
Severity: normal

Hi.

I fear a policy violation here : gforge-web-apache2 ships in 
/usr/share/gforge/www/scm/viewvc a copy (version 1.0 ?) of ViewVC, which is 
also available in Debian as version 1.1.5, and without any mention in the 
copyright file.

I'm not sure if there's a strict dependency on that version and/or if its a 
modified version.

Hope this helps.

Best regards,


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

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



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



Bug#595479: Please unblock: openmotif/2.3.3-4

2010-09-21 Thread Stefan Bauer
Am 18.09.2010 23:42, Julien Cristau schrieb:
 On Fri, Sep 17, 2010 at 12:55:32 +0200, Stefan Bauer wrote:
 
 whats the status on this hppa build? I want to see openmotif in the
 current unstable version to be in testing - stable. I'm not a DD so
 my hands are tied :/

 hppa out-of-date-ness is likely to get ignored by the testing scripts in
 the near future, so we should be able to live without it.

13/10 days. But due to no unblocking request, there will be no
migration to testing. I hope that get changed soon.

Stefan
-- 
Stefan Bauer -
PGP: 36D1 1570 DCAD B767 EABE F60D 6BCA 7AD4 79EB C4EC
 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#596940: future unblock: kdepim/4:4.4.6-1

2010-09-21 Thread Mehdi Dogguy
tags 596940 + pending
thanks

On 09/21/2010 12:06 AM, Modestas Vainius wrote:
 [...]
 

Ok, please upload and let us know once the package has been accepted.

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#597603: horde3: temp-cleanup.cron returns failure if last find command exits with non-zero code

2010-09-21 Thread Joel Smith
Package: horde3
Version: 3.3.8+debian0-1
Severity: minor
Tags: patch

The script at /usr/share/horde3/scripts/temp-cleanup.cron runs
several find commands to find and remove any temporary files
created by Horde, but not removed.  Since it is potentially
running on a shared temporary directory, there is a distinct
possibilty that some directories there will not be readable
to the www-data user which runs the script from cron.  When
that happens, the find command will return a non-zero code,
and the script will exit with the non-zero code of the final
find command.  This results in a log message like this:

Sep 20 23:00:01 ns /USR/SBIN/CRON[26612]: (CRON) error (grandchild #26627 
failed with exit status 1)

There is no reason for the temp-cleanup.cron script to
return anything other than success in these instances, so it
should be modified to exit with a 0 return code. (Like with
exit 0 at the end.)

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

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

Versions of packages horde3 depends on:
ii  apache2  2.2.16-2Apache HTTP Server metapackage
ii  apache2-mpm-prefork [htt 2.2.16-2Apache HTTP Server - traditional n
ii  libapache2-mod-php5  5.2.12.dfsg.1-2 server-side, HTML-embedded scripti
ii  libjs-scriptaculous  1.8.3-1 JavaScript library for dynamic web
ii  lighttpd [httpd] 1.4.28-1A fast webserver with minimal memo
ii  php-log  1.12.0-1log module for PEAR
ii  php-mail 1.2.0-2 PHP PEAR module for sending email
ii  php-mail-mime1.8.0-2 PHP PEAR module for creating MIME 
ii  php5-cgi 5.2.12.dfsg.1-2 server-side, HTML-embedded scripti
ii  php5-gd  5.2.12.dfsg.1-2 GD module for php5
ii  php5-mcrypt  5.2.12.dfsg.1-2 MCrypt module for php5

Versions of packages horde3 recommends:
pn  fckeditornone  (no description available)
ii  locales  2.11.2-5Embedded GNU C Library: National L
ii  logrotate3.7.8-6 Log rotation utility
ii  php-date 1.4.7-1 PHP PEAR module for date and time 
ii  php-db   1.7.13-2PHP PEAR Database Abstraction Laye
pn  php-file none  (no description available)
pn  php-mdb2 none  (no description available)
pn  php-mdb2-driver-mysql |  none  (no description available)
ii  php-services-weather 1.4.2-2 acts as an interface to various on
ii  php5-cli 5.2.12.dfsg.1-2 command-line interpreter for the p
ii  php5-ldap5.2.12.dfsg.1-2 LDAP module for php5
ii  php5-mysql   5.2.12.dfsg.1-2 MySQL module for php5
ii  tinymce  3.3.8-1 platform independent web based Jav

Versions of packages horde3 suggests:
pn  chora2none (no description available)
ii  enscript  1.6.5.2-1  converts text to Postscript, HTML 
ii  gettext   0.18.1.1-2 GNU Internationalization utilities
pn  gollemnone (no description available)
ii  imp4  4.3.7+debian0-2webmail component for horde framew
ii  kronolith22.3.4+debian0-1calendar component for Horde Frame
ii  libgeoip1 1.4.7~beta6+dfsg-1 A non-DNS IP-to-country resolver l
pn  libwpd-tools  none (no description available)
pn  mnemo2none (no description available)
pn  php-net-imap  none (no description available)
pn  php5-auth-pam none (no description available)
ii  php5-mhash5.2.12.dfsg.1-2MHASH module for php5
pn  ppthtml   none (no description available)
ii  rpm   4.8.1-5package manager for RPM
ii  source-highlight  3.1.4-1convert source code to syntax high
ii  turba22.3.4+debian0-1contact management component for h
pn  unrtf none (no description available)
pn  webcppnone (no description available)
ii  wv1.2.4-2+b1 Programs for accessing Microsoft W
pn  xlhtmlnone (no description available)

-- Configuration Files:
/etc/horde/horde3/.htaccess [Errno 13] Permission denied: 
u'/etc/horde/horde3/.htaccess'
/etc/horde/horde3/conf.php [Errno 13] Permission denied: 
u'/etc/horde/horde3/conf.php'
/etc/horde/horde3/conf.xml [Errno 13] Permission denied: 
u'/etc/horde/horde3/conf.xml'
/etc/horde/horde3/hooks.php [Errno 13] Permission denied: 
u'/etc/horde/horde3/hooks.php'
/etc/horde/horde3/mime_drivers.php [Errno 

Bug#597604: rox-filer: Typo in german translation of option double click on background

2010-09-21 Thread Alek
Package: rox-filer
Version: 2.10-1.1
Severity: minor

In the german translation there is a typo in the option window for the
window behaviour. 
Wrong:  Doppelklick auf Hintegrund ändert Fenstergröße
Corrected:  Doppelklick auf Hintergrund ändert Fenstergröße

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

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

Versions of packages rox-filer depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-5 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-5 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-1  FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1+b1  The GTK+ graphical user interface 
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  shared-mime-info0.71-3   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.49-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.04-5 Determines file type using magic
ii  menu  2.1.43 generates programs menu for all me

-- 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#597155: also in squeeze

2010-09-21 Thread Eric Schwandt
Just a note that this bug is also present in K3B 2.0.0 in Squeeze.


Receive Notifications of Incoming Messages
Easily monitor multiple email accounts  access them with a click.
Visit http://www.inbox.com/notifier and check it out!



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



Bug#597593: iceweasel: SSL received a malformed Server Key Exchange handshake message connecting to ALEC website

2010-09-21 Thread Matt Kraai
On Tue, Sep 21, 2010 at 07:51:27AM +0200, Mike Hommey wrote:
 Please try downgrading libnss3-1d to 3.12.6-3 from testing.

Thanks, doing so fixed the problem.

-- 
Matt   https://ftbfs.org/kraai


signature.asc
Description: Digital signature


Bug#597593: iceweasel: SSL received a malformed Server Key Exchange handshake message connecting to ALEC website

2010-09-21 Thread Mike Hommey
reassign 597593 libnss3-1d
forcemerge 592315 597593
thanks

On Tue, Sep 21, 2010 at 01:22:36AM -0700, Matt Kraai wrote:
 On Tue, Sep 21, 2010 at 07:51:27AM +0200, Mike Hommey wrote:
  Please try downgrading libnss3-1d to 3.12.6-3 from testing.
 
 Thanks, doing so fixed the problem.

Then this is the same issue as 592315. One of the reasons I'm not
pushing nss 3.12.7 in squeeze is this bug. I haven't decided yet
what will be done.

Cheers,

Mike



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



Bug#597379: X freeze same problem here

2010-09-21 Thread isahib
I am also experiancing the same problem after the update from testing
with xserver-xorg-video-openchrome 1:0.2.904+svn842-1.

At the GDM login screen X just freezes. A hard reboot is required.

In conjunction with other X freeze issues I reported this problem
recently.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583186

I have fallen back to using the vesa driver for now in xorg.conf.

Meanwhile looks like recently there is a lot of people experiencing Xorg
freezes. See google (past month).

http://www.google.co.nz/#hl=entbs=qdr%3Amq=xorg
+freezeaq=aqi=aql=oq=gs_rfai=fp=6a417ce245aa857f

and this Ubuntu posts (1000 or so)
http://ubuntuforums.org/showthread.php?t=1478787

Thanks
Ibaidul






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



Bug#597593: iceweasel: SSL received a malformed Server Key Exchange handshake message connecting to ALEC website

2010-09-21 Thread Matt Kraai
On Tue, Sep 21, 2010 at 10:33:57AM +0200, Mike Hommey wrote:
 reassign 597593 libnss3-1d
 forcemerge 592315 597593
 thanks
 
 On Tue, Sep 21, 2010 at 01:22:36AM -0700, Matt Kraai wrote:
  On Tue, Sep 21, 2010 at 07:51:27AM +0200, Mike Hommey wrote:
   Please try downgrading libnss3-1d to 3.12.6-3 from testing.
  
  Thanks, doing so fixed the problem.
 
 Then this is the same issue as 592315. One of the reasons I'm not
 pushing nss 3.12.7 in squeeze is this bug. I haven't decided yet
 what will be done.

Thanks again for diagnosing this so quickly.  I'll report this to the
site operators in the hope that they'll fix the site.

-- 
Matt   https://ftbfs.org/kraai


signature.asc
Description: Digital signature


Bug#597605: unblock: brutefir/1.0f-2

2010-09-21 Thread Alessio Treglia
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package brutefir 1.0f-2, as it fixes FTBFS on kfreebsd-* 
architectures (see bug#414298).

brutefir (1.0f-2) unstable; urgency=low

  * debian/patches/10_Makefile.dpatch: Add patches from Cyril Brulebois
to fix FTBFS on non-linux architectures (which don't provide ALSA
support). Closes: #414298
  * debian/control:
- Limit libasound2-dev to linux-archs only.
- Add Vcs fields.
- Change Maintainer and update Uploaders list (Closes: #546949).
  * debian/compat: Bump compatibility level up to 5.

 -- Alessio Treglia ales...@debian.org  Mon, 20 Sep 2010 13:01:14 +0200


Regards.


unblock brutefir/1.0f-2


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.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#576848: closed by Julien Cristau jcris...@debian.org (Bug#576848: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1)

2010-09-21 Thread Christian Beier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 20 Sep 2010 18:21:26 +
ow...@bugs.debian.org (Debian Bug Tracking System) wrote:

 This is an automatic notification regarding your Bug report
 which was filed against the xserver-xorg-video-intel package:
 
 #576848: [855GM] X crashes shortly after desktop startup
 
 It has been closed by Julien Cristau jcris...@debian.org.
 
 Their explanation is attached below along with your original report.
 If this explanation is unsatisfactory and you have not received a
 better one in a separate message then please contact Julien Cristau 
 jcris...@debian.org by
 replying to this email.

Hi,
This _may_ well be fixed, but only if KMS would be enabled for this
chipset. However, it seems that in the kernel packages found in squeeze
and sid KMS is disabled for i8xx chipsets by patching the i915 module.
So maybe this should get reverted or made configurable...

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

iEYEARECAAYFAkyYbX4ACgkQQhuztFxgZ/gbBQCfZA3culuSOx6V8mOF/7HRFAks
UsQAoMn6YcgNXNPXnbaHwlXfSIe7kKHD
=uYG+
-END PGP SIGNATURE-


Bug#593933: [Pkg-kde-extras] Bug#593933: kmymoney: Please build with AqBanking 5

2010-09-21 Thread Mark Purcell
severity 593933 wishlist
thanks

On Monday 20 September 2010 22:05:11 Emil Langrock wrote:
 I see it the same way, but I would say that this is a kind of FTBFS and thus
 it must have the severity serious.

kmymoney 4.5 does not FTFBS:
https://buildd.debian.org/build.cgi?pkg=kmymoney;ver=4.5-1

Thus the severity is not series.

I agree that kmymoney should be built with aqbanking5, however this is an 
experimental package, thus I am assigning severity wishlist for the build 
against aqbanking5.

I also suspect the patches to build against aqbanking5 should be forwarded 
upstream as they are not Debian specific.

Mark


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


Bug#595479: Please unblock: openmotif/2.3.3-4

2010-09-21 Thread Mehdi Dogguy
On 09/21/2010 10:20 AM, Stefan Bauer wrote:
 
 13/10 days. But due to no unblocking request, there will be no 
 migration to testing. I hope that get changed soon.
 

Well, we are not ignoring yet HPPA… so, you'll have to wait a bit longer
(hopefully, not much).

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#597606: unattended-upgrades: French po translation

2010-09-21 Thread Steve Petruzzello
Package: unattended-upgrades
Version: 0.62
Severity: wishlist
Tags: patch l10n

Hi,

Please find attached the french translation, proofread by the
debian-l10n-french mailing list contributors.

Best regards

-- System Information:
Debian Release: 5.0.6
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (500, 'testing'), (500, 
'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_CH.UTF-8, LC_CTYPE=fr_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# Paquet unattended-upgrades
# Copyright (C) 2008
# This file is distributed under the same license as the unattended-upgrades 
package.
# Michael Vogt m...@debian.org, 2008.
#
msgid 
msgstr 
Project-Id-Version: 0.35\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2009-05-06 10:52+0200\n
PO-Revision-Date: 2010-09-07 12:00+0200\n
Last-Translator: Steve Petruzzello dl...@bluewin.ch\n
Language-Team: French debian-l10n-fre...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#: ../unattended-upgrade:151
msgid print debug messages
msgstr Afficher les messages de débogage

#: ../unattended-upgrade:170
#, c-format
msgid Initial blacklisted packages: %s
msgstr Paquets initialement sur la liste noire : %s

#: ../unattended-upgrade:171
msgid Starting unattended upgrades script
msgstr Démarrage du script de mise à jour automatique

#: ../unattended-upgrade:174
#, c-format
msgid Allowed origins are: %s
msgstr Les origines permises sont : %s

#: ../unattended-upgrade:179 ../unattended-upgrade:180
msgid Cache has broken packages, exiting
msgstr Le cache contient des paquets cassés, abandon

#: ../unattended-upgrade:204
#, c-format
msgid package '%s' upgradable but fails to be marked for upgrade (%s)
msgstr Le paquet '%s' peut être mis à niveau mais échoue à être marqué comme 
tel (%s)

#: ../unattended-upgrade:224
#, c-format
msgid GetArchives() failed: '%s'
msgstr Echec de GetArchives() : '%s'

#: ../unattended-upgrade:233 ../unattended-upgrade:234
#, c-format
msgid An error ocured: '%s'
msgstr Une erreur s'est produite : '%s'

#: ../unattended-upgrade:236 ../unattended-upgrade:237
#, c-format
msgid The URI '%s' failed to download, aborting
msgstr Echec du téléchargement à l'URI '%s', abandon

#: ../unattended-upgrade:245
#, c-format
msgid Package '%s' has conffile prompt and needs to be upgraded manually
msgstr 
Le paquet '%s' provoque un conflit de fichiers de configuration et nécessite 
une mise à jour manuelle

#: ../unattended-upgrade:264
#, c-format
msgid package '%s' not upgraded
msgstr Le paquet '%s' n'a pas été mis à jour

#: ../unattended-upgrade:275
msgid No packages found that can be upgraded unattended
msgstr Aucun paquet à mettre à jour automatiquement

#: ../unattended-upgrade:280
#, c-format
msgid Packages that are upgraded: %s
msgstr Paquets mis à jour : %s

#: ../unattended-upgrade:293
#, c-format
msgid Writing dpkg log to '%s'
msgstr Écriture du journal de dpkg dans '%s'

#: ../unattended-upgrade:305
msgid pm.GetArchives() failed
msgstr Echec de pm.GetArchives()

#: ../unattended-upgrade:313
msgid Installing the upgrades failed!
msgstr Échec de l'installation des mises à jour

#: ../unattended-upgrade:314
#, c-format
msgid error message: '%s'
msgstr Message d'erreur : '%s'

#: ../unattended-upgrade:318
#, c-format
msgid dpkg returned a error! See '%s' for details
msgstr Dpkg a retourné une erreur. Voir « %s » pour les détails

#: ../unattended-upgrade:320
msgid All upgrades installed
msgstr Toutes les mises à jour ont été installées

#: ../unattended-upgrade:326
msgid 
No '/usr/bin/mail', can not send mail. You probably want to install the 
'mailx' package.
msgstr L'exécutable « /usr/bin/mail » est introuvable, impossible d'envoyer un 
courrier électronique. Veuillez installer le paquet « mailx ».

#: ../unattended-upgrade:331
msgid unattended-upgrades result for '%s'
msgstr unattended-upgrades a retourné : %s

#: ../unattended-upgrade:335
#, c-format
msgid 
Unattended upgrade returned: %s\n
\n
msgstr 
La mise à jour automatique a retourné : %s\n
\n

#: ../unattended-upgrade:336
msgid Packages that are upgraded:\n
msgstr Paquets mis à jour : %s

#: ../unattended-upgrade:340
msgid Packages with upgradable origin but kept back:\n
msgstr Paquets susceptibles d'une mise à niveau mais maintenus dans leur état 
actuel :\n

#: ../unattended-upgrade:344
msgid Package installation log:
msgstr Journal d'installation du paquet :

#: ../unattended-upgrade:359
msgid You need to be root to run this application
msgstr 
Vous devez posséder les privilèges du superutilisateur pour exécuter cette 
application


Bug#593933: [Pkg-kde-extras] Bug#593933: kmymoney: Please build with AqBanking 5

2010-09-21 Thread Emil Langrock
severity 593933 serious
thanks

Mark Purcell wrote:
 On Monday 20 September 2010 22:05:11 Emil Langrock wrote:
  I see it the same way, but I would say that this is a kind of FTBFS and
  thus it must have the severity serious.
 
 kmymoney 4.5 does not FTFBS:
 https://buildd.debian.org/build.cgi?pkg=kmymoney;ver=4.5-1

If I build it in a pbuilder then I get functionality wise a complete different 
binary then the thing which is provided by you on amd64. See for example 
https://buildd.debian.org/fetch.cgi?pkg=kmymoney;ver=4.5-1;arch=armel;stamp=1282445711
please search for KBanking plugin and look on the line if it says no or yes.

So either the source is missing (not the case) or it is a ftbfs on amd64 due 
to completely different build results. I will increase the severity again.

 Thus the severity is not series.
 
 I agree that kmymoney should be built with aqbanking5, however this is an
 experimental package, thus I am assigning severity wishlist for the build
 against aqbanking5.
 
 I also suspect the patches to build against aqbanking5 should be forwarded
 upstream as they are not Debian specific.

The patch is definitely debian specific as they change the stuff in debian/

How you fix it to get the same results when building is not my problem - I 
just provided the stuff I did. If it is enough to depend on pkg-config then 
try it - I wont do your work because I am not the package maintainer with the 
expertise to fix that stuff. If the pkg-config is enough then please feel free 
to degrease the severity again to whishlist.
-- 
Emil Langrock



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



Bug#597586: unblock: bluez/4.70-1

2010-09-21 Thread Mehdi Dogguy
On 09/21/2010 03:27 AM, Nobuhiro Iwamatsu wrote:
 Package: release.debian.org Severity: normal User: 
 release.debian@packages.debian.org Usertags: unblock
 
 Please unblock package bluez.
 
 bluez of squeeze is 4.66-1. This package of version has some
 problem. Version 4.70 is a release with a lot of fixes. I show below
 a revision in Upstream from 4.66 to 4.70.
 
 [...]
 

Hrm… The diff is quite big:

 122 files changed, 10395 insertions(+), 1883 deletions(-)

and the changelogs fix some bugs in the packaging and one wishlist bug
(to have 4.67 uploaded). Could explain how this update satisfies the
freeze criterias announced a while ago on d-d-a? Did you try to backport
those fixes instead of uploading new upstream releases with new features?

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#590290: Cron job and script

2010-09-21 Thread Zdenek Kabelac
 As far as the output of this script is concerned, I have no
 complaints. The only problem is the fd leak error.


As Milan mentioned in message #20 -  cron probably internally uses some
descriptors for other things - and forgets to close it after fork and exec of
a new cron jobs - these descriptors are seen by your cron shell script job and
then are 'forwarded' to lvdislay.

I would suggest to reassign this bug to cron package.


Zdenek

k...@debian.org




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



Bug#597565: [Aqbanking-user] libgwenhywfar uses invalid data-root

2010-09-21 Thread Emil Langrock
Christian Stimming wrote:
 Zitat von Emil Langrock emil.langr...@gmx.de:
  Package: libgwenhywfar
  Version: 4.0.1-1
  Severity: important
  
  See http://bugs.debian.org/593933 to get the version I used to test
  compile in builder with an unstable/experimental /etc/apt/sources.list
  
  The only problem i notice is that I cannot configure aqbanking anymore
  because I always get 311: Could not create setup dialog.
  
  I think I found the problem. I had to link
  
  sudo ln -s /usr/share/aqbanking /usr/share/libgwenhywfar60/aqbanking
  
  and then the GWEN_PathManager_FindFile is able to find the dialogs. I
  think the problem is that --datarootdir in in libgwenhywfar is set to
  /usr/share/libgwenhywfar60 instead of /usr/share. This is also the reason
  why locales are installed in the wrong path (under
  /usr/share/libgwenhywfar60/locales instead of /usr/share/locales).
 
 Where does libgwenhywfar get the erroneous --datarootdir you mentioned
 from? Upstream? In the upstream source code I cannot see any
 non-standard setting of the datarootdir. Or does this happen only in
 the debian package?

No, the debian maintainer of libgwenhywfar decided to set that --datarootdir 
to /usr/share/libgwenhywfar60 in his debian/rules file - just send it also to 
the mailing list if anyone has the same problem and searches for a solution. 
gwenhywfar will not try to search for the dlg files in 
/usr/share/libgwenhywfar60/aqbanking/dialogs instead of 
/usr/share/aqbanking/dialogs where they are really installed.

I am personally not interested where the stuff is installed or if gwenhywfar 
or aqbanking is unable to deal with the non-standard root dirs - only a 
solution must be found.
-- 
Emil Langrock



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



Bug#597607: fetchmail -q should check if it will kill a fetchmail instance or something else

2010-09-21 Thread Olivier Berger
Package: fetchmail
Version: 6.3.17-4
Severity: normal

Hi.

After a crash on my system, I rebooted and couldn't start fetchmail -d, because 
it thought it was still running.

So I did a fetchmail -q, which killed nm-applet that was running.

I bet nm-applet was running with the old PID of the fetchmail running in 
background before the crash.

fetchmail -q should only kill fetchmail instances and not anything else, IMHO.

Best regards,


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

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

Versions of packages fetchmail depends on:
ii  adduser   3.112  add and remove users and groups
ii  debianutils   3.4Miscellaneous utilities specific t
ii  libc6 2.11.2-5   Embedded GNU C Library: Shared lib
ii  libcomerr21.41.12-2  common error description library
ii  libgssapi-krb5-2  1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries - k
ii  libkrb5-3 1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries
ii  libssl0.9.8   0.9.8o-2   SSL shared libraries
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip

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

Versions of packages fetchmail suggests:
ii  exim4-daemon-light [mail-tran 4.72-1 lightweight Exim MTA (v4) daemon
ii  fetchmailconf 6.3.17-4   fetchmail configurator
ii  resolvconf1.46   name server information handler

-- debconf-show failed



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



Bug#597608: RM: runit-services -- ROM; outdated, dead upstream

2010-09-21 Thread Gerrit Pape
Package: ftp.debian.org



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



Bug#505405: [dsc] debianization of the dsc-collector

2010-09-21 Thread Marc Haber
retitle 505405 ITP: dsc - libcap based DNS statistics collector

I have packaged dsc for a project of a customer of mine, and a
colleague and me are prepared to maintain dsc for Debian in the
future. We will be ready to upload by mid October 2010.

Greetings
Marc

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



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



Bug#596408: Only segmentation faults when called...

2010-09-21 Thread Anthony Callegaro
Hello all,

Just to add my 2cents

I have the exact same gdb dump as Soeren, so I don't see the point in
posting them again.

Le lundi 13 septembre 2010 à 19:59 +0100, Steven Chamberlain a écrit :
 It may be possible to narrow it down to the exact line, if someone able 
 to reproduce this issue could please run:
 
 $ python -m trace -t $(which unattended-upgrade) | gzip  pytrace.txt.gz
 
 then attach the resulting pytrace.txt.gz file.

I did but the resulting is 7MB so let me know if it's still useful and
if you want me to put it somewhere.

Thanks
LeTic


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


Bug#597609: [python-levenshtein] Crashes python interpreter in seq* with simple arguments

2010-09-21 Thread Emil Langrock
Package: python-levenshtein
Version: 0.10.1-1.1
Severity: normal

python 2.6.6 (r266:84292, Sep 15 2010, 14:52:42) 
[GCC 4.4.5 20100909 (prerelease)] on linux2
Type help, copyright, credits or license for more information.
 import Levenshtein
 Levenshtein.seqratio(hallo, bla)
Program received signal SIGSEGV, Segmentation fault.
0x77955a63 in ?? () from /usr/lib/python2.6/dist-
packages/Levenshtein.so
(gdb) bt
#0  0x77955a63 in ?? () from /usr/lib/python2.6/dist-
packages/Levenshtein.so
#1  0x779567cf in ?? () from /usr/lib/python2.6/dist-
packages/Levenshtein.so
#2  0x77956ae9 in ?? () from /usr/lib/python2.6/dist-
packages/Levenshtein.so
#3  0x004a7ba5 in PyEval_EvalFrameEx ()
#4  0x004a95c1 in PyEval_EvalCodeEx ()
#5  0x004a9692 in PyEval_EvalCode ()
#6  0x004c942f in PyRun_InteractiveOneFlags ()
#7  0x004c96be in PyRun_InteractiveLoopFlags ()
#8  0x004c9eab in PyRun_AnyFileExFlags ()
#9  0x0041a6bd in Py_Main ()
#10 0x00325d81ec4d in __libc_start_main (main=value optimized out, 
argc=value optimized out, ubp_av=value optimized out, init=value 
optimized out, fini=value optimized out, 
rtld_fini=value optimized out, stack_end=0x7fffe0d8) at libc-
start.c:228
#11 0x004198d9 in _start ()


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

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.debian.org 
  500 testing ftp.debian.org 
  500 stable  ftp.debian.org 
1 experimentalwww.debian-multimedia.org 
1 experimentalftp.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-
libc6   (= 2.2.5) | 2.11.2-6
python( 2.7) | 2.6.6-2
python(= 2.5) | 2.6.6-2
python-central (= 0.6.11) | 0.6.16+nmu1


Package's Recommends field is empty.

Package's Suggests field is empty.




-- 
Emil Langrock



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



Bug#597610: gforge-web-apache2: Should not configure anything in httpd.conf about fckeditor

2010-09-21 Thread Olivier Berger
Package: gforge-web-apache2
Version: 5.0.1+svn10155-1
Severity: minor

Hi.

In /etc/gforge/httpd.conf, I noticed :
VirtualHost *:80
...
Alias /fckeditor/ /usr/share/fckeditor/
Directory /usr/share/fckeditor/
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
/Directory
...

fckeditor doesn't seem to even be a dependency of that package.

This shouldn't be configured, then, IMHO.

Best regards,


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

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



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



Bug#538067: OpenCPN packaging updates

2010-09-21 Thread Hamish
Hi,

some email threads discussing progress--

packaging files now maintained in DebianGIS's Alioth svn repo:
 http://svn.debian.org/viewsvn/pkg-grass/packages/opencpn/trunk/debian/


debian threads:
 http://thread.gmane.org/gmane.comp.gis.grass.pkg.general/3435/
 http://lists.debian.org/debian-mentors/2010/02/msg00115.html
 http://lists.debian.org/debian-mentors/2010/02/threads.html#00098


upstream thread:
 http://www.cruisersforum.com/forums/f134/opencpn-build-on-debian-35977-7.html



cheers,
Hamish



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



Bug#596283: Freeze exception: shadow / possible cron update?

2010-09-21 Thread Julien Cristau
On Sun, Sep 19, 2010 at 19:10:50 +0200, Christian Kastner wrote:

 On 09/19/2010 06:21 PM, Julien Cristau wrote:
  On Sun, Sep 19, 2010 at 17:21:38 +0200, Christian Kastner wrote:
  
  Assuming that #596283 will be fixed by a -2 release of shadow, I was
  wondering whether the Release Team would like a cron -115 as well, with
  this feature removed from /etc/cron.daily/standard.
 
  Sounds reasonable.  I'm not sure introducing yet more 'Breaks' is
  necessary though.  The worst case if you're using new cron and old
  shadow is your stuff isn't backed up, right?
 
 That is correct. However, that worst case -- however unlikely -- might
 be severe enough to warrant the Breaks:. I'm therefore tending towards
 the latter, but will leave the final call up to you.
 
I guess the other option is to leave both backups in place for squeeze,
and remove the one from cron later.  A bit confusing to have those files
backed up from 2 places, but no harm other than that.  I think I'd like
that more than Breaks...

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#597611: mailscanner: Infexted files are delivered to user

2010-09-21 Thread Elmar Haneke
Package: mailscanner
Version: 4.79.11-2
Severity: important


Mailscanner does no longer replace infected files by an warning message.
Instead the original message with modified subject only is delivered.

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

Kernel: Linux 2.6.26-2-686-bigmem (SMP w/2 CPU cores)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages mailscanner depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  exim4 4.69-9 metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon
ii  libarchive-zip-perl   1.18-1 Module for manipulation of ZIP arc
ii  libconvert-tnef-perl  0.17-8 Perl module to read TNEF files
ii  libdbd-sqlite3-perl   1.14-3 Perl DBI driver with a self-contai
ii  libdbi-perl   1.605-1Perl5 database interface by Tim Bu
ii  libdigest-sha1-perl   2.12-1 NIST SHA-1 message digest algorith
ii  libfilesys-df-perl0.92-3+b1  Module to obtain filesystem disk s
ii  libhtml-parser-perl   3.62-1 collection of modules that parse H
ii  libmailtools-perl 2.03-1 Manipulate email in perl programs
ii  libmime-tools-perl [libmime-p 5.427-1Perl5 modules for MIME-compliant m
ii  libnet-cidr-perl  0.11-3 Manipulate IPv4/IPv6 netblocks in 
ii  libnet-dns-perl   0.65-1 Perform DNS queries from a Perl sc
ii  libnet-ip-perl1.25-2 Perl extension for manipulating IP
ii  libole-storage-lite-perl  0.17-1 simple class for OLE document inte
ii  libsys-hostname-long-perl 1.4-2  Figure out the long (fully-qualifi
ii  perl  5.10.1-11  Larry Wall's Practical Extraction 
ii  spamassassin  3.3.1-1Perl-based spam filter using text 
ii  ucf   3.0016 Update Configuration File: preserv
ii  unzip 6.0-1  De-archiver for .zip files

Versions of packages mailscanner recommends:
ii  clamav 0.96.1+dfsg-1 anti-virus utility for Unix - comm
pn  clamav-daemon  none(no description available)
ii  libnet-cidr-lite-perl  0.20-2Merge IPv4 or IPv6 CIDR address ra
ii  tnef   1.4.6-1   Tool to unpack MIME application/ms
ii  wget   1.12-1.1  retrieves files from the web

Versions of packages mailscanner suggests:
ii  libmail-spf-query-perl   1:1.999.1-3 query SPF (Sender Policy Framework
ii  libnet-ldap-perl 1:0.39-1client interface to LDAP servers
pn  unrar-nonfreenone  (no description available)

-- debconf information:
* mailscanner/v3_upgrade: Don't upgrade



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



Bug#597612: gforge-web-apache2: Should not configure in httpd.conf anything related to loggerhead

2010-09-21 Thread Olivier Berger
Package: gforge-web-apache2
Version: 5.0.1+svn10155-1
Severity: normal

Hi.

in /etc/gforge/httpd.conf :

VirtualHost *:80
...
   Proxy http://127.0.0.1:8081/*
Allow from all
/Proxy

Location /scm/loggerhead/
ProxyPass http://127.0.0.1:8081/
ProxyPassReverse http://127.0.0.1:8081/
/Location
...

What the heck !

What makes you think loggerhead is installed ?

I guess this may have security implications :-(

Best regards,


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

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



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



Bug#582076: nvidia-glx: TwinViewXineramaInfoOrder causes segfault in X server on startup

2010-09-21 Thread Russell Stuart
On Tue, 2010-09-21 at 08:40 +0200, Andreas Beckmann wrote:
 Did you try the new upstream releases? Eventually something has been fixed 
 there. Debian packages are available:
 
 unstable: 195.36.31-3

Problem disappears when I install this.  Any chance of it making it into
squeeze?

 experimental: 256.53-1

Its a bit hard to install this without going to unstable, which I don't
want to do on my work laptop :(.




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



Bug#597566: clamav-getfiles: Fails to create package with multiple perl undefined reference errors

2010-09-21 Thread Marc Haber
Hi,

On Mon, Sep 20, 2010 at 05:20:07PM -0400, Eric Reischer wrote:
 All known active versions of clamav-getfiles fail to produce a package.

I'll check that, earliest next week. Release team, please pull
clamav-getfiles form squeeze in the mean time.

 Also, this bug appears to be affecting the auto-update tool that posts
 clamav-data packages to volatile. The last updated definition package
 is dated 2010-08-21, which is a month old.

clamav-data in volatile died when volatile went under new official
owners. Sorry about that, and also sorry to see my own work going down
the drain.

http://lists.debian.org/debian-volatile-announce/2009/msg3.html

   This potentially represents a security issue to people who rely on
   updated virus definition packages over clamav-freshclam.

Yes. Please complain to ftpmaster who believe that noone uses
clamav-data anyway.

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#505405: [dsc] debianization of the dsc-collector

2010-09-21 Thread Andrew Ruthven
On Tue, 2010-09-21 at 11:33 +0200, Marc Haber wrote:

 I have packaged dsc for a project of a customer of mine, and a
 colleague and me are prepared to maintain dsc for Debian in the
 future. We will be ready to upload by mid October 2010.

Would it be possible to get the packages before then?  I would be
interested in comparing them to the packages I have already prepared.

Cheers!

-- 
Andrew Ruthven, Wellington, New Zealand
Catalyst IT Limited -- http://www.catalyst.net.nz
At work: andrew.ruth...@catalyst.net.nz
At home: and...@etc.gen.nz
GPG fpr: 34CA 12A3 C6F8 B156 72C2  D0D7 D286 CE0C 0C62 B791



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


Bug#591372: New Upstream for Synergy

2010-09-21 Thread Cord Beermann
FTR: Looks like the Author of Original Synergy and the Forkers have
merged their efforts at http://synergy-foss.org/

There are also new Builds v1.3.6, v1.4.2 and v1.5.0

Currently they are rebranding Synergy-plus back to Synergy. 

Please consider using the new source for a new Package.

Cord




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



Bug#273303: #273303 et. al.: Yet another howto for building iFolder .debs

2010-09-21 Thread Axel Beckert
Hi,

we build our own ifolder packages for Ubuntu Lucid and Debian
Squeeze. Here's our documentation in case some needs some hints on how
to build them himself:
http://wiki.phys.ethz.ch/readme/compiling_ifolder_packages_on_debian_ubuntu

Kind regards, Axel Beckert
-- 
Axel Beckert beck...@phys.ethz.ch   support: +41 44 633 26 68
IT Services Group, HPT D 17 voice: +41 44 633 41 89
Departement of Physics, ETH Zurich
CH-8093 Zurich, Switzerlandhttp://nic.phys.ethz.ch/



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



Bug#597538: grub-ieee1275: grub-install needs to pass a --prefix option to grub-mkimage

2010-09-21 Thread Colin Watson
On Mon, Sep 20, 2010 at 12:33:00PM -0400, Daniel Kahn Gillmor wrote:
 a standard powerpc mac mini is unable to boot with grub after running
 
   grub-install /dev/hda
 
 (the machine's only disk uses an apple partitioning scheme, with an HFS 
 volume as (hd,apple2) mounted at /boot/grub)
[...]
 it looks like grub-install isn't passing a --prefix option to 
 grub-mkimage.
 
 Re-running /usr/sbin/grub-install /dev/hda with the attached patch 
 applied makes it so that this ugly workaround is no longer necessary.

Thanks for your report.

 --- /usr/sbin/grub-install2010-08-23 08:23:50.0 -0400
 +++ /usr/sbin/grub-install.new2010-09-20 11:47:30.0 -0400
 @@ -222,7 +222,7 @@
  modules=$modules $fs_module $partmap_module $devabstraction_module
  
  # Now perform the installation.
 -$grub_mkimage -O ${target_cpu}-ieee1275 --directory=${pkglibdir} 
 --output=${grubdir}/grub $modules || exit 1
 +$grub_mkimage -O ${target_cpu}-ieee1275 --directory=${pkglibdir} 
 --output=${grubdir}/grub --prefix=${prefix_drive}${relative_grubdir} $modules 
 || exit 1
  
  if test $update_nvram = yes; then
  set $ofpathname dummy

I don't see how this can be sufficient, since neither prefix_drive nor
relative_grubdir is set in the current version of the script.

Does the attached patch work?  It's a partial resync with the main
version of grub-install, anticipating the next snapshot/release where
all the different grub-installs are merged into a single version.

Thanks,

-- 
Colin Watson   [cjwat...@debian.org]
Description: Backport ieee1275 grub-install improvements
 We need to encode a prefix in the generated image, otherwise it will need
 manual help to find the boot directory.
Author: Daniel Kahn Gillmor d...@fifthhorseman.net
Author: Colin Watson cjwat...@debian.org
Bug-Debian: http://bugs.debian.org/597538
Forwarded: not-needed
Last-Update: 2010-09-21

Index: b/util/ieee1275/grub-install.in
===
--- a/util/ieee1275/grub-install.in
+++ b/util/ieee1275/grub-install.in
@@ -156,6 +156,8 @@
 grubdir=${bootdir}/`echo grub | sed ${transform}`
 device_map=${grubdir}/device.map
 
+grub_probe=${grub_probe} --device-map=${device_map}
+
 set $grub_mkimage dummy
 if test -f $1; then
 :
@@ -196,12 +198,15 @@
 cp -f $file ${grubdir} || exit 1
 done
 
+# Write device to a variable so we don't have to traverse /dev every time.
+grub_device=`$grub_probe --target=device ${grubdir}` || exit 1
+
 if ! test -f ${grubdir}/grubenv; then
 $grub_editenv ${grubdir}/grubenv create
 fi
 
 # Create the core image. First, auto-detect the filesystem module.
-fs_module=`$grub_probe --target=fs --device-map=${device_map} ${grubdir}`
+fs_module=`$grub_probe --target=fs --device ${grub_device}`
 if test x$fs_module = x -a x$modules = x; then
 echo Auto-detection of a filesystem module failed. 12
 echo Please specify the module with the option \`--modules' explicitly. 12
@@ -212,17 +217,66 @@
 # this command is allowed to fail (--target=fs already grants us that the
 # filesystem will be accessible).
 partmap_module=
-for x in `$grub_probe --target=partmap --device-map=${device_map} ${grubdir} 2 /dev/null`; do
+for x in `$grub_probe --target=partmap --device ${grub_device} 2 /dev/null`; do
partmap_module=$partmap_module part_$x;
 done
 
 # Device abstraction module, if any (lvm, raid).
-devabstraction_module=`$grub_probe --target=abstraction --device-map=${device_map} ${grubdir}`
+devabstraction_module=`$grub_probe --target=abstraction --device ${grub_device}`
 
 modules=$modules $fs_module $partmap_module $devabstraction_module
 
+relative_grubdir=`make_system_path_relative_to_its_root ${grubdir}` || exit 1
+if [ x${relative_grubdir} = x ] ; then
+relative_grubdir=/
+fi
+
+prefix_drive=
+config_opt=
+
+rm -f ${grubdir}/load.cfg
+
+if [ x${devabstraction_module} = x ] ; then
+if [ x${install_device} != x ]; then
+  if echo ${install_device} | grep -qx (.*) ; then
+install_drive=${install_device}
+  else
+install_drive=`$grub_probe --target=drive --device ${install_device}` || exit 1
+  fi
+  install_drive=`echo ${install_drive} | sed -e s/,[a-z0-9,]*//g`
+fi
+grub_drive=`$grub_probe --target=drive --device ${grub_device}` || exit 1
+
+# Strip partition number
+grub_drive=`echo ${grub_drive} | sed -e s/,[a-z0-9,]*//g`
+if [ $disk_module = ata ] ; then
+# generic method (used on coreboot and ata mod)
+uuid=`$grub_probe --target=fs_uuid --device ${grub_device}`
+if [ x${uuid} = x ] ; then
+  echo UUID needed with ata mod, but the filesystem containing ${grubdir} does not support UUIDs. 12
+  exit 1
+fi
+echo search.fs_uuid ${uuid} root   ${grubdir}/load.cfg
+	echo 'set prefix=($root)'${relative_grubdir}  ${grubdir}/load.cfg
+	config_opt=-c ${grubdir}/load.cfg 
+modules=$modules search_fs_uuid
+ 

Bug#597613: ITP: libdist-zilla-plugins-cjm-perl -- CJM's plugins for Dist::Zilla

2010-09-21 Thread Dominique Dumont
Package: wnpp
Owner: Dominique Dumont dominique.dum...@hp.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libdist-zilla-plugins-cjm-perl
  Version : 3.01
  Upstream Author : Christopher J. Madsen p...@cjmweb.net
* URL : http://search.cpan.org/dist/Dist-Zilla-Plugins-CJM/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : CJM's plugins for Dist::Zilla

Collection of Dist::Zilla plugins. This package features the following Perl 
modules:
* Dist::Zilla::Plugin::ArchiveRelease - Move the release tarball to an archive 
directory   
* Dist::Zilla::Plugin::GitVersionCheckCJM - Ensure version numbers are up-to-
date   
* Dist::Zilla::Plugin::ModuleBuild::Custom - Allow a dist to have a custom 
Build.PL   
* Dist::Zilla::Plugin::TemplateCJM - Process templates, including version 
numbers  changes
* Dist::Zilla::Plugin::VersionFromModule - Get distribution version from its 
main_module
* Dist::Zilla::Role::ModuleInfo - Create Module::Build::ModuleInfo object from 
Dist::Zilla::File  



Dominique
--
http://config-model.wiki.sourceforge.net/ -o- http://search.cpan.org/~ddumont/
http://www.ohloh.net/accounts/ddumont -o- http://ddumont.wordpress.com/




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



Bug#596283: Freeze exception: shadow / possible cron update?

2010-09-21 Thread Sven Joachim
On 2010-09-21 11:49 +0200, Julien Cristau wrote:

 On Sun, Sep 19, 2010 at 19:10:50 +0200, Christian Kastner wrote:

 On 09/19/2010 06:21 PM, Julien Cristau wrote:
  On Sun, Sep 19, 2010 at 17:21:38 +0200, Christian Kastner wrote:
  
  Assuming that #596283 will be fixed by a -2 release of shadow, I was
  wondering whether the Release Team would like a cron -115 as well, with
  this feature removed from /etc/cron.daily/standard.
 
  Sounds reasonable.  I'm not sure introducing yet more 'Breaks' is
  necessary though.  The worst case if you're using new cron and old
  shadow is your stuff isn't backed up, right?
 
 That is correct. However, that worst case -- however unlikely -- might
 be severe enough to warrant the Breaks:. I'm therefore tending towards
 the latter, but will leave the final call up to you.
 
 I guess the other option is to leave both backups in place for squeeze,
 and remove the one from cron later.  A bit confusing to have those files
 backed up from 2 places, but no harm other than that.  I think I'd like
 that more than Breaks...

How about letting cron depend on the new passwd package instead of
breaking the old?  ISTM this would have been the better action for
#541415 as well.

Sven



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



Bug#597614: [fakeroot] fails to install

2010-09-21 Thread Ferdinand Thommes
Package: fakeroot
Version: 1.14.4-1
Severity: important

--- Please enter the report below this line. ---

fakeroot fails to install on 2 fully dist-upgraded 32-bit sid installations

LANG=C apt-get install fakeroot
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0B/117kB of archives.
After this operation, 451kB of additional disk space will be used.
(Reading database ... 127911 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.14.4-1_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/fakeroot_1.14.4-1_i386.deb (--
unpack):
 unable to install new version of `/usr/lib/libfakeroot/libfakeroot-sysv.so': 
No such file or directory
configured to not write apport reports
  Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/fakeroot_1.14.4-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

LANG=C apt-get -f install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  fakeroot
The following NEW packages will be installed:
  fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0B/117kB of archives.
After this operation, 451kB of additional disk space will be used.
Do you want to continue [Y/n]? 
(Reading database ... 127911 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.14.4-1_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/fakeroot_1.14.4-1_i386.deb (--
unpack):
 unable to install new version of `/usr/lib/libfakeroot/libfakeroot-sysv.so': 
No such file or directory
configured to not write apport reports
  Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/fakeroot_1.14.4-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Need to get 0B/117kB of archives.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.35-4.slh.12-aptosid-686

Debian Release: squeeze/sid
  500 unstableftp.de.debian.org 
  500 unstableaptosid.com 

--- Package information. ---
Depends  (Version) | Installed
==-+-===
libc6 (= 2.7) | 2.11.2-6


Package's Recommends field is empty.

Package's Suggests field is empty.



regards
-- 
Ferdinand Thommes

Fellow of FSFE
LinuxTag e.V.




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



Bug#556189: gforge-web-apache2: After installation, no web interface available

2010-09-21 Thread Olivier Berger
On Sat, Nov 14, 2009 at 05:07:52PM +0100, Olivier Berger wrote:
 On Sat, Nov 14, 2009 at 06:55:53AM +0100, Olivier Berger wrote:
  
  After installation of FusionForge, the web interface is not active (only 
  Apache2's default it works page).
  
  I think that one has to issue a2dissite 000-default.
  
 
 Furthermore, the CSS and other theme components are apparently hardcoded to 
 be present on the server's https://hostname/ URLs ... which renders nothing 
 out of the box with firefox as the SSL cert is self-signed, btw.
 
 Anyway, there's no reason to use absolute URLs referring to HTTPS for 
 graphics when accessing it through HTTP (the reverse may be more 
 understandable maybe). IMHO, the graphics parts should be on same server and 
 probably with relative URLs.
 

Note that changing value of $sys_default_domain in /etc/gforge/local.inc to the 
FQDN may help.

Hope this helps.

Best regards,



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



Bug#597133: Acknowledgement (gvfs: dbus times out too quickly)

2010-09-21 Thread Fabian Greffrath

Am 17.09.2010 13:40, schrieb Josselin Mouette:

ISTR that the gvfsd-* are spawned by the gvfs daemon. In this case you
should be able to see what’s happening by using gdb on the gvfsd
process.


Is there anything else I can try to do? This issue really bites me, as 
the same error message occationally occurs when I want to export my 
calendar to my WebDAV space via evolution.


 - Fabian



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



Bug#568532: gforge-web-apache2: Web configuration should not be in one single config file

2010-09-21 Thread Olivier Berger
On Fri, Feb 05, 2010 at 04:40:06PM +0100, Olivier Berger wrote:
 Package: gforge-web-apache2
 Severity: normal
 
 Hi.
 
 It's very hard to test only parts of fusionforge, or install it and adapt the 
 web configuration since every directives are assembled in one big and complex 
 config file.
 
 This should be improved, as discussed with maintainers.
 
 Just a placeholder to track comments/progress.
 
 Best regards,
 

I think that the current /etc/gforge/httpd.conf, used as 
/etc/apache2/sites-enabled is just one example of what could be wished by the 
admin of a dedicated fusionforge system.

But one may wish to use fusionforge in different contexts, where there are 
several other web apps on the same machine, and where fusionforge may not be 
available at '/' but somewhere below a particular path (for instance 
/fusionforge/).

I think it would be better if the config file was just provided as an example, 
together with a minimal other apache app config file (for instance to be used 
as /etc/apache2/conf.d/fusionforge) that would provide only basic parts for a 
/fusionforge/ like installation.

Any comments ?

Best regards,



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



Bug#597615: apt: sources.list manpage lies about ignoring files in sources.list.d

2010-09-21 Thread Jonas Häggqvist
Package: apt
Version: 0.8.0
Severity: normal


The sources.list manpage states:

File names need to end with .list and may only contain letters (a-z and A-Z),
digits (0-9), underscore (_), hyphen (-) and period (.) characters. Otherwise
they will be silently ignored.

This is a lie, as apt will whine loudly at any filename which doesn't end in
..list, and doesn't match the Dir::Ignore-Files-Silently directive. This
should be mentioned in the manpage.


-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture amd64;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 0;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^firmware-linux.*;
APT::NeverAutoRemove:: ^linux-firmware$;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^kfreebsd-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::NeverAutoRemove:: ^linux-ubuntu-modules-.*;
APT::Never-MarkAuto-Sections ;
APT::Never-MarkAuto-Sections:: metapackages;
APT::Never-MarkAuto-Sections:: restricted/metapackages;
APT::Never-MarkAuto-Sections:: universe/metapackages;
APT::Never-MarkAuto-Sections:: multiverse/metapackages;
APT::Never-MarkAuto-Sections:: oldlibs;
APT::Never-MarkAuto-Sections:: restricted/oldlibs;
APT::Never-MarkAuto-Sections:: universe/oldlibs;
APT::Never-MarkAuto-Sections:: multiverse/oldlibs;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 0;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Periodic::Unattended-Upgrade 0;
APT::Update ;
APT::Update::Post-Invoke ;
APT::Update::Post-Invoke:: touch /var/lib/apt/periodic/update-success-stamp 
2/dev/null || true;
APT::Update::Post-Invoke-Success ;
APT::Update::Post-Invoke-Success:: [ ! -f /var/run/dbus/system_bus_socket ] || 
/usr/bin/dbus-send --system --dest=org.debian.apt --type=signal /org/debian/apt 
org.debian.apt.CacheChanged || true;
APT::Archives ;
APT::Archives::MaxAge 30;
APT::Archives::MinAge 2;
APT::Archives::MaxSize 500;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::mirrors mirrors/;
Dir::State::extended_states /var/lib/apt/extended_states;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::netrc auth.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Etc::preferencesparts preferences.d;
Dir::Etc::trusted trusted.gpg;
Dir::Etc::trustedparts trusted.gpg.d;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Media ;
Dir::Media::MountPath /media/apt;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
Dir::Log::History history.log;
Dir::Ignore-Files-Silently ;
Dir::Ignore-Files-Silently:: ~$;
Dir::Ignore-Files-Silently:: \.disabled$;
Dir::Ignore-Files-Silently:: \.bak$;
Dir::Ignore-Files-Silently:: \.dpkg-[a-z]+$;
Unattended-Upgrade ;
Unattended-Upgrade::Allowed-Origins ;
Unattended-Upgrade::Allowed-Origins:: ${distro_id} stable;
Unattended-Upgrade::Allowed-Origins:: ${distro_id} 
${distro_codename}-security;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Post-Invoke ;
DPkg::Post-Invoke:: if [ -d /var/lib/update-notifier ]; then touch 
/var/lib/update-notifier/dpkg-run-stamp; fi; if [ -e 
/var/lib/update-notifier/updates-available ]; then echo  
/var/lib/update-notifier/updates-available; fi ;
CommandLine ;
CommandLine::AsString apt-config dump;

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


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


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

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

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

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc none   (no description available)
ii  aptitude0.6.3-3.1terminal-based package manager (te
ii  bzip2   1.0.5-4   

Bug#550195: evolution: WebDAV contacts don't work

2010-09-21 Thread Andrew McMillan
Hi,

I previously used WebDAV contacts in the past, but they don't seem to
work at all for me now.  I have tested this with a new install of
Squeeze into a 32-bit VM, and with my main laptop running 64-bit Sid.

I have tried with, and without proxies operating, as suggested in an
earlier message to this bug report.

This is excessively vexatious for me as I just added CardDAV support to
my CalDAV server and Evolution was *working* with this in the past
(dammit :-)

I have looked for traffic leaving Evolution with Wireshark, and as far
as I can see it actually does not get as far as starting an HTTP
connection, just sitting there with a spinner saying Loading
Addressbook Summary... in the status bar while it says Searching for
the Contacts... in the main panel.

If you have any helpful suggestions for debugging this it would be
appreciated, up to and including rebuilding Evolution or E-D-S, but just
some information on how to get a few debugging messages out of the
WebDAV contacts plugin would be much appreciated.

Regards,
Andrew McMillan.
-- 

andrew (AT) morphoss (DOT) com+64(272)DEBIAN
Confirmed bachelor:
A man who goes through life without a hitch.






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



Bug#568413: autoconf-archive: new upstream release 2010.08.19.9-b1b7 is available

2010-09-21 Thread Robson Roberto Souza Peixoto
Hi,

I attach a new version for debian/watch and debian/control files

I think is necessary remove these files
debian/autoconf-archive.doc-base.autoconf-archive and 
debian/autoconf-archive.links because don't has html documents anymore
on source code.

[ ]s,



watch
Description: application/fluid
Source: autoconf-archive
Section: devel
Priority: optional
Maintainer: Qingning Huo q...@mayhq.co.uk
Uploaders: Deng Xiyue manphiz-gu...@users.alioth.debian.org
Build-Depends: debhelper (= 7)
Homepage: http://www.gnu.org/software/autoconf-archive/
Standards-Version: 3.8.1

Package: autoconf-archive
Architecture: all
Depends: ${misc:Depends}
Recommends: autoconf
Description: The Autoconf Macro Archive
 The Autoconf Macro Archive aims to provide a central repository of
 useful and tested Autoconf macros for software developers around the
 world. This package contains the complete content of the Autoconf
 Macro Archive as found at http://www.gnu.org/software/autoconf-archive/.


Bug#596283: Freeze exception: shadow / possible cron update?

2010-09-21 Thread Julien Cristau
On Tue, Sep 21, 2010 at 12:58:36 +0200, Sven Joachim wrote:

 How about letting cron depend on the new passwd package instead of
 breaking the old?  ISTM this would have been the better action for
 #541415 as well.
 
Sounds like that would work.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#597251: nmu: libppl-swi_0.10.2-8

2010-09-21 Thread Luca Falavigna
Il 18/09/2010 10:36, Adam D. Barratt ha scritto:
 Before I schedule a 22-hour build to get one binary package back :) I'm
 assuming dak can't easily be persuaded to re-introduce the old version
 of the package? (I'm guessing not given the time since removal, but it's
 always worth asking...)

Unluckily, it seems the best solution is scheduling a binNMU, sorry :(

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



signature.asc
Description: OpenPGP digital signature


Bug#597616: bind9: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2010-09-21 Thread José Figueiredo
Package: bind9

Tags: l10n patch
Severity: wishlist

Hello,

Please, Could you update the Brazilian Portuguese Translation?

Attached you will find the file pt_BR.po. It is UTF-8 encoded and it is
tested with msgfmt and podebconf-display-po.

Kind regards.
# bind9 Brazilian Portuguese translation
# Copyright (C) 2009 bind9's COPYRIGHT HOLDER
# This file is distributed under the same license as the bind9 package.
# Luís Gustavo Pessoa Sales va...@gmx.net, 2009.
# José Figueiredo deb.gnuli...@gmail.com, 2010.
# 
# 
msgid 
msgstr 
Project-Id-Version: bind9\n
Report-Msgid-Bugs-To: Source: bi...@packages.debian.org\n
POT-Creation-Date: 2008-06-13 16:56-0600\n
PO-Revision-Date: 2010-09-10 22:37-0300\n
Last-Translator: José de Figueiredo deb.gnuli...@gmail.com\n
Language-Team: Brazilian Portuguese debian-l10n-portugu...@lists.debian.
org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
pt_BR utf-8\n

#. Type: string
#. Description
#: ../templates:1001
msgid User account for running the BIND9 daemon:
msgstr Conta de usuário para execução do daemon do BIND9:

#. Type: string
#. Description
#: ../templates:1001
msgid 
The default is to run the BIND9 daemon (named) under the 'bind' user 
account. To use a different account, please enter the appropriate username.
msgstr 
O padrão é executar o daemon do BIND9 (named) com a conta de usuário 'bind'. 
Para usar uma conta diferente, por favor informe o nome do usuário.

#. Type: string
#. Description
#: ../templates:2001
msgid Other startup options for named:
msgstr Outras opções de inicialização para o named:

#. Type: string
#. Description
#: ../templates:2001
msgid 
Please provide any additional options (other than username) that should be 
passed to the BIND9 daemon (named) on startup.
msgstr 
Por favor, forneça outras opções adicionais (além de nome de usuário), que 
devam ser passadas ao daemon do BIND9 (named) na inicialização.

#. Type: boolean
#. Description
#: ../templates:3001
msgid Should resolv.conf settings be overridden?
msgstr As configurações do resolv.conf devem ser sobrescritas?

#. Type: boolean
#. Description
#: ../templates:3001
msgid 
Please choose whether the resolver should be forced to use the local BIND9 
daemon (named) rather than what the current connection recommends, when this 
machine moves around.
msgstr 
Por favor, escolha se o resolvedor de nomes deve ser forçado a usar o daemon 
do BIND9 local (named) em vez daquele que a conexão atual recomendar, quando 
esta máquina for movida.


Bug#592111: works with GRUB_GFXPAYLOAD_LINUX=1440x900

2010-09-21 Thread Jonas Pfenninger
I found in the Debian forums that you can also use GRUB_GFXPAYLOAD_LINUX in
/etc/default/grub. If use that instead of gfxpayload=keep the virtual
consoles work perfectly. So maybe this is the proper way to set this
setting. Thanks for your suggestion.



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



Bug#596408: Only segmentation faults when called...

2010-09-21 Thread Soeren Sonnenburg
On Tue, 2010-09-21 at 10:34 +0100, Anthony Callegaro wrote:
 Hello all,
 
 Just to add my 2cents
 
 I have the exact same gdb dump as Soeren, so I don't see the point in
 posting them again.
 
 Le lundi 13 septembre 2010 à 19:59 +0100, Steven Chamberlain a écrit :
  It may be possible to narrow it down to the exact line, if someone able 
  to reproduce this issue could please run:
  
  $ python -m trace -t $(which unattended-upgrade) | gzip  pytrace.txt.gz
  
  then attach the resulting pytrace.txt.gz file.
 
 I did but the resulting is 7MB so let me know if it's still useful and
 if you want me to put it somewhere.

The only further info I could provide is that this is a virtual server
with relatively little memory (1G)

 Thanks
 LeTic

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962


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


Bug#597617: devscripts: [uscan] no longer uupdates even when uscan reports a new version

2010-09-21 Thread Martin-Éric Racine
Package: devscripts
Version: 2.10.68
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

$ uscan --verbose --rename
- -- Scanning for watchfiles in .
- -- Found watchfile in ./debian
- -- In debian/watch, processing watchfile line:
   http://sf.net/openoffice-lv/lv_LV(.*)\.zip   debian uupdate
- -- Found the following matching hrefs:
 lv_LV-0.9.3.zip
 lv_LV-0.9.1.zip
 lv_LV-0.9.0.zip
 lv_LV-0.8b1.zip
 lv_LV-0.8.2.zip
 lv_LV-0.7.zip
 lv_LV-0.7.4.zip
 lv_LV-0.7.3.zip
 lv_LV.zip
 lv_LV-0.7.1.zip
 lv_LV-0.6a-full.zip
 lv_LV-0.6.zip
 lv_LV--0.6.5.zip
 lv_LV-0.6.5.1.zip
 lv_LV-0.6.4.zip
 lv_LV-0.6.3c.zip
 lv_LV-0.6.3a.zip
 lv_LV-0.6.3b.zip
 lv_LV-0.6.3.zip
 lv_LV-0.5.zip
 lv_LV-0.5.rc2.zip
 lv_LV-0.5.sr1a.zip
 lv_LV-0.5.5.zip
 lv_LV-0.4.zip
 lv_LV-0.4.1.zip
 lv_LV-0.3a.zip
 lv_LV-0.3.zip
 lv_LV-0.3.1.zip
 lv_LV-0.0.1a.zip
Newest version on remote site is -0.9.3, local version is 0.9.1
 = remote site does not even have current version
- -- Scan finished


- -- Package-specific info:

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

- --- ~/.devscripts ---
DEBUILD_LINTIAN=yes
DEBUILD_LINTIAN_OPTS=--color=auto --display-experimental --display-info 
--pedantic

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

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

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

Versions of packages devscripts recommends:
ii  at3.1.12-1   Delayed job execution and batch pr
ii  curl  7.21.1-1   Get a file from an HTTP, HTTPS or 
ii  cvs   1:1.12.13-12   Concurrent Versions System
ii  dctrl-tools   2.14.2 Command-line tools to process Debi
ii  debian-keyring [d 2010.08.01 GnuPG (and obsolete PGP) keys of D
ii  dput  0.9.6.1Debian package upload tool
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.1fast, scalable, distributed revisi
ii  git-core  1:1.7.1-1.1fast, 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  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.22-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.55-1 module to manipulate and access UR
ii  libwww-perl   5.836-1Perl HTTP/WWW client/server librar
ii  libyaml-syck-perl 1.14-1 Perl module providing a fast, ligh
ii  lintian   2.4.3  Debian package checker
ii  lsb-release   3.2-24 Linux Standard Base version report
ii  lzma  4.43-14Compression method of 7z format in
ii  man-db2.5.7-4on-line manual pager
ii  openssh-client [s 1:5.5p1-5  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-9WWW browsable pager with excellent
ii  wdiff 0.6.3-1Compares two files word by word
ii  wget  1.12-2.1   retrieves files from the web
ii  xz-utils  4.999.9beta+20100810-1 XZ-format compression utilities

Versions of packages devscripts suggests:
ii  build-essential   11.5   Informational list of build-essent
pn  cvs-buildpackage  none (no description available)
pn  devscripts-el none (no 

Bug#597618: ITP: libdist-zilla-plugin-prepender-perl -- prepend lines at the top of your perl files

2010-09-21 Thread Dominique Dumont

Package: wnpp
Owner: Dominique Dumont dominique.dum...@hp.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libdist-zilla-plugin-prepender-perl
  Version : 1.101590
  Upstream Author : Jerome Quelin
* URL : http://search.cpan.org/dist/Dist-Zilla-Plugin-Prepender/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : prepend lines at the top of your perl files

This Dist::Zilla plugin will prepend the specified lines in each Perl module 
or program within the distribution. For scripts having a shebang line, lines 
will be inserted just after it.

This is useful to enforce a set of pragmas to your files (since pragmas are 
lexical, they will be active for the whole file), or to add some copyright 
comments, as the fsf recommends.


Dominique
--
http://config-model.wiki.sourceforge.net/ -o- http://search.cpan.org/~ddumont/
http://www.ohloh.net/accounts/ddumont -o- http://ddumont.wordpress.com/




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



Bug#597619: Depends on (recently) removed package open.app

2010-09-21 Thread Mehdi Dogguy
Package: gnustep
Version: 7.5
Severity: serious

Hi,

bin:gnustep depends on open.app which got removed from unstable
recently [1]. Could you please adjust your dependencies (don't depend
on open.app anymore)? (It's blocking the removal of open.app from
Squeeze right now).

[1] http://packages.qa.debian.org/o/open.app/news/20100909T131712Z.html

Regards,

-- 
Mehdi

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

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



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



Bug#597566: clamav-getfiles: Fails to create package with multiple perl undefined reference errors

2010-09-21 Thread Adam D. Barratt
On Tue, September 21, 2010 10:58, Marc Haber wrote:
 On Mon, Sep 20, 2010 at 05:20:07PM -0400, Eric Reischer wrote:
 All known active versions of clamav-getfiles fail to produce a package.

 I'll check that, earliest next week. Release team, please pull
 clamav-getfiles form squeeze in the mean time.

Removal hint added.

Regards,

Adam




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



Bug#597620: Doesn't use /etc/vgrabbj.conf but /usr/etc/..

2010-09-21 Thread Philipp Marek
Package: vgrabbj
Version: 0.9.6-3.2
Severity: normal

vgrabbj gives me
Could not open configfile /usr/etc/vgrabbj.conf, ignoring

and the settings in /etc/vgrabbj.conf are ignored.

With
  /usr # ln -s /etc .
it works as expected, so please change the config file location to
match the pre-installed config file.



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

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

Versions of packages vgrabbj depends on:
ii  ftplib3 3.1-1-8  Library of callable ftp routines
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG
ii  libpng12-0  1.2.44-1 PNG library - runtime
ii  libv4l-00.8.0-1  Collection of video4linux support
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

vgrabbj recommends no packages.

vgrabbj suggests no packages.

-- Configuration Files:
/etc/vgrabbj.conf changed [not included]

-- no debconf information



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



Bug#597621: installation-reports: installer failed to mount when two or more encrypted partitions were set up

2010-09-21 Thread Douglas A. Augusto
Package: installation-reports

Boot method: CD
Image version:
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso
Date: Installation done on 19-Sep-2010 (ISO image from this date) 

Machine: Custom built computer (M/B ECS A890GXM-AU v1.0)
Processor: AMD Phenom II X6 1090T
Memory: 8GB (4x2GB) DDR3 1333MHZ OCZ Gold
Partitions: 

# fdisk -l /dev/sdb

Disk /dev/sdb: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00089278

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   *   1  49  390144   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sdb2  49199415625216   82  Linux swap / Solaris
/dev/sdb31994   64242   49744   83  Linux
/dev/sdb4   64242  182402   949122048   83  Linux

# fdisk -l /dev/sda

Disk /dev/sda: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c21bf

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   1  32  247808   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2  32197715625216   82  Linux swap / Solaris
/dev/sda31977  243202  1937639512   83  Linux

# df -Tl   
FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/sdb3 ext4   492153872  19767808 462386072   5% /
tmpfstmpfs 3840176 0   3840176   0% /lib/init/rw
udev tmpfs 3801224   280   3800944   1% /dev
tmpfstmpfs 3840176  2932   3837244   1% /dev/shm
/dev/sdb1 ext4  377831 40351325776  12% /boot
/dev/mapper/sdb4_crypt
  ext4   934227060  28707236 905519824   4% /home
/dev/mapper/sda3_crypt
  ext4   1907175504 1123091716 784083788  59% /mnt


Output of lspci -knn (or lspci -nn):

00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host Bridge
Alternate [1022:9601]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
00:01.0 PCI bridge [0604]: Elitegroup Computer Systems Device [1019:9602]
00:11.0 SATA controller [0106]: ATI Technologies Inc SB700/SB800 SATA
Controller [AHCI mode] [1002:4391] (rev 40)
   Subsystem: Elitegroup Computer Systems Device [1019:4391]
   Kernel driver in use: ahci
00:12.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0
Controller [1002:4397]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ohci_hcd
00:12.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ehci_hcd
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0
Controller [1002:4397]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ohci_hcd
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ehci_hcd
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385]
(rev 41)
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: piix4_smbus
00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA)
[1002:4383] (rev 40)
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: HDA Intel
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB700/SB800 LPC host
controller [1002:439d] (rev 40)
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge
[1002:4384] (rev 40)
00:14.5 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI2
Controller [1002:4399]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ohci_hcd
00:15.0 PCI bridge [0604]: ATI Technologies Inc Device [1002:43a0]
   Kernel driver in use: pcieport
00:15.1 PCI bridge [0604]: ATI Technologies Inc Device [1002:43a1]
   Kernel driver in use: pcieport
00:16.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0
Controller [1002:4397]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ohci_hcd
00:16.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
   Subsystem: Elitegroup Computer Systems Device [1019:2257]
   Kernel driver in use: ehci_hcd
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor
HyperTransport Configuration 

Bug#597538: grub-ieee1275: grub-install needs to pass a --prefix option to grub-mkimage

2010-09-21 Thread Daniel Kahn Gillmor
On 09/21/2010 06:51 AM, Colin Watson wrote:
 I don't see how this can be sufficient, since neither prefix_drive nor
 relative_grubdir is set in the current version of the script.

hrm.  i tried this after trying --prefix='(hd,apple2)/' (which worked
fine) -- so maybe grub-mkimage ended up interpreting the empty string as
keep what was there before, or it found the right thing in some other
clever way, triggered by the explicit setting of --prefix= ?  i confess
i don't really know.

 Does the attached patch work?

I don't have access to the machine to test it today, but i'll try to
look at it later this week.

 It's a partial resync with the main
 version of grub-install, anticipating the next snapshot/release where
 all the different grub-installs are merged into a single version.

Getting all grub-installs synchronized sounds like it would be a good thing.

thanks for the quick response,

--dkg



signature.asc
Description: OpenPGP digital signature


Bug#597622: openbsd-inetd: /etc/inetd.conf not removed on purge

2010-09-21 Thread Christoph Anton Mitterer
Package: openbsd-inetd
Version: 0.20080125-6
Severity: minor


Hi.

I guess it would be nice if /etc/inetd.conf would be deleted on purging 
openbsd-inet.

This is not so uncommon, as many people don't use and inetd server at all and 
then
the config file is left stale.


Cheers,
Chris.



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



Bug#597032: setting a fixed version

2010-09-21 Thread Mehdi Dogguy
fixed 597032 1:2.8.2
fixed 597055 1:2.8.2
thanks

Properly closing bugreports never hurts.

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#585417: can't play tracks with non-ASCII characters

2010-09-21 Thread Jarek Kamiński
On Sun, Sep 19, 2010 at 04:44:54PM +0300, Modestas Vainius wrote:
 On ketvirtadienis 10 Birželis 2010 15:28:54 Pierre THIERRY wrote:
 If I have files with either ISO-8859-1 or UTF-8 characters outside of
 ASCII in the file name or path, Amarok is unable to process them:
 - they are skipped in the playlist (with an error message if too many of
   them are encountered)
 - they do not appear in my collection
 
 Can you confirm this with 2.3.1? According to upstream, the bug should have 
 been solved long ago (2.2.x).

I can.
#v+
[ja...@rocket /tmp]% pgrep amarok
[ja...@rocket /tmp] {1}% locale
LANG=pl_PL
LANGUAGE=pl_PL:pl:en_GB:en
LC_CTYPE=pl_PL
LC_NUMERIC=pl_PL
LC_TIME=pl_PL
LC_COLLATE=pl_PL
LC_MONETARY=pl_PL
LC_MESSAGES=pl_PL
LC_PAPER=pl_PL
LC_NAME=pl_PL
LC_ADDRESS=pl_PL
LC_TELEPHONE=pl_PL
LC_MEASUREMENT=pl_PL
LC_IDENTIFICATION=pl_PL
LC_ALL=pl_PL
[ja...@rocket /tmp]% ls ą.mp3
ą.mp3
[ja...@rocket /tmp]% amarok ą.mp3
#v-
(not working)

After renaming ą.mp3 to a.mp3 amarok plays the file well.

ii  amarok 2.3.1-1easy to use media player based on the KDE Pl

Jarek.



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



Bug#597338: [Pkg-sysvinit-devel] Bug#597338: Do not unmount virtual/kernel fs as it breaks shutdown/reboot when using systemd

2010-09-21 Thread Kel Modderman
On Sunday 19 September 2010 04:47:24 Michael Biebl wrote:
 Package: initscripts
 Version: 2.88dsf-12
 Severity: normal
 Tags: patch
 
 Hi,
 
 systemd is a new init systemd, which makes use of cgroups to track
 running processes.
 The cgroupfs is mounted below /sys/fs/cgroup as shown below:
 
 $ mount | grep cgroup
 tmpfs on /sys/fs/cgroup type tmpfs (rw,noexec,nosuid,nodev,relatime,mode=755)
 cgroup on /sys/fs/cgroup/systemd type cgroup 
 (rw,noexec,nosuid,nodev,relatime,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
 cgroup on /sys/fs/cgroup/cpuset type cgroup 
 (rw,noexec,nosuid,nodev,relatime,cpuset) 
 cgroup on /sys/fs/cgroup/ns type cgroup (rw,noexec,nosuid,nodev,relatime,ns)
 cgroup on /sys/fs/cgroup/cpu type cgroup (rw,noexec,nosuid,nodev,relatime,cpu)
 cgroup on /sys/fs/cgroup/cpuacct type cgroup 
 (rw,noexec,nosuid,nodev,relatime,cpuacct)
 cgroup on /sys/fs/cgroup/devices type cgroup 
 (rw,noexec,nosuid,nodev,relatime,devices)
 cgroup on /sys/fs/cgroup/freezer type cgroup 
 (rw,noexec,nosuid,nodev,relatime,freezer)
 cgroup on /sys/fs/cgroup/net_cls type cgroup 
 (rw,noexec,nosuid,nodev,relatime,net_cls)
 
 /etc/init.d/umountfs tries to unmount those file systems on shutdown. As
 systemd still uses them, it fails, which results in error messags during
 reboot/shutdown.
 
 I discussed this with Tollef (Debian systemd maintainer) and Kay Sievers
 (udev and systemd upstream developer).
 
 We came to the conclusion that virtual/kernel file systems
 should not be unmounted at all, as there is no good reason to do so.
 The attached patch does just that. It skips all mount points below
 /sys/*
 
 I've been using this patch for some time now without any problems.
 
 Please consider applying it in the next upload.

Thanks for the patch, it has been applied.

Kel.



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



Bug#594253: [Pkg-sysvinit-devel] Bug#594253: init.d/rc concurrent shutdown tries to run the stop action twice

2010-09-21 Thread Kel Modderman
On Wednesday 25 August 2010 07:05:14 Ron wrote:
 Package: sysv-rc
 Version: 2.86.ds1-65
 Severity: normal
 
 Hi Petter :)
 
 Thanks for the tips, it turns out this is nothing particularly tricky
 at all, it's just a plain vanilla bug in /etc/init.d/rc ;
 
 Around line 184 we have this code:
 
 case $runlevel in
 0|6)
 ACTION=stop
 ...
 
 
 Followed by this at line 220:
 
   if [ makefile = $CONCURRENCY ]
   then
   [ $previous != N ]  startup stop
 ...
 
 
 which calls 'startup stop' the first time, and is followed at line 268 by:
 
   if [ makefile = $CONCURRENCY ]
   then
   if [ S = $runlevel ]
   then
   startup boot
   else
   startup $ACTION
   fi
   else
 ...
 
 Which then calls 'startup stop' again :(

Thanks for the report, this change should sort out the issue:

diff -u sysvinit-2.88dsf/debian/src/sysv-rc/etc/init.d/rc 
sysvinit-2.88dsf/debian/src/sysv-rc/etc/init.d/rc
--- sysvinit-2.88dsf/debian/src/sysv-rc/etc/init.d/rc
+++ sysvinit-2.88dsf/debian/src/sysv-rc/etc/init.d/rc
@@ -217,10 +215,13 @@
done
step=0
 
+   # First, run the KILL scripts.
if [ makefile = $CONCURRENCY ]
then
-   [ $previous != N ]  startup stop
-   # First, run the KILL scripts.
+   if [ $ACTION = start ]  [ $previous != N ]
+   then
+   startup stop
+   fi
elif [ $previous != N ]
then
# Run all scripts with the same level in parallel
---

Thanks, Kel



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



Bug#596511: ITP: simon -- Open source speech recognition

2010-09-21 Thread Simon Josefsson
Peter Grasch gra...@simon-listens.org writes:

 Peter, have you prepared a source *.deb yet?  It would be interesting to
 look at the code to understand how critical the non-free component is.
 Sure. There are complete packages in the Ubuntu ppa:
 https://launchpad.net/~grasch-simon-listens/+archive/simon/

The copyright file says:

This package consists of four differently licensed parts:
  * The documentation is under the GFDL (see below);
  * Julius (everything in the folder julius/) is coverd
by the Julius license (see below)
  * CMake modules are licensed under the BSD license
(see below)
  * Everything else is covered by the GPLv2

One conclusion from earlier discussions about the Julius license on
debian-legal was that it was non-free:

http://www.mail-archive.com/debian-le...@lists.debian.org/msg40898.html

The thread isn't completely clear to me what the exact problem is
though...

Is Julius dynamically linked to Simon?  I wonder whether GPLv2 is
compatible with the Julius license.

/Simon



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



Bug#597208: bindgraph: fails to install

2010-09-21 Thread Luca Falavigna
Hi José,

feel free to prepare the upload and ping me for sponsoring. It could be
worth asking advance permission to Release Team, though.

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



signature.asc
Description: OpenPGP digital signature


Bug#597132: [linux-2.6] Postinstall Error Leaves Package Partly Installed

2010-09-21 Thread Jakub Wilk

found 597132 2:4.02+dfsg-3
thanks

I can reproduce this bug, too. It only happens if you have
do_bootloader = yes in your /etc/kernel-img.conf, so an obvious 
work-around is to ret rid of it.


# apt-get install --reinstall linux-image-2.6.32-5-686
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
Need to get 0B/26.9MB of archives.
After this operation, 0B of additional disk space will be used.
Preconfiguring packages ...
(Reading database ... 121199 files and directories currently installed.)
Preparing to replace linux-image-2.6.32-5-686 2.6.32-23 (using 
.../linux-image-2.6.32-5-686_2.6.32-23_i386.deb) ...
Unpacking replacement linux-image-2.6.32-5-686 ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 2.6.32-5-686 
/boot/vmlinuz-2.6.32-5-686
run-parts: executing /etc/kernel/postrm.d/zz-extlinux 2.6.32-5-686 
/boot/vmlinuz-2.6.32-5-686
Setting up linux-image-2.6.32-5-686 (2.6.32-23) ...
Running depmod.
Running update-initramfs.
update-initramfs: Generating /boot/initrd.img-2.6.32-5-686
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 2.6.32-5-686 
/boot/vmlinuz-2.6.32-5-686
run-parts: executing /etc/kernel/postinst.d/zz-extlinux 2.6.32-5-686 
/boot/vmlinuz-2.6.32-5-686
Error setting debconf question linux-image-2.6.32-5-686/postinst/ignoring-do-bootloader-2.6.32-5-686: 
Unsupported command p: (full line was P: Checking for EXTLINUX directory...P: Writing 
config for /boot/vmlinuz-2.6.32-5-686...) received from confmodule. at 
/var/lib/dpkg/info/linux-image-2.6.32-5-686.postinst line 817, STDIN line 3.
dpkg: error processing linux-image-2.6.32-5-686 (--configure):
 subprocess installed post-installation script returned error exit status 128
configured to not write apport reports
  Errors were encountered while processing:
 linux-image-2.6.32-5-686
localepurge: checking for existence of /var/cache/localepurge...
localepurge: checking for existence of /var/cache/localepurge/localelist...
localepurge: checking system for new locale ...
localepurge: processing locale files ...
localepurge: Disk space freed in /usr/share/locale: 0 KiB
localepurge: processing man pages ...
localepurge: Disk space freed in /usr/share/man: 0 KiB

Total disk space freed by localepurge: 0 KiB

E: Sub-process /usr/bin/dpkg returned an error code (1)

--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#597623: lyx: Far too many recommends

2010-09-21 Thread Jason Heeris
Package: lyx
Severity: minor

The lyx package has far too many recommends, most of which are completely
unnecessary or tangential to the package itself, and would be better listed as
suggested packages.

For example, it recommends FIVE different PDF viewers, including both evince
AND evince-gtk.

The policy manual states:

The Recommends field should list packages that would be found together with
this one in all but unusual installations.

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



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

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



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



Bug#597208: bindgraph: fails to install

2010-09-21 Thread Mehdi Dogguy
On  0, José Luis Tallón jltal...@adv-solutions.net wrote:
 Holger Levsen wrote:
  Package: bindgraph
  Version: 0.2a-5
  Severity: serious
  User: debian...@lists.debian.org
  Usertags: piuparts piuparts.d.o
 
  Hi, 
 
  during a test with piuparts I noticed your package failed to install. As 
  per 
  definition of the release team this makes the package too buggy for a 
  release, thus the severity.

 There has been a recent NMU (2010-08-18) covering this. 0.2a-5.1
 
 Anyway, I would like to upload a better version. Anyone mind to sposor
 the upload ?
 

What would it look like?

Regards,

-- 
Mehdi Dogguy



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



Bug#597617: devscripts: [uscan] no longer uupdates even when uscan reports a new version

2010-09-21 Thread Martin-Éric Racine
On Tue, Sep 21, 2010 at 4:33 PM, James Vega james...@debian.org wrote:
 2010/9/21 Martin-Éric Racine q-f...@iki.fi:
 $ uscan --verbose --rename
 - -- Scanning for watchfiles in .
 - -- Found watchfile in ./debian
 - -- In debian/watch, processing watchfile line:
   http://sf.net/openoffice-lv/lv_LV(.*)\.zip   debian uupdate
 [...]
 Newest version on remote site is -0.9.3, local version is 0.9.1
  = remote site does not even have current version

 $ dpkg --compare-versions -- '-0.9.3' gt '0.9.1' || echo no
 no

 The version regex in your watch file is capturing too much (the leading
 '-').  Changing http://sf.net/openoffice-lv/lv_LV(.*)\.zip to
 http://sf.net/openoffice-lv/lv_LV-+([0-9.]+)\.zip will fix it.  Adjust
 accordingly if you also want to match versions like 0.5.rc2.

Why was the current recipe working fine until now, then? This is the
very first time that it barfs. Something must have changed in the way
uupdate or uscan work since we pushed 0.9.1.



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



Bug#597132: [linux-2.6] Postinstall Error Leaves Package Partly Installed

2010-09-21 Thread Daniel Baumann
reassign 597132 linux-2.6
thanks

since squeeze, you're not supposed to have do_bootloader being used. if
you're upgrading from lenny, then linux-2.6 needs to take care about
that, thus reassigning.

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



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



Bug#597624: ITP: liblist-utilsby-perl -- higher-order list utility functions

2010-09-21 Thread Angel Abad
Package: wnpp
Severity: wishlist
Owner: Angel Abad angela...@gmail.com


* Package name: liblist-utilsby-perl
  Version : 0.06
  Upstream Author : Paul Evans leon...@leonerd.org.uk
* URL : http://search.cpan.org/~pevans/List-UtilsBy-0.06/
* License : Artistic or GPL-1
  Programming Lang: Perl
  Description : higher-order list utility functions

 List::UtilsBy provides a number of list utility functions, all of which take
 an initial code block to control their behaviour. They are variations on
 similar core perl or List::Util functions of similar names, but which use the
 block to control their behaviour.



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



Bug#508604: init script suspend/shutdown from upstream

2010-09-21 Thread Václav Ovsík
Hi,
I just took tools/libvirt-guests.init.in  tools/libvirt-guests.sysconf
and modify init script a little (remove bashisms) and put it on
a server. It is not final shape probably, but maybe it can be useful as
starting point...
Best Regards
-- 
Zito


libvirt-bin-guests.tar.bz2
Description: Binary data


Bug#597623: lyx: Far too many recommends

2010-09-21 Thread Jason Heeris
Er, sorry, this bit:

 For example, it recommends FIVE different PDF viewers, including both evince
 AND evince-gtk.

...is wrong (and I realise that the tone of the all-caps is a little
more inflammatory than I meant, so apologies for that too). The real
recommends line is evince | pdf-viewer.

I still think you should consider removing: texlive-science,
imagemagick, evince | pdf-viewer, librsvg2-bin | inkscape (especially
because these last two, depending on how they are resolved, can drag
in quite a few additional packages).

Sunshine and kittens,
Jason



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



Bug#597625: howto restict logging

2010-09-21 Thread Harald Dunkel
Package: ngircd
Version: 15-0.1
Severity: wishlist

I've received a request to restrict ngircd's logging to
errors and more severe events by default. I know this can
be done in syslog.conf, but it would be very nice if this
could be configured in ngircd.conf, as for others.

At least its not documented, afiacs. Briefly checking
the code didn't reveal a hidden option, either, but
maybe I am too blind to see.


Many thanx

Harri



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



Bug#578912: linux-image-2.6.32-4-686: soft lockups with radeon KMS

2010-09-21 Thread Zsolt Rizsanyi
Hi!

On Sat, Jun 12, 2010 at 1:19 AM, Ben Hutchings b...@decadent.org.uk wrote:
 Since squeeze will not be based on 2.6.34, we need to work out exactly
 what change in 2.6.34 has fixed this bug.  However, given that you say
 it can take several hours to reproduce the bug, this could be very
 difficult!

I have recently seen that drm changes have been imported from 2.6.34
into 2.6.32, and decided to try it out.

Booted into 2.6.32-21, expecting the issue to be gone. To my surprise
the issue is still present! I don't how this could be. It might be
that it is caused by some other part of the kernel.

I'm back to the 2.6.35 kernel from experimental.

If you have any idea what to try or check then please ask. Trying many
kernel version would be too much for me, but I would be willing to try
a few version or patches.

Regards,
Zsolt



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



Bug#596511: ITP: simon -- Open source speech recognition

2010-09-21 Thread Peter Grasch

 Hi!


One conclusion from earlier discussions about the Julius license on
debian-legal was that it was non-free:

http://www.mail-archive.com/debian-le...@lists.debian.org/msg40898.html

The thread isn't completely clear to me what the exact problem is
though...
As far as I can work out the ambiguous advertising clause is the problem 
(as well as possibly clause 5 but that seems to be open for discussion).


I agree that this clause is quite badly worded and already asked about 
it in the Julius forums (I am bedahr): 
http://julius.sourceforge.jp/forum/viewtopic.php?f=6t=644-


But I never got a reply.



Is Julius dynamically linked to Simon?  I wonder whether GPLv2 is
compatible with the Julius license.

Yes it is. The simon license contains a special exception to allow this.
This is also covered here:
http://www.simon-listens.org/wiki/index.php/Licensing

Regards,
Peter



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



Bug#597617: devscripts: [uscan] no longer uupdates even when uscan reports a new version

2010-09-21 Thread James Vega
2010/9/21 Martin-Éric Racine q-f...@iki.fi:
 On Tue, Sep 21, 2010 at 4:33 PM, James Vega james...@debian.org wrote:
 2010/9/21 Martin-Éric Racine q-f...@iki.fi:
 $ uscan --verbose --rename
 - -- Scanning for watchfiles in .
 - -- Found watchfile in ./debian
 - -- In debian/watch, processing watchfile line:
   http://sf.net/openoffice-lv/lv_LV(.*)\.zip   debian uupdate
 [...]
 Newest version on remote site is -0.9.3, local version is 0.9.1
  = remote site does not even have current version

 $ dpkg --compare-versions -- '-0.9.3' gt '0.9.1' || echo no
 no

 The version regex in your watch file is capturing too much (the leading
 '-').  Changing http://sf.net/openoffice-lv/lv_LV(.*)\.zip to
 http://sf.net/openoffice-lv/lv_LV-+([0-9.]+)\.zip will fix it.  Adjust
 accordingly if you also want to match versions like 0.5.rc2.

 Why was the current recipe working fine until now, then? This is the
 very first time that it barfs. Something must have changed in the way
 uupdate or uscan work since we pushed 0.9.1.


Actually, your watch file changed.  In 0.9.1, you were using
http://sf.net/openoffice-lv/lv_LV-(.*)\.zip so the '-' was counted as
part of the version string.

-- 
James
GPG Key: 1024D/61326D40 2003-09-02 James Vega james...@debian.org



--
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   >