Bug#549800: Intent to NMU (genesis: FTBFS: Nonexistent build-dependency: netcdfg-dev)

2010-10-15 Thread Jari Aalto
I've been fixing bugs for release and noticed this one. Please let me
know if this bug is already been worked on or if it's okay to NMU the
package.

Jari



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



Bug#600206: libcompass-ruby: compass apparently completely broken

2010-10-15 Thread Deepak Tripathi
Hi,

I will have a look and let you know.



Thanks
Deepak Tripathi
Debian Developer.


Bug#510130: fdisk: Error calculing volhdr partition boundaries on SGI disklabel (Debian patch)

2010-10-15 Thread Jari Aalto

Hi LaMont,

Would you check this Debian patch and comment if it's okay (or already
included in Git repository) so that this grave bug could be closed.

Thanks,
Jari

From: Aurelien Jarno aurel...@aurel32.net
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510130

While I agree with the analysis, the patch looks more like a workaround
than a real solution. The problem is that when free space doesn't start
on a cylinder boundary (the case for the free space after the volume
header), there might be less than one cylinder to create a partition.
The code to ask for partition boundaries is using cylinders (probably
because partition start should be cylinder aligned) and thus doesn't
cope with this issue.

The patch below fixes the issue by making sure free space always starts
as a cylinder boundary, as anyway that's the only possible location to
create a new partition.

--- util-linux-2.13.1.1.orig/fdisk/fdisksgilabel.c
+++ util-linux-2.13.1.1/fdisk/fdisksgilabel.c
@@ -501,6 +501,9 @@
}
start = sgi_get_start_sector(Index[i])
+ sgi_get_num_sectors(Index[i]);
+   /* Align free space on cylinder boundary */
+   if (start % cylsize != 0)
+   start += cylsize - (start % cylsize);
if (debug  1) {
if (verbose)
printf(%2d:%12d\t%12d\t%12d\n, Index[i],



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



Bug#600259: sun-java6: Multiple security issues

2010-10-15 Thread Moritz Muehlenhoff
Package: sun-java6
Severity: grave
Tags: security
Justification: user security hole

Oracle has fixed several Java security issues, which
also need to be fixed in sid:
http://www.oracle.com/technetwork/topics/security/javacpuoct2010-176258.html

Cheers,
Moritz

-- System Information:
Debian Release: 5.0.1
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.32-ucs16-amd64
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)



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



Processed: Bug#521227 change of tags / -patch

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

 tags 521227 - patch
Bug #521227 [irssi-plugin-xmpp] irssi-plugin-xmpp: Segfault when successfully 
identified
Removed tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
521227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521227
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#600259: sun-java6: Multiple security issues

2010-10-15 Thread Sylvestre Ledru
Le vendredi 15 octobre 2010 à 09:10 +0200, Moritz Muehlenhoff a écrit :
 Package: sun-java6
 Severity: grave
 Tags: security
 Justification: user security hole
 
 Oracle has fixed several Java security issues, which
 also need to be fixed in sid:
 http://www.oracle.com/technetwork/topics/security/javacpuoct2010-176258.html
Torsten, are you on it?

I can handle that if you want.

FYI, 6u22 is now available:
https://jdk-distros.dev.java.net/

Sylvestre





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



Bug#598424: Patch for CVE-2010-3394

2010-10-15 Thread Etienne Millon
tags 598424 patch
thanks

Dear maintainer,

Here is a patch that fixes this issue. I believe that the second warning can be
safely ignored.

Regards,

-- 
Etienne Millon
diff -u texmacs-1.0.7.4/debian/changelog texmacs-1.0.7.4/debian/changelog
--- texmacs-1.0.7.4/debian/changelog
+++ texmacs-1.0.7.4/debian/changelog
@@ -1,3 +1,10 @@
+texmacs (1:1.0.7.4-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix security issue CVE-2010-3394 (Closes: #598424)
+
+ -- Etienne Millon etienne.mil...@gmail.com  Fri, 15 Oct 2010 09:35:34 +0200
+
 texmacs (1:1.0.7.4-2) unstable; urgency=low
 
   * Re-upload, former upload failed with wrong diff.gz perhaps.
only in patch2:
unchanged:
--- texmacs-1.0.7.4.orig/plugins/mupad/bin/tm_mupad_help
+++ texmacs-1.0.7.4/plugins/mupad/bin/tm_mupad_help
@@ -26,7 +26,7 @@
 
 SYSINFO=`$MuPAD_ROOT_PATH/share/bin/sysinfo`
 export SYSINFO
-LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${MuPAD_ROOT_PATH}/${SYSINFO}/lib:/usr/local/X11R6/motif-2.0/lib:/usr/local/X11R6/lib:$MuPAD_ROOT_PATH/$SYSINFO/bin
+LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}${MuPAD_ROOT_PATH}/${SYSINFO}/lib:/usr/local/X11R6/motif-2.0/lib:/usr/local/X11R6/lib:$MuPAD_ROOT_PATH/$SYSINFO/bin
 export LD_LIBRARY_PATH
 
 XKEYSYMDB=$MuPAD_ROOT_PATH/share/unix/XKeysymDB


signature.asc
Description: Digital signature


Processed: tagging 598424

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

 tags 598424 + patch
Bug #598424 [texmacs] texmacs: CVE-2010-3394: insecure library loading
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
598424: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598424
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#563192: portaudio19: NMU diff for 19+svn20071022-3.1

2010-10-15 Thread jari . aalto

Dear maintainer,

Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #563192.
See the debian/patches directory for the important fixes.

Please let me know if it's okay to proceed with this NMU.  Feel free to
contact if you have any questions.

Thank you for maintaining the package,
Jari Aalto

[1] http://www.debian.org/doc/developers-reference/pkgs.html#nmu
[2] http://dep.debian.net/deps/dep1.html

lsdiff(1) of changes:

portaudio19-19+svn20071022/debian/changelog
portaudio19-19+svn20071022/debian/patches/00list
portaudio19-19+svn20071022/debian/patches/20_error_handler.dpatch

diffstat for portaudio19_19+svn20071022-3 portaudio19_19+svn20071022-3.1

 debian/patches/20_error_handler.dpatch   |   25 +++
 portaudio19-19+svn20071022/debian/changelog  |9 
 portaudio19-19+svn20071022/debian/patches/00list |3 +-
 3 files changed, 36 insertions(+), 1 deletion(-)

diff -u portaudio19-19+svn20071022/debian/changelog portaudio19-19+svn20071022/debian/changelog
--- portaudio19-19+svn20071022/debian/changelog
+++ portaudio19-19+svn20071022/debian/changelog
@@ -1,3 +1,12 @@
+portaudio19 (19+svn20071022-3.1) unstable; urgency=medium
+
+  * debian/patches
+- (20): New. Do not define error handler because ALSA's default error
+  handler prints errors to stderr. Patch tanks to Marcelo E. Magallon
+  mmaga...@debian.org. (grave; Closes: #563192).
+
+ -- Jari Aalto jari.aa...@cante.net  Fri, 15 Oct 2010 11:16:58 +0300
+
 portaudio19 (19+svn20071022-3) unstable; urgency=low
 
   [ Patrick Matthäi ]
diff -u portaudio19-19+svn20071022/debian/patches/00list portaudio19-19+svn20071022/debian/patches/00list
--- portaudio19-19+svn20071022/debian/patches/00list
+++ portaudio19-19+svn20071022/debian/patches/00list
@@ -1 +1,2 @@
-01_config
+01_config.dpatch
+20_error_handler.dpatch
only in patch2:
unchanged:
--- portaudio19-19+svn20071022.orig/debian/patches/20_error_handler.dpatch
+++ portaudio19-19+svn20071022/debian/patches/20_error_handler.dpatch
@@ -0,0 +1,25 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## /tmp/error-handler.patch.dpatch by jaalto jari.aa...@cante.net
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: 
+## DP: Author: Jari Aalto jari.aa...@cante.net
+## DP: 
+## DP: 
+## DP: src/hostapi/alsa/pa_linux_alsa.c: snd_lib_error_set_handler set NULL
+
+...@dpatch@
+
+diff --git a/src/hostapi/alsa/pa_linux_alsa.c b/src/hostapi/alsa/pa_linux_alsa.c
+index 0842bb4..665be18 100644
+--- a/src/hostapi/alsa/pa_linux_alsa.c
 b/src/hostapi/alsa/pa_linux_alsa.c
+@@ -304,6 +304,8 @@ static void Terminate( struct PaUtilHostApiRepresentation *hostApi )
+ 
+ assert( hostApi );
+ 
++snd_lib_error_set_handler(NULL);
++
+ if( alsaHostApi-allocations )
+ {
+ PaUtil_FreeAllAllocations( alsaHostApi-allocations );


Processed: Bug#563192 change of tags / patch

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

 tags 563192 + patch
Bug #563192 [libportaudio2] libportaudio.so.2 overrides the libasound2 error 
handler
Ignoring request to alter tags of bug #563192 to the same tags previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
563192: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=563192
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#549800: Intent to NMU (genesis: FTBFS: Nonexistent build-dependency: netcdfg-dev)

2010-10-15 Thread Julien Cristau
On Fri, Oct 15, 2010 at 09:51:11 +0300, Jari Aalto wrote:

 I've been fixing bugs for release and noticed this one. Please let me
 know if this bug is already been worked on or if it's okay to NMU the
 package.
 
FWIW this package isn't in squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#593465: squirrelmail: Unimplemented function, sqimap_run_literal_command() after security update

2010-10-15 Thread Joern Merkel
Hi,

this funtion simply does not exist in imap_general.php. Copied it over from 
here:

http://squirrelmail.org/docs/stable-code/__filesource/fsource_squirrelmail_imap_functionsimap_general.php.html#a79

I do not know why this function is missing. Was there an security issue?

Kind regards

JM




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



Bug#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread jari . aalto

Dear maintainer,

Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #596681.
See the debian/patches directory for the important fixes.

Please let me know if it is okay to proceed with NMU. Feel free to
contact if you have any questions.

Thank you for maintaining the package, 
Jari Aalto

[1] http://www.debian.org/doc/developers-reference/pkgs.html#nmu
[2] http://dep.debian.net/deps/dep1.html

lsdiff(1) of changes:

cdrkit-1.1.10/debian/changelog
cdrkit-1.1.10/debian/patches/10-fix-checksum.patch
cdrkit-1.1.10/debian/source/format

diffstat for cdrkit-1.1.10 cdrkit-1.1.10

 changelog |   12 
 patches/10-fix-checksum.patch |   30 ++
 source/format |1 +
 3 files changed, 43 insertions(+)

diff -Nru cdrkit-1.1.10/debian/changelog cdrkit-1.1.10/debian/changelog
--- cdrkit-1.1.10/debian/changelog	2010-10-15 11:48:03.0 +0300
+++ cdrkit-1.1.10/debian/changelog	2010-10-15 11:45:13.0 +0300
@@ -1,3 +1,15 @@
+cdrkit (9:1.1.10-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+- Move to packaging format 3.0 (quilt) due to patch.
+  * debian/patches
+- (10): New. Fix checksum. Patch thanks to olin Watson cjwat...@ubuntu.com.
+  (serious; Closes: #596681).
+  * debian/source/format
+- New file.
+
+ -- Jari Aalto jari.aa...@cante.net  Fri, 15 Oct 2010 11:45:13 +0300
+
 cdrkit (9:1.1.10-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru cdrkit-1.1.10/debian/patches/10-fix-checksum.patch cdrkit-1.1.10/debian/patches/10-fix-checksum.patch
--- cdrkit-1.1.10/debian/patches/10-fix-checksum.patch	1970-01-01 02:00:00.0 +0200
+++ cdrkit-1.1.10/debian/patches/10-fix-checksum.patch	2010-10-15 11:42:29.0 +0300
@@ -0,0 +1,30 @@
+From c7e65d9ddd804a3c25fc724c5479f3865cd83b53 Mon Sep 17 00:00:00 2001
+From: Jari Aalto jari.aa...@cante.net
+Date: Fri, 15 Oct 2010 11:42:23 +0300
+Subject: [PATCH] genisoimage/jte.c: Fix Checksum by Colin Watson cjwat...@ubuntu.com
+Organization: Private
+Content-Type: text/plain; charset=utf-8
+Content-Transfer-Encoding: 8bit
+
+
+Signed-off-by: Jari Aalto jari.aa...@cante.net
+---
+ genisoimage/jte.c |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/genisoimage/jte.c b/genisoimage/jte.c
+index ed232cf..9fdde5c 100644
+--- a/genisoimage/jte.c
 b/genisoimage/jte.c
+@@ -753,7 +753,7 @@ static void write_template_desc_entries(off_t image_len)
+ 
+ jimage.type = 5;
+ write_le48(image_len, jimage.imageLen[0]);
+-memcpy(jimage.imageMD5, checksum_hex(iso_context, CHECK_MD5), sizeof(jimage.imageMD5));
++checksum_copy(jimage.imageMD5, iso_context, CHECK_MD5);
+ write_le32(MIN_JIGDO_FILE_SIZE, jimage.blockLen[0]);
+ template_fwrite(jimage, sizeof(jimage), 1, t_file);
+ template_fwrite(out_len, sizeof(out_len), 1, t_file);
+-- 
+1.7.1
+
diff -Nru cdrkit-1.1.10/debian/source/format cdrkit-1.1.10/debian/source/format
--- cdrkit-1.1.10/debian/source/format	1970-01-01 02:00:00.0 +0200
+++ cdrkit-1.1.10/debian/source/format	2010-10-15 11:44:55.0 +0300
@@ -0,0 +1 @@
+3.0 (quilt)


Bug#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread Mehdi Dogguy
On 10/15/2010 10:49 AM, jari.aa...@cante.net wrote:
 
 Dear maintainer,
 
 Here is the NMU diff according to DevRef 5.11.1[1][2] for bug:
 #596681. See the debian/patches directory for the important fixes.
 
 Please let me know if it is okay to proceed with NMU. Feel free to 
 contact if you have any questions.
 

I don't think it's appropriate to switch to source format 3.0 for the
NMU. That should be the maintainer's decision and is a discouraged
change during the freeze.

Besides, the file debian/patches/series is missing.

Cheers,

-- 
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#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread Julien Cristau
On Fri, Oct 15, 2010 at 11:49:10 +0300, jari.aa...@cante.net wrote:

 
 Dear maintainer,
 
 Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #596681.
 See the debian/patches directory for the important fixes.
 
 Please let me know if it is okay to proceed with NMU. Feel free to
 contact if you have any questions.
 
I asked the maintainers yesterday:
14:04  Sledge jcristau: it's already fixed in svn
14:04  Sledge just haven't done the upload yet
14:05  Sledge I have plans for a lot of Debian work this w/e

Please wait until next week, or upload to delayed.  Also as Mehdi says
changing the source format in a NMU is wrong, don't do that.  And
Colin's name is not 'olin'. ;)

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread Steve McIntyre
On Fri, Oct 15, 2010 at 11:49:10AM +0300, jari.aa...@cante.net wrote:

Dear maintainer,

Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #596681.
See the debian/patches directory for the important fixes.

Please let me know if it is okay to proceed with NMU. Feel free to
contact if you have any questions.

Thank you for maintaining the package, 
Jari Aalto

[1] http://www.debian.org/doc/developers-reference/pkgs.html#nmu
[2] http://dep.debian.net/deps/dep1.html

lsdiff(1) of changes:

cdrkit-1.1.10/debian/changelog
cdrkit-1.1.10/debian/patches/10-fix-checksum.patch
cdrkit-1.1.10/debian/source/format

Thanks for the effort, but NACK. The fix is already in svn ready to
go, and I have an upload just about prepared and ready for some
testing this weekend. Especially: please don't change packaging format
in an NMU...

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
It's actually quite entertaining to watch ag129 prop his foot up on
 the desk so he can get a better aim.  [ seen in ucam.chat ]




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



Bug#599833: mailman: NMU diff for 1:2.1.13-4.1

2010-10-15 Thread Julien Cristau
On Fri, Oct 15, 2010 at 12:39:01 +0300, jari.aa...@cante.net wrote:

 +diff --git a/NEWS b/NEWS
 +index edb0c5d..b33aad5 100644
 +--- a/NEWS
  b/NEWS
 +@@ -1,3136 +1,4 @@

This hunk looks wrong.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread Jari Aalto
Julien Cristau jcris...@debian.org writes:
 changing the source format in a NMU is wrong, don't do that.

Mehdi Dogguy me...@dogguy.org writes:
 I don't think it's appropriate to switch to source format 3.0 for the

  * Non-maintainer upload.
- Move to packaging format 3.0 (quilt) due to patch.
 =

Is it better to add an extra quilt dependency? The new 3.0 does not
require any new dependencies and extra changes in debian/rules.

Jari



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



Bug#600177: virtualbox-ose: out of disk while merging a snapshot destroys the disk image

2010-10-15 Thread Michael Meskes
On Thu, Oct 14, 2010 at 12:26:45PM +0200, Adam Borowski wrote:
 If you elect to merge the current state of a differentiating disk image into
 the base (deleting a snapshot) and run out of disk space on the host
 filesystem while merging, the resulting image will be corrupted.
 ...

Could you please try the same with 3.2.10-dfsg-1 from unstable? I wonder if
this is the same as http://www.virtualbox.org/ticket/7498 which might have
already been fixed.

Michael

-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at googlemail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL



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



Bug#596681: cdrkit: NMU diff for 9:1.1.10-1.1

2010-10-15 Thread Julien Cristau
On Fri, Oct 15, 2010 at 13:23:30 +0300, Jari Aalto wrote:

 Julien Cristau jcris...@debian.org writes:
  changing the source format in a NMU is wrong, don't do that.
 
 Mehdi Dogguy me...@dogguy.org writes:
  I don't think it's appropriate to switch to source format 3.0 for the
 
   * Non-maintainer upload.
 - Move to packaging format 3.0 (quilt) due to patch.
  =
 
 Is it better to add an extra quilt dependency? The new 3.0 does not
 require any new dependencies and extra changes in debian/rules.
 
No, that would be just as wrong.  Don't introduce any patch system,
leave the packaging and debian/rules alone.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#584327: python-rdflib: fails with SIGBUS on mipsel - breaks build of enigmail

2010-10-15 Thread Matthias Klose

severity 584327 wishlist
tag 584327 + moreinfo
thanks

the bug report in its current form has little value.

- recheck with gcc-4.5, gcc-snapshot
- combine the object files of a build with -O0 and -O2
  to find the file with the issue.
- maybe reduce it further, find the reason about
  this SIGBUS, and if it's a compiler issue at all.



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



Processed: Re: python-rdflib: fails with SIGBUS on mipsel - breaks build of enigmail

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

 severity 584327 wishlist
Bug #584327 [python-rdflib] python-rdflib: fails with SIGBUS on mipsel - breaks 
build of enigmail
Severity set to 'wishlist' from 'serious'

 tag 584327 + moreinfo
Bug #584327 [python-rdflib] python-rdflib: fails with SIGBUS on mipsel - breaks 
build of enigmail
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
584327: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584327
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#600037: marked as done (isdnutils: FTBFS: error: incompatible type for argument 4 of 'vfmtmsg')

2010-10-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Oct 2010 10:49:24 +
with message-id e1p6hqm-00065l...@franck.debian.org
and subject line Bug#600037: fixed in isdnutils 1:3.9.20060704+dfsg.2-4
has caused the Debian Bug report #600037,
regarding isdnutils: FTBFS: error: incompatible type for argument 4 of 'vfmtmsg'
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.)


-- 
600037: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600037
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: isdnutils
Version: 3.9.20060704+dfsg.2-2
Severity: serious
Tags: patch
User: debian-...@superh.org
Usertags: sh4
X-Debbugs-CC: debian-sup...@lists.debian.org

Hi,

isdnutils FTBFS on armel and sh4.
  
https://buildd.debian.org/fetch.cgi?pkg=isdnutils;ver=1:3.9.20060704%2Bdfsg.2-2;arch=armel;stamp=1286728299
  
http://buildd.debian-ports.org/fetch.php?pkg=isdnutilsarch=sh4ver=1:3.9.20060704%2Bdfsg.2-2stamp=1286750557file=logas=raw

-
make[3]: Leaving directory
`/build/buildd-isdnutils_3.9.20060704+dfsg.2-2-armel-598mHF/isdnutils-3.9.20060704+dfsg.2/xisdnload'
make[2]: Leaving directory
`/build/buildd-isdnutils_3.9.20060704+dfsg.2-2-armel-598mHF/isdnutils-3.9.20060704+dfsg.2/xisdnload'
make[2]: Entering directory
`/build/buildd-isdnutils_3.9.20060704+dfsg.2-2-armel-598mHF/isdnutils-3.9.20060704+dfsg.2/ipppd'
gcc -O2 -fomit-frame-pointer -Wall -DREQ_SYSOPTIONS=0 -DIPPP_FILTER
-DUSE_MSCHAP -DUSE_SSLDES -DHAVE_PCAP_BPF_H   -c -o main.o main.c
main.c: In function 'vfmtmsg':
main.c:1308: error: incompatible type for argument 4 of 'vfmtmsg'
main.c:1200: note: expected 'va_list' but argument is of type 'void *'
make[2]: *** [main.o] Error 1
make[1]: *** [subtargets] Error 2
make: *** [build-stamp] Error 2
-

The cause of this problem is because va_list.dpatch provided by
1:3.9.20060704-9 was excluded in current version.
Please add va_list.patch to debian/patches/series.

Best regards,
 Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


---End Message---
---BeginMessage---
Source: isdnutils
Source-Version: 1:3.9.20060704+dfsg.2-4

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

capiutils_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/capiutils_3.9.20060704+dfsg.2-4_amd64.deb
ipppd_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/ipppd_3.9.20060704+dfsg.2-4_amd64.deb
isdnlog-data_3.9.20060704+dfsg.2-4_all.deb
  to main/i/isdnutils/isdnlog-data_3.9.20060704+dfsg.2-4_all.deb
isdnlog_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnlog_3.9.20060704+dfsg.2-4_amd64.deb
isdnutils-base_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnutils-base_3.9.20060704+dfsg.2-4_amd64.deb
isdnutils-doc_3.9.20060704+dfsg.2-4_all.deb
  to main/i/isdnutils/isdnutils-doc_3.9.20060704+dfsg.2-4_all.deb
isdnutils-xtools_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnutils-xtools_3.9.20060704+dfsg.2-4_amd64.deb
isdnutils_3.9.20060704+dfsg.2-4.debian.tar.gz
  to main/i/isdnutils/isdnutils_3.9.20060704+dfsg.2-4.debian.tar.gz
isdnutils_3.9.20060704+dfsg.2-4.dsc
  to main/i/isdnutils/isdnutils_3.9.20060704+dfsg.2-4.dsc
isdnutils_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnutils_3.9.20060704+dfsg.2-4_amd64.deb
isdnvbox_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnvbox_3.9.20060704+dfsg.2-4_amd64.deb
isdnvboxclient_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnvboxclient_3.9.20060704+dfsg.2-4_amd64.deb
isdnvboxserver_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/isdnvboxserver_3.9.20060704+dfsg.2-4_amd64.deb
libcapi20-3_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/libcapi20-3_3.9.20060704+dfsg.2-4_amd64.deb
libcapi20-dev_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/libcapi20-dev_3.9.20060704+dfsg.2-4_amd64.deb
pppdcapiplugin_3.9.20060704+dfsg.2-4_amd64.deb
  to main/i/isdnutils/pppdcapiplugin_3.9.20060704+dfsg.2-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 600...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Nobuhiro Iwamatsu iwama...@debian.org (supplier of updated isdnutils 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 

Bug#600259: marked as done (sun-java6: Multiple security issues)

2010-10-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Oct 2010 11:38:02 +
with message-id e1p6ibq-dz...@franck.debian.org
and subject line Bug#600259: fixed in sun-java6 6.22-1
has caused the Debian Bug report #600259,
regarding sun-java6: Multiple security issues
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.)


-- 
600259: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600259
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: sun-java6
Severity: grave
Tags: security
Justification: user security hole

Oracle has fixed several Java security issues, which
also need to be fixed in sid:
http://www.oracle.com/technetwork/topics/security/javacpuoct2010-176258.html

Cheers,
Moritz

-- System Information:
Debian Release: 5.0.1
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.32-ucs16-amd64
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


---End Message---
---BeginMessage---
Source: sun-java6
Source-Version: 6.22-1

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

sun-java6-bin_6.22-1_i386.deb
  to non-free/s/sun-java6/sun-java6-bin_6.22-1_i386.deb
sun-java6-demo_6.22-1_i386.deb
  to non-free/s/sun-java6/sun-java6-demo_6.22-1_i386.deb
sun-java6-fonts_6.22-1_all.deb
  to non-free/s/sun-java6/sun-java6-fonts_6.22-1_all.deb
sun-java6-javadb_6.22-1_all.deb
  to non-free/s/sun-java6/sun-java6-javadb_6.22-1_all.deb
sun-java6-jdk_6.22-1_i386.deb
  to non-free/s/sun-java6/sun-java6-jdk_6.22-1_i386.deb
sun-java6-jre_6.22-1_all.deb
  to non-free/s/sun-java6/sun-java6-jre_6.22-1_all.deb
sun-java6-plugin_6.22-1_i386.deb
  to non-free/s/sun-java6/sun-java6-plugin_6.22-1_i386.deb
sun-java6-source_6.22-1_all.deb
  to non-free/s/sun-java6/sun-java6-source_6.22-1_all.deb
sun-java6_6.22-1.debian.tar.gz
  to non-free/s/sun-java6/sun-java6_6.22-1.debian.tar.gz
sun-java6_6.22-1.dsc
  to non-free/s/sun-java6/sun-java6_6.22-1.dsc
sun-java6_6.22.orig.tar.gz
  to non-free/s/sun-java6/sun-java6_6.22.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 600...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sylvestre Ledru sylves...@debian.org (supplier of updated sun-java6 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, 15 Oct 2010 10:05:39 +0200
Source: sun-java6
Binary: sun-java6-jre sun-java6-bin sun-java6-plugin ia32-sun-java6-bin 
ia32-sun-java6-plugin sun-java6-fonts sun-java6-jdk sun-java6-demo 
sun-java6-source sun-java6-javadb
Architecture: source i386 all
Version: 6.22-1
Distribution: unstable
Urgency: high
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 ia32-sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (32-bit)
 ia32-sun-java6-plugin - The Java(TM) Plug-in, Java SE 6 (32-bit)
 sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
dependent
 sun-java6-demo - Sun Java(TM) Development Kit (JDK) 6 demos and examples
 sun-java6-fonts - Lucida TrueType fonts (from the Sun JRE)
 sun-java6-javadb - Java(TM) DB, Sun Microsystems' distribution of Apache Derby
 sun-java6-jdk - Sun Java(TM) Development Kit (JDK) 6
 sun-java6-jre - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
independen
 sun-java6-plugin - The Java(TM) Plug-in, Java SE 6
 sun-java6-source - Sun Java(TM) Development Kit (JDK) 6 source files
Closes: 480570 539288 597313 600259
Changes: 
 sun-java6 (6.22-1) unstable; urgency=high
 .
   [ Torsten Werner ]
   * Add file /etc/java-6-sun/swing.properties. (Closes: #480570)
   * Install the desktop file for jvisualvm and remove the one for jconsole.
 (Closes: #539288)
 .
   [ Sylvestre Ledru ]
   * New upstream release (Closes: #600259)
   * SECURITY UPDATE: multiple upstream vulnerabilities. Upstream fixes:
 - (CVE-2010-3556): JDK unspecified vulnerability in 2D component
 - (CVE-2010-3562): JDK IndexColorModel double-free
 - (CVE-2010-3565): JDK JPEG writeImage remote code execution
 - (CVE-2010-3566): JDK ICC Profile remote code execution
 - (CVE-2010-3567): Crash in ICU Opentype 

Bug#600166: openvpn: at start it adds 40 bogus routes not specified in configuration

2010-10-15 Thread Alberto Gonzalez Iniesta
On Thu, Oct 14, 2010 at 01:15:49PM +0300, Teodor MICU wrote:
 Hi,
 
 On Thu, Oct 14, 2010 at 11:37 AM, Alberto Gonzalez Iniesta
 a...@inittab.org wrote:
  Hi, could you attach (without sensitive data) the server and client
  configurations?
 
 Sure. The real company addresses and names were replaced with generic names.
 


Hi Teodor,

I think I found the bug. But you can help me confirm this (and solve the
problem for the time being). Could you try this (on the server config):

Change:
push route remote_host 255.255.255.255 net_gateway
To:
push route OPENVPN_REMOTE_PEER 255.255.255.255 net_gateway

Seems there's something wrong with 'remote_host'. I'll check the source
now.

Thanks,

Alberto

-- 
Alberto Gonzalez Iniesta| Formación, consultoría y soporte técnico
agi@(inittab.org|debian.org)| en GNU/Linux y software libre
Encrypted mail preferred| http://inittab.com

Key fingerprint = 9782 04E7 2B75 405C F5E9  0C81 C514 AF8E 4BA4 01C3



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



Bug#600166: openvpn: at start it adds 40 bogus routes not specified in configuration

2010-10-15 Thread Alberto Gonzalez Iniesta
On Thu, Oct 14, 2010 at 01:15:49PM +0300, Teodor MICU wrote:
 Hi,
 
 On Thu, Oct 14, 2010 at 11:37 AM, Alberto Gonzalez Iniesta
 a...@inittab.org wrote:
  Hi, could you attach (without sensitive data) the server and client
  configurations?
 
 Sure. The real company addresses and names were replaced with generic names.

Hi Teodor,

Could you try with this package [1]?

THanks

[1] http://etc.inittab.org/~agi/openvpn_2.1.3-2_i386.deb

-- 
Alberto Gonzalez Iniesta| Formación, consultoría y soporte técnico
agi@(inittab.org|debian.org)| en GNU/Linux y software libre
Encrypted mail preferred| http://inittab.com

Key fingerprint = 9782 04E7 2B75 405C F5E9  0C81 C514 AF8E 4BA4 01C3



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



Bug#599833: mailman: NMU diff for 1:2.1.13-4.1

2010-10-15 Thread Jari Aalto
Julien Cristau jcris...@debian.org writes:

 On Fri, Oct 15, 2010 at 12:39:01 +0300, jari.aa...@cante.net wrote:

 +diff --git a/NEWS b/NEWS
 +index edb0c5d..b33aad5 100644
 +--- a/NEWS
  b/NEWS
 +@@ -1,3136 +1,4 @@

 This hunk looks wrong.

Removed.

Jari

diffstat for mailman-2.1.13 mailman-2.1.13

 changelog |9 +
 patches/83-CVE-2010-3089--bug599833.patch |  265 ++
 patches/series|1 
 3 files changed, 275 insertions(+)

diff -Nru mailman-2.1.13/debian/changelog mailman-2.1.13/debian/changelog
--- mailman-2.1.13/debian/changelog	2010-07-27 23:59:52.0 +0300
+++ mailman-2.1.13/debian/changelog	2010-10-15 12:33:58.0 +0300
@@ -1,3 +1,12 @@
+mailman (1:2.1.13-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches
+- (83): New. CVE-2010-3089 security fix from mailman 2.14. Patch
+  thanks to d+...@vdr.jp (grave, security; Closes: #599833).
+
+ -- Jari Aalto jari.aa...@cante.net  Fri, 15 Oct 2010 12:33:58 +0300
+
 mailman (1:2.1.13-4) unstable; urgency=medium
 
   * Fix permissions on /var/lib/mailman/archives/private, so
diff -Nru mailman-2.1.13/debian/patches/83-CVE-2010-3089--bug599833.patch mailman-2.1.13/debian/patches/83-CVE-2010-3089--bug599833.patch
--- mailman-2.1.13/debian/patches/83-CVE-2010-3089--bug599833.patch	1970-01-01 02:00:00.0 +0200
+++ mailman-2.1.13/debian/patches/83-CVE-2010-3089--bug599833.patch	2010-10-15 14:35:58.0 +0300
@@ -0,0 +1,265 @@
+From 00e91e3db98933597a6a57792674c49c68a93994 Mon Sep 17 00:00:00 2001
+From: Jari Aalto jari.aa...@cante.net
+Date: Fri, 15 Oct 2010 12:23:47 +0300
+Subject: [PATCH] CVE-2010-3089 Fixes from mailman 2.14 by d+...@vdr.jp
+Organization: Private
+Content-Type: text/plain; charset=utf-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Jari Aalto jari.aa...@cante.net
+---
+ Mailman/Cgi/listinfo.py  |4 +-
+ Mailman/HTMLFormatter.py |7 +-
+ Mailman/Utils.py |  187 ++--
+ NEWS | 3134 +-
+ 4 files changed, 101 insertions(+), 3231 deletions(-)
+
+diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py
+index 5b96590..4a54517 100644
+--- a/Mailman/Cgi/listinfo.py
 b/Mailman/Cgi/listinfo.py
+@@ -1,4 +1,4 @@
+-# Copyright (C) 1998-2009 by the Free Software Foundation, Inc.
++# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
+ #
+ # This program is free software; you can redistribute it and/or
+ # modify it under the terms of the GNU General Public License
+@@ -94,7 +94,7 @@ def listinfo_overview(msg=''):
+ else:
+ advertised.append((mlist.GetScriptURL('listinfo'),
+mlist.real_name,
+-   mlist.description))
++   Utils.websafe(mlist.description)))
+ if msg:
+ greeting = FontAttr(msg, color=ff5060, size=+1)
+ else:
+diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py
+index 3a21d96..dad51e7 100644
+--- a/Mailman/HTMLFormatter.py
 b/Mailman/HTMLFormatter.py
+@@ -1,4 +1,4 @@
+-# Copyright (C) 1998-2008 by the Free Software Foundation, Inc.
++# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
+ #
+ # This program is free software; you can redistribute it and/or
+ # modify it under the terms of the GNU General Public License
+@@ -383,8 +383,9 @@ class HTMLFormatter:
+ 'mm-mailman-footer' : self.GetMailmanFooter(),
+ 'mm-list-name' : self.real_name,
+ 'mm-email-user' : self._internal_name,
+-'mm-list-description' : self.description,
+-'mm-list-info' : BR.join(self.info.split(NL)),
++'mm-list-description' : Utils.websafe(self.description),
++'mm-list-info' : 
++'!' + BR.join(self.info.split(NL)) + '!',
+ 'mm-form-end'  : self.FormatFormEnd(),
+ 'mm-archive'   : self.FormatArchiveAnchor(),
+ '/mm-archive'  : '/a',
+diff --git a/Mailman/Utils.py b/Mailman/Utils.py
+index 5cba077..d5babc1 100644
+--- a/Mailman/Utils.py
 b/Mailman/Utils.py
+@@ -1,4 +1,4 @@
+-# Copyright (C) 1998-2009 by the Free Software Foundation, Inc.
++# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
+ #
+ # This program is free software; you can redistribute it and/or
+ # modify it under the terms of the GNU General Public License
+@@ -911,99 +911,100 @@ _badwords = [
+ # Kludge to allow the specific tag that's in the options.html template.
+ 'link(?! rel=SHORTCUT ICON href=mm-favicon)',
+ 'meta',
++'object',
+ 'script',
+-r'(?:^|\W)j(?:ava)?script(?:\W|$)',
+-r'(?:^|\W)vbs(?:cript)?(?:\W|$)',
+-r'(?:^|\W)domactivate(?:\W|$)',
+-r'(?:^|\W)domattrmodified(?:\W|$)',
+-r'(?:^|\W)domcharacterdatamodified(?:\W|$)',
+-r'(?:^|\W)domfocus(?:in|out)(?:\W|$)',
+-

Processed: Bug#549014 retitle

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

 retitle 549014 wmbubble: After upgrade to unstable the icon shows no graphic
Bug #549014 [wmbubble] wmbubble: Drought, duck flown.
Changed Bug title to 'wmbubble: After upgrade to unstable the icon shows no 
graphic' from 'wmbubble: Drought, duck flown.'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
549014: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549014
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#571220: phppgadmin: NMU diff for 4.2.3-2.1

2010-10-15 Thread jari . aalto

Dear maintainer,

Here is the NMU diff according to DevRef 5.11.1[1][2] for bug: #571220.
See the debian/patches directory for the important fixes.

Please let me know if I can proceed with the NMU for this grave bug
tagged squeeze.

Thank you for maintaining the package,
Jari Aalto

[1] http://www.debian.org/doc/developers-reference/pkgs.html#nmu
[2] http://dep.debian.net/deps/dep1.html

lsdiff(1) of changes:

phppgadmin-4.2.3/debian/changelog
phppgadmin-4.2.3/debian/patches/php5.3-reference-value-fix.patch
phppgadmin-4.2.3/debian/patches/series

diffstat for phppgadmin-4.2.3 phppgadmin-4.2.3

 changelog|   10 --
 patches/php5.3-reference-value-fix.patch |   29 -
 patches/series   |1 -
 3 files changed, 40 deletions(-)

diff -Nru phppgadmin-4.2.3/debian/changelog phppgadmin-4.2.3/debian/changelog
--- phppgadmin-4.2.3/debian/changelog	2010-10-15 17:02:24.0 +0300
+++ phppgadmin-4.2.3/debian/changelog	2010-04-27 23:33:25.0 +0300
@@ -1,13 +1,3 @@
-phppgadmin (4.2.3-2.1) unstable; urgency=low
-
-  * Non-maintainer upload.
-  * debian/patches
-- (php5.3-reference-value-fix.patch): New. Patch thanks to
-  Alan Chandler alan.chand...@chandlerfamily.org.uk.
-  (grave; Closes: #571220).
-
- -- Jari Aalto jari.aa...@cante.net  Fri, 15 Oct 2010 17:02:24 +0300
-
 phppgadmin (4.2.3-1) unstable; urgency=low
 
   * New upstream release
diff -Nru phppgadmin-4.2.3/debian/patches/php5.3-reference-value-fix.patch phppgadmin-4.2.3/debian/patches/php5.3-reference-value-fix.patch
--- phppgadmin-4.2.3/debian/patches/php5.3-reference-value-fix.patch	2010-10-15 17:00:11.0 +0300
+++ phppgadmin-4.2.3/debian/patches/php5.3-reference-value-fix.patch	1970-01-01 02:00:00.0 +0200
@@ -1,29 +0,0 @@
-From e027af3b3d21bb6c6fe3bf6f4a4578949bd3aeb3 Mon Sep 17 00:00:00 2001
-From: Jari Aalto jari.aa...@cante.net
-Date: Fri, 15 Oct 2010 17:00:06 +0300
-Subject: [PATCH] Do not use reference for PHP 5.3 by Alan Chandler alan.chand...@chandlerfamily.org.uk
-Organization: Private
-Content-Type: text/plain; charset=utf-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Jari Aalto jari.aa...@cante.net

- classes/Misc.php |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/classes/Misc.php b/classes/Misc.php
-index c8d2396..e6dd0e4 100644
 a/classes/Misc.php
-+++ b/classes/Misc.php
-@@ -341,7 +341,7 @@
- 			// Create a database wrapper class for easy manipulation of the
- 			// connection.
- 			include_once('./classes/database/' . $_type . '.php');
--			$data = new $_type($_connection-conn);
-+			$data = new $_type($_connection-conn);
- 			$data-platform = $_connection-platform;
- 
- 			return $data;
--- 
-1.7.1
-
diff -Nru phppgadmin-4.2.3/debian/patches/series phppgadmin-4.2.3/debian/patches/series
--- phppgadmin-4.2.3/debian/patches/series	2010-10-15 17:00:48.0 +0300
+++ phppgadmin-4.2.3/debian/patches/series	2008-06-20 16:43:49.0 +0300
@@ -1,3 +1,2 @@
 slony1-path.patch
 localhost.patch
-php5.3-reference-value-fix.patch


Processed: Bug#571220 change of tags / patch

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

 tags 571220 + patch
Bug #571220 [phppgadmin] phppgadmin reports returning by reference is 
depreciated and fails (classes/Misc.php line 342)
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
571220: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571220
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#600283: live-build: binary.img not created, incorrect sources.list

2010-10-15 Thread Josselin Mouette
Package: live-build
Version: 2.0.2-1
Severity: serious
Justification: images don’t build without network access

I define a mirror for the bootstrap phase. A mirror (the same) for the
chroot phase. A mirror (still the same) for the binary phase. I make a
configuration for a usb-hdd build.

But in the end, live-build fails silently. The script finishes, and I
don’t get any binary.img.

Removing .stage/binary* and retrying gives another error message:

# lb binary
[snip]
P: Begin building root filesystem image...
Reading package lists... Done
Building dependency tree... Done
The following NEW packages will be installed:
  squashfs-tools
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 114 kB of archives.
After this operation, 295 kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  squashfs-tools
E: There are problems and -y was used without --force-yes
P: Begin unmounting filesystems...

In chroot/etc/apt/sources.list, there is only one line:
deb http://ftp.us.debian.org/debian/ squeeze main
Since ftp.us is not reachable from the machine where it is building
(remember, I set a specific mirror precisely because of that), this
explains the error.

From here, I tried a bit of voodoo: replaced the sources.list by hand,
run apt-get update in the chroot. No more luck, it still fails silently,
and AFAICT I’m not using a specific filesystem that specifically trashes
files named binary.img. 

Running “lb binary” twice will even overwrite the sources.list again
(seriously? isn’t the contents of the chroot supposed to be fixed after
the chroot phase?)

No more luck with lb binary_usb:

# lb binary_usb
[snip]
P: Mounting /dev/loop1 with offset 0
Warning: The resulting partition is not properly aligned for best performance.
1+0 records in
1+0 records out
440 bytes (440 B) copied, 0.000518781 s, 848 kB/s
P: Mounting /dev/loop1 with offset 512
mkfs.vfat 3.0.9 (31 Jan 2010)
Loop device does not match a floppy size, using default hd params
Can't open /proc/13761/fd/3: No such file or directory
Cannot initialize 'S:'
Bad target s:/ldlinux.sys
syslinux: failed to create ldlinux.sys

So, should I prepare for sacrificing a chicken now?


I’m seriously sick of the whole of live-build being changed in each
version. I used to be able to build working images with earlier versions
of 2.0. We’re supposed to be in a *deep freeze*, and not only did the
configuration format change again, but now it’s not even possible to do
the simplest things anymore.

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




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



Processed: Bug#591674 retitle

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

 retitle 591674 sablotron: dead upstream -- package is a possible candidate 
 for removal
Bug #591674 [sablotron] bug to keep sablotron from testing
Changed Bug title to 'sablotron: dead upstream -- package is a possible 
candidate for removal' from 'bug to keep sablotron from testing'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
591674: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591674
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#583371: nut: usbhid-ups failing to communicate with UPS (libusb_get_report: error sending control message)

2010-10-15 Thread Teodor MICU
Hi Arnaud,

Since the patch is only a 2 line diff [1], can you upload a targeted
fix with this patch for squeeze? I strongly believe that release team
will not object to this small fix which is also included in the
upstream source. Also, this bug is currently RC.

Thanks

[1]  http://boxster.ghz.cc/projects/nut/changeset/2407

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

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

Versions of packages nut depends on:
ii  adduser  3.112   add and remove users and groups
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libupsclient12.4.3-1+b1  network UPS tools - client library
ii  libusb-0.1-4 2:0.1.12-16 userspace USB programming library
ii  libwrap0 7.6.q-19Wietse Venema's TCP wrappers libra
ii  lsb-base 3.2-23.1Linux Standard Base 3.2 init scrip
ii  udev 160-1   /dev/ and hotplug management daemo

Versions of packages nut recommends:
ii  bash-completion   1:1.2-2programmable completion for the ba

Versions of packages nut suggests:
pn  nut-cgi   none (no description available)
pn  nut-dev   none (no description available)
pn  nut-snmp  none (no description available)
pn  nut-xml   none (no description available)

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

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



Bug#591118: monkeysphere: FTBFS: test failed

2010-10-15 Thread Alexander Reichle-Schmehl
Hi!

* Lucas Nussbaum lu...@lucas-nussbaum.net [100810 17:20]:

Lucas and jrollins, can you please tell what time-changing software is
running on your build environments if any? This 1s offset looks like
the various ntp daemons adjustment process.
   None.
  Lucas, is your build environment using any sort of virtualization?
  We've seen clock problems with virtualization before.
 No.
 I can also reproduce the problem on my laptop.

That is quite a strange bug; I could reproduce it simply by running
pbuilder on the package multiple times.  And while I'm using ntp
according to the logs it hasn't been active.

As it only seems to appear in the test working with two primary keys
test, maybe one could just add a sleep to that test?  That wouldn't
actually solve the problem, but at least make the package releasable for
now, and the bug can be reopend and better investigated after the
release?


Best Regards,
  Alexander



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



Bug#562306: marked as done (doc-debian: [PATCH] FTBFS: Nonexistent build-dependency: tetex-bin)

2010-10-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Oct 2010 17:23:51 +0300
with message-id 87aamfr0ug@picasso.cante.net
and subject line Bug#562306 Close
has caused the Debian Bug report #562306,
regarding doc-debian: [PATCH] FTBFS: Nonexistent build-dependency: tetex-bin
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.)


-- 
562306: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=562306
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: doc-debian
Version: 4.0.1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091213 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 ** Using build dependencies supplied by package:
 Build-Depends-Indep: debiandoc-sgml, tetex-bin, tetex-extra
 
 ┌──┐
 │ Install build dependencies  
  │
 └──┘
 
 Checking for already installed source dependencies...
 debiandoc-sgml: missing
 tetex-bin: missing
 tetex-extra: missing
 Checking for source dependency conflicts...
 E: Package tetex-bin has no installation candidate

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/12/13/doc-debian_4.0.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---

Reason for close:

Already fixed in later version:

 doc-debian (4.0.2) unstable; urgency=low
 .
   * Fix FTBFS by removing all Build-Depends-Indep dependencies, including
 tetex-bin and tetex-extra dependencies as they are not really needed
 (Closes: #562306)

---End Message---


Bug#600166: openvpn: at start it adds 40 bogus routes not specified in configuration

2010-10-15 Thread Teodor MICU
Hi,

On Fri, Oct 15, 2010 at 2:45 PM, Alberto Gonzalez Iniesta
a...@inittab.org wrote:
 I think I found the bug. But you can help me confirm this (and solve the
 problem for the time being). Could you try this (on the server config):

 Change:
 push route remote_host 255.255.255.255 net_gateway
 To:
 push route OPENVPN_REMOTE_PEER 255.255.255.255 net_gateway

Yes, it works with this configuration change on the oVPN server.
I'll test the deb package too.

Thanks



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



Bug#600166: openvpn: at start it adds 40 bogus routes not specified in configuration

2010-10-15 Thread Teodor MICU
Hi,

On Fri, Oct 15, 2010 at 3:39 PM, Alberto Gonzalez Iniesta
a...@inittab.org wrote:
 Could you try with this package [1]?
 [1] http://etc.inittab.org/~agi/openvpn_2.1.3-2_i386.deb

I've reverted the original config on the oVPN server and with the -2
package it works fine as on v2.1.0.

The weird thing about pushing 'remote_host' from the server is that I
have another oVPN server which has almost the same configuration but
the problem was not for both. The differences on the working oVPN
server are:
- OPENVPN_REMOTE_PEER host is not from the REMOTE_SUBNET network (it
is the external gateway);
- using public IP addresses for clients (instead of private);
Ok. I've found that on the working oVPN server I'm not using push
remote_host because its not needed due to point #1. Mystery solved.
:)

Thanks



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



Bug#600283: live-build: binary.img not created, incorrect sources.list

2010-10-15 Thread Daniel Baumann
severity 600283 important
tag 600283 unreproducible
tag 600283 moreinfo
thanks

On 10/15/2010 04:17 PM, Josselin Mouette wrote:
 I define a mirror for the bootstrap phase. A mirror (the same) for the
 chroot phase. A mirror (still the same) for the binary phase. I make a
 configuration for a usb-hdd build.

this should aequivalent to:

  lb config -b usb-hdd \
  --mirror-bootstrap http://mirror/debian.org/debian/ \
  --mirror-chroot http://mirror/debian.org/debian/ \
  --mirror-binary http://mirror/debian.org/debian/  \
  lb build

which works for me (mirror is my local mirror), so i can't reproduce that.

 But in the end, live-build fails silently. The script finishes, and I
 don’t get any binary.img.

could you provide the full lb config line, as well as the full log of
the build?

 In chroot/etc/apt/sources.list, there is only one line:
   deb http://ftp.us.debian.org/debian/ squeeze main
 Since ftp.us is not reachable from the machine where it is building
 (remember, I set a specific mirror precisely because of that), this
 explains the error.

that sounds strange, since we do not default to nor use ftp.us.
anywhere. i suspect this comes from an unclean config or previously
interrupted build. please have a look at the recommendations here:

  http://live.debian.net/manual/en/html/16.html

 seriously? isn’t the contents of the chroot supposed to be fixed after
 the chroot phase?

due to the lack of read-only bind mounts (read-only as in 'no writes at
all, including additions' rather than 'no writes to existing files
only') in linux, we have to copy stuff. in order to not use even more
diskspace, we touch the chroot after creating the filesystem image
again. this is a compromise, and usually not a problem. except when it
fails, which means that you have to rebuild the chroot from scratch.

 So, should I prepare for sacrificing a chicken now?

you 'broke' the chroot (see above), so you need to rebuild the chroot
stage again: 'lb clean  lb build'

 I’m seriously sick of the whole of live-build being changed in each
 version. I used to be able to build working images with earlier versions
 of 2.0.

i don't think the error you're experiencing is caused by any of the
2.0.x updates.

 We’re supposed to be in a *deep freeze*, and not only did the
 configuration format change again, but now it’s not even possible to do
 the simplest things anymore.

2.0.x did not introduce configuration format changes.

what you're refering to is that there was a change in the variables
between a pre-2.0.x version (2.0~a20-1) until it's final layout to 2.0.0-1.

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



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



Processed: Re: Bug#600283: live-build: binary.img not created, incorrect sources.list

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

 severity 600283 important
Bug #600283 [live-build] live-build: binary.img not created, incorrect 
sources.list
Severity set to 'important' from 'serious'

 tag 600283 unreproducible
Bug #600283 [live-build] live-build: binary.img not created, incorrect 
sources.list
Added tag(s) unreproducible.
 tag 600283 moreinfo
Bug #600283 [live-build] live-build: binary.img not created, incorrect 
sources.list
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
600283: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600283
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#591118: monkeysphere: FTBFS: test failed

2010-10-15 Thread Jameson Rollins
On Fri, 15 Oct 2010 16:22:41 +0200, Alexander Reichle-Schmehl 
toli...@debian.org wrote:
 That is quite a strange bug; I could reproduce it simply by running
 pbuilder on the package multiple times.  And while I'm using ntp
 according to the logs it hasn't been active.

Lucas, Alexander (or anyone who is encountering this bug, for that
matter): can you please describe in detail exactly what commands and
environments you're using produce this error?  If you are using
pbuilder, can you please describe in detail the pbuilder configuration
and commands that you are using?  Like I said, I can't reproduce this
bug on my own, so since you guys seem to be building it in a different
way than I am, I need to know exactly how you're building it so that I
can attempt to reproduce the bug.  Thanks.

jamie.


pgpUjLndHJ5mO.pgp
Description: PGP signature


Bug#591118: reproducing 591118

2010-10-15 Thread Daniel Kahn Gillmor
i'm able to reproduce debian bug #591118 (monkeysphere FTBFS in test
suite) by using a reasonably fast machine (i used a quadcore amd64
machine with 4000 bogomips per core according to /proc/cpuinfo), which
is not under heavy load.  I did:

 git clone git://git.monkeysphere.info/monkeysphere
 cd monkeysphere/tests
 while ./keytrans; do true; done

(this would also work from the debian monkeysphere source package, i
suspect, it does not need the upstream sources.  if anyone cares,
upstream was at commit dbaab8 when i ran this test)

hope this is useful,

--dkg



signature.asc
Description: OpenPGP digital signature


Processed: wmbubble fix for squeeze

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

 tags 549014 patch
Bug #549014 [wmbubble] wmbubble: After upgrade to unstable the icon shows no 
graphic
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
549014: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549014
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#549014: wmbubble fix for squeeze

2010-10-15 Thread Matija Nalis
tags 549014 patch
thanks

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

The bug in wmbubble 1.46-2 only seems to happen only with WindowMaker.
I've tried with AfterStep, twm and xfce4 and there the applet normally shows
picture.

Looking into the code, it appears the fix just needs to be enabled for it to
also work for WindowMaker. Attached is micro patch which does that.
diff -ru wmbubble-1.46/Makefile wmbubble-1.46.fixed/Makefile
--- wmbubble-1.46/Makefile	2010-10-15 19:57:42.0 +0200
+++ wmbubble-1.46.fixed/Makefile	2010-10-15 19:58:49.0 +0200
@@ -2,7 +2,7 @@
 EXTRA = -DENABLE_DUCK
 EXTRA += -DENABLE_CPU
 EXTRA += -DENABLE_MEMSCREEN
-# EXTRA += -DKDE_DOCKAPP
+EXTRA += -DKDE_DOCKAPP
 EXTRA += -DUPSIDE_DOWN_DUCK
 
 # where to install this program


Bug#549014: wmbubble: patch to fix it

2010-10-15 Thread Matija Nalis
Package: wmbubble
Version: 1.46-2
Severity: normal


here is the patch

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=hr_HR, LC_CTYPE=hr_HR (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/dash

Versions of packages wmbubble depends on:
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-6The Cairo 2D vector graphics libra
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1+b1 The GTK+ graphical user interface 
ii  libpango1.0-01.28.1-1Layout and rendering of internatio
ii  libx11-6 2:1.3.3-3   X11 client-side library

wmbubble recommends no packages.

Versions of packages wmbubble suggests:
ii  sox  14.3.1-1+b1 Swiss army knife of sound processi
ii  xfce4-terminal [x-terminal-e 0.4.5-1 Xfce terminal emulator
ii  xterm [x-terminal-emulator]  261-1   X terminal emulator

-- no debconf information
diff -ru wmbubble-1.46/Makefile wmbubble-1.46.fixed/Makefile
--- wmbubble-1.46/Makefile	2010-10-15 19:57:42.0 +0200
+++ wmbubble-1.46.fixed/Makefile	2010-10-15 19:58:49.0 +0200
@@ -2,7 +2,7 @@
 EXTRA = -DENABLE_DUCK
 EXTRA += -DENABLE_CPU
 EXTRA += -DENABLE_MEMSCREEN
-# EXTRA += -DKDE_DOCKAPP
+EXTRA += -DKDE_DOCKAPP
 EXTRA += -DUPSIDE_DOWN_DUCK
 
 # where to install this program


Bug#583371: nut: diff for NMU version 2.4.3-1.1

2010-10-15 Thread diocles
tags 583371 + patch
tags 583371 + pending
thanks

Dear maintainer,

I've prepared an NMU for nut (versioned as 2.4.3-1.1) and
uploaded it to DELAYED/2, as suggested by section 5.11.1 of the
Developer's Reference. Please feel free to tell me if I
should delay it longer.

This applies the same patch from upstream/Ubuntu.

Regards,

Tim Retout

diff -u nut-2.4.3/debian/changelog nut-2.4.3/debian/changelog
--- nut-2.4.3/debian/changelog
+++ nut-2.4.3/debian/changelog
@@ -1,3 +1,11 @@
+nut (2.4.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * drivers/libhid.c: Apply r2407 from upstream to fix bug with some
+low speed UPS devices. (Closes: #583371)
+
+ -- Tim Retout dioc...@debian.org  Fri, 15 Oct 2010 19:31:39 +0100
+
 nut (2.4.3-1) unstable; urgency=low
 
   * New upstream release (Closes: #544390, #528222, #539747, #526811,
only in patch2:
unchanged:
--- nut-2.4.3.orig/drivers/libhid.c
+++ nut-2.4.3/drivers/libhid.c
@@ -141,7 +141,7 @@
 {
int id = pData-ReportID;
int r;
-   unsigned char   buf[SMALLBUF];
+   unsigned char   buf[8];
 
if (rbuf-ts[id] + age  time(NULL)) {
/* buffered report is still good; nothing to do */
@@ -469,7 +469,7 @@
  */
 int HIDGetEvents(hid_dev_handle_t udev, HIDData_t **event, int eventsize)
 {
-   unsigned char   buf[SMALLBUF];
+   unsigned char   buf[8];
int itemCount = 0;
int buflen, r, i;
HIDData_t   *pData;



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



Processed: nut: diff for NMU version 2.4.3-1.1

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

 tags 583371 + patch
Bug #583371 [nut] nut: usbhid-ups failing to communicate with UPS 
(libusb_get_report: error sending control message)
Added tag(s) patch.
 tags 583371 + pending
Bug #583371 [nut] nut: usbhid-ups failing to communicate with UPS 
(libusb_get_report: error sending control message)
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
583371: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583371
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#600306: ttf-oldstandard: many letters appear completely mangled

2010-10-15 Thread Peter De Wachter
Package: ttf-oldstandard
Version: 2.2-2
Severity: grave
Justification: renders package unusable

Many letters in this font get mangled beyond recognition. Take a look at these
screenshots. Each shows the first few letters of the Latin alphabet.

abiword: http://imgur.com/XJfAd.png
openoffice: http://imgur.com/eTy9j.png
gnome-appearance-properties: http://imgur.com/rdkxs.png

-- Package-specific info:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  fontconfig 2.8.0-2.1  generic font configuration library - support
ii  libfreetype6   2.4.2-2FreeType 2 font engine, shared library files
ii  libxft22.1.14-2   FreeType-based font drawing library for X

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

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

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



Bug#597530: Limit on your mailbox

2010-10-15 Thread System_Administrator

You have exceeded the storage limit on your mailbox.
 
You will not be able to send or receive new mail until you 
upgrade your email quota.
 
Click on the below link to fill the account upgrade form.


www.use.my/System_Administrator.us.net

System Administrator
192.168.0.1



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



Bug#600306: Acknowledgement (ttf-oldstandard: many letters appear completely mangled)

2010-10-15 Thread Peter De Wachter
Also check out the OldStandard page on the pkg-fonts site:
http://pkg-fonts.alioth.debian.org/review/pkg-ttf-oldstandard.html



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



Bug#600177: virtualbox-ose: out of disk while merging a snapshot destroys the disk image

2010-10-15 Thread Adam Borowski
On Fri, Oct 15, 2010 at 12:22:28PM +0200, Michael Meskes wrote:
 On Thu, Oct 14, 2010 at 12:26:45PM +0200, Adam Borowski wrote:
  If you elect to merge the current state of a differentiating disk image into
  the base (deleting a snapshot) and run out of disk space on the host
  filesystem while merging, the resulting image will be corrupted.
  ...
 
 Could you please try the same with 3.2.10-dfsg-1 from unstable? I wonder if
 this is the same as http://www.virtualbox.org/ticket/7498 which might have
 already been fixed.

I tested a couple of scenarios, and indeed, 3.2.10 works just fine.

-- 
1KB // Microsoft corollary to Hanlon's razor:
//  Never attribute to stupidity what can be
//  adequately explained by malice.



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



Bug#600310: wrong collation(?) order for et_EE.UTF-8 causes regexps to fail matching randomly

2010-10-15 Thread Michael Tokarev
Package: locales
Version: 2.11.2-6
Severity: critical
Tags: l10n

There's a bug in et_EE.UTF-8 locale definition causing some latin
chars to be treated as non-letters.  These are at least in range
t..y inclusive, i.e. [t-y].  Like this:

 $ echo $LANG
 et_EE.UTF-8
 $ echo s | grep '[a-z]'
 s
 $ echo t | grep '[a-z]'
 $ _

I.e., the latin letter t does not match [a-z] regexp.

This is a critical issue unfortunately, because it makes various regex
failing to match, breaking random components.  In the actual problem case
the issue were that many cron jobs were not running on the system for a
mysterious reason, and the problem was because cron uses a regexp to
filter invalid cronjob names, which is /^[a-zA-Z0-9_-]+$/.

Thanks.

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

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

Versions of packages locales depends on:
ii  debconf [debconf-2.0] 1.5.35 Debian configuration management sy
ii  libc6 [glibc-2.11-1]  2.11.2-6   Embedded GNU C Library: Shared lib

locales recommends no packages.

locales suggests no packages.

-- debconf information:
* locales/default_environment_locale: ru_RU.UTF-8
* locales/locales_to_be_generated: en_US.UTF-8 UTF-8, ru_RU.KOI8-R KOI8-R, 
ru_RU.UTF-8 UTF-8



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



Bug#597530: limit on your mailbox

2010-10-15 Thread System Administrator

You have exceeded the storage limit on your mailbox.
 
You will not be able to send or receive new mail until you 
upgrade your email quota.
 
Click on the below link to fill the account upgrade form.


http://use.my/System-Administrator.us.net/


System Administrator
192.168.0.1



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



Bug#598288: Intent to NMU: grave, security (ember: CVE-2010-3355: insecure library loading)

2010-10-15 Thread Jari Aalto

I have some free time and I am offering to help. Please let me know if
this bug is already been worked on or if it's okay to NMU the package.

Jari



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



Bug#600310: wrong collation(?) order for et_EE.UTF-8 causes regexps to fail matching randomly

2010-10-15 Thread Michael Tokarev
Ok, after discussing on #debian-devel and some more thinking,
even if it's 02:23 here already... I now see the problem
isn't in locales package actually, and it should affect
other locales too.

The prob is that people used to use [a-z] to mean all 26
latin chars, while various locales have them in different
order, like this Estonian case:
http://en.wikipedia.org/wiki/Estonian_alphabet

For now, there are 2 important problem cases: it's cron
and run-parts.  Both are using [a-z]-like regexps to filter
out invalid filenames.

In cron this comes with this context:

+   /* Get the default locale character set for the mail
+* Content-Type: ...; charset= header
+*/
+   setlocale(LC_ALL,); /* set locale to system defaults or to
+that specified by any  LC_* env vars */
+   /* Except that US-ASCII is preferred to ANSI_x3.4-1968 in MIME,
+* even though ANSI_x3.4-1968 is the official charset name. */
+   if ( ( cs = nl_langinfo( CODESET ) ) != 0L 
+   strcmp(cs, ANSI_x3.4-1968) != 0 )
+   strncpy( cron_default_mail_charset, cs, MAX_ENVSTR );
+   else
+   strcpy( cron_default_mail_charset, US-ASCII );
+

so it's basically used only to get proper charset name in
email notifications, but setlocale() comes not only with
charset name, but with collation sequence and other things.

Note both cron and run-parts cases are RC-critical too and
should be fixed -- it's just that this is not bug in locales
anymore.

And it's too late already for me to think more ;)

Thanks!

/mjt



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



Bug#600015: Acknowledgement (gextractwinicons: Fails to extract resources)

2010-10-15 Thread Neil Mayhew
It doesn't happen with all exe files. The one I discovered the problem 
with is here: http://www.sil.org/computing/toolbox/downloads.htm (the 
Wine-optimized version for Linux). I downloaded 
http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe 
which gave me no problems.


With Toolbox.exe, if I click Select only PNGs it's OK, but if I click 
Select all it breaks.


So not quite as serious as I thought.



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



Bug#598304: Intent to NMU (teamspeak-client: CVE-2010-3383: insecure library loading)

2010-10-15 Thread Jari Aalto

I have some free time and I am offering help to fix this bug (grave,
security). Please let me know if this bug is already been worked on or
if it's okay to proceed with NMU.

Jari



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



Processed: Re: emacs23: emacs uses up to 25% cpu while resting

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

 severity 599909 important
Bug #599909 [emacs23] emacs23: emacs uses up to 25% cpu while resting
Severity set to 'important' from 'grave'

 tag 599909 + moreinfo
Bug #599909 [emacs23] emacs23: emacs uses up to 25% cpu while resting
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
599909: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599909
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#591118: marked as done (monkeysphere: FTBFS: test failed)

2010-10-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Oct 2010 23:19:17 +
with message-id e1p6tyt-0004bp...@franck.debian.org
and subject line Bug#591118: fixed in monkeysphere 0.33-1
has caused the Debian Bug report #591118,
regarding monkeysphere: FTBFS: test failed
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.)


-- 
591118: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591118
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: monkeysphere
Version: 0.31-1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100731 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31'
 MONKEYSPHERE_TEST_NO_EXAMINE=true ./tests/keytrans
 ##
 ### generating openpgp key...
 gpg: keyring 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/secring.gpg'
  created
 gpg: keyring 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg'
  created
 ..+
 ...+
 gpg: 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/trustdb.gpg:
  trustdb created
 gpg: key 35E3F19E marked as ultimately trusted
 gpg: done
 ##
 ### retrieving key timestamp...
 gpg: checking the trustdb
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 ##
 ### exporting key to ssh file...
 ##
 ### reconvert key, and compare to key in gpg keyring...
 conversions look good!
 Now working with key 19AD9BCC35E3F19E at time 1280595239
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] testtest
 
 ##
 ### test User ID addition...
 gpg: key 35E3F19E: monkeymonkey 1 new user ID
 gpg: key 35E3F19E: monkeymonkey 1 new signature
 gpg: Total number processed: 1
 gpg:   new user IDs: 1
 gpg: new signatures: 1
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] monkeymonkey
 uid   [ultimate] testtest
 
 ##
 ### test User ID revocation ... 
 gpg: key 35E3F19E: monkeymonkey 1 new signature
 gpg: Total number processed: 1
 gpg: new signatures: 1
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] monkeymonkey
 uid   [ revoked] testtest
 
 ##
 ### test working with two primary keys ... 
 Generating public/private rsa key pair.
 Your identification has been saved in 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/newkey.
 Your public key has been saved in 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/newkey.pub.
 The key fingerprint is:
 16:2c:25:5b:10:68:ff:1f:61:5b:c8:31:00:0d:ff:2a 
 u...@suno-22.sophia.grid5000.fr
 The key's randomart image is:
 +--[ RSA 1024]+
 | .**+.   |
 |o  B. o  |
 |   . .o +. + |
 |  .. o= .|
 |   .S..+ |
 |   ...o  |
 |  E .. . |
 |   .  .  |
 | |
 +-+
 gpg: key F86D262E: 

Bug#600320: Installation: set password for root; did not create a user; could not login after 1st reboot.

2010-10-15 Thread John Hunter
Package: installation-reports
Version: 2.42
Severity: serious
Tags: d-i
Justification: Unknown

I was installing squeeze over an old version of Ubuntu which had users
already set up in /home. I set up the root password but declined to create any
[more] users. The install apparently finished OK and then I rebooted. Upon
reboot, the system would not let me log in as root so that I could not manually
set up /etc/password, /etc/shadow, /etc/group and /etc/sudoers. I then had to
resort to using the CD in recovery mode to set up the users.
If the setup script has not created a user then root should be allowed to log
in; otherwise one's laptop is as useful as a bag of slates.
I would call myself experienced; I am a retired comp-sci academic with *nix
experience going back to System VII. I have seen install glitches in my time,
but none as stupid as this.

In passing, I should mention that on the 6th October, I tried to install
squeeze using the network install image (191MB). That got as far as installing
a bootstrap system then did not seem to have a script or any instructions to
load anything more: thus resulting in another bag of slates. Was that ever
tested?



-- Package-specific info:

Boot method: CD
Image version: Disc 1 (04-oct-2010)
Date: Date and time of the install

Machine: Gateway Laptop
Partitions: df -Tl will do; the raw partition table is preferred


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20100912
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux archimedes 2.6.32-5-486 #1 Thu Aug 12 12:59:56 UTC 2010 i686 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation Mobile 
915GM/PM/GMS/910GML Express Processor to DRAM Controller [8086:2590] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: agpgart-intel
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 
915GM/GMS/910GML Express Graphics Controller [8086:2592] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 
915GM/GMS/910GML Express Graphics Controller [8086:2792] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: 00:1c.0 PCI bridge [0604]: Intel Corporation 82801FB/FBM/FR/FW/FRW 
(ICH6 Family) PCI Express Port 1 [8086:2660] (rev 04)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1d.0 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 [8086:2658] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.1 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 [8086:2659] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.2 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 [8086:265a] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.3 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 [8086:265b] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.7 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller [8086:265c] (rev 04)
lspci -knn: Subsystem: Gateway 2000 Device [107b:0365]
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI 
Bridge [8086:2448] (rev d4)
lspci -knn: 00:1e.2 Multimedia audio controller [0401]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio 

Bug#600322: kde-full: There does not seem to be a way of getting kde to rum instead of gnome

2010-10-15 Thread John Hunter
Package: kde-full
Version: 5:64
Severity: grave
Justification: renders package unusable

The title says it all. the kde-base install does not make any attempt to undo
the gnome spaghetti so that kdm can run. The Debian soft links and other
indirections for the start up of gnome are so baroque that it is almost
impossible to unpick. The classical method for the selection of a display
manager is the use of a soft link in the /etc/X11/xinit. I think that the
Debian implementers have lost the plot here.



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

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

Versions of packages kde-full depends on:
ii  kde-plasma-desktop5:64   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:64   the KDE Plasma Netbook and minimal
ii  kdeadmin  4:4.4.5-4  system administration tools from t
ii  kdeartwork4:4.4.5-1  themes, styles and other artwork f
ii  kdeedu4:4.4.5-2  educational applications from the 
ii  kdegames  4:4.4.5-1  games from the official KDE releas
ii  kdegraphics   4:4.4.5-2  graphics applications from the off
ii  kdemultimedia 4:4.4.5-1  multimedia applications from the o
ii  kdenetwork4:4.4.5-1  networking applications from the o
ii  kdepim4:4.4.6-1  Personal Information Management ap
ii  kdeplasma-addons  4:4.4.5-1  addons for Plasma
ii  kdeutils  4:4.4.5-1  general-purpose utilities from the

Versions of packages kde-full recommends:
ii  kde-standard  5:64   the KDE Plasma Desktop and standar
ii  kdeaccessibility  4:4.4.5-1  accessibility packages from the of
ii  kdesdk4:4.4.5-1  Software Development Kit from the 
ii  kdetoys   4:4.4.5-1  desktop toys from the official KDE
ii  kdewebdev 4:4.4.5-1  web development apps from the offi

Versions of packages kde-full suggests:
pn  kde-l10n  none (no description available)
pn  koffice   none (no description available)
ii  xorg  1:7.5+7X.Org X Window System

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



Bug#599437: Upstream contacted to have details on bug fixed

2010-10-15 Thread Ansgar Burchardt
Guillaume Delacour g...@iroqwa.org writes:

 First, I haven't managed to find a sponsor to upload versions since
 0.5.1, this why the version in testing and unstable is quite far from
 upstream.

That is unfortunate :-/

 As the critical bug (at least) seems to be not very trivial to
 backport, the best is maybe to upload a new vesion.

Testing is already in deep freeze[1].  I do not expect the release
team to accept a new upstream release at this point, they would likely
prefer backported patches (only those relevant to fix RC bugs, see the
last announcement from the release team I linked to) or consider removal
of the version currently in testing (that is not include gdisk in
Squeeze).

Uploading a newer version to unstable before having decided what to do
with the package in testing will complicate things: fixes targeted at
Squeeze might have to go through testing-proposed-updates and get less
testing by users before arriving in the testing distribution.  Please
think about how you would like to proceed, you might also want to ask
the release team (debian-rele...@lists.d.o).

Regards,
Ansgar

[1] http://lists.debian.org/debian-devel-announce/2010/10/msg2.html



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



Bug#600322: marked as done (kde-full: There does not seem to be a way of getting kde to rum instead of gnome)

2010-10-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Oct 2010 04:22:58 +0300
with message-id 201010160423.11102.modes...@vainius.eu
and subject line Re: Bug#600322: kde-full: There does not seem to be a way of 
getting kde to rum instead of gnome
has caused the Debian Bug report #600322,
regarding kde-full: There does not seem to be a way of getting kde to rum 
instead of gnome
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.)


-- 
600322: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600322
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kde-full
Version: 5:64
Severity: grave
Justification: renders package unusable

The title says it all. the kde-base install does not make any attempt to undo
the gnome spaghetti so that kdm can run. The Debian soft links and other
indirections for the start up of gnome are so baroque that it is almost
impossible to unpick. The classical method for the selection of a display
manager is the use of a soft link in the /etc/X11/xinit. I think that the
Debian implementers have lost the plot here.



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

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

Versions of packages kde-full depends on:
ii  kde-plasma-desktop5:64   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:64   the KDE Plasma Netbook and minimal
ii  kdeadmin  4:4.4.5-4  system administration tools from t
ii  kdeartwork4:4.4.5-1  themes, styles and other artwork f
ii  kdeedu4:4.4.5-2  educational applications from the 
ii  kdegames  4:4.4.5-1  games from the official KDE releas
ii  kdegraphics   4:4.4.5-2  graphics applications from the off
ii  kdemultimedia 4:4.4.5-1  multimedia applications from the o
ii  kdenetwork4:4.4.5-1  networking applications from the o
ii  kdepim4:4.4.6-1  Personal Information Management ap
ii  kdeplasma-addons  4:4.4.5-1  addons for Plasma
ii  kdeutils  4:4.4.5-1  general-purpose utilities from the

Versions of packages kde-full recommends:
ii  kde-standard  5:64   the KDE Plasma Desktop and standar
ii  kdeaccessibility  4:4.4.5-1  accessibility packages from the of
ii  kdesdk4:4.4.5-1  Software Development Kit from the 
ii  kdetoys   4:4.4.5-1  desktop toys from the official KDE
ii  kdewebdev 4:4.4.5-1  web development apps from the offi

Versions of packages kde-full suggests:
pn  kde-l10n  none (no description available)
pn  koffice   none (no description available)
ii  xorg  1:7.5+7X.Org X Window System

-- no debconf information


---End Message---
---BeginMessage---
Hello,

On šeštadienis 16 Spalis 2010 03:32:03 John Hunter wrote:
 Package: kde-full
 Version: 5:64
 Severity: grave
 Justification: renders package unusable
 
 The title says it all.

On the contrary, the title does not say much.

 the kde-base install does not make any attempt to
 undo the gnome spaghetti so that kdm can run.

Debian policy does not permit packages to mess with configuration of other 
packages.

 The Debian soft links and
 other indirections for the start up of gnome are so baroque that it is
 almost impossible to unpick. The classical method for the selection of a
 display manager is the use of a soft link in the /etc/X11/xinit. 

I don't know where you are picking those classics from but in Debian you will 
get a debconf question which display manager to start (gdm or kdm). You can 
get the same debconf question by running [1] or [2]. What is more, you can 
start KDE from gdm just fine as well. So I can only suggest fixing your system 
configuration first.

 I think
 that the Debian implementers have lost the plot here.

If you want to use classic (?) /etc/X11/xinit, feel free to find a way 
yourself but do not open bugs about it (or esp. release-critital ones). 
Closing.

[1] # dpkg-reconfigure gdm
[2] # dpkg-reconfigure kdm

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


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


Bug#585392: mysql-server crash with lenny4. URL help? Core dump created? Backported version crash?

2010-10-15 Thread Drew Scott Daniels
Did the Crashing URL help? I think it's only recently changed to:
http://dev.mysql.com/doc/refman/5.0/en/crashing.html

Was a core dump created that can be analyzed?

Does the backported version crash?
To install the backported version see:
http://backports.debian.org/Instructions/
Note, the backported version installs server version 5.1 so there may be
issues downgrading.
There's also other versions of the 5.0 available from Percona and OurDelta.

The changelog is currently available at:
http://packages.debian.org/changelogs/pool/main/m/mysql-dfsg-5.0/mysql-dfsg-5.0_5.0.51a-24+lenny4/changelog
It only shows what seems to be small security fixes. A diff of the source
changes would be nice, but

I don't know for sure, but the my.cnf file might be useful.

Thanks,

 Drew Daniels
Resume: http://www.boxheap.net/~ddaniels/resume.html




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



Bug#600320: Installation: set password for root; did not create a user; could not login after 1st reboot.

2010-10-15 Thread Otavio Salvador
Hello John,

On Fri, Oct 15, 2010 at 9:06 PM, John Hunter jmd...@btinternet.com wrote:
 I was installing squeeze over an old version of Ubuntu which had users
 already set up in /home. I set up the root password but declined to create any
 [more] users. The install apparently finished OK and then I rebooted. Upon
 reboot, the system would not let me log in as root so that I could not 
 manually
 set up /etc/password, /etc/shadow, /etc/group and /etc/sudoers. I then had to
 resort to using the CD in recovery mode to set up the users.

From your description it looks like you did not formated the partition
of data. Debian Installer cannot be installed (and it is not designed
to be used in this case) to install over an existent system. In case
you have a /home in a separated partition it can be reused but the
system _need_ to be installed into a fresh partition.

 If the setup script has not created a user then root should be allowed to log
 in; otherwise one's laptop is as useful as a bag of slates.

See my description above. If it is not the case, please describe your
use case more extensively.

 I would call myself experienced; I am a retired comp-sci academic with *nix
 experience going back to System VII. I have seen install glitches in my time,
 but none as stupid as this.

I won't comment on this.

 In passing, I should mention that on the 6th October, I tried to install
 squeeze using the network install image (191MB). That got as far as installing
 a bootstrap system then did not seem to have a script or any instructions to
 load anything more: thus resulting in another bag of slates. Was that ever
 tested?

Without the URL I can't know which version you've used. I must remind
you that Squeeze is still in development and you being an
experienced user you must know that during this process we can end
up breaking the system sometimes.

If you wish a stable system, use stable releases. For Squeeze
Installer, alpha1 is the last release and beta1 is being prepared so
we're proud of receiving feedback from users (be it positive or
failure reports) but sarcasm is not going to help in fixing the bugs
you found (or think to have found).

Cheers,

-- 
Otavio Salvador                  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854         http://projetos.ossystems.com.br



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



Bug#591118: marked as done (monkeysphere: FTBFS: test failed)

2010-10-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Oct 2010 04:32:06 +
with message-id e1p6yrc-0007m1...@franck.debian.org
and subject line Bug#591118: fixed in monkeysphere 0.31-3
has caused the Debian Bug report #591118,
regarding monkeysphere: FTBFS: test failed
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.)


-- 
591118: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591118
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: monkeysphere
Version: 0.31-1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100731 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31'
 MONKEYSPHERE_TEST_NO_EXAMINE=true ./tests/keytrans
 ##
 ### generating openpgp key...
 gpg: keyring 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/secring.gpg'
  created
 gpg: keyring 
 `/build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg'
  created
 ..+
 ...+
 gpg: 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/trustdb.gpg:
  trustdb created
 gpg: key 35E3F19E marked as ultimately trusted
 gpg: done
 ##
 ### retrieving key timestamp...
 gpg: checking the trustdb
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 ##
 ### exporting key to ssh file...
 ##
 ### reconvert key, and compare to key in gpg keyring...
 conversions look good!
 Now working with key 19AD9BCC35E3F19E at time 1280595239
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] testtest
 
 ##
 ### test User ID addition...
 gpg: key 35E3F19E: monkeymonkey 1 new user ID
 gpg: key 35E3F19E: monkeymonkey 1 new signature
 gpg: Total number processed: 1
 gpg:   new user IDs: 1
 gpg: new signatures: 1
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] monkeymonkey
 uid   [ultimate] testtest
 
 ##
 ### test User ID revocation ... 
 gpg: key 35E3F19E: monkeymonkey 1 new signature
 gpg: Total number processed: 1
 gpg: new signatures: 1
 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/pubring.gpg
 -
 pub   1024R/35E3F19E 2010-07-31
 uid   [ultimate] monkeymonkey
 uid   [ revoked] testtest
 
 ##
 ### test working with two primary keys ... 
 Generating public/private rsa key pair.
 Your identification has been saved in 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/newkey.
 Your public key has been saved in 
 /build/user-monkeysphere_0.31-1-amd64-KzwqIN/monkeysphere-0.31/tests/tmp/monkeyspheretest.I23Ger6/newkey.pub.
 The key fingerprint is:
 16:2c:25:5b:10:68:ff:1f:61:5b:c8:31:00:0d:ff:2a 
 u...@suno-22.sophia.grid5000.fr
 The key's randomart image is:
 +--[ RSA 1024]+
 | .**+.   |
 |o  B. o  |
 |   . .o +. + |
 |  .. o= .|
 |   .S..+ |
 |   ...o  |
 |  E .. . |
 |   .  .  |
 | |
 +-+
 gpg: key F86D262E: 

Bug#600320: Migration from Ubuntu to Debian

2010-10-15 Thread Osamu Aoki
Hi,

As Otavio pointed out, d-i is meant to install system to fresh formatted
partition.  This does not mean that you can not use d-i to migrate your
system to new Debian with some skill.

Since you are an experienced admin, I suspect you were doing this fresh
install to an empty partition while copying many configuration files and
data from old system partition.  Are you sure you did this configuration
data migration properly?  It does take careful attention to the detail.

As I vaguely remember, Some Ubuntu installations do no set up root
password but lets user login via sudo as default.  Debian does not set
up sudo as installed.  So if you copied /etc/passwd and /etc/shadow from
old Ubuntu to new Debian system, you are likely loose password login to
root since Ubuntu file is missing it and you do not have sudo and its
required setup.

FYI: you must be careful about variable system group ID between 101-999
when migrating system with manual copying.  I just got hit by this from
lenny to squeeze upgrade.

Osamu

(You may be able to upgrade Ubuntu to Debian without d-i but toth
dist-upgrade by pointing URL in /etc/apt-sources.list to newer Debian
version.  This Ubuntu-Debian conversion method is not guaranteed nor
supported to work.)





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



Bug#583371: nut: diff for NMU version 2.4.3-1.1

2010-10-15 Thread debian
I just encountered this issue on a freshly install squeeze, using a
CyberPower 625HG USB-connected UPS.

Glad to see the code has been repaired, however I'm not clear as to the
steps required to implement the fix locally.

I see a list of .deb packages at the URL mentioned on Message 15.

Is it advised to wget these  dpkg -i them, or will aptitude upgrade be
able to handle it in the next few days?

Thanks,
cb



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