Bug#583618: gnome-games: fails to start

2010-05-30 Thread Josselin Mouette
Le samedi 29 mai 2010 à 14:35 -0700, Gary Koskenmaki a écrit :
 The output from python -c import gnome_sudoku was blank.  No
 output.
 Not even a blank line.  I get the same response from a python
 prompt
 when when trying to import a module named gnome_sudoku.

Looks pretty normal to me.

Could you attach the output of python -v /usr/games/gnome-sudoku then?

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


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


Bug#583695: /usr/sbin/update-initramfs: line 317: 1: unbound variable

2010-05-30 Thread Jonathan Nieder
tags 583695 + patch
quit

Hi Martin-Éric,

Martin-Éric Racine wrote:

 Processing triggers for initramfs-tools ...
 /usr/sbin/update-initramfs: line 317: 1: unbound variable
 dpkg: error processing initramfs-tools (--configure):

Thanks for the warning.  I applied the two patches locally
and it seemed to work well; the first one is an unrelated
cosmetic change, the other fixes all unbound variables I
could find by reading through the script.  Thoughts welcome.

Jonathan Nieder (2):
  update-initramfs: use $* instead of $@
  update-initramfs: bind variables before use

 update-initramfs |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)




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



Processed: Re: /usr/sbin/update-initramfs: line 317: 1: unbound variable

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 583695 + patch
Bug #583695 [initramfs-tools] /usr/sbin/update-initramfs: line 317: 1: unbound 
variable
Bug #583700 [initramfs-tools] initramfs-tools: package upgrade fails
Added tag(s) patch.
Added tag(s) patch.
 quit
Stopping processing here.

Please contact me if you need assistance.
-- 
583695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583695
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583695: [PATCH 1/2] update-initramfs: use $* instead of $@

2010-05-30 Thread Jonathan Nieder
Use $* where it makes the quoting behavior easier to understand.

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
Probably does not belong in this bug log, but I was too lazy to
drop the change.

 update-initramfs |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/update-initramfs b/update-initramfs
index 94b8971..33c568b 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -27,7 +27,7 @@ fi
 usage()
 {
if [ -n ${1} ]; then
-   printf $...@}\n\n 2
+   printf ${*}\n\n 2
fi
cat 2  EOF
 Usage: ${0} [OPTION]...
@@ -62,7 +62,7 @@ chrooted()
 mild_panic()
 {
if [ -n ${1} ]; then
-   printf $...@}\n 2
+   printf ${*}\n 2
fi
exit 0
 }
@@ -70,7 +70,7 @@ mild_panic()
 panic()
 {
if [ -n ${1} ]; then
-   printf $...@}\n 2
+   printf ${*}\n 2
fi
exit 1
 }
@@ -78,7 +78,7 @@ panic()
 verbose()
 {
if [ ${verbose} = 1 ]; then
-   printf $...@}\n
+   printf ${*}\n
fi
 }
 
-- 
1.7.1




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



Bug#583508: [Pkg-samba-maint] Bug#583508: smbfs: smbumount does not umount from win2k server

2010-05-30 Thread Steve Langasek
On Sun, May 30, 2010 at 08:45:33AM +0200, Leonardo Boselli wrote:
 On Sat, 29 May 2010, Steve Langasek wrote:

 On Sat, May 29, 2010 at 11:50:49PM +0200, Leonardo Boselli wrote:

 Is the volume mounted as smbfs or cifs?
 smbfs

 Then you're not doing it with the Debian packages.  Debian stopped
 supporting smbfs mounts in samba 3.0.27a-2, which predates Lenny by a year.

 Please show the output of 'mount' on this system.

 i cannot, since i do not want absolutely make such a test on
 production server, when i know that likely it will not be unmounted.
 anyway the package that i have for smbmount is:

 Package: smbfs
 Status: install ok installed
 Priority: optional
 Section: otherosfs
 Installed-Size: 4112
 Maintainer: Debian Samba Maintainers
 pkg-samba-ma...@lists.alioth.debian.org
 Architecture: amd64
 Source: samba
 Version: 2:3.2.5-4lenny11
 Replaces: smbfsx

And that package does not support the smbfs filesystem, so either your mount
is actually cifs, or you're using an smbmount command not from the Debian
package.  If you're not able to help debug this bug, which no one else has
reported seeing, we would have to assume that the problem is the second one. 

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org



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



Bug#583695: [PATCH 2/2] update-initramfs: bind variables before use

2010-05-30 Thread Jonathan Nieder
Initialize local variables before use to avoid hard-to-debug problems
when they happen to be set in the environment.

These can cause initramfs-tools to error out since 0.95~29
(update-initramfs: Use nounset, 2010-04-07).

Closes: #583695

Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 update-initramfs |   14 +++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/update-initramfs b/update-initramfs
index 33c568b..a49ea20 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -7,6 +7,8 @@ KPKGCONF=/etc/kernel-img.conf
 USETRIGGERS=true
 mode=
 version=
+update_initramfs=yes
+backup_initramfs=no
 
 set -eu
 
@@ -26,7 +28,7 @@ fi
 
 usage()
 {
-   if [ -n ${1} ]; then
+   if [ -n ${1:+set} ]; then
printf ${*}\n\n 2
fi
cat 2  EOF
@@ -61,7 +63,7 @@ chrooted()
 
 mild_panic()
 {
-   if [ -n ${1} ]; then
+   if [ -n ${1:+set} ]; then
printf ${*}\n 2
fi
exit 0
@@ -69,7 +71,7 @@ mild_panic()
 
 panic()
 {
-   if [ -n ${1} ]; then
+   if [ -n ${1:+set} ]; then
printf ${*}\n 2
fi
exit 1
@@ -127,6 +129,7 @@ backup_booted_initramfs()
fi
 
# keep booted initramfs
+   boot_initramfs=
uptime_days=$(awk '{printf %d, $1 / 3600 / 24}' /proc/uptime)
if [ -n $uptime_days ]; then
boot_initramfs=$(find ${initramfs}.bak -mtime +${uptime_days})
@@ -295,6 +298,7 @@ set_current_version()
 
 set_linked_version()
 {
+   linktarget=
if [ -e /initrd.img ]  [ -L /initrd.img ]; then
linktarget=$(basename $(readlink /initrd.img))
fi
@@ -313,6 +317,10 @@ set_linked_version()
 set_highest_version()
 {
get_sorted_versions
+   if [ -z ${version_list} ]; then
+   version=
+   return
+   fi
set -- ${version_list}
version=${1}
 }
-- 
1.7.1




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



Processed: severity of 583008 is serious

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # feel free to downgrade it once fixed amd64 build is in archive
 severity 583008 serious
Bug #583008 [libortp-dev] -lsrtp and crypto friends should be Libs.private in 
ortp.pc?
Severity set to 'serious' from 'important'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583008
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#582774: seed FTBFS on ia64

2010-05-30 Thread Josselin Mouette
Le samedi 29 mai 2010 à 15:44 +0200, Josselin Mouette a écrit :
  make[5]: Entering directory 
  `/build/buildd-seed_2.30.0-1-ia64-em4hmt/seed-2.30.0/doc/modules/readline'
  ../../../src/seed ../../../doc/modules/make-functions.js 
  ../../../doc/modules/readline/readline.js  
  ../../../doc/modules/readline/readline-funcs.xml
  
  ** (seed:307): CRITICAL **: Line 0 in (null): (null) (null)
  
  As well as being rc in it's own right this bug is blocking the migration 
  of fixes for a number of rc bugs in epiphany-browser.

I have requested the removal of seed/ia64 in unstable so that epiphany
can migrate.

 After some analysis, it turns out that previous versions of seed can
 build but don’t actually work on ia64.
 
 The bug appeared between 2.27.91-1 and 2.28.0-1, but it turns out it is
 not caused by a change in seed. Trying to build seed 2.27.91-1 on a
 current ia64 chroot leads to the same failure. So this might actually be
 a bug in the toolchain.

I’d appreciate now if ia64 porters could have a look. At the time of the
g_critical error, the stack is corrupt and I have no idea on how to
debug that. I’d appreciate at least some advice on where to look.

Program received signal SIGABRT, Aborted.
(gdb) bt
#0  signal handler called
Cannot access memory at address 0x28

All I can tell is that it’s not an optimization error since -O0 gives
the same result.

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


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


Processed: Fix version number for some edu related bugs

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 583551 1.41.12-1
Bug #583551 [e2fsprogs] debian-installer: mkfs.ext3 fails to run
Bug #583592 [e2fsprogs] shlibs.local tricks generate wrong dependency on 
libblkid1
Bug Marked as found in versions e2fsprogs/1.41.12-1.
Bug Marked as found in versions e2fsprogs/1.41.12-1.
 found 583592 1.41.12-1
Bug #583592 [e2fsprogs] shlibs.local tricks generate wrong dependency on 
libblkid1
Bug #583551 [e2fsprogs] debian-installer: mkfs.ext3 fails to run
Ignoring request to alter found versions of bug #583592 to the same values 
previously set
Ignoring request to alter found versions of bug #583551 to the same values 
previously set
 reassign 177347 libparted0
Bug #177347 [libparted1.7-1] libparted1.6-0: Should support creating ext3 
filesystems
Bug reassigned from package 'libparted1.7-1' to 'libparted0'.
 found 177347 1.7.1-5.1
Bug #177347 [libparted0] libparted1.6-0: Should support creating ext3 
filesystems
There is no source info for the package 'libparted0' at version '1.7.1-5.1' 
with architecture ''
Unable to make a source version for version '1.7.1-5.1'
Bug Marked as found in versions 1.7.1-5.1.
 reassign 177348 libparted0
Bug #177348 [libparted1.7-1] libparted1.6-0: Should support creating LVM 
partitions and volumes
Bug reassigned from package 'libparted1.7-1' to 'libparted0'.
 found 177348 1.7.1-5.1
Bug #177348 [libparted0] libparted1.6-0: Should support creating LVM partitions 
and volumes
There is no source info for the package 'libparted0' at version '1.7.1-5.1' 
with architecture ''
Unable to make a source version for version '1.7.1-5.1'
Bug Marked as found in versions 1.7.1-5.1.
 found 210820 4:3.90.1-1
Bug #210820 [poxml] Please change short title/paragraph behaviour
There is no source info for the package 'poxml' at version '4:3.90.1-1' with 
architecture ''
Unable to make a source version for version '4:3.90.1-1'
Bug Marked as found in versions 4:3.90.1-1.
 found 561359 0.1
Bug #561359 [debian-edu] please provide gateway profile
There is no source info for the package 'debian-edu' at version '0.1' with 
architecture ''
Unable to make a source version for version '0.1'
Bug Marked as found in versions 0.1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
561359: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=561359
177348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177348
177347: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177347
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#582982: marked as done (setools: FTBFS: expand.c:168: error: too few arguments to function 'expand_module_avrules')

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 13:05:13 +0200
with message-id 20100530110513.ga6...@jwilk.net
and subject line Re: Bug#582982: setools: FTBFS: expand.c:168: error: too few 
arguments to function 'expand_module_avrules'
has caused the Debian Bug report #582982,
regarding setools: FTBFS: expand.c:168: error: too few arguments to function 
'expand_module_avrules'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
582982: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582982
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: setools
Version: 3.3.6.ds-7.1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100524 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..-fno-strict-aliasing 
 -I./../include -I/usr/lib64/../include -I/usr/include -I/usr/include -fpic 
 -Wall -g -O2 -MT expand.o -MD -MP -MF .deps/expand.Tpo -c -o expand.o expand.c
 expand.c: In function 'qpol_expand_module':
 expand.c:168: warning: passing argument 6 of 'expand_module_avrules' makes 
 pointer from integer without a cast
 /usr/include/sepol/policydb/expand.h:44: note: expected 'uint32_t *' but 
 argument is of type 'int'
 expand.c:168: error: too few arguments to function 'expand_module_avrules'
 make[6]: *** [expand.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010/05/24/setools_3.3.6.ds-7.1_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---

Version: 3.3.6.ds-7.2


gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..-fno-strict-aliasing 
-I./../include -I/usr/lib64/../include -I/usr/include -I/usr/include -fpic 
-Wall -g -O2 -MT expand.o -MD -MP -MF .deps/expand.Tpo -c -o expand.o expand.c
expand.c: In function 'qpol_expand_module':
expand.c:168: warning: passing argument 6 of 'expand_module_avrules' makes 
pointer from integer without a cast
/usr/include/sepol/policydb/expand.h:44: note: expected 'uint32_t *' but 
argument is of type 'int'
expand.c:168: error: too few arguments to function 'expand_module_avrules'
make[6]: *** [expand.o] Error 1


This is duplicate of #581884, fixed in my NMU.

--
Jakub Wilk


signature.asc
Description: Digital signature
---End Message---


Bug#583475: META file for ocaml-llvm has a wrong filename

2010-05-30 Thread Mehdi Dogguy
On 05/28/2010 10:55 PM, Sylvain Le Gall wrote:
 Hello,
 
 On Fri, May 28, 2010 at 03:34:57PM +0200, Mehdi Dogguy wrote:
 On 27/05/2010 22:12, Sylvain Le Gall wrote:
 Package: libllvm-ocaml-dev
 Version: 2.6-9
 Severity: normal
 Tags: patch


 The patch attached fix this bug.


 Isn't it better to put the META file in $(OCAML_STDLIB_DIR)/llvm/META?
 As I see it, only ocaml's libraries should have their META file under
 $(OCAML_STDLIB_DIR)/METAS/, all the rest should be put under the library's
 folder.

 
 Well it doesn't really matter and I tend to place META files that are
 not shipped with the library inside METAS/. After all, this is the
 reason why all the METAS/META.* files are placed herei by findlib. 
 

It *does* matter! When I have to open some META file by hand to see its
content, it's much more easier to know beforehand (and without looking
for it) where it is. For now, the situation is not uniform: most of the
people put the META file under +$lib/META, some others put under METAS
(but a few¹ of them when looking at the archive's state).

¹: The complete list is:
camlidl
libcameleon-ocaml-dev
libcothreads-ocaml-dev
libcryptokit-ocaml
libfindlib-ocaml
libgmp-ocaml-dev
libgraphviz-dev
liblablgtk2-gl-ocaml
liblablgtk2-gnome-ocaml
liblablgtksourceview2-ocaml
libllvm-ocaml-2.7-dev
libllvm-ocaml-dev
libocsigen-xhtml-ocaml-dev
libxml-light-ocaml-dev

where you can ignore libfindlib-ocaml because it puts the META files
for the standard library and libocsigen-xhtml-ocaml-dev for another
reason.

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



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



Bug#583751: ufraw-batch: fails to install

2010-05-30 Thread gregor herrmann
Package: src:ufraw
Severity: serious
Justification: fails to install, tries to overwrite files

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

The new ufraw-batch package fails to install:

Selecting previously deselected package ufraw-batch.
Unpacking ufraw-batch (from .../ufraw-batch_0.16-2_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/ufraw-batch_0.16-2_i386.deb 
(--unpack):
 trying to overwrite '/usr/bin/ufraw-batch', which is also in package ufraw 
0.16-1+b1
dpkg-deb: subprocess paste killed by signal (Broken pipe)


Adding a versioned Replaces in debian/control should fix this problem.


Cheers,
gregor


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

Kernel: Linux 2.6.34.201005251723
Locale: LANG=C, LC_CTYPE=de_AT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

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

iQIcBAEBCAAGBQJMAlUzAAoJELs6aAGGSaoGxQcP/3EFWa+2xynjc7WBNpSqZrUd
ElIEndT0ufM3j7T6IOnr4WPvxC/JACJkYeT8tsqkBdJSQ38Ymsae2xB5SELzaFpi
ijCDCCOLna8Jhr3tyR8WNx9VrgUSuj0WXqB6tOGjpvdT3yaWqYMwLacrl3Gn6XIm
tNcHZs4kYdQLR5JJwS32r8TpljcPuoGWgQY356IFpScxGgiG4VE7ZWt/3nAglhZ8
q09et+ZS9i9LKHmuuodoaGC6oKGK/+pM8jgdCb4oRy6gnIkidEtFwHRkbD29yiLO
fJ+TcaycuNXLQV+hG8hOlah0Gop1Q5w/a/jjUqTam63U93jpDlSb8i759CKBFWaC
Lt9Hi3L/3kVfFW2zxn2/6klYU9TE4KhL2oaggIs4QdbvhDgjg/coGCW/n8G88Arw
ikd4l4Lwep+e4xIdpdLOZ0O/63bL7MUy3/RVdr3mo66EU/OiMXAbQUnogNapHSMH
ArwRK8Ng5kZGMHClvqt1sr5epAPOJhWA2qlMbpNxHxo8RX9WqTxdE+JCgg9MT+2D
wqJPY0Q4gXt/PJDoAYAhVqi9nHp+VDSImoDKMoag9Q1sazk+deUd1ljvtVoQy9Lt
BsrT6j1kxOsTnxzdq9XB7gcLfEKwXX8ZvdcN/tvf7uB4t6KEa33s1HtqIjpI8sXh
6v2E8rR1yj8woWPqke6Q
=NtKV
-END PGP SIGNATURE-



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



Processed: limit source to linphone, tagging 583008

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #linphone (3.3.0-2) unstable; urgency=low
 #
 #  * Make SRTP support explicit (Closes: #583008)
 #- Build-Depends: libsrtp-dev [alpha amd64 armel hppa i386 mips mipsel
 #powerpc s390]
 #- Build-Conflicts: libssl-dev - uses none of its symbols
 #- libortp-dev Depends: libsrtp0-dev [alpha amd64 armel hppa i386 mips
 #mipsel powerpc s390]
 #
 limit source linphone
Limiting to bugs with field 'source' containing at least one of 'linphone'
Limit currently set to 'source':'linphone'

 tags 583008 + pending
Bug #583008 [libortp-dev] -lsrtp and crypto friends should be Libs.private in 
ortp.pc?
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583008
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583008: marked as done (-lsrtp and crypto friends should be Libs.private in ortp.pc?)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 12:33:57 +
with message-id e1oihih-0003bf...@ries.debian.org
and subject line Bug#583008: fixed in linphone 3.3.0-2
has caused the Debian Bug report #583008,
regarding -lsrtp and crypto friends should be Libs.private in ortp.pc?
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583008
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: kdenetwork
Version: 4:4.4.3-2
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100524 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 /usr/bin/g++   -g -O2 -g -Wall -O2 -Wnon-virtual-dtor -Wno-long-long -ansi 
 -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith 
 -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new 
 -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden 
 -fvisibility-inlines-hidden -DNDEBUG -DQT_NO_DEBUG  -Wl,--enable-new-dtags 
 -Wl,--no-undefined -Wl,--as-needed CMakeFiles/call.dir/call_main.o 
 CMakeFiles/call.dir/callclient.o CMakeFiles/call.dir/console.o  -o 
 googletalk-call -rdynamic -L../../../../../../../../lib 
 ../../../../../../../../lib/libcricketexampleslogin.a 
 ../../../../../../../../lib/libcricketsessionphone.a 
 ../../../../../../../../lib/libcricketp2pclient.a 
 ../../../../../../../../lib/libcricketp2pbase.a 
 ../../../../../../../../lib/libcricketxmpp.a 
 ../../../../../../../../lib/libcricketxmllite.a 
 ../../../../../../../../lib/libcricketbase.a -lexpat -lortp -lpthread -lssl 
 -lcrypto -lmediastreamer -lortp -lpthread -lsrtp -lssl -lcrypto -lssl 
 -lcrypto -lmediastreamer -lortp -lsrtp -lssl -lcrypto 
 Building CXX object 
 kopete/protocols/yahoo/libkyahoo/CMakeFiles/kyahoo.dir/coreprotocol.o
 cd kopete/protocols/yahoo/libkyahoo  /usr/bin/g++   -DMAKE_KYAHOO_LIB 
 -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -DQT_NO_STL 
 -DQT_NO_CAST_TO_ASCII -D_REENTRANT -DKDE_DEPRECATED_WARNINGS -g -O2 -g -Wall 
 -O2 -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align 
 -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions 
 -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual 
 -fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden 
 -DNDEBUG -DQT_NO_DEBUG -fPIC -I. 
 -I../../../../../kopete/protocols/yahoo/libkyahoo -I../../../../.. 
 -I../../../.. -I../../.. -I../../../../../kopete/libkopete 
 -I../../../libkopete -I../../../../../kopete/libkopete/ui 
 -I../../../libkopete/ui -I../../../../../kopete/libkopete/private 
 -I../../../../../kopete/libkopete/contactlist 
 -I../../../../../kopete/libkopete/tasks -I/usr/include/KDE 
 -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns 
 -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit 
 -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest 
 -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql 
 -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript 
 -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtMultimedia 
 -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner 
 -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant 
 -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui 
 -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
 -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4   -D_GNU_SOURCE 
 -D_LARGEFILE64_SOURCE -o CMakeFiles/kyahoo.dir/coreprotocol.o -c 
 ../../../../../kopete/protocols/yahoo/libkyahoo/coreprotocol.cpp
 Building CXX object 
 kopete/protocols/jabber/libiris/CMakeFiles/iris_kopete.dir/iris/xmpp/cutestuff/bsocket.o
 cd kopete/protocols/jabber/libiris  /usr/bin/g++   -D_BSD_SOURCE 
 -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -DQT_NO_STL -DQT_NO_CAST_TO_ASCII 
 -D_REENTRANT -DKDE_DEPRECATED_WARNINGS -DQT3_SUPPORT -DQT3_SUPPORT_WARNINGS 
 -DIRIS_XMPP_JID_DEPRECATED -DIRISNET_STATIC -g -O2 -g -Wall -O2 
 -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align 
 -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions 
 -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual 
 -fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden 
 -DNDEBUG -DQT_NO_DEBUG -I. -I../../../../../kopete/protocols/jabber/libiris 
 -I../../../../.. -I../../../.. -I../../.. -I../../../../../kopete/libkopete 
 -I../../../libkopete -I../../../../../kopete/libkopete/ui 
 -I../../../libkopete/ui -I../../../../../kopete/libkopete/private 
 -I../../../../../kopete/libkopete/contactlist 
 

Bug#582806: perl: CVE-2010-1974: multiple unspecified vulnerabilities in Safe

2010-05-30 Thread Moritz Muehlenhoff
Niko Tyni wrote:
 Package: perl
 Version: 5.10.1-12
 Severity: important
 Tags: security
 X-Debbugs-Cc: t...@security.debian.org
 
 Quoting http://security-tracker.debian.org/tracker/CVE-2010-1974 :
 
   Multiple unspecified vulnerabilities in the Safe (aka Safe.pm) module
   before 2.25 for Perl allow context-dependent attackers to inject and
   execute arbitrary code via vectors related to automagic methods. NOTE:
   this might overlap CVE-2010-1169 or CVE-2010-1447.
 
 The best description I'm aware of is at
 
  
 http://blogs.perl.org/users/rafael_garcia-suarez/2010/03/new-safepm-fixes-security-hole.html
 
 I expect lenny is affected just as much as sid/squeeze. Not sure if we
 need a DSA. Setting the severity to 'important' for now.
 
 Please note that there's potential for regression: Safe-2.27 breaks at
 least libpetal-perl, see #582805.
 
 Security team, I'd love some help with this.

Would anyone use Safe to run potentially harmful code in a sandbox-like
environment? If it's more or less a debugging/testing feature, we don't
need to update it through a DSA, especially if it causes regressions.

Cheers,
Moritz



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



Bug#583758: gstreamer0.10-plugins-bad: linking against libvpx makes package unredistributable

2010-05-30 Thread Reinhard Tartler
Package: gstreamer0.10-plugins-bad
Version: 0.10.18.3-2
Severity: serious

From the changelog:

 gst-plugins-bad0.10 (0.10.18.3-2) unstable; urgency=low
 .
   * debian/build-deps.in,
 debian/gstreamer-plugins-bad.install:
 + Enable and ship the VP8 encoder/decoder plugin.

Quoting from its copyright statement:

http://packages.debian.org/changelogs/pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.18.3-2/gstreamer0.10-plugins-bad.copyright

,
| Copyright:
| 
| This package is free software; you can redistribute it and/or
| modify it under the terms of the GNU Lesser General Public
| License as published by the Free Software Foundation; either
| version 2 of the License, or (at your option) any later version.
`

However, libvpx copyright:

http://packages.debian.org/changelogs/pool/main/libv/libvpx/libvpx_0.9.0-5/libvpx0.copyright

,
| License:
| 
|   For everything not listed below:
| All rights reserved.
| 
| Redistribution and use in source and binary forms, with or without
| modification, are permitted provided that the following conditions
| are met:
| 
| - Redistributions of source code must retain the above copyright
|   notice, this list of conditions and the following disclaimer.
| 
| - Redistributions in binary form must reproduce the above
|   copyright notice, this list of conditions and the following
|   disclaimer in the documentation and/or other materials provided
|   with the distribution.
| 
| - Neither the name of Google nor the names of its contributors may
|   be used to endorse or promote products derived from this software
|   without specific prior written permission.
| 
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
| AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
| FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
| COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
| INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
| BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
| LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
| CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
| LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
| ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
| POSSIBILITY OF SUCH DAMAGE.
|  
| Subject to the terms and conditions of the above License, Google
| hereby grants to You a perpetual, worldwide, non-exclusive,
| no-charge, royalty-free, irrevocable (except as stated in this
| section) patent license to make, have made, use, offer to sell,
| sell, import, and otherwise transfer this implementation of VP8,
| where such license applies only to those patent claims, both
| currently owned by Google and acquired in the future, licensable by
| Google that are necessarily infringed by this implementation of
| VP8. If You or your agent or exclusive licensee institute or order
| or agree to the institution of patent litigation against any entity
| (including a cross-claim or counterclaim in a lawsuit) alleging that
| this implementation of VP8 or any code incorporated within this
| implementation of VP8 constitutes direct or contributory patent
| infringement, or inducement of patent infringement, then any rights
| granted to You under this License for this implementation of VP8
| shall terminate as of the date such litigation is filed.
`

These additional restrictions are additional restrictions imposed on the
gstreamer package, which is forbidden by LGPL §10.

This license incompatibility has been confirmed by:

 techrights: http://techrights.org/2010/05/29/chris-dibona-on-webm-osi/
 vlc: http://mailman.videolan.org/pipermail/vlc-devel/2010-May/075102.html
 ffmpeg: http://permalink.gmane.org/gmane.comp.video.ffmpeg.cvs/30501

Please revert this upload at your earliest convenience.

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

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



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



Bug#583763: newlib-mingw32: Uninstallable package: dirent.h also in mingw32-runtime

2010-05-30 Thread Jerome Robert
Package: newlib-mingw32
Version: 1.17.0-3
Justification: Policy 7.6.1
Severity: serious

When trying to install newlib-mingw32:

Unpacking newlib-mingw32 (from .../newlib-mingw32_1.17.0-3_all.deb) ...
dpkg: error processing
/var/cache/apt/archives/newlib-mingw32_1.17.0-3_all.deb
(--unpack):
 trying to overwrite '/usr/i586-mingw32msvc/include/dirent.h', which is
also in
package mingw32-runtime 3.13-1
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/newlib-mingw32_1.17.0-3_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)



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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

newlib-mingw32 depends on no packages.

Versions of packages newlib-mingw32 recommends:
ii  gcc-mingw32 [mingw32] 4.4.4-0.1  The GNU Compiler Collection
(cross

newlib-mingw32 suggests no packages.




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



Bug#505609: marked as done (Unbootable after kernel upgrade: Lilo can't load kernel)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 10:35:37 -0400 (EDT)
with message-id 
2000712474.159302.1275230137351.javamail.r...@md01.wow.synacor.com
and subject line [SOLVED] Unbootable after kernel upgrade: Lilo can't load 
kernel
has caused the Debian Bug report #505609,
regarding Unbootable after kernel upgrade: Lilo can't load kernel
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
505609: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505609
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: linux-image-2.6.26-1-amd64
Version: 2.6.26-10
Severity: critical

I've did an upgrade on 2008-11-09, on a new installed system, upgrading kernel 
2.6.26-09 to 2.6.26.10. Apt was also upgraded.
I've seen nothing strange during upgrade and in the apt and dpkg logs. The 
system is entirely on LVM partitions.

When reboting I obtain this message from Lilo:
Loading LinuxEBDA is big; kernel setup stack overlaps LILO second stage.
and the computer halt.


regards
-- 
Xavier
xav...@alternatif.org


---End Message---
---BeginMessage---
This is not a lilo bug.  The problem is that lilo's map installer
did not get run during the kernel upgrade process.  The fact that
the user was able to boot his old de-installed kernel is proof of
this.  The /boot/map file still pointed to the blocks in the file
system which formerly contained the old kernel and its initial RAM
file system image.  And since, fortunately, those blocks had not yet
been reused, the data was still there.  Modules which were
loaded from the initial RAM file system image loaded OK.  But once
the switch was made from the initial RAM file system to the
permanent root file system, further module loads could not be done,
since the modules had been erased.  When the user manually ran lilo's
map installer at the command line, the problem disappeared.

The real question is, Why didn't the map installer get run during
the kernel upgrade?  There is not sufficient data in the bug log
to determine the answer to that question, but I have observed that
do_bootloader = yes in /etc/kernel-img.conf no longer causes
lilo to be run when a new kernel is installed.  I believe that this
change in behavior was caused by changes to the kernel maintainer
scripts made around the time of the switch to grub version 1 as
the default boot loader.  do_bootloader = yes in /etc/kernel-img.conf
still causes zipl to be run on the s390 port, a port that neither
version of grub supports.  do_bootloader = yes should still be
specified in /etc/kernel-img.conf, however, so that update-initramfs -u
will cause lilo's map installer to be run when an initial RAM file
system is updated (but not when it is initially created).

So is this a bug in the kernel maintainer scripts?  Or is it a feature?
I don't know.  I'll leave that up to the kernel maintainers to decide.
A full discussion of how to make sure that lilo's map installer gets
run during the installation of a new kernel, taking into account all
types of kernels (official stock Debian kernels, custom kernels created
by make-kpkg, custom kernels created by make deb-pkg, etc., is beyond
the scope of this bug log.  Interested readers may wish to look at my
web page on kernel building, particularly step 10, for further
information.  http://www.wowway.com/~zlinuxman/Kernel.htm  The instructions
for customizing the Lenny environment will work in Squeeze or Sid also,
provided that you use only official stock Debian kernels.  If you use
custom kernels in Squeeze or later, you *must* use hook scripts to ensure
that any post-installation activities, such as the creation of an initial
RAM file system, updating symlinks, or running a boot loader, take place.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-

---End Message---


Bug#583316: Running gs in a safe directory.

2010-05-30 Thread Bernhard R. Link
Attached patch is what I plan to use in an package targeted
at stable-security I hope to have ready soon.

Instead of trying to use -P- (which currently does not work
anyway) with all the complexity of guessing where to add it
if the commands are taken from some user config file, it just
changes to an empty directory befor calling gs.

Bernhard R. Link
From c0d4ecd8c8dec26cc20eac9ae43b4c93ad8cf5db Mon Sep 17 00:00:00 2001
From: Bernhard R. Link brl...@debian.org
Date: Sun, 30 May 2010 13:06:43 +0200
Subject: delay safer in pdfdsc

Origin: http://cvs.savannah.gnu.org/viewvc/gv/src/Ghostview.c?root=gvr1=1.28r2=1.29

Taken from upstream (in commit from 2008-09-09) this patch
delays ghostscript safety when parsing files generated by
pdf2dsc.ps. This will allow later patches to run ghostscript
with a safe working directory without breaking pdf reading.
---
 src/Ghostview.c |6 ++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/Ghostview.c b/src/Ghostview.c
index f09099d..53607c8 100644
--- a/src/Ghostview.c
+++ b/src/Ghostview.c
@@ -1425,6 +1425,12 @@ StartInterpreter(w)
 if (gvw-ghostview.safer) 
   {
 	argv[argc++] = -dSAFER;
+#   ifdef ALLOW_PDF
+	/* The file created by pdf2dsc opens the original
+	   pdf file with the read operator. */
+	if (gv_filename_dsc  (!gvw-ghostview.filename || !strcmp(gvw-ghostview.filename,-)))
+	   argv[argc++] = -dDELAYSAFER;
+#   endif
   }
 
 if (gvw-ghostview.arguments) {
-- 
1.5.6.5

From 917f94bf3f4f298adbadeb5b51cd6531a8c31770 Mon Sep 17 00:00:00 2001
From: Bernhard R. Link brl...@debian.org
Date: Sun, 30 May 2010 14:23:17 +0200
Subject: start gs in a safe working directory

Bug-Debian: http://bugs.debian.org/583316

Start ghostscript in a dedicated directory to avoid
any security problems due to gs looking in the current
directory for all files.

Most of this patch is adding an option so users can switch
this off in the theoretical case of having files that need
to access other files in the currect directory.
---
 src/Ghostview.c   |   11 +++
 src/Ghostview.h   |3 +++
 src/GhostviewP.h  |1 +
 src/Makefile.in   |1 +
 src/doc_misc.c|5 +++--
 src/doc_misc.h|3 ++-
 src/gv_layout_res.dat |2 ++
 src/gv_misc_res.dat   |1 +
 src/main.c|4 
 src/main_globals.h|1 +
 src/main_resources.h  |1 +
 src/misc.c|   15 ++-
 src/options_gs.c  |   19 +++
 src/process.c |6 ++
 src/ps.c  |   13 ++---
 src/ps.h  |3 ++-
 src/save.c|2 +-
 src/zoom.c|2 ++
 18 files changed, 72 insertions(+), 21 deletions(-)

diff --git a/src/Ghostview.c b/src/Ghostview.c
index 53607c8..dfce99e 100644
--- a/src/Ghostview.c
+++ b/src/Ghostview.c
@@ -162,6 +162,8 @@ static XtResource resources[] = {
offset(pref_width), XtRImmediate, (XtPointer)1},
 {XtNpreferredHeight, XtCPreferredHeight, XtRDimension, sizeof(Dimension),
offset(pref_height), XtRImmediate, (XtPointer)1},
+{XtNsafeDir, XtCSafeDir, XtRBoolean, sizeof(Boolean),
+  offset(safeDir), XtRImmediate, (XtPointer)True },
 {XtNsafer, XtCSafer, XtRBoolean, sizeof(Boolean),
   offset(safer), XtRImmediate, (XtPointer)True },
 {XtNinterpreter, XtCInterpreter, XtRString, sizeof(String),
@@ -960,6 +962,7 @@ SetValues(Widget current, Widget request, Widget new, ArgList unused1, Cardinal
 	   (cgvw-ghostview.quiet != ngvw-ghostview.quiet)			||
 	   (cgvw-ghostview.infoVerbose != ngvw-ghostview.infoVerbose)			||
 	   (cgvw-ghostview.safer != ngvw-ghostview.safer)			||
+	   (cgvw-ghostview.safeDir != ngvw-ghostview.safeDir)			||
 	   strcmp(cfilename, rfilename)		||
(cgvw-ghostview.orientation != ngvw-ghostview.orientation)		||
 	   (cgvw-ghostview.use_bpixmap != ngvw-ghostview.use_bpixmap)		||  
@@ -1544,6 +1547,14 @@ StartInterpreter(w)
 	  close(std_in[0]);
 #  endif
 	}
+	if (gvw-ghostview.safeDir) {
+		if (chdir(GV_LIBDIR /safe-gs-workdir) != 0) {
+			sprintf(buf, Chdir to %s failed,
+	GV_LIBDIR /safe-gs-workdir);
+			perror(buf);
+			_exit(EXIT_STATUS_ERROR);
+		}
+	}
 	execvp(argv[0], argv);
 	sprintf(buf, Exec of %s failed, argv[0]);
 	perror(buf);
diff --git a/src/Ghostview.h b/src/Ghostview.h
index dfa5c38..6d6eff4 100644
--- a/src/Ghostview.h
+++ b/src/Ghostview.h
@@ -66,6 +66,7 @@
  palette	 Palette		Palette		Color
  quiet		 Quiet		Boolean		True
  rightMargin	 Margin		int		0
+ safeDir	 SafeDir		Boolean		True
  safer		 Safer		Boolean		True
  topMargin	 Margin		int		0
  urx		 BoundingBox	Int		612
@@ -102,6 +103,7 @@
 #define XtNtopMargin topMargin
 #define XtNpreferredWidth  preferredWidth
 #define XtNpreferredHeight preferredHeight
+#define XtNsafeDir safeDir
 #define XtNsafer safer
 #define XtNinterpreter interpreter
 
@@ -116,6 +118,7 @@
 #define XtCPreferredWidth  

Bug#583770: erm: FTBFS: dependencies 'MASS' are not available for package 'eRm'

2010-05-30 Thread Aaron M. Ucko
Package: erm
Version: 0.12-0-4
Severity: serious
Justification: fails to build from source

erm FTBFS with the message

ERROR: dependencies 'MASS' are not available for package 'eRm'

from R CMD INSTALL; I presume a build-dependency on r-cran-mass is in
order.  Could you please add it and double-check (with pbuilder or the
like) that you aren't missing any others?

Thanks!



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



Bug#583758: gstreamer0.10-plugins-bad: linking against libvpx makes package unredistributable

2010-05-30 Thread Sebastian Dröge
On Sun, 2010-05-30 at 15:01 +0200, Reinhard Tartler wrote:
 Package: gstreamer0.10-plugins-bad
 Version: 0.10.18.3-2
 Severity: serious
 
 From the changelog:
 
  gst-plugins-bad0.10 (0.10.18.3-2) unstable; urgency=low
  .
* debian/build-deps.in,
  debian/gstreamer-plugins-bad.install:
  + Enable and ship the VP8 encoder/decoder plugin.
 
 Quoting from its copyright statement:
 
 http://packages.debian.org/changelogs/pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.18.3-2/gstreamer0.10-plugins-bad.copyright
 
 ,
 | Copyright:
 | 
 | This package is free software; you can redistribute it and/or
 | modify it under the terms of the GNU Lesser General Public
 | License as published by the Free Software Foundation; either
 | version 2 of the License, or (at your option) any later version.
 `
 
 However, libvpx copyright:
 
 http://packages.debian.org/changelogs/pool/main/libv/libvpx/libvpx_0.9.0-5/libvpx0.copyright
 
 ,
 | License:
 | 
 |   For everything not listed below:
 | All rights reserved.
 | 
 | Redistribution and use in source and binary forms, with or without
 | modification, are permitted provided that the following conditions
 | are met:
 | 
 | - Redistributions of source code must retain the above copyright
 |   notice, this list of conditions and the following disclaimer.
 | 
 | - Redistributions in binary form must reproduce the above
 |   copyright notice, this list of conditions and the following
 |   disclaimer in the documentation and/or other materials provided
 |   with the distribution.
 | 
 | - Neither the name of Google nor the names of its contributors may
 |   be used to endorse or promote products derived from this software
 |   without specific prior written permission.
 | 
 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | POSSIBILITY OF SUCH DAMAGE.
 |  
 | Subject to the terms and conditions of the above License, Google
 | hereby grants to You a perpetual, worldwide, non-exclusive,
 | no-charge, royalty-free, irrevocable (except as stated in this
 | section) patent license to make, have made, use, offer to sell,
 | sell, import, and otherwise transfer this implementation of VP8,
 | where such license applies only to those patent claims, both
 | currently owned by Google and acquired in the future, licensable by
 | Google that are necessarily infringed by this implementation of
 | VP8. If You or your agent or exclusive licensee institute or order
 | or agree to the institution of patent litigation against any entity
 | (including a cross-claim or counterclaim in a lawsuit) alleging that
 | this implementation of VP8 or any code incorporated within this
 | implementation of VP8 constitutes direct or contributory patent
 | infringement, or inducement of patent infringement, then any rights
 | granted to You under this License for this implementation of VP8
 | shall terminate as of the date such litigation is filed.
 `
 
 These additional restrictions are additional restrictions imposed on the
 gstreamer package, which is forbidden by LGPL §10.

I'm not 100% sure that your analysis is correct. First of all, note that
the situation in gst-plugins-bad is as follows: there's a small plugin
that links to libvpx. It's all in the libgstvp8.so file. The plugin code
is LGPL and it's only loaded at runtime if necessary (and I agree that
GPL applications must not load it but that's their problem. LGPL
applications or applications with totem's exception clause are fine).

Now, if someone sues someone because of patents that relate to VP8 he
would loose the right to use or distribute libvpx. Fine. He wouldn't
loose the right to modify, distribute, etc the GStreamer VP8 plugin
though, he just can't use or distribute it together with libvpx anymore.
For example he could take the plugin sources and create a new GStreamer
plugin from it, that decodes Theora videos with libtheora.

The LGPL talks about this library, and this library libgstvp8.so is
not related to libvpx in a way that adds additional restrictions to
libgstvp8.so.


I'll keep this bug open and at this severity to let other 

Bug#583785: FTBFS: chmod: cannot access `debian/kvpnc-data/usr/share/kde4/apps/kvpnc/ping_check.sh': No such file or directory

2010-05-30 Thread dann frazier
Source: kvpnc
Version: 0.9.6a-1
Severity: serious

kvpnc fails to build from source:
  https://buildd.debian.org/pkg.cgi?pkg=kvpnc

From the most recent build attempt on hppa:
[...]
   dh_bugfiles -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_lintian -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_gconf -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_icons -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_perl -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_usrlocal -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_link -a -O--parallel -O--dbg-package=kvpnc-dbg -O--list-missing
   dh_compress -X.dcl -X.docbook -X-license -X.tag -X.sty -X.el -a -O--parallel 
-O--dbg-package=kvpnc-dbg -O--list-missing
   debian/rules override_dh_fixperms
make[1]: Entering directory 
`/build/buildd-kvpnc_0.9.6a-1-hppa-n2tJFz/kvpnc-0.9.6a'
dh_fixperms
chmod +x debian/kvpnc-data/usr/share/kde4/apps/kvpnc/ping_check.sh
chmod: cannot access 
`debian/kvpnc-data/usr/share/kde4/apps/kvpnc/ping_check.sh': No such file or 
directory
make[1]: *** [override_dh_fixperms] Error 1
make[1]: Leaving directory 
`/build/buildd-kvpnc_0.9.6a-1-hppa-n2tJFz/kvpnc-0.9.6a'
make: *** [binary-arch] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary-arch gave error exit 
status 2



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



Processed: found 582774 in 2.28.1-1

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 582774 2.28.1-1
Bug #582774 [seed] seed FTBFS on ia64
Bug Marked as found in versions seed/2.28.1-1.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
582774: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582774
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583508: [Pkg-samba-maint] Bug#583508: smbfs: smbumount does not umount from win2k server

2010-05-30 Thread Leonardo Boselli

I tried on another host: this is the reply:

l...@student:~$ mkdir loc
l...@student:~$ smbmount unione\\home loc
 (normal dialogue, i can read the remote directory)
l...@student:~$ mount
/dev/sda1 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
/dev/sdb4 on /home type ext3 (rw)
/dev/sdb3 on /tmp type ext2 (rw)
/dev/sda3 on /usr/local type ext3 (rw)
/dev/sda2 on /var type ext3 (rw)
/dev/sdc1 on /var/cache type ext2 (rw)
nfsd on /proc/fs/nfsd type nfsd (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc 
(rw,noexec,nosuid,nodev)

/dev/sdb1 on /media/disk type ext3 (rw,nosuid,nodev,uhelper=hal)
//unione/home on /home/leo/loc type cifs (rw,mand,nosuid,nodev,user=leo)
l...@student:~$ umount loc
umount: /home/leo/loc is not in the fstab (and you are not root)
l...@student:~$
l...@student:~$ smbumount unione\\home
This utility only unmounts cifs filesystems.

exactly the same thing .and this host has the 32 bit version.
then I su to root and surprise:
student:/home/leo# umount loc
student:/home/leo# ls loc

this time has worked !
It is not enought however, since in unacceptabele tha one user can mount a 
remote share but is unable to umount 


After this test i tried again on the same 64 bit machine :  exactly the 
same result: i can mount as an user, i cannot umount by the same user.

I still consider this an important bug.

I thried again on another expendable server and i was never able to 
umount by the same user that mounted, but always i succeeded as root


also: i can mount two times on th seme mount point, an mount command show 
me two times the same mount.
when I rebooted i had two os suc mounts. this could be the reason for the 
lock ?



--
Leonardo Boselli

On Sun, 30 May 2010, Steve Langasek wrote:


On Sun, May 30, 2010 at 08:45:33AM +0200, Leonardo Boselli wrote:

On Sat, 29 May 2010, Steve Langasek wrote:



On Sat, May 29, 2010 at 11:50:49PM +0200, Leonardo Boselli wrote:



Is the volume mounted as smbfs or cifs?

smbfs



Then you're not doing it with the Debian packages.  Debian stopped
supporting smbfs mounts in samba 3.0.27a-2, which predates Lenny by a year.



Please show the output of 'mount' on this system.



i cannot, since i do not want absolutely make such a test on
production server, when i know that likely it will not be unmounted.
anyway the package that i have for smbmount is:



Package: smbfs
Status: install ok installed
Priority: optional
Section: otherosfs
Installed-Size: 4112
Maintainer: Debian Samba Maintainers
pkg-samba-ma...@lists.alioth.debian.org
Architecture: amd64
Source: samba
Version: 2:3.2.5-4lenny11
Replaces: smbfsx


And that package does not support the smbfs filesystem, so either your mount
is actually cifs, or you're using an smbmount command not from the Debian
package.  If you're not able to help debug this bug, which no one else has
reported seeing, we would have to assume that the problem is the second one.

--
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org





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



Bug#519006: Also causes FTBFS for libunistring

2010-05-30 Thread Andreas Rottmann

libunistring seems affected, too:

https://buildd.debian.org/fetch.cgi?pkg=libunistring;ver=0.9.3-1;arch=mips;stamp=1275218589

Regards, Rotty
-- 
Andreas Rottmann -- http://rotty.yi.org/



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



Bug#583627: marked as done (stterm: FTBFS: tries to write outside tree (to ~/.terminfo))

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 16:22:11 +
with message-id e1oilh9-0003dc...@ries.debian.org
and subject line Bug#583627: fixed in stterm 0.0~20091219+hg68-2
has caused the Debian Bug report #583627,
regarding stterm: FTBFS: tries to write outside tree (to ~/.terminfo)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583627: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583627
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: stterm
Version: 0.0~20091219+hg68-1
Severity: serious
Justification: fails to build from source

stterm FTBFS in environments (notably on the autobuilders) in which
$HOME is unwritable:

installing executable file to 
/build/buildd-stterm_0.0~20091219+hg68-1-amd64-7n52ua/stterm-0.0~20091219+hg68/debian/stterm/usr/bin
st.info, line 2, terminal 'st': /home/buildd/.terminfo: permission denied 
(errno 2)
make[1]: *** [install] Error 1

(per 
https://buildd.debian.org/fetch.cgi?pkg=stterm;ver=0.0~20091219%2Bhg68-1;arch=amd64;stamp=1275076450)

Could you please make it stop relying on being able to write to ~/.terminfo?

Thanks!


---End Message---
---BeginMessage---
Source: stterm
Source-Version: 0.0~20091219+hg68-2

We believe that the bug you reported is fixed in the latest version of
stterm, which is due to be installed in the Debian FTP archive:

stterm_0.0~20091219+hg68-2.debian.tar.gz
  to main/s/stterm/stterm_0.0~20091219+hg68-2.debian.tar.gz
stterm_0.0~20091219+hg68-2.dsc
  to main/s/stterm/stterm_0.0~20091219+hg68-2.dsc
stterm_0.0~20091219+hg68-2_i386.deb
  to main/s/stterm/stterm_0.0~20091219+hg68-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 583...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jari Aalto jari.aa...@cante.net (supplier of updated stterm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 29 May 2010 09:13:25 +0300
Source: stterm
Binary: stterm
Architecture: source i386
Version: 0.0~20091219+hg68-2
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 stterm - an extremely simple terminal for windowed system
Closes: 583627
Changes: 
 stterm (0.0~20091219+hg68-2) unstable; urgency=low
 .
   * Bug fix release
 - Prevent tic(1) from writing $HOME (FTBFS; Closes: #583627).
   * debian/patches
 - (20): New. Change terminal name from st to stterm.
   * debian/postinst
 - New file.
   * debian/rules
 - Move to full dh(1).
   * debian/stterm.install
 - Delete. Handled in debian/rules.
   * debian/upstream.changelog
 - New file.
Checksums-Sha1: 
 59052a2f00bcecc1bb37c26e43bbcd29aa1f247b 1208 stterm_0.0~20091219+hg68-2.dsc
 ba50a4015f9a954d218fe0d59d5bc243601a8cdb 9632 
stterm_0.0~20091219+hg68-2.debian.tar.gz
 c6dc9750872ee1ed81e36cad1a9abbfeefc959c7 15242 
stterm_0.0~20091219+hg68-2_i386.deb
Checksums-Sha256: 
 f44c8ce1eaa9ee211e0d4f2ee67815f2e2a82cc355b145bcad86c611e429abef 1208 
stterm_0.0~20091219+hg68-2.dsc
 d9c88b8b481d8a6c27621da10569f70fffd54164465d08b81f1bd4c048037795 9632 
stterm_0.0~20091219+hg68-2.debian.tar.gz
 4d11e009ce898d05229dce3d399f7c0d9edf09ec143efbb492b09aac38aab572 15242 
stterm_0.0~20091219+hg68-2_i386.deb
Files: 
 56e70124c1769ce4aad32b657f0c6d77 1208 x11 optional 
stterm_0.0~20091219+hg68-2.dsc
 b5dfc89628a293132c223d080cd410f9 9632 x11 optional 
stterm_0.0~20091219+hg68-2.debian.tar.gz
 57f24931826ec42ace6e710e69d95d63 15242 x11 optional 
stterm_0.0~20091219+hg68-2_i386.deb

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

iEYEARECAAYFAkwCjHMACgkQpdwBkPlyvgPerwCeJAyNrD2V+eadLH3V2EO4P8Aj
KpoAoILS6a4TCCoVjE0TBZPSqo7q13P2
=Owlm
-END PGP SIGNATURE-


---End Message---


Bug#583096: marked as done (life: FTBFS (build-depends on libpetsc3.0.0-dev))

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 16:33:55 +
with message-id e1oilsv-0004sm...@ries.debian.org
and subject line Bug#583096: fixed in life 0.9.24-1
has caused the Debian Bug report #583096,
regarding life: FTBFS (build-depends on libpetsc3.0.0-dev)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583096: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583096
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: life
Version: 0.9.23-2
Severity: serious

Hi,

life build-depends on libpetsc3.0.0-dev, which has been replaced by
libpetsc3.1-dev; the package is therefore unbuildable in unstable.

Regards,

Adam



---End Message---
---BeginMessage---
Source: life
Source-Version: 0.9.24-1

We believe that the bug you reported is fixed in the latest version of
life, which is due to be installed in the Debian FTP archive:

liblife-dbg_0.9.24-1_amd64.deb
  to main/l/life/liblife-dbg_0.9.24-1_amd64.deb
liblife-dev_0.9.24-1_amd64.deb
  to main/l/life/liblife-dev_0.9.24-1_amd64.deb
liblife_0.9.24-1_amd64.deb
  to main/l/life/liblife_0.9.24-1_amd64.deb
life-apps_0.9.24-1_amd64.deb
  to main/l/life/life-apps_0.9.24-1_amd64.deb
life-doc_0.9.24-1_all.deb
  to main/l/life/life-doc_0.9.24-1_all.deb
life_0.9.24-1.diff.gz
  to main/l/life/life_0.9.24-1.diff.gz
life_0.9.24-1.dsc
  to main/l/life/life_0.9.24-1.dsc
life_0.9.24.orig.tar.gz
  to main/l/life/life_0.9.24.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 583...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christophe Prud'homme prudh...@debian.org (supplier of updated life package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 29 May 2010 13:49:21 +0200
Source: life
Binary: liblife liblife-dev liblife-dbg life-apps life-doc
Architecture: source all amd64
Version: 0.9.24-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Christophe Prud'homme prudh...@debian.org
Description: 
 liblife- A library for the finite element method
 liblife-dbg - A library for the finite element method
 liblife-dev - A library for the finite element method
 life-apps  - A library for the finite element method
 life-doc   - A library for the finite element method
Closes: 583096
Changes: 
 life (0.9.24-1) unstable; urgency=low
 .
   [Christophe Prud'homme]
   * New upstream release
   * Bug fix: FTBFS (build-depends on libpetsc3.0.0-dev), thanks to Adam
 D. Barratt (Closes: #583096).
Checksums-Sha1: 
 297f3603bdbf56989c3ab1480f347f26b1c1b198 1869 life_0.9.24-1.dsc
 1eb541e16d848900d30d89e5b940fff13532f3b8 2624642 life_0.9.24.orig.tar.gz
 129327ee7ebbefbec110889152e5941ea1f91b30 9621 life_0.9.24-1.diff.gz
 bbdf6e8c291921228704f660f80410b12f7c8902 1643082 life-doc_0.9.24-1_all.deb
 6ee145c552b582edc697bafd34777b7435c14989 3775062 liblife_0.9.24-1_amd64.deb
 d65a5969768d823eb82bd4b49127797ae011ff3d 793674 liblife-dev_0.9.24-1_amd64.deb
 14762b55d2e0fb95c710172a77704e175d83c51b 28811542 
liblife-dbg_0.9.24-1_amd64.deb
 6a030f4d5b23873c44632aeb37379104be0ca366 44041990 life-apps_0.9.24-1_amd64.deb
Checksums-Sha256: 
 75152935335ab8cf6d75147fc425d411366617daca81bb1e5ab35dc730469e44 1869 
life_0.9.24-1.dsc
 a6d67f2b5fa48c60c3923354f9bcb0ce08162204e88ff500aeab3dd7dd771fb5 2624642 
life_0.9.24.orig.tar.gz
 e443b78d71b367374ce5c0f17280c640d53ed3adde8d3d5ee73a9ab07508353f 9621 
life_0.9.24-1.diff.gz
 a11e734c4a42f16c80f3d260a7265b18e62e39f38e7ce594c34003e964bb5ab2 1643082 
life-doc_0.9.24-1_all.deb
 980fcd2a00646de429f8cf3989e2ce60448b94d1769f30509ce26c38a0aeb25f 3775062 
liblife_0.9.24-1_amd64.deb
 0dfea00918435f1dcfd0b2354541c4d7672949e876e63ffd762f708ca7aaef0a 793674 
liblife-dev_0.9.24-1_amd64.deb
 0c9fc8c58fd93e839d5e959d86d66aade9d7a53bb27379a76dee2dc76e14c5ec 28811542 
liblife-dbg_0.9.24-1_amd64.deb
 66d9ac6d5bfd746002a235c37fb1a75ac65fe8f8708e04fc2068d3749b0e3bbc 44041990 
life-apps_0.9.24-1_amd64.deb
Files: 
 d60c2b93f79f0d7d62500467b24df3fc 1869 science extra life_0.9.24-1.dsc
 beb090e10db1bfde0f993d90b268d3cc 2624642 science extra life_0.9.24.orig.tar.gz
 4f062ce160a0bc971033f9be32f2802a 9621 science extra life_0.9.24-1.diff.gz
 

Bug#582461: libssh config files

2010-05-30 Thread Laurent Bigonville
Hi,

I've uploaded a 3rd version of the package with a new patch.

Could you please test it and let us know.

Thanks

Laurent Bigonville



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



Bug#560238: Status, client-side breakage

2010-05-30 Thread Florian Weimer
What's the status here?

I think the client-side breakage of v4-mapped addresses reported by
Guillaume Gimenez in

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560238#129

pretty much settles this.



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



Bug#583340: marked as done (cl-clx-sbcl: FTBFS)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 17:32:52 +
with message-id e1oimny-0002sd...@ries.debian.org
and subject line Bug#583340: fixed in cl-clx-sbcl 0.7.4-4
has caused the Debian Bug report #583340,
regarding cl-clx-sbcl: FTBFS
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583340: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583340
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: cl-clx-sbcl
Version: serious
User: debian-powerpc...@breakpoint.cc
Usertags: powerpcspe
Tags: sid

You miss makeinfo in your build-deps. None of the buildds [0] was able to
build your package

[0] https://buildd.debian.org/pkg.cgi?pkg=cl-clx-sbcl

Sebastian


---End Message---
---BeginMessage---
Source: cl-clx-sbcl
Source-Version: 0.7.4-4

We believe that the bug you reported is fixed in the latest version of
cl-clx-sbcl, which is due to be installed in the Debian FTP archive:

cl-clx-sbcl_0.7.4-4.debian.tar.gz
  to main/c/cl-clx-sbcl/cl-clx-sbcl_0.7.4-4.debian.tar.gz
cl-clx-sbcl_0.7.4-4.dsc
  to main/c/cl-clx-sbcl/cl-clx-sbcl_0.7.4-4.dsc
cl-clx-sbcl_0.7.4-4_amd64.deb
  to main/c/cl-clx-sbcl/cl-clx-sbcl_0.7.4-4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 583...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Milan Zamazal p...@debian.org (supplier of updated cl-clx-sbcl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 30 May 2010 18:48:12 +0200
Source: cl-clx-sbcl
Binary: cl-clx-sbcl
Architecture: source amd64
Version: 0.7.4-4
Distribution: unstable
Urgency: low
Maintainer: Milan Zamazal p...@debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 cl-clx-sbcl - An X11 Common Lisp client library for SBCL
Closes: 583340
Changes: 
 cl-clx-sbcl (0.7.4-4) unstable; urgency=low
 .
   * Change all the build things from architecture independent to
 architecture dependent; closes: #583340.
Checksums-Sha1: 
 0fc4acedd991225ccb6f0377f84294a6d2d6e18d 1014 cl-clx-sbcl_0.7.4-4.dsc
 1d264e83edf40f19a260160c756ceaf881418298 6287 cl-clx-sbcl_0.7.4-4.debian.tar.gz
 ec54e12ac2b23b9417bf4cab06f95499c0a94b0a 454090 cl-clx-sbcl_0.7.4-4_amd64.deb
Checksums-Sha256: 
 1916f735b0aca04f7058d2ec2738fc7c4fa0924b76a9b7d7b56534b759fd0b93 1014 
cl-clx-sbcl_0.7.4-4.dsc
 8590291d1ac8842eb29be2e10e47919c3df8f62a02430444f48dfe5e63e35fd1 6287 
cl-clx-sbcl_0.7.4-4.debian.tar.gz
 432bf841a0e523ca5fdae28e46e52b5c0cce34edeb7429f96519acc05e1a782b 454090 
cl-clx-sbcl_0.7.4-4_amd64.deb
Files: 
 667c8c0c9261e845dd327acc14d92409 1014 lisp optional cl-clx-sbcl_0.7.4-4.dsc
 5d6d50804ed3c7c7a15f3f69a23cae95 6287 lisp optional 
cl-clx-sbcl_0.7.4-4.debian.tar.gz
 2e491209df610100d9731d9e87168a7f 454090 lisp optional 
cl-clx-sbcl_0.7.4-4_amd64.deb

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

iEYEARECAAYFAkwCmjQACgkQkSkk/j3Cm0GDsgCgskx0+O54wsB+tH02DrCN1A0s
36wAoMKUDKCgL4mky6AcfuLShqD+nfbQ
=ECpD
-END PGP SIGNATURE-


---End Message---


Bug#583795: myspell-en-za: using en_GB.aff for en_ZA breaks en_ZA spellchecking

2010-05-30 Thread Stefano Rivera
Package: myspell-en-za
Version: 1:3.2.0-4
Severity: grave
Tags: patch
Justification: renders package unusable

I have no idea if it worked at the time, but the fix for Bug #536643
broke the new version of en_ZA included in OOO320_m7, which was a
different upstream fix for the same bug:
http://www.openoffice.org/issues/show_bug.cgi?id=100281

You can see some more details in this Ubuntu LP Bug:
https://bugs.edge.launchpad.net/ubuntu/+source/openoffice.org-dictionaries/+bug/467278

Here are some test-cases for the South African spellchecker. All these
words should be correct:

| have having dad dad's biltong braai bliksem

Additionally, Openoffice spews out 68k lines of the following type of
error when attempting to spellcheck with the broken dictionary:

| error: line 15: bad flag alias index: 0
| error: line 15: bad flag vector alias

So, essentially, myspell-en-za 1:3.2.0-4 is completely unusable for
South African users.

Attached is a patch that reverts the changes in 1:3.1.0-4 and fixes this
dictionary for me.

SR

-- 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-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_ZA.UTF-8, LC_CTYPE=en_ZA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages myspell-en-za depends on:
ii  dictionaries-common [openoffi 1.5.5  Common utilities for spelling dict
ii  myspell-en-gb 1:3.2.0-4  English_british dictionary for mys

myspell-en-za recommends no packages.

myspell-en-za suggests no packages.

-- no debconf information

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  H: +27 21 465 6908 C: +27 72 419 8559  UCT: x3127
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
--- openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
@@ -1,4 +1,3 @@
-/usr/share/hunspell/en_GB.aff /usr/share/hunspell/en_ZA.aff
 /usr/share/hunspell/en_ZA.aff /usr/share/myspell/dicts/en_ZA.aff
 /usr/share/hunspell/en_ZA.dic /usr/share/myspell/dicts/en_ZA.dic
 
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/changelog openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
--- openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
@@ -1,3 +1,10 @@
+openoffice.org-dictionaries (1:3.2.0~rc2-4.1) unstable; urgency=low
+
+  * Revert changes in 1:3.1.0-4 (Closes #FOO):
+Make myspell-en-za depend on -en-gb , use en_GB.aff for en_ZA.aff
+
+ -- Stefano Rivera stef...@rivera.za.net  Sun, 30 May 2010 18:59:32 +0200
+
 openoffice.org-dictionaries (1:3.2.0~rc2-4) unstable; urgency=low
 
   * fix compat symlinks for openoffice.org-thesaurus-fr
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
--- openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
@@ -1 +1,2 @@
+usr/share/hunspell/en_ZA.aff
 usr/share/hunspell/en_ZA.dic
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/control openoffice.org-dictionaries-3.2.0~rc2/debian/control
--- openoffice.org-dictionaries-3.2.0~rc2/debian/control
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/control
@@ -139,7 +139,7 @@
 Package: myspell-en-za
 Architecture: all
 Conflicts: openoffice.org (= 1.0.3-2)
-Depends: dictionaries-common (= 0.10) | openoffice.org-updatedicts, myspell-en-gb
+Depends: dictionaries-common (= 0.10) | openoffice.org-updatedicts
 Provides: myspell-dictionary, myspell-dictionary-en
 Description: English_southafrican dictionary for myspell
  This is the English_southafrican dictionary for use with the myspell


signature.asc
Description: Digital signature


Bug#572288: Same problem

2010-05-30 Thread Francesco Poli
reassign 572288 audacious-plugins 2.1-1
thanks


On Wed, 3 Mar 2010 22:20:26 +0100 Francesco Poli wrote:

 reassign 572288 audacious-plugins-extra 2.1-1.1
 thanks
 
 
 On Wed, 3 Mar 2010 21:40:23 +0100 Francesco Poli wrote:
 
 [...]
  I can confirm that the alsa output plugin still works, while the jackd
  output plugin was broken by the upgrade.
 
 Wait a second, but this means that the actual bug is in
 audacious-plugins-extra, since the jackd output plugin is there...
 I am thus reassigning to that (binary) package.

Now, the jackd output plugin has been moved to audacious-plugins (since
audacious-plugins-extra has been dropped).
I am reassigning the bug report accordingly.

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


pgpv2BHIFz0YS.pgp
Description: PGP signature


Processed: Re: Same problem

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 572288 audacious-plugins 2.1-1
Bug #572288 [audacious-plugins-extra] audacious-plugins: after upgrade, 
audacious jackd output stopped working
Bug reassigned from package 'audacious-plugins-extra' to 'audacious-plugins'.
Bug No longer marked as found in versions audacious-plugins/2.1-1.1.
Bug #572288 [audacious-plugins] audacious-plugins: after upgrade, audacious 
jackd output stopped working
Bug Marked as found in versions audacious-plugins/2.1-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
572288: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572288
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: closing 583785

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 close 583785 0.9.6a-2
Bug#583785: FTBFS: chmod: cannot access 
`debian/kvpnc-data/usr/share/kde4/apps/kvpnc/ping_check.sh': No such file or 
directory
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 0.9.6a-2, send any further explanations to dann 
frazier da...@debian.org

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583785: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583785
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#577896: marked as done (speech-dispatcher: FTBFS: flite.c:435: undefined reference to `register_cmu_us_kal')

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 18:18:25 +
with message-id e1oin5d-0005jx...@ries.debian.org
and subject line Bug#577896: fixed in speech-dispatcher 0.6.7-9
has caused the Debian Bug report #577896,
regarding speech-dispatcher: FTBFS: flite.c:435: undefined reference to 
`register_cmu_us_kal'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
577896: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577896
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: speech-dispatcher
Version: 0.6.7-8
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100415 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 gcc -DHAVE_CONFIG_H -I. -I../..-Wall -DLOCALEDIR=\/usr/share/locale\ 
 -DDATADIR=\/usr/share/sounds/speech-dispatcher\ -I/usr/include/ 
 -I../../intl/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
 -L../../src/audio -I../../src/audio -I../../intl/   -Wl,--rpath 
 -Wl,/usr/lib/speech-dispatcher -D_GNU_SOURCE -Wall -g -O2 -MT espeak.o -MD 
 -MP -MF .deps/espeak.Tpo -c -o espeak.o espeak.c
 generic.c: In function '_generic_speak':
 generic.c:383: warning: assignment discards qualifiers from pointer target 
 type
 module_utils.c: In function 'do_audio':
 module_utils.c:294: warning: implicit declaration of function 
 'module_audio_init'
 module_utils_addvoice.c:100: warning: 'module_register_settings_voices' 
 defined but not used
 module_utils_addvoice.c:109: warning: 'module_getvoice' defined but not used
 module_utils.c: In function 'module_audio_init_spd':
 module_utils.c:1051: warning: cast to pointer from integer of different size
 module_utils.c:1052: warning: cast to pointer from integer of different size
 module_utils.c:1053: warning: cast to pointer from integer of different size
 module_utils.c:1054: warning: cast to pointer from integer of different size
 espeak.c: In function 'espeak_list_synthesis_voices':
 espeak.c:1219: warning: initialization discards qualifiers from pointer 
 target type
 cicero.c:470: warning: 'cicero_set_pitch' defined but not used
 cicero.c:55: warning: 'cicero_set_volume' declared 'static' but never defined
 cicero.c:475: warning: 'cicero_set_voice' defined but not used
 festival.c: In function 'module_speak':
 festival.c:304: warning: suggest parentheses around '' within '||'
 flite.c: In function '_flite_speak':
 flite.c:276: warning: 'ret' may be used uninitialized in this function
 mv -f .deps/dummy.Tpo .deps/dummy.Po
 generic.c:375: warning: 'play_command' may be used uninitialized in this 
 function
 mv -f .deps/cicero.Tpo .deps/cicero.Po
 mv -f .deps/flite.Tpo .deps/flite.Po
 mv -f .deps/generic.Tpo .deps/generic.Po
 mv -f .deps/module_utils.Tpo .deps/module_utils.Po
 /bin/bash ../../libtool --tag=CC   --mode=link gcc -Wall 
 -DLOCALEDIR=\/usr/share/locale\ 
 -DDATADIR=\/usr/share/sounds/speech-dispatcher\ -I/usr/include/ 
 -I../../intl/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
 -L../../src/audio -I../../src/audio -I../../intl/   -Wl,--rpath 
 -Wl,/usr/lib/speech-dispatcher -D_GNU_SOURCE -Wall -g -O2   -o sd_generic 
 generic.o module_utils.o -lsdaudio -lpthread -ldotconf -lglib-2.0   -pthread 
 -lgthread-2.0 -lrt -lglib-2.0   
 /bin/bash ../../libtool --tag=CC   --mode=link gcc -Wall 
 -DLOCALEDIR=\/usr/share/locale\ 
 -DDATADIR=\/usr/share/sounds/speech-dispatcher\ -I/usr/include/ 
 -I../../intl/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
 -L../../src/audio -I../../src/audio -I../../intl/   -Wl,--rpath 
 -Wl,/usr/lib/speech-dispatcher -D_GNU_SOURCE -Wall -g -O2 -rpath 
 '/usr/lib/speech-dispatcher'  -o sd_dummy dummy.o module_utils.o -lsdaudio 
 -lpthread -ldotconf -lglib-2.0-pthread -lgthread-2.0 -lrt -lglib-2.0   
 /bin/bash ../../libtool --tag=CC   --mode=link gcc -Wall 
 -DLOCALEDIR=\/usr/share/locale\ 
 -DDATADIR=\/usr/share/sounds/speech-dispatcher\ -I/usr/include/ 
 -I../../intl/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
 -L../../src/audio -I../../src/audio -I../../intl/   -Wl,--rpath 
 -Wl,/usr/lib/speech-dispatcher -D_GNU_SOURCE -Wall -g -O2   -o sd_cicero 
 cicero.o module_utils.o -lsdaudio -lpthread -ldotconf -lglib-2.0   -pthread 
 -lgthread-2.0 -lrt -lglib-2.0   
 /bin/bash ../../libtool --tag=CC   --mode=link gcc -Wall 
 -DLOCALEDIR=\/usr/share/locale\ 
 -DDATADIR=\/usr/share/sounds/speech-dispatcher\ -I/usr/include/ 
 -I../../intl/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
 -L../../src/audio -I../../src/audio -I../../intl/   

Bug#583785: closing 583785

2010-05-30 Thread Fathi Boudra
close 583785 0.9.6a-2
thanks




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



Bug#583770: erm: FTBFS: dependencies 'MASS' are not available for package 'eRm'

2010-05-30 Thread Julian Gilbey
On Sun, May 30, 2010 at 10:49:01AM -0400, Aaron M. Ucko wrote:
 Package: erm
 Version: 0.12-0-4
 Severity: serious
 Justification: fails to build from source
 
 erm FTBFS with the message
 
 ERROR: dependencies 'MASS' are not available for package 'eRm'
 
 from R CMD INSTALL; I presume a build-dependency on r-cran-mass is in
 order.  Could you please add it and double-check (with pbuilder or the
 like) that you aren't missing any others?

Grrr, thought I'd checked it out :-(  Must have changed between 0.10
and 0.12 without me noticing (I originally packaged 0.10 but ended up
uploading 0.12).

Thanks for picking up this one - will investigate!

   Julian



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



Bug#581203: marked as done (encfs: mounting encrypted directory fails and destroys the contents)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 13:21:40 -0500
with message-id 20100530182140.ga2...@sumost.ca
and subject line Boost serialization backwards incompatibility
has caused the Debian Bug report #581203,
regarding encfs: mounting encrypted directory fails and destroys the contents
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
581203: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581203
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: encfs
Version: 1.5.2-2+b1
Severity: grave
Tags: sid
Justification: renders package unusable

I guess mounting fails because there's a problem with parsing the .xml file.

bogk...@debian:~$ encfs /home/bogklug/.private_encfs/ /home/bogklug/private
Katalog /home/bogklug/private nie istnieje. Utworzyć? (y,n) y
16:29:19 (FileUtils.cpp:375) Archive exception: stream error
16:29:19 (FileUtils.cpp:326) Znaleziono plik konfiguracyjny
/home/bogklug/.private_encfs/.encfs6.xml, ale nie udało się go załadować
Creating new encrypted volume.

When one proceeds with creating the new volume (which somehow I did, I'm not
sure if manually or due to using the cryptkeeper tool to mount) the .xml gets
overwritten and (I guess) renders the whole encrypted directory useless.

I think mounting should be clearly sapareted from creating a new directory.



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

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

Versions of packages encfs depends on:
ii  fuse-utils2.8.1-1.2  Filesystem in USErspace (utilities
ii  libboost-filesystem1.42.0 1.42.0-3   filesystem operations (portable pa
ii  libboost-serialization1.42.0  1.42.0-3   serialization library for C++
ii  libc6 2.10.2-7   Embedded GNU C Library: Shared lib
ii  libfuse2  2.8.1-1.2  Filesystem in USErspace library
ii  libgcc1   1:4.4.4-1  GCC support library
ii  librlog5  1.4-1  flexible message logging library
ii  libssl0.9.8   0.9.8n-1   SSL shared libraries
ii  libstdc++64.4.4-1The GNU Standard C++ Library v3

encfs recommends no packages.

encfs suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Hi,

This issue has been closed upstream (see [1]).  The boost library
is not going to expand the version number definition beyond 8 bits,
but he does provide a workaround for encfs to continue to use
the old serialized data.

Eduard: can you work with upstream to incorporate the suggested fix?
I'd like to remove Boost 1.40 from Debian but I don't want to cripple
encfs when this happens.

Thanks,
-Steve


[1] https://svn.boost.org/trac/boost/ticket/3990


signature.asc
Description: Digital signature
---End Message---


Bug#583114: marked as done (dulwich: cannot import with python2.6)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 18:32:27 +
with message-id e1oinjd-0006pk...@ries.debian.org
and subject line Bug#583114: fixed in dulwich 0.6.0-4
has caused the Debian Bug report #583114,
regarding dulwich: cannot import with python2.6
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

Package: python-dulwich
Version: 0.6.0-2
Severity: serious
User: debian-pyt...@lists.debian.org
Usertags: python2.6
Justification: http://lists.debian.org/debian-release/2010/02/msg00325.html

dulwich cannot be imported with python2.6:

$ python2.6 -c 'import dulwich'
Traceback (most recent call last):
  File string, line 1, in module
ImportError: No module named dulwich

$ dpkg -L python-dulwich | grep -F 2.6
/usr/lib/python2.6
/usr/lib/python2.6/site-packages
/usr/lib/python2.6/site-packages/dulwich
/usr/lib/python2.6/site-packages/dulwich/_pack.so
/usr/lib/python2.6/site-packages/dulwich/repo.py
/usr/lib/python2.6/site-packages/dulwich/client.py
/usr/lib/python2.6/site-packages/dulwich/_objects.so
/usr/lib/python2.6/site-packages/dulwich/index.py
/usr/lib/python2.6/site-packages/dulwich/object_store.py
/usr/lib/python2.6/site-packages/dulwich/fastexport.py
/usr/lib/python2.6/site-packages/dulwich/__init__.py
/usr/lib/python2.6/site-packages/dulwich/web.py
/usr/lib/python2.6/site-packages/dulwich/file.py
/usr/lib/python2.6/site-packages/dulwich/lru_cache.py
/usr/lib/python2.6/site-packages/dulwich/misc.py
/usr/lib/python2.6/site-packages/dulwich/pack.py
/usr/lib/python2.6/site-packages/dulwich/server.py
/usr/lib/python2.6/site-packages/dulwich/patch.py
/usr/lib/python2.6/site-packages/dulwich/tests
/usr/lib/python2.6/site-packages/dulwich/tests/test_index.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_fastexport.py
/usr/lib/python2.6/site-packages/dulwich/tests/__init__.py
/usr/lib/python2.6/site-packages/dulwich/tests/utils.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_protocol.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_server.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_web.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_lru_cache.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_objects.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_repository.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_patch.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_object_store.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_pack.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_file.py
/usr/lib/python2.6/site-packages/dulwich/tests/test_client.py
/usr/lib/python2.6/site-packages/dulwich/protocol.py
/usr/lib/python2.6/site-packages/dulwich/objects.py
/usr/lib/python2.6/site-packages/dulwich/errors.py
/usr/lib/python2.6/site-packages/dulwich-0.6.0-py2.6.egg-info


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

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

Versions of packages python-dulwich depends on:
ii  libc6 2.10.2-9   Embedded GNU C Library: Shared lib
ii  python2.6.5-1An interactive high-level object-o
ii  python-central0.6.16 register and build utility for Pyt
ii  python2.6 2.6.5-2An interactive high-level object-o

python-dulwich recommends no packages.

python-dulwich suggests no packages.

-- debconf-show failed

--
Jakub Wilk


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: dulwich
Source-Version: 0.6.0-4

We believe that the bug you reported is fixed in the latest version of
dulwich, which is due to be installed in the Debian FTP archive:

dulwich_0.6.0-4.debian.tar.gz
  to main/d/dulwich/dulwich_0.6.0-4.debian.tar.gz
dulwich_0.6.0-4.dsc
  to main/d/dulwich/dulwich_0.6.0-4.dsc
python-dulwich_0.6.0-4_amd64.deb
  to main/d/dulwich/python-dulwich_0.6.0-4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 583...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jelmer Vernooij jel...@debian.org (supplier of updated dulwich package)

(This message was 

Bug#577896: [PATCH] speech-dispatcher: FTBFS: flite.c:435: undefined reference to `register_cmu_us_kal'

2010-05-30 Thread Milan Zamazal
 AM == Andres Mejia mcita...@gmail.com writes:

AM Here's a patch that will fix the build failure. flite-1.4 now
AM uses new_voice() instead of register_cmu_us_kal().

Thanks for the patch.  I've applied it and uploaded.  Speech Dispatcher
doesn't work for me now, but I don't know whether it is caused by this
change or something else.  I'll investigate it once new upstream version
is released (which should hopefully happen soon).




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



Bug#572288: marked as done (audacious-plugins: after upgrade, audacious jackd output stopped working)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 20:48:11 +0200
with message-id 20100530204811.8e574de5@firenze.linux.it
and subject line Re: Same problem
has caused the Debian Bug report #572288,
regarding audacious-plugins: after upgrade, audacious jackd output stopped 
working
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
572288: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572288
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: audacious-plugins
Version: 2.1-1
Severity: grave
Justification: renders package unusable

Hi!

After upgrading audacious-plugins and audacious-plugins-extra from
version 2.1-1 to version 2.1-1.1, audacious is totally unable to
play anything (Internet streams, local files, ...).

When I press the play button, audacious tries to fetch data (e.g.:
for Internet streams, I can see that there's a data flow coming in
through the network interface), but never starts playing.
I gives up immediately.

Downgrading audacious-plugins and audacious-plugins-extra to
version 2.1-1 fixes the issue.



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

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

Versions of packages audacious-plugins depends on:
ii  audacious2.1-1   small and fast audio player which 
ii  libasound2   1.0.21a-1   shared library for ALSA applicatio
ii  libatk1.0-0  1.28.0-1The ATK accessibility toolkit
ii  libaudid3tag22.1-1   audacious id3 tag manipulation lib
ii  libc62.10.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.8.8-2 The Cairo 2D vector graphics libra
ii  libcddb2 1.2.1-1 library to access CDDB data - runt
ii  libcdio-cdda00.81-4  library to read and control digita
ii  libcdio100.81-4  library to read and control CD-ROM
ii  libflac8 1.2.1-2+b1  Free Lossless Audio Codec - runtim
ii  libfontconfig1   2.8.0-2 generic font configuration library
ii  libfreetype6 2.3.11-1FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.22.2-2The GLib library of C routines
ii  libgtk2.0-0  2.18.6-1The GTK+ graphical user interface 
ii  libmad0  0.15.1b-5   MPEG audio decoder library
ii  libmms0  0.4-2   MMS stream protocol library - shar
ii  libmowgli1   0.6.1-1 a high performance development fra
ii  libneon27-gnutls 0.29.3-1An HTTP and WebDAV client library 
ii  libogg0  1.1.4~dfsg-2Ogg bitstream library
ii  libpango1.0-01.26.2-1Layout and rendering of internatio
ii  libsad2  2.1-1   audacious scale and dither library
ii  libsndfile1  1.0.21-2Library for reading/writing audio 
ii  libvorbis0a  1.2.3-3 The Vorbis General Audio Compressi
ii  libvorbisenc21.2.3-3 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.2.3-3 The Vorbis General Audio Compressi
ii  libx11-6 2:1.3.3-1   X11 client-side library
ii  libxcomposite1   1:0.4.1-1   X11 Composite extension library
ii  libxfixes3   1:4.0.4-1   X11 miscellaneous 'fixes' extensio
ii  libxml2  2.7.6.dfsg-2+b1 GNOME XML library
ii  libxrender1  1:0.9.5-1   X Rendering Extension client libra

audacious-plugins recommends no packages.

audacious-plugins suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Version: audacious-plugins/2.3-2

On Sun, 30 May 2010 19:52:49 +0200 Francesco Poli wrote:

[...]
 Now, the jackd output plugin has been moved to audacious-plugins (since
 audacious-plugins-extra has been dropped).
 I am reassigning the bug report accordingly.

Moreover, the bug seems to be fixed in the current version of
audacious-plugins: hence I am closing the bug report.

Thanks to anyone involved in fixing the issue!

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


pgpXjoIzAaUx6.pgp

Bug#577234: marked as done (readline6: FTBFS on kfreebsd: undefined reference to `Panic')

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 18:48:40 +
with message-id e1oinyu-zl...@ries.debian.org
and subject line Bug#577234: fixed in readline6 6.1-3
has caused the Debian Bug report #577234,
regarding readline6: FTBFS on kfreebsd: undefined reference to `Panic'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
577234: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577234
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: readline6
Version: 6.1-2
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-readline6_6.1-2-kfreebsd-amd64-jBwucF/readline6-6.1/build/examples/rlfe'
| x86_64-kfreebsd-gnu-gcc -c -I. -I. -g -O2 rlfe.c
| x86_64-kfreebsd-gnu-gcc -c -I. -I. -g -O2 pty.c
| pty.c: In function 'OpenPTY':
| pty.c:259: warning: incompatible implicit declaration of built-in function 
'strcpy'
| pty.c:271: warning: assignment makes pointer from integer without a cast
| pty.c:279: warning: incompatible implicit declaration of built-in function 
'strncpy'
| x86_64-kfreebsd-gnu-gcc -g 
-L/build/buildd-readline6_6.1-2-kfreebsd-amd64-jBwucF/readline6-6.1/build/shlib 
-o rlfe rlfe.o pty.o -lreadline -lhistory -lcurses 
| pty.o: In function `InitPTY':
| 
/build/buildd-readline6_6.1-2-kfreebsd-amd64-jBwucF/readline6-6.1/build/examples/rlfe/pty.c:138:
 undefined reference to `Panic'
| 
/build/buildd-readline6_6.1-2-kfreebsd-amd64-jBwucF/readline6-6.1/build/examples/rlfe/pty.c:140:
 undefined reference to `Panic'
| collect2: ld returned 1 exit status

Full build logs:
  https://buildd.debian.org/status/package.php?p=readline6

Mraw,
KiBi.


---End Message---
---BeginMessage---
Source: readline6
Source-Version: 6.1-3

We believe that the bug you reported is fixed in the latest version of
readline6, which is due to be installed in the Debian FTP archive:

libreadline-dev_6.1-3_kfreebsd-amd64.deb
  to main/r/readline6/libreadline-dev_6.1-3_kfreebsd-amd64.deb
libreadline6-dbg_6.1-3_kfreebsd-amd64.deb
  to main/r/readline6/libreadline6-dbg_6.1-3_kfreebsd-amd64.deb
libreadline6-dev_6.1-3_kfreebsd-amd64.deb
  to main/r/readline6/libreadline6-dev_6.1-3_kfreebsd-amd64.deb
libreadline6_6.1-3_kfreebsd-amd64.deb
  to main/r/readline6/libreadline6_6.1-3_kfreebsd-amd64.deb
readline-common_6.1-3_all.deb
  to main/r/readline6/readline-common_6.1-3_all.deb
readline6_6.1-3.debian.tar.gz
  to main/r/readline6/readline6_6.1-3.debian.tar.gz
readline6_6.1-3.dsc
  to main/r/readline6/readline6_6.1-3.dsc
rlfe_6.1-3_kfreebsd-amd64.deb
  to main/r/readline6/rlfe_6.1-3_kfreebsd-amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 577...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose d...@debian.org (supplier of updated readline6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 30 May 2010 20:31:27 +0200
Source: readline6
Binary: libreadline6 lib64readline6 readline-common libreadline-dev 
libreadline6-dev lib64readline6-dev libreadline6-dbg rlfe lib32readline6 
lib32readline6-dev
Architecture: source all kfreebsd-amd64
Version: 6.1-3
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 lib32readline6 - GNU readline and history libraries, run-time libraries 
(32-bit)
 lib32readline6-dev - GNU readline and history libraries, development files 
(32-bit)
 lib64readline6 - GNU readline and history libraries, run-time libraries 
(64-bit)
 lib64readline6-dev - GNU readline and history libraries, development files 
(64-bit)
 libreadline-dev - GNU readline and history libraries, development files
 libreadline6 - GNU readline and history libraries, run-time libraries
 libreadline6-dbg - GNU readline and history libraries, debugging libraries
 libreadline6-dev - GNU readline and history libraries, development files
 readline-common - GNU readline and history libraries, common files
 rlfe   - A front-end using readline to cook input lines for other progra
Closes: 577234
Changes: 
 readline6 (6.1-3) unstable; urgency=low
 .
   * Fix build failure on 

Processed: forcibly merging 583695 583666

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #same issue
 forcemerge 583695 583666
Bug#583695: /usr/sbin/update-initramfs: line 317: 1: unbound variable
Bug#583666: [initramfs-tools] upgrade from 0.94.4 to 0.95 fails
Bug#583700: initramfs-tools: package upgrade fails
Forcibly Merged 583666 583695 583700.


End of message, stopping processing here.

Please contact me if you need assistance.
-- 
583695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583695
583666: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583666
583700: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583700
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#505609: [SOLVED] Unbootable after kernel upgrade: Lilo can't load kernel

2010-05-30 Thread Frans Pop
reopen 505609 
reassign 505609 linux-2.6
affects 505609 lilo
thanks

Stephen Powell wrote:
 The real question is, Why didn't the map installer get run during
 the kernel upgrade?
[...]
 So is this a bug in the kernel maintainer scripts?  Or is it a feature?
 I don't know.  I'll leave that up to the kernel maintainers to decide.

Reopening and reassigning to the kernel team.



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



Processed: Re: [SOLVED] Unbootable after kernel upgrade: Lilo can't load kernel

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 505609
Bug #505609 {Done: Stephen Powell zlinux...@wowway.com} [lilo] Unbootable 
after kernel upgrade: Lilo can't load kernel
 reassign 505609 linux-2.6
Bug #505609 [lilo] Unbootable after kernel upgrade: Lilo can't load kernel
Bug reassigned from package 'lilo' to 'linux-2.6'.
 affects 505609 lilo
Bug #505609 [linux-2.6] Unbootable after kernel upgrade: Lilo can't load kernel
Added indication that 505609 affects lilo
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
505609: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505609
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: Re: Same problem

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 572288 audacious-plugins/2.3-2
Bug #572288 {Done: Francesco Poli f...@firenze.linux.it} [audacious-plugins] 
audacious-plugins: after upgrade, audacious jackd output stopped working
Bug Marked as fixed in versions audacious-plugins/2.3-2.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
572288: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572288
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583770: marked as done (erm: FTBFS: dependencies 'MASS' are not available for package 'eRm')

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 19:02:37 +
with message-id e1oinmp-0001di...@ries.debian.org
and subject line Bug#583770: fixed in erm 0.12-0-5
has caused the Debian Bug report #583770,
regarding erm: FTBFS: dependencies 'MASS' are not available for package 'eRm'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583770: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583770
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: erm
Version: 0.12-0-4
Severity: serious
Justification: fails to build from source

erm FTBFS with the message

ERROR: dependencies 'MASS' are not available for package 'eRm'

from R CMD INSTALL; I presume a build-dependency on r-cran-mass is in
order.  Could you please add it and double-check (with pbuilder or the
like) that you aren't missing any others?

Thanks!


---End Message---
---BeginMessage---
Source: erm
Source-Version: 0.12-0-5

We believe that the bug you reported is fixed in the latest version of
erm, which is due to be installed in the Debian FTP archive:

erm_0.12-0-5.debian.tar.gz
  to main/e/erm/erm_0.12-0-5.debian.tar.gz
erm_0.12-0-5.dsc
  to main/e/erm/erm_0.12-0-5.dsc
r-cran-erm_0.12-0-5_amd64.deb
  to main/e/erm/r-cran-erm_0.12-0-5_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 583...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julian Gilbey j...@debian.org (supplier of updated erm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 30 May 2010 19:47:44 +0100
Source: erm
Binary: r-cran-erm
Architecture: source amd64
Version: 0.12-0-5
Distribution: unstable
Urgency: low
Maintainer: Julian Gilbey j...@debian.org
Changed-By: Julian Gilbey j...@debian.org
Description: 
 r-cran-erm - GNU R package for 'extended Rasch modelling'
Closes: 583770
Changes: 
 erm (0.12-0-5) unstable; urgency=low
 .
   * Fixed incorrect Build-Depends; hopefully this will work, but can't be
 sure as pbuilder isn't working (bug in util-linux) (Closes: #583770)
Checksums-Sha1: 
 074c7da6dfefaf2c2a4da84b8accd927e9cbb429 1091 erm_0.12-0-5.dsc
 7c9489b044789cbadb2ab9bf881b0e6f6b92f9e1 8332 erm_0.12-0-5.debian.tar.gz
 d5dc1bfd3cb23c8cc46b494ad78de8d10c6b5d4d 632028 r-cran-erm_0.12-0-5_amd64.deb
Checksums-Sha256: 
 fdf61302bf2c6168ea34c25c6f8c5173e43425a1d562be357f7d67ffda32c358 1091 
erm_0.12-0-5.dsc
 ebdaff7bf6fc3822e5064ebd24aef5f1eb4622739697d447e966f322eca809bd 8332 
erm_0.12-0-5.debian.tar.gz
 12c7d13fa3f6b904da7862a062d63780ddd8e5bd3f572ee79977185c268067ea 632028 
r-cran-erm_0.12-0-5_amd64.deb
Files: 
 dd7a7b04bce4a1a0e354fc9f27961620 1091 gnu-r optional erm_0.12-0-5.dsc
 d63665b96264486d2deda0543c83ab8d 8332 gnu-r optional erm_0.12-0-5.debian.tar.gz
 6e2a40e2933d62ed7095fb1809035f6a 632028 gnu-r optional 
r-cran-erm_0.12-0-5_amd64.deb

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

iEYEARECAAYFAkwCsyYACgkQDU59w/205FnhlwCgl7pc+/rGEIcZdLT83EUUM49R
7/oAoJK/sRkz8Zktgwt+bjaeKpNWcK6k
=WqIU
-END PGP SIGNATURE-


---End Message---


Bug#583508: [Pkg-samba-maint] Bug#583508: smbfs: smbumount does not umount from win2k server

2010-05-30 Thread Steve Langasek
On Sun, May 30, 2010 at 06:02:14PM +0200, Leonardo Boselli wrote:
 l...@student:~$ umount loc
 umount: /home/leo/loc is not in the fstab (and you are not root)
 l...@student:~$
 l...@student:~$ smbumount unione\\home
 This utility only unmounts cifs filesystems.
 
 exactly the same thing .and this host has the 32 bit version.

Er, did you not notice here that you passed a file path to 'umount', and a
share name to 'smbumount'?

What happens if you run 'smbumount loc'?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org



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



Bug#583814: iceape-browser: FHS violation: /mozilla/dist/bin/chrome

2010-05-30 Thread Sven-Haegar Koch
Package: iceape-browser
Version: 2.0.4-2
Severity: serious
Justification: Policy 9.1.1


The package contains the following files in an invalid location, it should
never create the directory structure starting with /mozilla:

hae...@aurora:~$ grep ^/mozilla /var/lib/dpkg/info/iceape-browser.list 
/mozilla
/mozilla/dist
/mozilla/dist/bin
/mozilla/dist/bin/chrome
/mozilla/dist/bin/chrome/debian.jar
/mozilla/dist/bin/chrome/debian.manifest



-- Package-specific info:

-- Extensions information
Name: ChatZilla
Location: /usr/lib/iceape/extensions/{59c81df5-4b7a-477b-912d-4e0fdf64e5f2}
Package: iceape-chatzilla
Status: enabled

Name: DOM Inspector
Location: 
/usr/share/mozilla/extensions/{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}/inspec...@mozilla.org
Package: xul-ext-dom-inspector
Status: enabled

Name: Iceape Default Theme
Location: /usr/lib/iceape/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
Package: iceape-browser
Status: enabled

Name: Iceape Modern
Location: /usr/lib/iceape/extensions/mod...@themes.mozilla.org
Package: iceape-browser
Status: enabled

Name: JavaScript Debugger
Location: /usr/lib/iceape/extensions/{f13b157f-b174-47e7-a34d-4815ddfdfeb8}
Package: mozilla-venkman
Status: enabled

-- Plugins information
Name: Adobe Reader 9.1
Location: /usr/lib/nspluginwrapper/plugins/npwrapper.nppdf.so
Status: enabled

Name: Adobe Reader 9.3
Location: /usr/lib/Adobe/Reader9/Browser/intellinux/nppdf.so
Package: mozilla-acroread
Status: enabled

Name: Adobe Reader 9.3
Location: /usr/lib/nspluginwrapper/plugins/npwrapper.nppdf.so
Status: enabled

Name: DivX Browser Plug-In
Location: /usr/lib/mozilla/plugins/mplayerplug-in-dvx.so
Package: mozilla-mplayer
Status: enabled

Name: Java(TM) Plug-in 1.6.0_20
Location: /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libnpjp2.so
Package: sun-java6-bin
Status: enabled

Name: QuickTime Plug-in 7.4.5
Location: /usr/lib/mozilla/plugins/mplayerplug-in-qt.so
Package: mozilla-mplayer
Status: enabled

Name: RealPlayer 9
Location: /usr/lib/mozilla/plugins/mplayerplug-in-rm.so
Package: mozilla-mplayer
Status: enabled

Name: Shockwave Flash
Location: /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so
Status: enabled

Name: Shockwave Flash
Location: /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so
Status: enabled

Name: Skype Buttons for Kopete
Location: /usr/lib/mozilla/plugins/skypebuttons.so
Package: kopete
Status: enabled

Name: Windows Media Player Plug-in
Location: /usr/lib/mozilla/plugins/mplayerplug-in-wmp.so
Package: mozilla-mplayer
Status: enabled

Name: mplayerplug-in 3.55
Location: /usr/lib/mozilla/plugins/mplayerplug-in.so
Package: mozilla-mplayer
Status: enabled


-- Addons package information
ii  iceape-browser 2.0.4-2Iceape Navigator (Internet browser) and Comp
ii  iceape-chatzil 2.0.4-2Iceape Chatzilla IRC client
ii  kopete 4:4.4.3-2  instant messenger for KDE 4
ii  mozilla-acrore 9.3.2-0.0  Adobe Acrobat(R) Reader plugin for mozilla /
ii  mozilla-mplaye 1:3.55-0.0 MPlayer-Plugin for Mozilla
ii  mozilla-venkma 0.9.87.4-4 Javascript debugger for Mozilla based applic
ii  sun-java6-bin  6.20-dlj-3 Sun Java(TM) Runtime Environment (JRE) 6 (ar
ii  xul-ext-dom-in 1:2.0.4-2  tool for inspecting the DOM of pages in Icew

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

Kernel: Linux 2.6.32-sdinet29-aurora (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-1, LC_CTYPE=de_DE.ISO-8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages iceape-browser depends on:
ii  libasound2  1.0.22-2 shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-9 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-3GCC support library
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libhunspell-1.2-0   1.2.11-1 spell checker and morphological an
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.8.4-1  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.6-2 Network Security Service libraries
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libpng12-0  1.2.43-1 PNG library - runtime
ii  libsqlite3-03.6.23.1-3   SQLite 3 shared library
ii  

Bug#581318: libgd2: FTBFS: devlibs error: There is no package matching [libx11--dev] and noone provides it, please report bug to d-shlibs maintainer

2010-05-30 Thread Sebastian Andrzej Siewior
reassign 581318 d-shlibs 0.44
tags   581318 + patch
thanks

* Lucas Nussbaum | 2010-05-12 10:38:36 [+0200]:

During a rebuild of all packages in sid, your package failed to build on
amd64.

 d-shlibmove --commit \
  --override 's/ | xlibs-dev ( 4.3.0)//' \
  --override s/libstdc++6-dev// \
  --override s/libxml2-2-dev/libxml2-dev/ \
  --movedev debian/tmp-libgd2-xpm/usr/include/* usr/include/ \
  --movedev debian/tmp-libgd2-xpm/usr/bin/gdlib-config usr/bin/ 
 \
  --suffix -xpm --devsuffix -xpm \
  debian/tmp-libgd2-xpm/usr/lib/libgd.so
 Library package automatic movement utility
  -- libc6-dev package exists.
  -- libfontconfig1-dev package exists.
  -- libfreetype6-dev package exists.
  -- libjpeg62-dev package exists.
  -- libpng12-0-dev is provided by a package.
 devlibs error: There is no package matching [libx11--dev] and noone provides 
 it, please report bug to d-shlibs maintainer
  -- libxpm-dev package exists.
  -- zlib1g-dev package exists.
 make: *** [binary-post-install/libgd2-xpm] Error 1

The full build log is available from:
   
 http://people.debian.org/~lucas/logs/2010/05/11/libgd2_2.0.36~rc1~dfsg-3.2_lsid64.buildlog


This is a d-devlibdeps bug. In its overridedevlibdeps() function the
regex
 -e 's/libX\(.*\)[0-9]-dev/libx\1-dev/' \
translates libX11-6-dev into libx11--dev. I'm not sure what this regex
should match actually.

The patch attached moves this line to the bottom so the X11-6-dev gets
earlier into the game. With the patch the libgd2 package builds again.

Sebastian
--- d-devlibdeps.org2010-05-30 21:12:44.0 +0200
+++ d-devlibdeps2010-05-30 21:13:11.0 +0200
@@ -102,13 +102,13 @@
-e 's/libtheora0-dev/libtheora-dev/' \
-e 's/libvorbis0-dev/libvorbis-dev/' \
-e 's/libvorbisenc2-dev/libvorbis-dev/' \
-   -e 's/libX\(.*\)[0-9]-dev/libx\1-dev/' \
-e 's/libX11-6-dev/libx11-dev | xlibs-dev ( 4.3.0)/' \
-e 's/libXext6-dev/libxext-dev | xlibs-dev ( 4.3.0)/' \
-e 's/libXi6-dev/libxi-dev | xlibs-dev ( 4.3.0)/' \
-e 's/libxml2-2-dev/libxml2-dev/' \
-e 's/libXpm4-dev/libxpm-dev | xlibs-dev ( 4.3.0)/' \
-e 's/libz1-dev/zlib1g-dev/' \
+   -e 's/libX\(.*\)[0-9]-dev/libx\1-dev/' \
${overri...@]/#/-e} \
 
 


Processed: fixed 577532 in icedove/3.0.4-2

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 577532 icedove/3.0.4-2
Bug #577532 {Done: Christoph Goehre ch...@sigxcpu.org} [icedove] icedove: 
segfault on startup
Bug Marked as fixed in versions icedove/3.0.4-2.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
577532: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577532
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: severity of 580371 is important

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # reduce severity as requested
 severity 580371 important
Bug #580371 [icedove] icedove: Big IMAP Folder - Ctrl+A - Deleting - % CPU/MEM 
- Crash
Severity set to 'important' from 'grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
580371: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=580371
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: Re: libgd2: FTBFS: devlibs error: There is no package matching [libx11--dev] and noone provides it, please report bug to d-shlibs maintainer

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 581318 d-shlibs 0.44
Bug #581318 [src:libgd2] libgd2: FTBFS: devlibs error: There is no package 
matching [libx11--dev] and noone provides it, please report bug to d-shlibs 
maintainer
Bug reassigned from package 'src:libgd2' to 'd-shlibs'.
Bug No longer marked as found in versions libgd2/2.0.36~rc1~dfsg-3.2.
Bug #581318 [d-shlibs] libgd2: FTBFS: devlibs error: There is no package 
matching [libx11--dev] and noone provides it, please report bug to d-shlibs 
maintainer
Bug Marked as found in versions d-shlibs/0.44.
 tags   581318 + patch
Bug #581318 [d-shlibs] libgd2: FTBFS: devlibs error: There is no package 
matching [libx11--dev] and noone provides it, please report bug to d-shlibs 
maintainer
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
581318: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581318
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583816: libmodglue1-dev: Uninstallable (Depends: 1.17-1)

2010-05-30 Thread Adam D. Barratt
Package: src:libmodglue
Version: 1.17-1
Severity: serious

Hi,

libmodglue1-dev is currently uninstallable in unstable as it depends on
the package 1.17-1.

From the changelog, this appears to be due to this change:

   * Add ${binary:Version} to fix 'weak-library-dev-dependency' lintian
 error.

However, this line

Depends: libmodglue1

was replaced with

Depends: ${binary:Version}, ${misc:Depends}

which should be

Depends: libmodglue1 (= ${binary:Version}), ${misc:Depends}

Regards,

Adam




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



Bug#582461: libssh config files

2010-05-30 Thread Yannick Roehlly
Le Sunday 30 May 2010 18:45:59 Laurent Bigonville, vous avez écrit :
 I've uploaded a 3rd version of the package with a new patch.

Hi Laurent,

The v3 packages are like the v2. They work but I once encountered a problem of 
host unknown (the system asks to add a new key fingerprint) and once probably 
an identity file not found (the system asks for a password where key 
identification should be used). I couldn't catch these on log.

I'm sorry, I can't explain these sporadic errors. If this happens again, I'll 
try to catch some logs.

Nevertheless, I think you can upload this package as now the kio-sftp works 
most of the time.

Thanks,

Yannick



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



Bug#582806: perl: CVE-2010-1974: multiple unspecified vulnerabilities in Safe

2010-05-30 Thread Niko Tyni
On Sun, May 30, 2010 at 02:46:08PM +0200, Moritz Muehlenhoff wrote:
 Niko Tyni wrote:

  Quoting http://security-tracker.debian.org/tracker/CVE-2010-1974 :
  
Multiple unspecified vulnerabilities in the Safe (aka Safe.pm) module
before 2.25 for Perl allow context-dependent attackers to inject and
execute arbitrary code via vectors related to automagic methods. NOTE:
this might overlap CVE-2010-1169 or CVE-2010-1447.

 Would anyone use Safe to run potentially harmful code in a sandbox-like
 environment? If it's more or less a debugging/testing feature, we don't
 need to update it through a DSA, especially if it causes regressions.

Yes, I think people are using Safe to get a sandbox. The perlsec
document sort of recommends it, and the 3rd edition of the Camel book
(Programming Perl) has a whole section about this called Handling
Insecure Code.

 
http://projects.autonomy.net.au/ai/chrome/site/resource/ebooks-programming/perl/perl_bookshelf_2/prog/ch23_03.htm

A real world example is

 http://search.cpan.org/~ferrency/Text-MicroMason-2.09/MicroMason/Safe.pm 
(which is in Debian as libtext-micromason-perl, currently only in squeeze+sid)

Also, while I'm not clear on the attack vectors,
 http://search.cpan.org/dist/Petal/
(in Debian lenny as libpetal-perl) uses a Safe compartment for tainted data.

I believe a simple example of this vulnerability would be

#!/usr/bin/perl -w
use strict;

use Safe;

my $c = Safe-new;

$c-permit(qw/entereval print/);

$c-reval('EOF'); die $@ if $@;
package MyClass;
sub new { my $class = shift; bless {}, ref $class || $class }
sub DESTROY { print for eval 'qx|cat /etc/passwd|' }
1;

MyClass-new;
EOF
__END__

where the code fed to reval() would actually come from an external source.

This shows /etc/passwd contents for Safe  2.25 but nothing on 2.25
because it clears any DESTROY and AUTOLOAD routines after reval().

I think a DSA may be in order. I'll fix this in sid soon by updating
everything to 2.25, but I hope a targeted lenny patch for this will not
prove too difficult. If this is the only fix needed, I don't see much
potential for regressions.
-- 
Niko Tyni   nt...@debian.org



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



Processed: Untag, actually fix, 552952

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 552952 - pending
Bug #552952 [src:nbd] nbd: FTBFS: tests blocked
Removed tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
552952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583820: libtommath: FTBFS: /bin/sh: latex: not found

2010-05-30 Thread Cyril Brulebois
Source: libtommath
Version: 0.39-3.1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS:
| dh_testdir
| /usr/bin/make manual docs
| make[1]: Entering directory 
`/build/buildd-libtommath_0.39-3.1-amd64-a8k9lu/libtommath-0.39'
| echo hello  bn.ind
| latex bn  /dev/null
| /bin/sh: latex: not found
| make[1]: *** [mandvi] Error 127

Full build logs:
  https://buildd.debian.org/status/package.php?p=libtommath

Mraw,
KiBi.



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



Processed: your mail

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 close 576985
Bug#576985: placeholder bug to prevent testing migration
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to dan...@debian.org

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
576985: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576985
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583824: qt4-x11: FTBFS on kfreebsd-*: qgstreamervideoinputdevicecontrol.cpp needs linux stuff

2010-05-30 Thread Cyril Brulebois
Source: qt4-x11
Version: 4:4.7.0~beta1-1
Severity: serious
Justification: FTBFS

Hi,

qt4-x11 no longer builds on kfreebsd-* in experimental:
| g++ -c -g -O2 -I/usr/include/freetype2 -pthread -I/usr/include/gstreamer-0.10 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -O2 
-fvisibility=hidden -fvisibility-inlines-hidden -D_REENTRANT -Wall -W -fPIC 
-DQMEDIA_GSTREAMER_PLAYER -DQT_NO_DEBUG -DQT_PLUGIN -DQT_MEDIASERVICES_LIB 
-DQT_GUI_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE 
-DQT_SHARED -I../../../../mkspecs/glibc-g++ -I. -I../../../../include/QtCore 
-I../../../../include/QtGui -I../../../../include/QtMediaServices 
-I../../../../include -Imediaplayer -I.moc/release-shared -o 
.obj/release-shared/qgstreamervideoinputdevicecontrol.o 
qgstreamervideoinputdevicecontrol.cpp
| qgstreamervideoinputdevicecontrol.cpp:48:25: error: linux/types.h: No such 
file or directory
| qgstreamervideoinputdevicecontrol.cpp:58:29: error: linux/videodev2.h: No 
such file or directory
| make[5]: *** [.obj/release-shared/qgstreamervideoinputdevicecontrol.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=qt4-x11suite=experimental

Mraw,
KiBi.



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



Bug#583825: gnustep-base: FTBFS on kfreebsd-*: PTHREAD_MUTEX_RECURSIVE undeclared

2010-05-30 Thread Cyril Brulebois
Source: gnustep-base
Version: 1.20.0-1
Severity: serious
Justification: FTBFS

Hi,

your package no longer builds in experimental:
| gcc sync.m -c \
| -MMD -MP -Wall -Wdeclaration-after-statement -DGNUSTEP 
-DGNUSTEP_BASE_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -D_REENTRANT 
-fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fno-strict-aliasing 
-fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -fgnu-runtime 
-fgnu-runtime -fconstant-string-class=NSConstantString 
-I../../Headers/Additions -I../. -I../ -I../../Headers -I. 
-I/usr/include/GNUstep -I/usr/local/include/GNUstep 
-I/usr/local/include/GNUstep -I/usr/include/libxml2 -I/usr/include 
-I/usr/local/include/GNUstep -I/usr/include/GNUstep \
|  -o obj/ObjectiveC2.obj/sync.m.o
| sync.m: In function 'initLockObject':
| sync.m:87: warning: implicit declaration of function 
'pthread_mutexattr_settype'
| sync.m:87: error: 'PTHREAD_MUTEX_RECURSIVE' undeclared (first use in this 
function)
| sync.m:87: error: (Each undeclared identifier is reported only once
| sync.m:87: error: for each function it appears in.)
| make[5]: *** [obj/ObjectiveC2.obj/sync.m.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=gnustep-basesuite=experimental

Mraw,
KiBi.



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



Bug#583827: lash: FTBFS on kfreebsd-*: lashd/server.h:101: error: expected ')' before 'id'

2010-05-30 Thread Cyril Brulebois
Source: lash
Version: 0.6.0~rc2-1
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| gcc -DHAVE_CONFIG_H -I. -I.. 
-I/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd  
-I/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/.
-I/usr/include/libxml2   -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include   
-DDTDDIR=\/usr/share/lash/dtds\  -g -O2 -g -Wall -O2 -c 
/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd/main.c
| In file included from 
/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd/main.c:40:
| 
/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd/server.h:101:
 error: expected ')' before 'id'
| 
/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd/main.c:
 In function 'term_handler':
| 
/build/buildd-lash_0.6.0~rc2-1-kfreebsd-amd64-2KVxEQ/lash-0.6.0~rc2/./lashd/main.c:54:
 warning: implicit declaration of function 'strsignal'
| make[3]: *** [main.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=lashsuite=experimental

Mraw,
KiBi.



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



Bug#583828: byzanz - FTBFS: undefined reference to `gst_caps_new_from_string'

2010-05-30 Thread Bastian Blank
Source: byzanz
Version: 0.2.1-1
Severity: serious

There was an error while trying to autobuild your package:

 sbuild (Debian sbuild) 0.60.0 (23 Feb 2010) on lxdebian.bfinv.de
[...]
 libtool: link: s390-linux-gnu-gcc -pthread -I/usr/include/cairo 
 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 
 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gstreamer-0.10 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 
 -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter 
 -Wold-style-definition -Wdeclaration-after-statement -Wmissing-declarations 
 -Wmissing-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow 
 -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wformat-nonliteral 
 -Wformat-security -Wswitch-enum -Wswitch-default -Winit-self 
 -Wmissing-include-dirs -Wundef -Waggregate-return -Wmissing-format-attribute 
 -Wnested-externs -Wunsafe-loop-optimizations -Wpacked -Winvalid-pch 
 -Wsync-nand -Wall -g -O2 -Wl,-z -Wl,defs -o byzanz-record 
 byzanz_record-record.o -pthread -pthread -pthread  ./.libs/libbyzanz.a 
 /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so 
 /usr/lib/libpangoft2-1.0.so /usr/lib/libgdk_pixbuf-2.0.so -lm 
 /usr/lib/libpangocairo-1.0.so /usr/lib/libcairo.so /usr/lib/libpango-1.0.so 
 /usr/lib/libfreetype.so -lz -lfontconfig -lX11 /usr/lib/libgio-2.0.so 
 -lXdamage -lXfixes -lgstapp-0.10 /usr/lib/libgstbase-0.10.so 
 /usr/lib/libgstreamer-0.10.so /usr/lib/libgobject-2.0.so 
 /usr/lib/libgmodule-2.0.so /usr/lib/libxml2.so /usr/lib/libgthread-2.0.so 
 -lrt /usr/lib/libglib-2.0.so -pthread
 ./.libs/libbyzanz.a(libbyzanz_la-byzanzencodergstreamer.o): In function 
 `byzanz_encoder_gstreamer_run':
 /build/buildd-byzanz_0.2.1-1-s390-E10wNf/byzanz-0.2.1/src/byzanzencodergstreamer.c:117:
  undefined reference to `gst_caps_new_from_string'
 collect2: ld returned 1 exit status
 make[4]: *** [byzanz-record] Error 1
 make[4]: Leaving directory 
 `/build/buildd-byzanz_0.2.1-1-s390-E10wNf/byzanz-0.2.1/src'
 make[3]: *** [all] Error 2

-lcap is missing from the linker call.



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



Bug#583830: tkrat: FTBFS on kfreebsd-*: make[2]: *** No rule to make target `kfreebsd-gnu'. Stop.

2010-05-30 Thread Cyril Brulebois
Source: tkrat
Version: 1:2.2cvs20100105-true-dfsg-2
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| cd imap; \
|   if test `cat OSTYPE 2/dev/null || true` = kfreebsd-gnu ; then \
|   /usr/bin/make SSLTYPE=unix SSLDIR=/usr EXTRACFLAGS=-fPIC  
-I/usr/include/tcl8.5 -Wno-pointer-sign; \
|   else \
|   /usr/bin/make kfreebsd-gnu SSLTYPE=unix SSLDIR=/usr 
EXTRACFLAGS=-fPIC  -I/usr/include/tcl8.5 -Wno-pointer-sign; \
|   fi
| make[2]: *** No rule to make target `kfreebsd-gnu'.  Stop.

Full build logs:
  https://buildd.debian.org/status/package.php?p=tkrat

Mraw,
KiBi.



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



Bug#583831: efax-gtk: FTBFS on kfreebsd-*: error: 'pthread_condattr_setclock' was not declared in this scope

2010-05-30 Thread Cyril Brulebois
Source: efax-gtk
Version: 3.2.2-1
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| x86_64-kfreebsd-gnu-g++ -DHAVE_CONFIG_H -I. -I../../..-D_XOPEN_SOURCE=600 
-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/gio-unix-2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include   -pthread 
-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include   -I.. -DHAVE_DBUS_GLIB -g -O2 -MT mutex.o -MD -MP 
-MF .deps/mutex.Tpo -c -o mutex.o mutex.cpp
| mutex.cpp: In constructor 'Cgu::Thread::Cond::Cond()':
| mutex.cpp:62: error: 'pthread_condattr_setclock' was not declared in this 
scope
| make[5]: *** [mutex.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=efax-gtk

Mraw,
KiBi.



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



Bug#583695: marked as done (/usr/sbin/update-initramfs: line 317: 1: unbound variable)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 21:56:14 +
with message-id e1oiquq-ii...@ries.debian.org
and subject line Bug#583695: fixed in initramfs-tools 0.95.1
has caused the Debian Bug report #583695,
regarding /usr/sbin/update-initramfs: line 317: 1: unbound variable
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583695
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: initramfs-tools
Version: 0.95
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Setting up initramfs-tools (0.95) ...
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools ...
/usr/sbin/update-initramfs: line 317: 1: unbound variable
dpkg: error processing initramfs-tools (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)


- -- Package-specific info:
- -- initramfs sizes
- -- /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.32-22-generic 
root=UUID=cd9a1998-9fb2-4208-aba6-bc2ba8f5e36a ro rootfstype=ext4 quiet splash

- -- /proc/filesystems
ext3
ext2
ext4
fuseblk
vfat

- -- lsmod
Module  Size  Used by
nls_iso8859_1   3249  0 
nls_cp437   4919  0 
vfat8901  0 
fat47767  1 vfat
usb_storage39425  0 
aes_i5867268  1 
aes_generic26863  1 aes_i586
hidp   11083  0 
hid67032  1 hidp
rfcomm 33421  4 
sco 7885  2 
bridge 45582  0 
stp 1655  1 bridge
bnep9436  2 
l2cap  30624  17 hidp,rfcomm,bnep
ppdev   5259  0 
lp  7028  0 
parport32635  2 ppdev,lp
dm_crypt   11331  0 
joydev  8708  0 
snd_hda_codec_idt  51914  1 
snd_hda_intel  21877  2 
snd_hda_codec  74201  2 snd_hda_codec_idt,snd_hda_intel
snd_hwdep   5412  1 snd_hda_codec
arc41153  2 
snd_pcm70662  2 snd_hda_intel,snd_hda_codec
snd_seq_midi4557  0 
snd_rawmidi19056  1 snd_seq_midi
snd_seq_midi_event  6003  1 snd_seq_midi
snd_seq47263  2 snd_seq_midi,snd_seq_midi_event
pcmcia 33024  0 
snd_timer  19098  2 snd_pcm,snd_seq
snd_seq_device  5700  3 snd_seq_midi,snd_rawmidi,snd_seq
iwlagn105566  0 
dell_wmi1793  0 
yenta_socket   20408  1 
iwlcore   105922  1 iwlagn
snd54148  13 
snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
sdhci_pci   5470  0 
dell_laptop 6856  0 
rsrc_nonstatic 10015  1 yenta_socket
mac80211  204922  2 iwlagn,iwlcore
sdhci  15462  1 sdhci_pci
psmouse63245  0 
dcdbas  5422  1 dell_laptop
btusb  10925  2 
bluetooth  49892  10 hidp,rfcomm,sco,bnep,l2cap,btusb
pcmcia_core32964  3 pcmcia,yenta_socket,rsrc_nonstatic
led_class   2864  2 iwlcore,sdhci
soundcore   6620  1 snd
serio_raw   3978  0 
cfg80211  126485  3 iwlagn,iwlcore,mac80211
snd_page_alloc  7076  2 snd_hda_intel,snd_pcm
fbcon  35102  73 
tileblit2031  1 fbcon
font7557  1 fbcon
bitblit 4707  1 fbcon
softcursor  1189  1 bitblit
vga16fb11385  0 
vgastate8961  1 vga16fb
i915  282354  2 
ohci1394   26950  0 
drm_kms_helper 29297  1 i915
intel_agp  24177  2 i915
ieee1394   81181  1 ohci1394
drm   162471  3 i915,drm_kms_helper
tg3   109292  0 
agpgart31724  2 intel_agp,drm
i2c_algo_bit5028  1 i915
video  17375  1 i915
output  1871  1 video

- -- /etc/initramfs-tools/initramfs.conf
MODULES=most
BUSYBOX=y
KEYMAP=n
COMPRESS=gzip
BOOT=local
DEVICE=
NFSROOT=auto


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

Kernel: Linux 2.6.32-22-generic (SMP w/1 CPU core)
Locale: 

Bug#583666: marked as done ([initramfs-tools] upgrade from 0.94.4 to 0.95 fails)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 21:56:14 +
with message-id e1oiquq-ii...@ries.debian.org
and subject line Bug#583695: fixed in initramfs-tools 0.95.1
has caused the Debian Bug report #583695,
regarding [initramfs-tools] upgrade from 0.94.4 to 0.95 fails
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

Package: initramfs-tools
Version: 0.95
Severity: important

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

Got this while updating sid:

Elaborazione dei trigger per initramfs-tools...
/usr/sbin/update-initramfs: 517: 1: parameter not set
dpkg: errore nell'elaborare initramfs-tools (--configure):
 il sottoprocesso vecchio script di post-installation ha restituito lo 
stato di errore 2


line 517 of the script is the last line esac:

[...]
u)
update
;;
esac

I don't have any kernel that requires an initramfs installed.


thanks,
riccardo

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

Debian Release: squeeze/sid
  500 unstablemi.mirror.garr.it
  500 unstableftp.de.debian.org
  500 stable  www.emdebian.org
1 experimentalftp.de.debian.org

--- Package information. ---
Depends  (Version) | Installed
==-+-=
klibc-utils   (= 1.5.9-1) | 1.5.18-1
cpio   | 2.11-4
module-init-tools  | 3.12~pre2-3
udev  (= 0.086-1) | 154-1
findutils  (= 4.2.24) | 4.4.2-1


Recommends (Version) | Installed
-+-===
busybox   (= 1:1.01-3)  | 1:1.15.3-1
 OR busybox-initramfs|


Package's Suggests field is empty.


--- Output from package bug script ---
-- initramfs sizes
-- /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.34 root=/dev/sda1 ro quiet

-- resume
RESUME=/dev/sda3
-- /proc/filesystems
ext3
ext2
ext4
fuseblk

-- lsmod
Module  Size  Used by
aes_generic27407  3
acpi_cpufreq6119  1
cpufreq_stats   3147  0
ipv6  259095  18
fbcon  34231  71
tileblit2159  1 fbcon
font7933  1 fbcon
bitblit 4677  1 fbcon
softcursor  1349  1 bitblit
uinput  7006  1
fuse   56272  1
joydev  9242  0
loop   13478  0
snd_hda_codec_intelhdmi 9375  1
snd_hda_codec_realtek   278704  1
usbhid 33840  0
hid72005  1 usbhid
snd_hda_intel  20990  0
snd_hda_codec  83683  3 
snd_hda_codec_intelhdmi,snd_hda_codec_realtek,snd_hda_intel

snd_hwdep   5938  1 snd_hda_codec
snd_pcm_oss33609  0
uvcvideo   52676  0
videodev   37498  1 uvcvideo
v4l1_compat12985  2 uvcvideo,videodev
v4l2_compat_ioctl32 9035  1 videodev
snd_mixer_oss  14926  1 snd_pcm_oss
option 18271  0
snd_pcm74709  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
sdhci_pci   6759  0
i915  280406  2
sdhci  14731  1 sdhci_pci
snd_seq_dummy   1582  0
arc41385  2
snd_seq_oss25118  0
ecb 1975  2
snd_seq_midi4972  0
snd_rawmidi19699  1 snd_seq_midi
snd_seq_midi_event  6427  2 snd_seq_oss,snd_seq_midi
drm_kms_helper 25767  1 i915
drm   181359  3 i915,drm_kms_helper
snd_seq46781  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
fb 45591  6 
fbcon,tileblit,bitblit,softcursor,i915,drm_kms_helper

iwlagn 87009  0
snd_timer  19361  2 snd_pcm,snd_seq
i2c_algo_bit4984  1 i915
iwlcore   119413  1 iwlagn
snd_seq_device  6058  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq

mmc_core   57815  1 sdhci
fan 3591  0
usbserial  34206  1 option
cfbcopyarea 3161  1 i915
mac80211  137682  2 iwlagn,iwlcore
snd60816  12 
snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device

psmouse36294  0
video  20710  1 

Bug#583700: marked as done (initramfs-tools: package upgrade fails)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 21:56:14 +
with message-id e1oiquq-ii...@ries.debian.org
and subject line Bug#583695: fixed in initramfs-tools 0.95.1
has caused the Debian Bug report #583695,
regarding initramfs-tools: package upgrade fails
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583695
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: initramfs-tools
Version: 0.95
Severity: important

Hi,

I get this when I try to install the latest version:

Unpacking replacement initramfs-tools ...
Setting up initramfs-tools (0.95) ...
update-initramfs: deferring update (trigger activated)
Processing triggers for man-db ...
Processing triggers for initramfs-tools ...
/usr/sbin/update-initramfs: line 317: 1: unbound variable
dpkg: error processing initramfs-tools (--install):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 initramfs-tools

Gabor

-- Package-specific info:
-- initramfs sizes
-- /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.33.5 root=/dev/md4 ro console=tty0 selinux=0 
audit=0 hpet=force sata_nv.adma=0 radeon.modeset=1 quiet

-- resume
RESUME=UUID=b0d60940-d4a8-4417-90fd-d412c2ee7153
-- /proc/filesystems
ext3
ext4
iso9660
udf
fuseblk

-- lsmod
Module  Size  Used by
bridge 43562  0 
stp 1971  1 bridge
llc 5208  2 bridge,stp
fuse   55997  1 
pppoe   8337  2 
pppox   2566  1 pppoe
ipt_MASQUERADE  1647  1 
xt_recent   7304  2 
ipt_ULOG7527  1 
dm_crypt   10952  0 
snd_usb_audio  82066  0 
snd_hwdep   5656  1 snd_usb_audio
snd_usb_lib16597  1 snd_usb_audio
snd_seq_midi5010  0 
snd_seq_midi_event  6465  1 snd_seq_midi
snd_rawmidi18298  2 snd_usb_lib,snd_seq_midi
saa7134_alsa   10563  0 
tuner  17798  1 
saa7134   152625  1 saa7134_alsa
videobuf_dma_sg11056  2 saa7134_alsa,saa7134
firewire_ohci  20029  0 
videobuf_core  16599  2 saa7134,videobuf_dma_sg
parport_pc 30757  0 
tveeprom   12970  1 saa7134
firewire_core  44333  1 firewire_ohci
sky2   40834  0 
forcedeth  46335  0 
parport33115  1 parport_pc
floppy 53605  0 

-- /etc/kernel-img.conf
# Kernel image management overrides
# See kernel-img.conf(5) for details
do_symlinks = no
do_bootloader = yes
do_initrd = yes
link_in_boot = yes
postinst_hook = /usr/sbin/update-grub
postrm_hook   = /usr/sbin/update-grub

-- /etc/initramfs-tools/initramfs.conf
MODULES=most
BUSYBOX=y
KEYMAP=n
COMPRESS=gzip
BOOT=local
DEVICE=
NFSROOT=auto

-- /etc/crypttab
# target name source device key file  options


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

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

Versions of packages initramfs-tools depends on:
ii  cpio 2.11-4  GNU cpio -- a program to manage ar
ii  findutils4.4.2-1 utilities for finding files--find,
ii  klibc-utils  1.5.18-1small utilities built with klibc f
ii  module-init-tools3.12~pre2-3 tools for managing Linux kernel mo
ii  udev 154-1   /dev/ and hotplug management daemo

Versions of packages initramfs-tools recommends:
ii  busybox   1:1.15.3-1 Tiny utilities for small and embed

initramfs-tools suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: initramfs-tools
Source-Version: 0.95.1

We believe that the bug you reported is fixed in the latest version of
initramfs-tools, which is due to be installed in the Debian FTP archive:

initramfs-tools_0.95.1.dsc
  to main/i/initramfs-tools/initramfs-tools_0.95.1.dsc
initramfs-tools_0.95.1.tar.gz
  to main/i/initramfs-tools/initramfs-tools_0.95.1.tar.gz
initramfs-tools_0.95.1_all.deb
  to main/i/initramfs-tools/initramfs-tools_0.95.1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If 

Bug#582978: marked as done (perl: safe.pm code injection vulnerability)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 22:02:07 +
with message-id e1oiqa7-0002pe...@ries.debian.org
and subject line Bug#582978: fixed in perl 5.10.1-13
has caused the Debian Bug report #582978,
regarding perl: safe.pm code injection vulnerability
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
582978: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582978
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: perl
Version: 5.10.1-12
Severity: serious
Tags: security

Hi,

The following CVE (Common Vulnerabilities  Exposures) id was
published for perl.

CVE-2010-1974[0]:
| Multiple unspecified vulnerabilities in the Safe (aka Safe.pm) module
| before 2.25 for Perl allow context-dependent attackers to inject and
| execute arbitrary code via vectors related to automagic methods.
| NOTE: this might overlap CVE-2010-1169 or CVE-2010-1447.

The current version of perl in unstable has safe.pm 2.18, so that just
needs to be updated to version 2.25.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-1974
http://security-tracker.debian.org/tracker/CVE-2010-1974


---End Message---
---BeginMessage---
Source: perl
Source-Version: 5.10.1-13

We believe that the bug you reported is fixed in the latest version of
perl, which is due to be installed in the Debian FTP archive:

libcgi-fast-perl_5.10.1-13_all.deb
  to main/p/perl/libcgi-fast-perl_5.10.1-13_all.deb
libperl-dev_5.10.1-13_amd64.deb
  to main/p/perl/libperl-dev_5.10.1-13_amd64.deb
libperl5.10_5.10.1-13_amd64.deb
  to main/p/perl/libperl5.10_5.10.1-13_amd64.deb
perl-base_5.10.1-13_amd64.deb
  to main/p/perl/perl-base_5.10.1-13_amd64.deb
perl-debug_5.10.1-13_amd64.deb
  to main/p/perl/perl-debug_5.10.1-13_amd64.deb
perl-doc_5.10.1-13_all.deb
  to main/p/perl/perl-doc_5.10.1-13_all.deb
perl-modules_5.10.1-13_all.deb
  to main/p/perl/perl-modules_5.10.1-13_all.deb
perl-suid_5.10.1-13_amd64.deb
  to main/p/perl/perl-suid_5.10.1-13_amd64.deb
perl_5.10.1-13.debian.tar.gz
  to main/p/perl/perl_5.10.1-13.debian.tar.gz
perl_5.10.1-13.dsc
  to main/p/perl/perl_5.10.1-13.dsc
perl_5.10.1-13_amd64.deb
  to main/p/perl/perl_5.10.1-13_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 582...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niko Tyni nt...@debian.org (supplier of updated perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 30 May 2010 11:09:48 +0300
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug perl-suid 
libperl5.10 libperl-dev perl
Architecture: source all amd64
Version: 5.10.1-13
Distribution: unstable
Urgency: low
Maintainer: Niko Tyni nt...@debian.org
Changed-By: Niko Tyni nt...@debian.org
Description: 
 libcgi-fast-perl - CGI::Fast Perl module
 libperl-dev - Perl library: development files
 libperl5.10 - shared Perl library
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-base  - minimal Perl system
 perl-debug - debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl-modules - Core Perl modules
 perl-suid  - runs setuid Perl scripts
Closes: 289884 578577 579537 582978
Changes: 
 perl (5.10.1-13) unstable; urgency=low
 .
   * [SECURITY] CVE-2010-1974: Update to Safe-2.25, fixing code injection
 and execution vulnerabilities. (Closes: #582978)
   * Add conflicts/replaces/provides for the new libswitch-perl,
 libclass-isa-perl, and libpod-plainer-perl packages. (See #580034)
   * Fix a tell() crash on bad arguments. (Closes: #578577)
   * Fix a format/write crash. (Closes: #579537)
   * Prevent gcc from optimizing the u32align check away, finally fixing
 MD5 on armel. Thanks to Marc Pignat. (Closes: #289884)
   * Fix a test failure in CGI/t/fast.t when FCGI is available.
Checksums-Sha1: 
 af6ee28791c7d35fcd158bc95d0672df80622323 1388 perl_5.10.1-13.dsc
 df50c8f7c39a36d0878b894ddbc5dd6f319e6cd5 106766 perl_5.10.1-13.debian.tar.gz
 e152312561afddeda98df8a6416c40a9f9ddee9f 52400 
libcgi-fast-perl_5.10.1-13_all.deb
 7eb07d95da60f1e4a1fc5f4ff37cccfb30f1fb91 7187676 

Bug#582806: marked as done (perl: CVE-2010-1974: multiple unspecified vulnerabilities in Safe)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 22:02:07 +
with message-id e1oiqa7-0002pe...@ries.debian.org
and subject line Bug#582978: fixed in perl 5.10.1-13
has caused the Debian Bug report #582978,
regarding perl: CVE-2010-1974: multiple unspecified vulnerabilities in Safe
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
582978: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582978
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: perl
Version: 5.10.1-12
Severity: important
Tags: security
X-Debbugs-Cc: t...@security.debian.org

Quoting http://security-tracker.debian.org/tracker/CVE-2010-1974 :

  Multiple unspecified vulnerabilities in the Safe (aka Safe.pm) module
  before 2.25 for Perl allow context-dependent attackers to inject and
  execute arbitrary code via vectors related to automagic methods. NOTE:
  this might overlap CVE-2010-1169 or CVE-2010-1447.

The best description I'm aware of is at

 
http://blogs.perl.org/users/rafael_garcia-suarez/2010/03/new-safepm-fixes-security-hole.html

I expect lenny is affected just as much as sid/squeeze. Not sure if we
need a DSA. Setting the severity to 'important' for now.

Please note that there's potential for regression: Safe-2.27 breaks at
least libpetal-perl, see #582805.

Security team, I'd love some help with this.
-- 
Niko Tyni   nt...@debian.org


---End Message---
---BeginMessage---
Source: perl
Source-Version: 5.10.1-13

We believe that the bug you reported is fixed in the latest version of
perl, which is due to be installed in the Debian FTP archive:

libcgi-fast-perl_5.10.1-13_all.deb
  to main/p/perl/libcgi-fast-perl_5.10.1-13_all.deb
libperl-dev_5.10.1-13_amd64.deb
  to main/p/perl/libperl-dev_5.10.1-13_amd64.deb
libperl5.10_5.10.1-13_amd64.deb
  to main/p/perl/libperl5.10_5.10.1-13_amd64.deb
perl-base_5.10.1-13_amd64.deb
  to main/p/perl/perl-base_5.10.1-13_amd64.deb
perl-debug_5.10.1-13_amd64.deb
  to main/p/perl/perl-debug_5.10.1-13_amd64.deb
perl-doc_5.10.1-13_all.deb
  to main/p/perl/perl-doc_5.10.1-13_all.deb
perl-modules_5.10.1-13_all.deb
  to main/p/perl/perl-modules_5.10.1-13_all.deb
perl-suid_5.10.1-13_amd64.deb
  to main/p/perl/perl-suid_5.10.1-13_amd64.deb
perl_5.10.1-13.debian.tar.gz
  to main/p/perl/perl_5.10.1-13.debian.tar.gz
perl_5.10.1-13.dsc
  to main/p/perl/perl_5.10.1-13.dsc
perl_5.10.1-13_amd64.deb
  to main/p/perl/perl_5.10.1-13_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 582...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niko Tyni nt...@debian.org (supplier of updated perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 30 May 2010 11:09:48 +0300
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug perl-suid 
libperl5.10 libperl-dev perl
Architecture: source all amd64
Version: 5.10.1-13
Distribution: unstable
Urgency: low
Maintainer: Niko Tyni nt...@debian.org
Changed-By: Niko Tyni nt...@debian.org
Description: 
 libcgi-fast-perl - CGI::Fast Perl module
 libperl-dev - Perl library: development files
 libperl5.10 - shared Perl library
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-base  - minimal Perl system
 perl-debug - debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl-modules - Core Perl modules
 perl-suid  - runs setuid Perl scripts
Closes: 289884 578577 579537 582978
Changes: 
 perl (5.10.1-13) unstable; urgency=low
 .
   * [SECURITY] CVE-2010-1974: Update to Safe-2.25, fixing code injection
 and execution vulnerabilities. (Closes: #582978)
   * Add conflicts/replaces/provides for the new libswitch-perl,
 libclass-isa-perl, and libpod-plainer-perl packages. (See #580034)
   * Fix a tell() crash on bad arguments. (Closes: #578577)
   * Fix a format/write crash. (Closes: #579537)
   * Prevent gcc from optimizing the u32align check away, finally fixing
 MD5 on armel. Thanks to Marc Pignat. (Closes: #289884)
   * Fix a test failure in CGI/t/fast.t when FCGI is available.
Checksums-Sha1: 
 af6ee28791c7d35fcd158bc95d0672df80622323 1388 perl_5.10.1-13.dsc
 df50c8f7c39a36d0878b894ddbc5dd6f319e6cd5 106766 perl_5.10.1-13.debian.tar.gz
 

Bug#583508: [Pkg-samba-maint] Bug#583508: smbfs: smbumount does not umount from win2k server

2010-05-30 Thread Leonardo Boselli

On Sun, 30 May 2010, Steve Langasek wrote:

Er, did you not notice here that you passed a file path to 'umount', and a
share name to 'smbumount'?
What happens if you run 'smbumount loc'?


well ... er, bad !
if I smbumount loc as user there are no error,  BUT ...
after I umount from root the share is unmounted, but a line
//unione/home on /home/leo/loc type cifs (rw,mand,nosuid,nodev,user=leo)
remain in mount output.
I can mount again from user, so i get two identycal lines.
i have to unmount from root, but only one goes away.
One dead line remains, and i think is this that forbide regular 
shutdown.

anyway smbumount never works, even from root i have to use umount.

so:
user$ smbmount
root# umount file or share
is ok, but:

user$ smbmount
user$ smbumount file
root# umount file
... is umounted but remain in memory ...
now i try:
user$ smbmount otherserver\\share loc
it is ok, i can read
but:
user$ mount
return:
(...)
//unione/home on /home/leo/loc type cifs (rw,mand,nosuid,nodev,user=leo)
//dipolo/leo on /home/leo/loc type cifs (rw,mand,nosuid,nodev,user=leo)
(...)
when i try
user$ umount loc
say:
umount: it seems /home/leo/loc is mounted multiple times
and even:
l...@student:~$ umount //dipolo/leo
umount: //dipolo/leo is not in the fstab (and you are not root)
l...@student:~$ smbumount //dipolo/leo
This utility only unmounts cifs filesystems.
l...@student:~$
NOTE THAT DIPOLO IS THE LENNY MACHINE WHERE I NOTICED THE PROBLEM THE 
FIRST TIME

then i try:
root# umount loc
is umounted, but the first one remains for the eternity (until 
hard poweroff)


So the ill behavior can be repeated on two differnt machines, with two 
different flavours of lenny !

(tomorrow i will try from a squeeze one ...)






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



Processed: closing 576985

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 close 576985 0.8.1-2
Bug#576985: placeholder bug to prevent testing migration
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 0.8.1-2, send any further explanations to 
dan...@debian.org

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
576985: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576985
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#576985: closing 576985

2010-05-30 Thread Didier Raboud
close 576985 0.8.1-2
thanks

# Just mentioning version so that the bts recognises this as closed for the 
current versions.




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



Bug#583834: keytouch: missing dependencies

2010-05-30 Thread Celejar
Package: keytouch
Version: 2.4.1-10
Severity: serious
Justification: Policy 3.5


On my system, trying to run keytouch-keyboard fails with:

~# keytouch
/usr/bin/keytouch-keyboard: line 6: kde4-config: command not found
/usr/bin/keytouch-keyboard: line 6: kdesu: command not found

This is because neither gksu nor kde4-config is installed, but there's no
dependency on the relevant packages.  In any event, the script really should be
rewritten to allow being run from a root VT.

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

Kernel: Linux 2.6.34-rc5-lizzie-00023-g05ce7bf
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages keytouch depends on:
ii  keytouch-data 2.4.1-10   keyboard definition files and docu
ii  libasound21.0.22-2   shared library for ALSA applicatio
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.11.1-1   Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgnome-menu22.30.0-1   an implementation of the freedeskt
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface 
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxtst6  2:1.1.0-2  X11 Testing -- Resource extension 

keytouch recommends no packages.

Versions of packages keytouch suggests:
pn  keytouch-editor   none (no description available)

-- no debconf information



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



Processed: Re: Bug#583816: libmodglue1-dev: Uninstallable (Depends: 1.17-1)

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 583816 libmodglue1-dev
Bug #583816 [src:libmodglue] libmodglue1-dev: Uninstallable (Depends: 1.17-1)
Warning: Unknown package 'src:libmodglue'
Bug reassigned from package 'src:libmodglue' to 'libmodglue1-dev'.
Bug No longer marked as found in versions libmodglue/1.17-1.
 --
Stopping processing here.

Please contact me if you need assistance.
-- 
583816: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583816
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583795: marked as done (myspell-en-za: using en_GB.aff for en_ZA breaks en_ZA spellchecking)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2010 23:18:00 +
with message-id e1oirly-0007g0...@ries.debian.org
and subject line Bug#583795: fixed in openoffice.org-dictionaries 1:3.2.0~rc2-5
has caused the Debian Bug report #583795,
regarding myspell-en-za: using en_GB.aff for en_ZA breaks en_ZA spellchecking
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583795
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: myspell-en-za
Version: 1:3.2.0-4
Severity: grave
Tags: patch
Justification: renders package unusable

I have no idea if it worked at the time, but the fix for Bug #536643
broke the new version of en_ZA included in OOO320_m7, which was a
different upstream fix for the same bug:
http://www.openoffice.org/issues/show_bug.cgi?id=100281

You can see some more details in this Ubuntu LP Bug:
https://bugs.edge.launchpad.net/ubuntu/+source/openoffice.org-dictionaries/+bug/467278

Here are some test-cases for the South African spellchecker. All these
words should be correct:

| have having dad dad's biltong braai bliksem

Additionally, Openoffice spews out 68k lines of the following type of
error when attempting to spellcheck with the broken dictionary:

| error: line 15: bad flag alias index: 0
| error: line 15: bad flag vector alias

So, essentially, myspell-en-za 1:3.2.0-4 is completely unusable for
South African users.

Attached is a patch that reverts the changes in 1:3.1.0-4 and fixes this
dictionary for me.

SR

-- 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-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_ZA.UTF-8, LC_CTYPE=en_ZA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages myspell-en-za depends on:
ii  dictionaries-common [openoffi 1.5.5  Common utilities for spelling dict
ii  myspell-en-gb 1:3.2.0-4  English_british dictionary for mys

myspell-en-za recommends no packages.

myspell-en-za suggests no packages.

-- no debconf information

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  H: +27 21 465 6908 C: +27 72 419 8559  UCT: x3127
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
--- openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.links
@@ -1,4 +1,3 @@
-/usr/share/hunspell/en_GB.aff /usr/share/hunspell/en_ZA.aff
 /usr/share/hunspell/en_ZA.aff /usr/share/myspell/dicts/en_ZA.aff
 /usr/share/hunspell/en_ZA.dic /usr/share/myspell/dicts/en_ZA.dic
 
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/changelog openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
--- openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/changelog
@@ -1,3 +1,10 @@
+openoffice.org-dictionaries (1:3.2.0~rc2-4.1) unstable; urgency=low
+
+  * Revert changes in 1:3.1.0-4 (Closes #FOO):
+Make myspell-en-za depend on -en-gb , use en_GB.aff for en_ZA.aff
+
+ -- Stefano Rivera stef...@rivera.za.net  Sun, 30 May 2010 18:59:32 +0200
+
 openoffice.org-dictionaries (1:3.2.0~rc2-4) unstable; urgency=low
 
   * fix compat symlinks for openoffice.org-thesaurus-fr
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
--- openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/myspell-en-za.install
@@ -1 +1,2 @@
+usr/share/hunspell/en_ZA.aff
 usr/share/hunspell/en_ZA.dic
diff -u openoffice.org-dictionaries-3.2.0~rc2/debian/control openoffice.org-dictionaries-3.2.0~rc2/debian/control
--- openoffice.org-dictionaries-3.2.0~rc2/debian/control
+++ openoffice.org-dictionaries-3.2.0~rc2/debian/control
@@ -139,7 +139,7 @@
 Package: myspell-en-za
 Architecture: all
 Conflicts: openoffice.org (= 1.0.3-2)
-Depends: dictionaries-common (= 0.10) | openoffice.org-updatedicts, myspell-en-gb
+Depends: dictionaries-common (= 0.10) | openoffice.org-updatedicts
 Provides: myspell-dictionary, myspell-dictionary-en
 Description: English_southafrican dictionary for myspell
  This is the English_southafrican dictionary for use with the myspell


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: openoffice.org-dictionaries
Source-Version: 1:3.2.0~rc2-5

We believe that the bug you reported 

Bug#583839: eglibc 2.11 ftbfs on kfreebsd

2010-05-30 Thread Matthias Klose

Package: eglibc
Version: 2.11.1-1
Severity: serious

see
https://buildd.debian.org/fetch.cgi?pkg=gcc-snapshot;ver=20100530-1;arch=kfreebsd-amd64;stamp=1275239549

gnatgcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wc++-compat -fno-common 
-DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../src/gcc 
-I../../src/gcc/build -I../../src/gcc/../include 
-I../../src/gcc/../libcpp/include  -I../../src/gcc/../libdecnumber 
-I../../src/gcc/../libdecnumber/dpd -I../libdecnumber  -DCLOOG_PPL_BACKEND 
-I/usr/include/libelf  \

-o build/gencondmd.o build/gencondmd.c
In file included from ./tm.h:37,
 from build/gencondmd.c:21:
../../src/gcc/config/linux.h:86:1: warning: OPTION_GLIBC redefined
In file included from build/gencondmd.c:21:
./tm.h:13:1: warning: this is the location of the previous definition
../../src/gcc/config/i386/i386.md:15604: error: 'linux_libc' undeclared here 
(not in a function)

../../src/gcc/config/i386/i386.md:15606: warning: missing initializer
../../src/gcc/config/i386/i386.md:15606: warning: (near initialization for 
'insn_conditions[13].value')

../../src/gcc/config/i386/i386.md:15606: warning: missing initializer
../../src/gcc/config/i386/i386.md:15606: warning: (near initialization for 
'insn_conditions[292].value')

../../src/gcc/config/i386/i386.md:15579: warning: missing initializer
../../src/gcc/config/i386/i386.md:15579: warning: (near initialization for 
'insn_conditions[941].value')

make[5]: *** [build/gencondmd.o] Error 1



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



Bug#583841: libnss-db needs a rebuild against eglibc-2.11

2010-05-30 Thread Matthias Klose

Package: libnss-db
Version: 2.2.3pre1-3.1
Severity: serious

libnss-db needs a rebuild against eglibc-2.11, not installable with eglibc-2.11.



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



Bug#582005: marked as done (depends on non existing package python-restkit)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Mon, 31 May 2010 09:28:41 +0900
with message-id 87y6f052yu.wl%tak...@asis.media-as.org
and subject line Re: Bug#582005: depends on non existing package python-restkit
has caused the Debian Bug report #582005,
regarding depends on non existing package python-restkit
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
582005: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582005
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-couchdbkit
Version: 0.4.5-2
Severity: serious

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

python-couchdbkit depends on python-restkit which is not available in
Debian at all.

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


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

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

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

iEYEARECAAYFAkvxZTUACgkQ3DVS6DbnVgSYzgCeKIzkkXl9aJoil7YDxMrbQv2D
8lQAoLn5cZSCax90GK9bQ3s9Gr0NVuXg
=2RHu
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
python-restkit has been uploaded.

http://packages.qa.debian.org/p/python-restkit/news/20100530T163253Z.html
--
谷口 貴紀 (TANIGUCHI Takaki)tak...@asis.media-as.org
http://takaki-web.media-as.org/ tak...@debian.org

---End Message---


Bug#583844: warzone2100: Segmentation fault on game launch/startup

2010-05-30 Thread Jonathan E. Magen
Package: warzone2100
Version: 2.2.4-3
Severity: grave
Tags: squeeze
Justification: renders package unusable


Upon starting warzone2100, the application crashes. The crash report
(automatically generated) follows:

== BEGIN DEBUG ==
Program: /usr/games/warzone2100(warzone2100)
Command line: warzone2100 
Version: Version r0 - Built Nov  2 2009
Distributor: Debian
Compiled on: Nov  2 2009 16:45:03
Compiled by: GCC 4.3.4
Compiled mode: Release build
Executed on: Sun May 30 21:48:01 2010
Operating system: Linux
Node name: Akiba
Release: 2.6.32-trunk-686
Version: #1 SMP Sun Jan 10 06:32:16 UTC 2010
Machine: i686

Pointers: 32bit

Compiled against PhysicsFS version: 2.0.0
Running with PhysicsFS version: 2.0.1

Misc Data:
[09:48:01]OpenGL Vendor : Tungsten Graphics, Inc
[09:48:01]OpenGL Renderer : Mesa DRI Intel(R) 945GM GEM 20091221 2009Q4 
x86/MMX/SSE2
[09:48:01]OpenGL Version : 1.4 Mesa 7.7.1
[09:48:01]OpenGL GLSL Version : 1.20
[09:48:01]Video Mode 832 x 624 (32 bpp) (window)

Dump caused by signal: SIGSEGV: Invalid memory reference


GLIBC raw backtrace:
warzone2100[0x82366fc]
[0xb788640c]
/usr/lib/libasound.so.2(snd_pcm_resume+0x31)[0xb7163811]
/usr/lib/libasound.so.2[0xb71a4f4f]
/usr/lib/libasound.so.2(snd_pcm_resume+0x31)[0xb7163811]
/usr/lib/libasound.so.2[0xb7175b05]
/usr/lib/libasound.so.2(snd_pcm_resume+0x31)[0xb7163811]
/usr/lib/libasound.so.2(snd_pcm_recover+0x64)[0xb7163f14]
/usr/lib/libopenal.so.1[0xb76c630d]
/usr/lib/libopenal.so.1[0xb76c63cc]
/usr/lib/libopenal.so.1[0xb76c65fa]
/usr/lib/libopenal.so.1[0xb76c4b92]
/lib/i686/cmov/libpthread.so.0[0xb7306585]
/lib/i686/cmov/libc.so.6(clone+0x5e)[0xb73e829e]

GDB extended backtrace:
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/games/warzone2100...Reading symbols from 
/usr/lib/debug/usr/games/warzone2100...done.
(no debugging symbols found)...done.
Attaching to program: /usr/games/warzone2100, process 24531
Reading symbols from /usr/lib/libSDL-1.2.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libSDL-1.2.so.0
Reading symbols from /usr/lib/libSDL_net-1.2.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libSDL_net-1.2.so.0
Reading symbols from /usr/lib/libphysfs.so.1...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libphysfs.so.1
Reading symbols from /lib/libpng12.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libpng12.so.0
Reading symbols from /usr/lib/libvorbisfile.so.3...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libvorbisfile.so.3
Reading symbols from /usr/lib/libvorbis.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libvorbis.so.0
Reading symbols from /usr/lib/libogg.so.0...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libogg.so.0
Reading symbols from /usr/lib/libtheora.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libtheora.so.0
Reading symbols from /usr/lib/libopenal.so.1...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libopenal.so.1
Reading symbols from /usr/lib/libGLC.so.0...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libGLC.so.0
Reading symbols from /usr/lib/libGL.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libGL.so.1
Reading symbols from /usr/lib/libGLU.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libGLU.so.1
Reading symbols from /lib/libpopt.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libpopt.so.0
Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libstdc++.so.6
Reading symbols from /lib/i686/cmov/libm.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libm.so.6
Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /lib/i686/cmov/libc.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libc.so.6
Reading symbols from /lib/i686/cmov/libpthread.so.0...(no debugging symbols 
found)...done.
[Thread debugging using libthread_db enabled]
[New Thread 0xb429db70 (LWP 24545)]
[New Thread 0xb67c3b70 (LWP 24541)]
Loaded symbols for /lib/i686/cmov/libpthread.so.0
Reading symbols from /usr/lib/libX11.so.6...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libX11.so.6
Reading symbols from /usr/lib/libasound.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libasound.so.2
Reading symbols from 

Bug#583316: /usr/bin/gv: Insecure gs workaround gs -P-

2010-05-30 Thread paul . szabo
I wrote a few days ago:

 So -P- may work with GNU gv - but some testing would help before 
 changing the defaults.

 I will try to dig up the file I was testing with, and re-do the tests.
 My vague memory is that the layout of the two-page-per-sheet file
 changed with -P-.

File sent privately to Markus and Bernhard (was Adrian's newsol11.pdf).

Cheers, Paul

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



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



Bug#583846: fails loading backends

2010-05-30 Thread Horacio Penya
Package: soci
Severity: grave

Hola!

I'm trying to make a trivial example program using libsoci and failing
at it:

$ cat a.cpp
#include soci/soci.h

main()
{
soci::session dbh(sqlite3://a.sq3);
}

$ g++ a.cpp -lsoci
/usr/bin/ld: cannot find -lsoci
collect2: ld returned 1 exit status

$ ls -1 /usr/lib/libsoci*.a
/usr/lib/libsoci_core-gcc-3_0.a
/usr/lib/libsoci_sqlite3-gcc-3_0.a

It seems the package renamed the lib to soci_core-gcc-3_0

$ g++ a.cpp -lsoci_core-gcc-3_0
$ ./a.out
$ ./a.out
terminate called after throwing an instance of 'soci::soci_error'
  what():  Failed to find shared library for backend sqlite3
Aborted
$ $ strace ./a.out 21 | grep sqli
open(./libsoci_sqlite3.so, O_RDONLY)  = -1 ENOENT (No such file or directory)
write(2, Failed to find shared library fo..., 49Failed to find shared library 
for backend sqlite3) = 49

But the code to dynamically load backends don't know about the
-gcc-3_0 thing nor that it should look for the module on /usr/lib/

Is the package broken or I am missing something?

Thanks!
H

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

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



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



Bug#583183: /usr/bin/gs: Insecure gs initialization

2010-05-30 Thread paul . szabo
Seems to me that the following packages depend on ghostscript:

  advi advi-examples asymptote bmv c2050 capisuite courier-faxmail cups
  cups-pdf epix1 epstool fbi fig2ps flpsed gv hevea hpijs hylafax-client
  hylafax-server hyperlatex ifhp ijsgutenprint kghostview latex-make
  libgs-dev libspectre1 logidee-tools lsb-printing mediawiki-math
  page-crunch passepartout pkpgcounter pnm2ppa printconf prosper ps2eps
  pspresent pstoedit pstotext pyxplot scribus scribus-ng texmacs
  webmagick xournal zope-textindexng3

and additionally the following suggest it:

  a2ps apsfilter caspar cd-circleprint cedilla dblatex derivations efax
  gimp grace grace6 hpoj impose+ kdelibs4c2a kdissert latex-mk latexmk
  lpr mgetty-fax mpage opensched plywood python-codespeak-lib recoll sdf
  tex4ht-common texlive-base-bin wv xapian-omega xfig xpaint

Should some or all be alerted to the this security issue? So far gv and
libspectre1 only have been alerted (bugs #583316 and #583634).

Cheers, Paul

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



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



Bug#583825: [Debian GNUstep maintainers] Bug#583825: gnustep-base: FTBFS on kfreebsd-*: PTHREAD_MUTEX_RECURSIVE undeclared

2010-05-30 Thread Yavor Doganov
Cyril Brulebois wrote:
 Source: gnustep-base
 Version: 1.20.0-1
 Severity: serious
 Justification: FTBFS

 your package no longer builds in experimental:

Thanks for filing the bug.  I sent a message to -bsd shortly after it
failed to build but got no reply:

http://lists.debian.org/debian-bsd/2010/05/msg00039.html



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



Bug#583841: libnss-db needs a rebuild against eglibc-2.11

2010-05-30 Thread Ansgar Burchardt
reassign 583841 release.debian.org
retitle  583841 NMU: libnss-db
severity 583841 normal
user release.debian@packages.debian.org
usertags 583841 + binnmu
thanks

Hi,

Matthias Klose d...@debian.org writes:

 libnss-db needs a rebuild against eglibc-2.11, not installable with
 eglibc-2.11.

The dependency on libc6 ( $foo) is generated automatically so it looks
like a binNMU should be enough to handle this.

Please schedule a binNMU for libnss-db:

nmu libnss-db_2.2.3pre1-3.1 . ALL . -m 'Rebuild against eglibc-2.11'
dw  libnss-db_2.2.3pre1-3.1 . ALL . -m 'libc6-dev (= 2.11.1-1)'

Thanks,
Ansgar



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



Processed: Re: libnss-db needs a rebuild against eglibc-2.11

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 583841 release.debian.org
Bug #583841 [libnss-db] libnss-db needs a rebuild against eglibc-2.11
Bug reassigned from package 'libnss-db' to 'release.debian.org'.
Bug No longer marked as found in versions libnss-db/2.2.3pre1-3.1.
 retitle  583841 NMU: libnss-db
Bug #583841 [release.debian.org] libnss-db needs a rebuild against eglibc-2.11
Changed Bug title to 'NMU: libnss-db' from 'libnss-db needs a rebuild against 
eglibc-2.11'
 severity 583841 normal
Bug #583841 [release.debian.org] NMU: libnss-db
Severity set to 'normal' from 'serious'

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was ans...@43-1.org).
 usertags 583841 + binnmu
Bug#583841: NMU: libnss-db
There were no usertags set.
Usertags are now: binnmu.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583841: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583841
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#583618: gnome-games: fails to start

2010-05-30 Thread Gary Koskenmaki
On Sun, 2010-05-30 at 07:59 +0200, Josselin Mouette wrote:
 Le samedi 29 mai 2010 à 14:35 -0700, Gary Koskenmaki a écrit :
  The output from python -c import gnome_sudoku was blank.  No
  output.
  Not even a blank line.  I get the same response from a python
  prompt
  when when trying to import a module named gnome_sudoku.
 
 Looks pretty normal to me.
 
 Could you attach the output of python -v /usr/games/gnome-sudoku then?
Looking at the output of this I'd say this isn't a problem with
gnome-sudoku.  It looks to have come from an install I did of dabo using
python setup tools that I did the same day I last ran apt-get upgrade.
I'll attach a file with the output but it looks to me like the dabo
installation corrupted something in the Python installation as every
time I try to start sudoku it starts importing dabo modules.  

I'm going to file a bug report with dabo and send them the same file.
# installing zipimport hook
import zipimport # builtin
# installed zipimport hook
# /usr/lib/python2.5/site.pyc matches /usr/lib/python2.5/site.py
import site # precompiled from /usr/lib/python2.5/site.pyc
# /usr/lib/python2.5/os.pyc matches /usr/lib/python2.5/os.py
import os # precompiled from /usr/lib/python2.5/os.pyc
import errno # builtin
import posix # builtin
# /usr/lib/python2.5/posixpath.pyc matches /usr/lib/python2.5/posixpath.py
import posixpath # precompiled from /usr/lib/python2.5/posixpath.pyc
# /usr/lib/python2.5/stat.pyc matches /usr/lib/python2.5/stat.py
import stat # precompiled from /usr/lib/python2.5/stat.pyc
# /usr/lib/python2.5/UserDict.pyc matches /usr/lib/python2.5/UserDict.py
import UserDict # precompiled from /usr/lib/python2.5/UserDict.pyc
# /usr/lib/python2.5/copy_reg.pyc matches /usr/lib/python2.5/copy_reg.py
import copy_reg # precompiled from /usr/lib/python2.5/copy_reg.pyc
# /usr/lib/python2.5/types.pyc matches /usr/lib/python2.5/types.py
import types # precompiled from /usr/lib/python2.5/types.pyc
import _types # builtin
# /usr/lib/python2.5/sitecustomize.pyc matches 
/usr/lib/python2.5/sitecustomize.py
import sitecustomize # precompiled from /usr/lib/python2.5/sitecustomize.pyc
# /usr/lib/python2.5/warnings.pyc matches /usr/lib/python2.5/warnings.py
import warnings # precompiled from /usr/lib/python2.5/warnings.pyc
# /usr/lib/python2.5/linecache.pyc matches /usr/lib/python2.5/linecache.py
import linecache # precompiled from /usr/lib/python2.5/linecache.pyc
import encodings # directory /usr/lib/python2.5/encodings
# /usr/lib/python2.5/encodings/__init__.pyc matches 
/usr/lib/python2.5/encodings/__init__.py
import encodings # precompiled from /usr/lib/python2.5/encodings/__init__.pyc
# /usr/lib/python2.5/codecs.pyc matches /usr/lib/python2.5/codecs.py
import codecs # precompiled from /usr/lib/python2.5/codecs.pyc
import _codecs # builtin
# /usr/lib/python2.5/encodings/aliases.pyc matches 
/usr/lib/python2.5/encodings/aliases.py
import encodings.aliases # precompiled from 
/usr/lib/python2.5/encodings/aliases.pyc
# /usr/lib/python2.5/encodings/iso8859_15.pyc matches 
/usr/lib/python2.5/encodings/iso8859_15.py
import encodings.iso8859_15 # precompiled from 
/usr/lib/python2.5/encodings/iso8859_15.pyc
Python 2.5.5 (r255:77872, Apr 21 2010, 08:44:16) 
[GCC 4.4.3] on linux2
Type help, copyright, credits or license for more information.
# /usr/lib/pymodules/python2.5/gtk-2.0/bugbuddy.pyc matches 
/usr/lib/pymodules/python2.5/gtk-2.0/bugbuddy.py
import bugbuddy # precompiled from 
/usr/lib/pymodules/python2.5/gtk-2.0/bugbuddy.pyc
import lib # directory /usr/lib/python2.5/site-packages/lib
# /usr/lib/python2.5/site-packages/lib/__init__.pyc matches 
/usr/lib/python2.5/site-packages/lib/__init__.py
import lib # precompiled from /usr/lib/python2.5/site-packages/lib/__init__.pyc
# /usr/lib/python2.5/site-packages/lib/uuid.pyc matches 
/usr/lib/python2.5/site-packages/lib/uuid.py
import lib.uuid # precompiled from /usr/lib/python2.5/site-packages/lib/uuid.pyc
import ctypes # directory /usr/lib/python2.5/ctypes
# /usr/lib/python2.5/ctypes/__init__.pyc matches 
/usr/lib/python2.5/ctypes/__init__.py
import ctypes # precompiled from /usr/lib/python2.5/ctypes/__init__.pyc
dlopen(/usr/lib/python2.5/lib-dynload/_ctypes.so, 2);
import _ctypes # dynamically loaded from 
/usr/lib/python2.5/lib-dynload/_ctypes.so
# /usr/lib/python2.5/struct.pyc matches /usr/lib/python2.5/struct.py
import struct # precompiled from /usr/lib/python2.5/struct.pyc
dlopen(/usr/lib/python2.5/lib-dynload/_struct.so, 2);
import _struct # dynamically loaded from 
/usr/lib/python2.5/lib-dynload/_struct.so
# /usr/lib/python2.5/ctypes/_endian.pyc matches 
/usr/lib/python2.5/ctypes/_endian.py
import ctypes._endian # precompiled from /usr/lib/python2.5/ctypes/_endian.pyc
# /usr/lib/python2.5/ctypes/util.pyc matches /usr/lib/python2.5/ctypes/util.py
import ctypes.util # precompiled from /usr/lib/python2.5/ctypes/util.pyc
# /usr/lib/python2.5/re.pyc matches /usr/lib/python2.5/re.py
import re # 

Bug#583839: eglibc 2.11 ftbfs on kfreebsd

2010-05-30 Thread Aurelien Jarno
reassign 583839 gcc-snapshot
thanks

On Mon, May 31, 2010 at 02:14:49AM +0200, Matthias Klose wrote:
 Package: eglibc
 Version: 2.11.1-1
 Severity: serious

 see
 https://buildd.debian.org/fetch.cgi?pkg=gcc-snapshot;ver=20100530-1;arch=kfreebsd-amd64;stamp=1275239549


This is indeed a serious failure. OTOH, I fail to see how it is related
to eglibc 2.11, the build log is exactly the same with glibc 2.10.
Reassigning.

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



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



Processed: Re: Bug#583839: eglibc 2.11 ftbfs on kfreebsd

2010-05-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 583839 gcc-snapshot
Bug #583839 [eglibc] eglibc 2.11 ftbfs on kfreebsd
Bug reassigned from package 'eglibc' to 'gcc-snapshot'.
Bug No longer marked as found in versions 2.11.1-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583839: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583839
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#580590: marked as done (xpilot-ng: FTBFS /usr/bin/ld: error: cannot find -lGL)

2010-05-30 Thread Debian Bug Tracking System
Your message dated Mon, 31 May 2010 05:12:06 +
with message-id e1oixie-000847...@ries.debian.org
and subject line Bug#580590: fixed in xpilot-ng 1:4.7.3-1.1
has caused the Debian Bug report #580590,
regarding xpilot-ng: FTBFS /usr/bin/ld: error: cannot find -lGL
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
580590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=580590
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xpilot-ng
Severity: serious
Justification: FTBFS


Package fails to build:

86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../..  
-DCONF_DATADIR=\/usr/share/games/xpilot-ng/\ -I../../../src/common 
-I../../../src/client -I/\
usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT   -Wall -g -O2 -MT gameloop_x.o 
-MD -MP -MF .deps/gameloop_x.Tpo -c -o gameloop_x.o gameloop_x.c
mv -f .deps/gameloop_x.Tpo .deps/gameloop_x.Po
x86_64-linux-gnu-gcc  -Wall -g -O2   -o xpilot-ng-sdl DT_drawtext.o 
SDL_console.o SDL_gfxPrimitives.o console.o glwidgets.o images.o main.o scrap.o\
 radar.o sdlevent.o sdlgui.o sdlinit.o sdlkeys.o sdlpaint.o sdlwindow.o text.o 
todo.o sdlmeta.o  gameloop_x.o  ../../../src/client/libxpclient.a ..\
/../../src/common/libxpcommon.a -L/usr/lib -lSDL -L/usr/X11R6/lib -lGL -lGLU 
-lSDL_ttf -lSDL_image   -lSM -lICE -lopenal -lalut  -lX11 -lexpat -lz \
-lm 
/usr/bin/ld: error: cannot find -lGL
/usr/bin/ld: console.o: in function Console_paint:console.c:78: error: 
undefined reference to 'glBegin'
/usr/bin/ld: console.o: in function Console_paint:console.c:79: error: 
undefined reference to 'glColor4ub'
/usr/bin/ld: console.o: in function Console_paint:console.c:80: error: 
undefined reference to 'glVertex2i'
/usr/bin/ld: console.o: in function Console_paint:console.c:81: error: 
undefined reference to 'glColor4ub'
/usr/bin/ld: console.o: in function Console_paint:console.c:82: error: 
undefined reference to 'glVertex2i'
/usr/bin/ld: console.o: in function Console_paint:console.c:83: error: 
undefined reference to 'glColor4ub'
/usr/bin/ld: console.o: in function Console_paint:console.c:84: error: 
undefined reference to 'glVertex2i'
/usr/bin/ld: console.o: in function Console_paint:console.c:85: error: 
undefined reference to 'glColor4ub'
/usr/bin/ld: console.o: in function Console_paint:console.c:86: error: 
undefined reference to 'glVertex2i'
/usr/bin/ld: console.o: in function Console_paint:console.c:88: error: 
undefined reference to 'glEnd'
/usr/bin/ld: glwidgets.o: in function Close_ImageButtonWidget:glwidgets.c:3976: 
error: undefined reference to 'glDeleteTextures'
...

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


---End Message---
---BeginMessage---
Source: xpilot-ng
Source-Version: 1:4.7.3-1.1

We believe that the bug you reported is fixed in the latest version of
xpilot-ng, which is due to be installed in the Debian FTP archive:

xpilot-ng-client-sdl_4.7.3-1.1_i386.deb
  to main/x/xpilot-ng/xpilot-ng-client-sdl_4.7.3-1.1_i386.deb
xpilot-ng-client-x11_4.7.3-1.1_i386.deb
  to main/x/xpilot-ng/xpilot-ng-client-x11_4.7.3-1.1_i386.deb
xpilot-ng-common_4.7.3-1.1_all.deb
  to main/x/xpilot-ng/xpilot-ng-common_4.7.3-1.1_all.deb
xpilot-ng-server_4.7.3-1.1_i386.deb
  to main/x/xpilot-ng/xpilot-ng-server_4.7.3-1.1_i386.deb
xpilot-ng-utils_4.7.3-1.1_i386.deb
  to main/x/xpilot-ng/xpilot-ng-utils_4.7.3-1.1_i386.deb
xpilot-ng_4.7.3-1.1.debian.tar.gz
  to main/x/xpilot-ng/xpilot-ng_4.7.3-1.1.debian.tar.gz
xpilot-ng_4.7.3-1.1.dsc
  to main/x/xpilot-ng/xpilot-ng_4.7.3-1.1.dsc
xpilot-ng_4.7.3-1.1_all.deb
  to main/x/xpilot-ng/xpilot-ng_4.7.3-1.1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 580...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jari Aalto jari.aa...@cante.net (supplier of updated xpilot-ng package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 May 2010 03:20:09 +0300
Source: xpilot-ng
Binary: xpilot-ng xpilot-ng-common xpilot-ng-client-x11 

Bug#549772: Update?

2010-05-30 Thread Yves-Alexis Perez

 Due to the change in licensing terms, and the fact that it is not that much
 used by Debian users (based on popcon) I'm actually going to ask ftpmasters
 to remove this package.
 
Hey,

what's the status on this? Has the situation improved since january, or should 
the removal be asked to ftpmasters?

Cheers,
-- 
Yves-Alexis


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


Bug#368905: Update

2010-05-30 Thread Yves-Alexis Perez
 arry deFreese wrote:
  Hi,
  
  What's the status of this.  It is from 2006 but interchange has been in
  testing for a while now.
  
 
 Hello, Barry!
 
 Interchange has moved its documentation system, so it'll take a while
 to adjust the package accordingly.
 
Hey,

what's the status on this? Could the package be allowed to migrate at
one point, or should it be removed altogether?

Cheers,
-- 
Yves-Alexis


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