Bug#605777: workaround for backspace key deletes forwards on the kFreeBSD console

2011-01-18 Thread Petr Salinger

The integration should be into /etc/init.d/kbdcontrol,
by adding two targets, like keymap-native and keymap-debian.

May be it can be run even semi-automatically, by
detecting whether the /etc/inittab uses cons25 or cons25-debian
and noop or alter keymap.


Yes, I like the latter (auto detection) part. Another solution could be a
debconf question in kbdcontrol (though it might be too late for this).


Attached is the proposed new /etc/init.d/kbdcontrol.
The current default is
FLAVOUR=auto

Should be the default auto or native ?

Is there still a time to do freebsd-utils upload ?
The only change against current one would be the new 
/etc/init.d/kbdcontrol script.


Cheers
Petr#! /bin/sh
### BEGIN INIT INFO
# Provides: kbdcontrol
# Required-Start:   $local_fs $remote_fs
# Required-Stop:
# Default-Start:S
# Default-Stop:
# Short-Description:Set keymap
# Description:  Set the Console keymap
### END INIT INFO
#
# skeleton  example file to build /etc/init.d/ scripts.
#   This file should be used to construct scripts for /etc/init.d.
#
#   Written by Miquel van Smoorenburg miqu...@cistron.nl.
#   Modified for Debian 
#   by Ian Murdock imurd...@gnu.ai.mit.edu.
#
# Version:  @(#)skeleton  1.9  26-Feb-2001  miqu...@cistron.nl
#

set -e

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
which kbdcontrol /dev/null

# in general, keymap layout can be
# native:  the plain FreeBSD/cons25 layout
# debian:  the Debian Policy 9.8 (Keyboard configuration) conforming, aka 
cons25-debian
# auto:scan /etc/inittab and guess the right one
FLAVOUR=auto

# for auto do the guess
if [ $FLAVOUR = auto ]
then
  if grep -q -e respawn:/sbin/getty.*cons25-debian /etc/inittab
  then
FLAVOUR=debian
  fi
fi


alter_to_debian_keymap () {
# change keymap layout to Debian Policy 9.8 (Keyboard configuration) 
conforming

# 014   deldelbs bs deldelbs bs  O
# 142   deldelbs bs deldelbs bs  O

# 103   fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot   fkey61  O
# 231   fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 boot   fkey61  O

# in following part change only first one, do not change the rest 
(decimal separator)

# 083   fkey61 '.''.''.''.''.'boot   bootN
# 211   fkey61 '.''.''.''.''.'boot   bootN

echo -n Altering to policy conforming cons25-debian layout...
TMPFILE=`mktemp -t keymap.XX` || exit 1

kbdcontrol -d | sed \
  -e s/^  083   del   /  083   fkey61/ \
  -e s/^  211   del   /  211   fkey61/ \
  -e s/^  083   bs/  083   fkey61/ \
  -e s/^  211   bs/  211   fkey61/ \
  -e s/^  014   .*/  014   deldelbs bs deldel
bs bs  O/ \
  -e s/^  142   .*/  142   deldelbs bs deldel
bs bs  O/ \
  -e s/^  103   .*/  103   fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 
boot   fkey61  O/ \
  -e s/^  231   .*/  231   fkey61 fkey61 fkey61 fkey61 fkey61 fkey61 
boot   fkey61  O/ \
   $TMPFILE

kbdcontrol -l $TMPFILE  
rm -f $TMPFILE
  
# and generate  ESC [ 3 ~ for fkey61  
SEQ=`/bin/echo -n -e \\\033[3~`
#echo $SEQ | od -ax
kbdcontrol -f 61 $SEQ
echo done.
}


alter_to_native_keymap () {
# change keymap layout to usual cons25

# 014   bs bs deldelbs bs deldel O
# 142   bs bs deldelbs bs deldel O

echo -n Altering to native cons25 layout...
TMPFILE=`mktemp -t keymap.XX` || exit 1

kbdcontrol -d | sed \
  -e s/^  014   .*/  014   bs bs deldelbs bs 
deldel O/ \
  -e s/^  142   .*/  142   bs bs deldelbs bs 
deldel O/ \
   $TMPFILE

kbdcontrol -l $TMPFILE  
rm -f $TMPFILE
  
# and generate del for fkey61  
SEQ=`/bin/echo -n -e 177`
#echo $SEQ | od -ax
kbdcontrol -f 61 $SEQ
echo done.
}


do_start() {
if test -e /etc/kbdcontrol.conf ; then
echo -n Loading console keymap...
kbdcontrol -l `grep -v ^# /etc/kbdcontrol.conf`  /dev/console
echo done.
fi
}


case $1 in
  start|)
do_start
if [ $FLAVOUR = debian ]
then
alter_to_debian_keymap  /dev/console
fi
;;
  restart|reload|force-reload)
echo Error: argument '$1' not supported 2
exit 3
;;
  stop)
# No-op
;;
  keymap-native)
alter_to_native_keymap  /dev/console
;;
  keymap-debian)
alter_to_debian_keymap  /dev/console
;;
  *)
echo Usage: $0 

Bug#605777: workaround for backspace key deletes forwards on the kFreeBSD console

2011-01-18 Thread Sven Joachim
On 2011-01-18 09:17 +0100, Petr Salinger wrote:

 The integration should be into /etc/init.d/kbdcontrol,
 by adding two targets, like keymap-native and keymap-debian.

 May be it can be run even semi-automatically, by
 detecting whether the /etc/inittab uses cons25 or cons25-debian
 and noop or alter keymap.

 Yes, I like the latter (auto detection) part. Another solution could be a
 debconf question in kbdcontrol (though it might be too late for this).

 Attached is the proposed new /etc/init.d/kbdcontrol.
 The current default is
 FLAVOUR=auto

 Should be the default auto or native ?

 Is there still a time to do freebsd-utils upload ?
 The only change against current one would be the new
 /etc/init.d/kbdcontrol script.

 Cheers
   Petr

 #! /bin/sh
 ### BEGIN INIT INFO
 # Provides: kbdcontrol
 # Required-Start:   $local_fs $remote_fs
 # Required-Stop:
 # Default-Start:S
 # Default-Stop:
 # Short-Description:Set keymap
 # Description:  Set the Console keymap
 ### END INIT INFO
 #
 # skeletonexample file to build /etc/init.d/ scripts.
 # This file should be used to construct scripts for /etc/init.d.
 #
 # Written by Miquel van Smoorenburg miqu...@cistron.nl.
 # Modified for Debian 
 # by Ian Murdock imurd...@gnu.ai.mit.edu.
 #
 # Version:@(#)skeleton  1.9  26-Feb-2001  miqu...@cistron.nl
 #

 set -e

 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 which kbdcontrol /dev/null

Please add  || exit 0 to not fail if kbdcontrol is removed but not
purged.

 # in general, keymap layout can be
 # native:  the plain FreeBSD/cons25 layout
 # debian:  the Debian Policy 9.8 (Keyboard configuration) conforming, aka 
 cons25-debian
 # auto:scan /etc/inittab and guess the right one
 FLAVOUR=auto

 # for auto do the guess
 if [ $FLAVOUR = auto ]
 then
   if grep -q -e respawn:/sbin/getty.*cons25-debian /etc/inittab

This will match lines that are commented out.

Cheers,
   Sven



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



Bug#607980: FTBFS with binutils-gold too

2011-01-18 Thread Alexandre Ratchov
On Fri, Dec 31, 2010 at 04:32:26PM +0100, Alexandre Ratchov wrote:
  
  Well, I not sure if a new upstream release is suitable as we are in deep
  freeze.  But after adding -lrt, the package builds again on my box
  indeed, and presumably it will build fine in kfreebsd too. 
  
  
 
 yeah, your diff fixes it.
 
 I admit not understanding implcations of the freeze in depth, so I'm
 not pushing the update. FWIW, the diff between 1.0.4 and 1.0.6
 releases is only few lines to fix this bug and another one.
 

Sorry for the dumb question, but is there anything I still have to do
to get the package either patched or updated?

-- Alexandre



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



Bug#610394: Missing dependency on libbcprov-java

2011-01-18 Thread Raúl Sánchez Siles
Package: pdftk
Version: 1.44-1
Severity: serious
Tags: experimental

Hello:

I installed experimental pdftk version. When I tried to run it I got this
error:

WARNING: Error loading security provider
org.bouncycastle.jce.provider.BouncyCastleProvider:
java.lang.ClassNotFoundException:
org.bouncycastle.jce.provider.BouncyCastleProvider not found in
gnu.gcj.runtime.SystemClassLoader{urls=[file:./],
parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}

The problem was solved once I installed libbcprov-java, so I suggest package
depends on it as well.

Thanks for your work on this package, which I've seen is pretty difficult to
maintain.



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (80, 'unstable'), (10, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages pdftk depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared 
lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libgcj-bc 4.4.5-1Link time only library for use 
wit
ii  libgcj10  4.4.5-2Java runtime library for use with 
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3

pdftk recommends no packages.

Versions of packages pdftk suggests:
ii  poppler-utils [xpdf-utils]0.12.4-1.2 PDF utilitites (based on 
libpopple

-- 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#599096: slicer: FTBFS: make[3]: *** No rule to make target `/usr/lib/libpq.so', needed by `bin/libvtkTeem.so.3.6.0'. Stop.

2011-01-18 Thread Andreas Tille
Hi,

I wonder why there is no answer on this a bit aged serios bug.  For me
it smells like a missing Build-Depends from libpq-dev.  When trying to
build the package on amd64 I noticed that libpq-dev is installed via
implicite dependencies of other Build-Depends.  Is there any complete
build log for powerpc arch to verify if this package is included?

Kind regards

   Andreas.

-- 
http://fam-tille.de



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



Bug#610398: libgupnp-idg reports succes and passes invalid UPnP data instead of reporting failure

2011-01-18 Thread Laurent Bigonville
Package: libgupnp-1.0-3
Version: 0.1.7-2
Severity: serious
Tags: patch sid squeeze

Hi,

The current version of gupnp-igd crashes if the gateway returns an
invalid address/port combination.

Could allow anybody make application to crash.

Patch is available upstream, I will update the package soon.

Laurent Bigonville



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



Bug#599096: slicer: FTBFS: make[3]: *** No rule to make target `/usr/lib/libpq.so', needed by `bin/libvtkTeem.so.3.6.0'. Stop.

2011-01-18 Thread Julien Cristau
On Tue, Jan 18, 2011 at 11:12:43 +0100, Andreas Tille wrote:

 Hi,
 
 I wonder why there is no answer on this a bit aged serios bug.  For me
 it smells like a missing Build-Depends from libpq-dev.  When trying to
 build the package on amd64 I noticed that libpq-dev is installed via
 implicite dependencies of other Build-Depends.  Is there any complete
 build log for powerpc arch to verify if this package is included?
 
https://buildd.debian.org/fetch.cgi?pkg=slicerver=3.6.0~svn13936-1arch=powerpcstamp=1286207213file=log

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#610398: reassign 610398 libgupnp-igd-1.0-3 0.1.7-2

2011-01-18 Thread Laurent Bigonville
reassign 610398 libgupnp-igd-1.0-3 0.1.7-2
thanks

Doh...

Anyway for the records, patch are available at:

http://gitorious.org/gupnp/gupnp-igd/commit/7c1e02a931cb249ac17a4a5663f1bc86f5371aca
and probably also
http://gitorious.org/gupnp/gupnp-igd/commit/7b94b5b4d57feec7fc8523c675a2963b3d5c9622

Laurent



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



Processed: reassign 610398 libgupnp-igd-1.0-3 0.1.7-2

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 610398 libgupnp-igd-1.0-3 0.1.7-2
Bug #610398 [libgupnp-1.0-3] libgupnp-idg reports succes and passes invalid 
UPnP data instead of reporting failure
Bug reassigned from package 'libgupnp-1.0-3' to 'libgupnp-igd-1.0-3'.
Bug No longer marked as found in versions 0.1.7-2.
Bug #610398 [libgupnp-igd-1.0-3] libgupnp-idg reports succes and passes invalid 
UPnP data instead of reporting failure
Bug Marked as found in versions gupnp-igd/0.1.7-2.
 thanks
Stopping processing here.

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


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



Processed: Re: Bug#17545: sendfile: sendfile modifies /etc/profile which is owned by bash

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 package sendfile
Limiting to bugs with field 'package' containing at least one of 'sendfile'
Limit currently set to 'package':'sendfile'

 severity 17545 serious
Bug #17545 [sendfile] sendfile: sendfile modifies /etc/profile which is owned 
by bash
Severity set to 'serious' from 'wishlist'

 thanks
Stopping processing here.

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


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



Processed: Re: Bug#610332: /etc/pm/sleep.d/60aiccu hook may cause unacceptable resume delays

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 610332 squeeze-can-defer
Bug#610332: /etc/pm/sleep.d/60aiccu hook may cause unacceptable resume delays
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 610332 squeeze-ignore
Bug #610332 [aiccu] /etc/pm/sleep.d/60aiccu hook may cause unacceptable resume 
delays
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
610332: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610332
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#610332: /etc/pm/sleep.d/60aiccu hook may cause unacceptable resume delays

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 610332 squeeze-can-defer
tag 610332 squeeze-ignore
kthxbye

On Mon, Jan 17, 2011 at 18:24:51 +0100, Bjørn Mork wrote:

 Package: aiccu
 Version: 20070115-14
 Severity: critical
 Justification: breaks unrelated software
 
 The /etc/pm/sleep.d/60aiccu pm-utils hook may cause extremely slow resume
 from sleep.  aiccu should not need to touch anything on resume.  If it does, 
 then that is just a symptom of a bug in the daemon.
 
Not quite convinced critical is the right severity, but in any case this
won't be a blocker for squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609762: amavisd-milter: Init script changes owner of current directory to 'amavis'

2011-01-18 Thread Julien Cristau
On Thu, Jan 13, 2011 at 10:04:14 +0100, Harald Jenny wrote:

 Dear Gabor Kiss,
 
 thanks for the information, will test it myself and then release a new 
 version.
 And thanks for your good bug report.
 
Can this be fixed ASAP please?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609581: Incompatible licences

2011-01-18 Thread Julien Cristau
On Fri, Jan 14, 2011 at 07:58:26 -0600, Martin Pitt wrote:

 Julien Cristau [2011-01-14 11:05 +0100]:
  It doesn't sound like this has been addressed?
 
 How do you mean in particular? The PDF reflow plugin now is GPL 2 or
 later, so it should be compatible with poppler again?
 
That doesn't address Riddell's point.  You're mixing GPL 2 (poppler)
with GPL 2+ (PDF reflow plugin) with GPL 3 (calibre).  I don't think
that works.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#592768: clisp install failure is a powerpc64 only problem?

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 592768 squeeze-can-defer
tag 592768 squeeze-ignore
kthxbye

On Fri, Jan 14, 2011 at 07:55:40 -0400, David Bremner wrote:

 
 Hi; 
 
 It seems like the install problems for clisp might only be happening on
 powerpc64. There are several reports of installation success on powerpc,
 and I verified myself on qemu-system-powerpc.
 
 Debian does not have any powerpc64 porterbox, so this is difficult for me
 to test. 
 
 I'm not sure what this means from the point of view of Squeeze
 release. It does seem a bit odd to pull clisp from the release based on
 bugs which we cannot duplicate on Debian machines.  On the other hand,
 officially there is no separate powerpc64 architecture, and having
 only 32 bit supported is hardly desirable.
 
 Of course, if someone can duplicate the bug running a 32-bit kernel that
 changes things.  I still think we probably need a powerpc64 porterbox if
 powerpc is going to continue as a release architecture post squeeze.
 
Deferring for squeeze.  We can include a fix in a point release.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Julien Cristau
On Fri, Jan  7, 2011 at 17:36:51 +0900, Hideki Yamane wrote:

 Hi,
 
  While I investigated this Bug#609094, I could build it with fontforge
  0.0.20100501-2. However, with 0.0.20100501-3 it couldn't be succeed.
 
  So, I guessed the change in 0.0.20100501-3 is somthing wrong, and dropped
  --enable-double option from debian/rules built ttf-dejavu fine.
 
  Can we drop this option?
 
That seems like the best suggestion so far, so please NMU with this (no
delay, and medium urgency).

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#609094: [Pkg-fonts-devel] Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Julien Cristau
On Thu, Jan  6, 2011 at 21:27:11 +0200, Khaled Hosny wrote:

 On Wed, Jan 05, 2011 at 08:13:28PM -0800, Daniel Schepler wrote:
  Package: fontforge
  Version: 0.0.20100501-4
  Severity: serious
 
 Bugs like this make wounder if it is wise for distributions to build
 fonts from source instead of just using upstream supplied font files.
 
 I mean, what is the benefit from building from source? I, as a font
 author, I can see many possible problems with no obvious benefit.
 
If we didn't build from source, we wouldn't catch bugs like this.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#592768: clisp install failure is a powerpc64 only problem?

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 592768 squeeze-can-defer
Bug#592768: clisp segfaults on install on powerpc system.
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 592768 squeeze-ignore
Bug #592768 {Done: David Bremner brem...@debian.org} [clisp] clisp segfaults 
on install on powerpc system.
Bug #594178 {Done: David Bremner brem...@debian.org} [clisp] clisp: SIGSEGV 
during install
Added tag(s) squeeze-ignore.
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
592768: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592768
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#610174: gosa: fails to install,looks for lighttpd

2011-01-18 Thread Julien Cristau
severity 610174 important
tag 610174 unreproducible
kthxbye

On Sat, Jan 15, 2011 at 16:05:57 -0500, ralph bacolod wrote:

 Package: gosa
 Version: 2.6.11-3
 Severity: grave
 Justification: renders package unusable
 
 The package fails to install because it looks for the lighttpd startup
 script. I uninstalled lighttpd and left apache2 but still the no luck.
 
Maintainer says he can't reproduce, downgrading.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#610174: gosa: fails to install,looks for lighttpd

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 610174 important
Bug #610174 [gosa] gosa: fails to install,looks for lighttpd
Severity set to 'important' from 'grave'

 tag 610174 unreproducible
Bug #610174 [gosa] gosa: fails to install,looks for lighttpd
Added tag(s) unreproducible.
 kthxbye
Stopping processing here.

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


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



Processed: Re: Can't reproduce bug #593648

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 593648 squeeze-can-defer
Bug#593648: grub-pc install fails on RAID1 (unknown filesystem)
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 593648 squeeze-ignore
Bug #593648 [grub-pc] grub-pc install fails on RAID1 (unknown filesystem)
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
593648: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593648
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#593648: Can't reproduce bug #593648

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 593648 squeeze-can-defer
tag 593648 squeeze-ignore
kthxbye

On Thu, Dec 16, 2010 at 02:40:12 +0100, Jeroen Dekkers wrote:

 tags 593648 unreproducible
 thanks
 
 I'm not able to reproduce this bug. I tried to create the same layout:
 
Thanks for testing.  Marking as not a release blocker.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609094: [Pkg-fonts-devel] Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Khaled Hosny
On Tue, Jan 18, 2011 at 12:07:20PM +0100, Julien Cristau wrote:
 On Thu, Jan  6, 2011 at 21:27:11 +0200, Khaled Hosny wrote:
 
  On Wed, Jan 05, 2011 at 08:13:28PM -0800, Daniel Schepler wrote:
   Package: fontforge
   Version: 0.0.20100501-4
   Severity: serious
  
  Bugs like this make wounder if it is wise for distributions to build
  fonts from source instead of just using upstream supplied font files.
  
  I mean, what is the benefit from building from source? I, as a font
  author, I can see many possible problems with no obvious benefit.
  
 If we didn't build from source, we wouldn't catch bugs like this.

Which is good thing?

I mean the purpose of font packages is to be used, not catch FontForge
bugs, and there are FontForge bugs that can pass unnoticed at build
time.

See also:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600306

for a non-bug that just screwed the font up. Another reason why it is
not, yet, a good idea to build fonts on your own.

(BTW, it is already known that there are places in the code that don't
go well with doubles and crashes like this have been reported upstream
already, still there are certain tasks that can't be reliably done
without building fontforge to use doubles).

Regards,
 Khaled

-- 
 Khaled Hosny
 Arabic localiser and member of Arabeyes.org team
 Free font developer


signature.asc
Description: Digital signature


Bug#596351: Removing ohai and chef?

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 596351 squeeze-will-remove
kthxbye

On Sat, Jan  8, 2011 at 15:44:07 +, Neil Williams wrote:

 Bearing in mind Chris' previous comment:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=596351#40
 
 If the above is not possible, I return to my previous suggestion of
 removing ohai  chef from squeeze. Once wheezy is up and running, there
 should be no problem getting the new libjson-ruby package in. There's
 always the option of providing packages via backports.debian.org once
 squeeze is released.
 
 Personally, I'd say it's time for a pair of RM bugs to be filed at
 release.debian.org to remove ohai and chef from Squeeze. This bug
 doesn't warrant blocking Squeeze.
 
Will remove from squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#609242: ifupdown don't wait for bonding goes up before exiting, causing other services depending on $network to fail starting

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 609242 squeeze-can-defer
Bug#609242: ifupdown don't wait for bonding goes up before exiting, causing 
other services depending on $network to fail starting
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 609242 squeeze-ignore
Bug #609242 [ifenslave-2.6] ifupdown don't wait for bonding goes up before 
exiting, causing other services depending on $network to fail starting
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
609242: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609242
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#609242: ifupdown don't wait for bonding goes up before exiting, causing other services depending on $network to fail starting

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 609242 squeeze-can-defer
tag 609242 squeeze-ignore
kthxbye

On Fri, Jan  7, 2011 at 18:39:53 +0100, Eric Belhomme wrote:

 As said in the subject, ifupdown exits before the bond interface is active. I 
 tried to raise the updelay to get the slaves active but it has no effect :
 
 [   11.426497] bnx2: eth0 NIC Copper Link is Up, 1000 Mbps full duplex
 [   11.478596] bonding: bond0: link status up for interface eth0, enabling it 
 in 0 ms.
 [   11.486325] bonding: bond0: link status definitely up for interface eth0.
 [   11.493738] ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready
 [   11.515333] bnx2: eth1 NIC Copper Link is Up, 1000 Mbps full duplex
 [   11.590403] bonding: bond0: link status up for interface eth1, enabling it 
 in 1 ms.
 Starting LDAP connection daemon: nslcd[   21.581245] bonding: bond0: link 
 status definitely up for interface eth1.
 nslcd: failed to bind to LDAP server ldaps://ldap.eve/: Can't contact LDAP 
 server: Connection timed out
 nslcd: no available LDAP server found
 nslcd: no base defined in config and couldn't get one from server
  failed!
 
 You can see on this log that sysv-rc tries to start nslcd daemon *before* 
 bonding module reports bond0 to be effectively up, causing nslcd to fail to 
 start... As everything on my setup relies on LDAP for auth, nothing is 
 working until I locally log as root to manually restart failed services...
 
 I'm not sure id I should assign this bug to ifenslave or to ifupdown package, 
 so sorry for the noise if I'm wrong !
 
Considering that this doesn't sound like a new bug, you have a
workaround (if hacky) and this hopefully won't affect too many people,
I'm tagging this as not a blocker for the squeeze release.  If a fix is
available later it can be applied in a point release.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#610338: psi-plus: contains non-free icons; inadequate copyright file

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 610338 squeeze-will-remove
kthxbye

On Mon, Jan 17, 2011 at 13:29:15 -0500, Mike O'Connor wrote:

 Source: psi-plus
 Severity: serious
 Justification: Policy 2.2.1, Policy 12.5
 
 
 There are many files which are LGPL-2.1+ and many files which are GPL2+, your
 debian/copyight is not accurate about this saying only that the software is
 LGPL-2+ and pointing to GPL instead of the LGPL
 
Will remove from squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-18 Thread Julien Cristau
On Tue, Jan 11, 2011 at 14:55:21 +0100, Jakub Wilk wrote:

 This doesn't look good. GetMagickFileList is called in a loop and
 InitializeMagick is supposed to be run only once.
 
That sounds like broken API for a library.  How is a library using
graphicsmagick to know whether it needs to call InitializeMagick or it's
already been done?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609535: psiconv: magick/semaphore.c:526: LockSemaphoreInfo: Assertion `semaphore_info-signature == 0xabacadabUL' failed.

2011-01-18 Thread Julien Cristau
On Fri, Jan 14, 2011 at 14:01:16 +0100, Jakub Wilk wrote:

 In the worst case we can change build-dependencies so that psiconv
 is linked with ImageMagick (rather than GraphicsMagick).
 
Another option would be to rebuild abiword and gnumeric without psiconv
support, if that's easy?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#610288: thin: ActiveRecord session store doesn't work with Rails

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 610288 squeeze-will-remove
kthxbye

On Mon, Jan 17, 2011 at 08:03:26 +0200, Faidon Liambotis wrote:

 Package: thin
 Version: 1.2.4-1
 Severity: grave
 Tags: patch
 Justification: renders package unusable
 
 When using Rails, thin ignores the configuration directive of picking
 ActiveRecord for a session store and falls back to a CookieStore instead
 (which is limited to 4K among other things).
 
 The bug is reported upstream[1] and the trivial one-line fix made it to
 1.2.5. I've patched thin locally with the fix there and I confirm that
 it fixes the issue.
 
Tagging as candidate for removal from squeeze.  Somebody needs to get a
fix in soon if they want this package in squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#610333: unattended-upgrades: delaying hibernation until crob job finishes is unacceptable

2011-01-18 Thread Julien Cristau
user release.debian.org
usertag 610333 squeeze-can-defer
tag 610333 squeeze-ignore
kthxbye

On Mon, Jan 17, 2011 at 18:30:38 +0100, Bjørn Mork wrote:

 Package: unattended-upgrades
 Version: 0.62.2
 Severity: critical
 Justification: breaks unrelated software
 
Severity is arguable, but in any case this is not a blocker for squeeze.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed (with 2 errors): Re: Bug#610333: unattended-upgrades: delaying hibernation until crob job finishes is unacceptable

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian.org
Selected user id (release.debian.org) invalid, sorry
 usertag 610333 squeeze-can-defer
No valid user selected
 tag 610333 squeeze-ignore
Bug #610333 [unattended-upgrades] unattended-upgrades: delaying hibernation 
until crob job finishes is unacceptable
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
610333: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610333
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#610338: only checked testing/unstable

2011-01-18 Thread Alexander Reichle-Schmehl
found 610338 0.15~svn2744-1
found 610338 0.15~svn3447-1
thanks


Hi!


* Mike O'Connor s...@debian.org [110118 05:23]:
 found 610338 0.15~svn3447
 thanks

Seems that that didn't reached the bts?

  Have you seen updated packages?
 No, I only looked at the version in testint/unstable.  Marking the bug
 accordingly.

You confuse me:  Testing/unstable has 0.15~svn2744-1, experimental
0.15~svn3447-1, you said you checked testing/unstable but marked
experimental.


Well, no problem:  The copyright files of the version in testing and
experimental are the very same.  I checked iris/src/jdns,
src/tools/crash/crash_sigsev* and third-party/qca/qca/src/botantools
which also seem to be present in both versions.  So this bug seems
clearly to affects both versions (also #598944 seems to claim
otherwise).


Just for the record: version 0.15~svn3463-1  available on mentors.d.n
doesn't fix it, too.


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



Processed: Re: Bug#610338: only checked testing/unstable

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 610338 0.15~svn2744-1
Bug #610338 [src:psi-plus] psi-plus: contains non-free icons; inadequate 
copyright file
Bug Marked as found in versions psi-plus/0.15~svn2744-1.
 found 610338 0.15~svn3447-1
Bug #610338 [src:psi-plus] psi-plus: contains non-free icons; inadequate 
copyright file
Bug Marked as found in versions psi-plus/0.15~svn3447-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
610338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610338
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#609094: [Pkg-fonts-devel] Bug#609094: Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Davide Viti
Well, you could apply this thought to any program; you just want use
it and sometimes you get some gcc bugs

Regards
Davide

Il giorno 18/gen/2011, alle ore 12:26, Khaled Hosny
khaledho...@eglug.org ha scritto:

 On Tue, Jan 18, 2011 at 12:07:20PM +0100, Julien Cristau wrote:
 On Thu, Jan  6, 2011 at 21:27:11 +0200, Khaled Hosny wrote:

 On Wed, Jan 05, 2011 at 08:13:28PM -0800, Daniel Schepler wrote:
 Package: fontforge
 Version: 0.0.20100501-4
 Severity: serious

 Bugs like this make wounder if it is wise for distributions to build
 fonts from source instead of just using upstream supplied font files.

 I mean, what is the benefit from building from source? I, as a font
 author, I can see many possible problems with no obvious benefit.

 If we didn't build from source, we wouldn't catch bugs like this.

 Which is good thing?

 I mean the purpose of font packages is to be used, not catch FontForge
 bugs, and there are FontForge bugs that can pass unnoticed at build
 time.

 See also:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600306

 for a non-bug that just screwed the font up. Another reason why it is
 not, yet, a good idea to build fonts on your own.

 (BTW, it is already known that there are places in the code that don't
 go well with doubles and crashes like this have been reported upstream
 already, still there are certain tasks that can't be reliably done
 without building fontforge to use doubles).

 Regards,
 Khaled

 --
 Khaled Hosny
 Arabic localiser and member of Arabeyes.org team
 Free font developer
 ___
 Pkg-fonts-devel mailing list
 pkg-fonts-de...@lists.alioth.debian.org
 http://lists.alioth.debian.org/mailman/listinfo/pkg-fonts-devel



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



Bug#609907: xaw3d: some copyright and license statements are missing

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 609907 squeeze-can-defer
tag 609907 squeeze-ignore
kthxbye

On Thu, Jan 13, 2011 at 12:33:01 -0600, Josue Abarca wrote:

 Package: xaw3d
 Version: 1.5+E-18
 Severity: serious
 Justification: Policy 12.5
 
 
 Some copyright and license statements are missing
 
Not a blocker for squeeze at this stage.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#609907: xaw3d: some copyright and license statements are missing

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 609907 squeeze-can-defer
Bug#609907: xaw3d: some copyright and license statements are missing
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 609907 squeeze-ignore
Bug #609907 [xaw3d] xaw3d: some copyright and license statements are missing
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
609907: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609907
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#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup

2011-01-18 Thread Jakub Wilk

* Julien Cristau jcris...@debian.org, 2011-01-18, 12:50:

This doesn't look good. GetMagickFileList is called in a loop and
InitializeMagick is supposed to be run only once.


That sounds like broken API for a library.  How is a library using
graphicsmagick to know whether it needs to call InitializeMagick or it's
already been done?


The library itself (libpsiconv6) is not supposed to be linked to 
GraphicsMagick. Only the command line tool (binary package psiconv) is.


So yet another possible way to fix this bug is to drop this binary 
package.


--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#609094: [Pkg-fonts-devel] Bug#609094: Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Khaled Hosny
You are comparing apples and oranges here. First fonts are not
platform dependant binaries, you need not to compile a font for a
specific architecture/OS to be able to use it. Second, gcc is far far
more stable, tested and reliable than FontForge will ever be
(FontForge's main developer openly admits that he does no QA, and no one
else is actively doing there aren't any regressions tests of any kind).

I'm genuinely asking what the perceived benefit of building fonts from
source (other than because we can) that motivates distributions to
build fonts from source. I personally can only see cons, so I'm asking
for the pros I missed.

Regards,
 Khaled

On Tue, Jan 18, 2011 at 01:11:04PM +0100, Davide Viti wrote:
 Well, you could apply this thought to any program; you just want use
 it and sometimes you get some gcc bugs
 
 Regards
 Davide
 
 Il giorno 18/gen/2011, alle ore 12:26, Khaled Hosny
 khaledho...@eglug.org ha scritto:
 
  On Tue, Jan 18, 2011 at 12:07:20PM +0100, Julien Cristau wrote:
  On Thu, Jan  6, 2011 at 21:27:11 +0200, Khaled Hosny wrote:
 
  On Wed, Jan 05, 2011 at 08:13:28PM -0800, Daniel Schepler wrote:
  Package: fontforge
  Version: 0.0.20100501-4
  Severity: serious
 
  Bugs like this make wounder if it is wise for distributions to build
  fonts from source instead of just using upstream supplied font files.
 
  I mean, what is the benefit from building from source? I, as a font
  author, I can see many possible problems with no obvious benefit.
 
  If we didn't build from source, we wouldn't catch bugs like this.
 
  Which is good thing?
 
  I mean the purpose of font packages is to be used, not catch FontForge
  bugs, and there are FontForge bugs that can pass unnoticed at build
  time.
 
  See also:
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600306
 
  for a non-bug that just screwed the font up. Another reason why it is
  not, yet, a good idea to build fonts on your own.
 
  (BTW, it is already known that there are places in the code that don't
  go well with doubles and crashes like this have been reported upstream
  already, still there are certain tasks that can't be reliably done
  without building fontforge to use doubles).
 
  Regards,
  Khaled
 
  --
  Khaled Hosny
  Arabic localiser and member of Arabeyes.org team
  Free font developer
  ___
  Pkg-fonts-devel mailing list
  pkg-fonts-de...@lists.alioth.debian.org
  http://lists.alioth.debian.org/mailman/listinfo/pkg-fonts-devel

-- 
 Khaled Hosny
 Arabic localiser and member of Arabeyes.org team
 Free font developer



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



Bug#599096: slicer: FTBFS: make[3]: *** No rule to make target `/usr/lib/libpq.so', needed by `bin/libvtkTeem.so.3.6.0'. Stop.

2011-01-18 Thread Andreas Tille
On Tue, Jan 18, 2011 at 11:31:43AM +0100, Julien Cristau wrote:
 On Tue, Jan 18, 2011 at 11:12:43 +0100, Andreas Tille wrote:
 
  Hi,
  
  I wonder why there is no answer on this a bit aged serios bug.  For me
  it smells like a missing Build-Depends from libpq-dev.  When trying to
  build the package on amd64 I noticed that libpq-dev is installed via
  implicite dependencies of other Build-Depends.  Is there any complete
  build log for powerpc arch to verify if this package is included?
  
 https://buildd.debian.org/fetch.cgi?pkg=slicerver=3.6.0~svn13936-1arch=powerpcstamp=1286207213file=log

I think my theory that libpq-dev is not installed when builded on
powerpc is true.  Could you try building the version in experimental
(3.6.2~svn15375-1) because this package mentiones libpq-dev explicitely
in its Build-Depends.  If this works we might be able to close the
bug quite simply.

Kind regards

 Andreas.

-- 
http://fam-tille.de



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



Bug#610288: thin: ActiveRecord session store doesn't work with Rails

2011-01-18 Thread Faidon Liambotis
On Tue, Jan 18, 2011 at 01:02:06PM +0100, Julien Cristau wrote:
 Tagging as candidate for removal from squeeze.  Somebody needs to get a
 fix in soon if they want this package in squeeze.

I NMUed 1.2.4-1.1 to DELAYED/2 with urgency=high to apply the following (full
debdiff is attached):

diff --git a/lib/rack/adapter/rails.rb b/lib/rack/adapter/rails.rb
index 8e5fd81..34196d8 100644
--- a/lib/rack/adapter/rails.rb
+++ b/lib/rack/adapter/rails.rb
@@ -32,9 +32,8 @@ module Rack
   end
   
   def rack_based?
-ActionController.const_defined?(:Dispatcher) 
-  (ActionController::Dispatcher.instance_methods.include?(:call) ||
-   ActionController::Dispatcher.instance_methods.include?(call))
+rails_version = ::Rails::VERSION
+rails_version::MAJOR = 2  rails_version::MINOR = 2  
rails_version::TINY = 3
   end
   
   def load_application

Regards,
Faidon
diff -u thin-1.2.4/debian/changelog thin-1.2.4/debian/changelog
--- thin-1.2.4/debian/changelog
+++ thin-1.2.4/debian/changelog
@@ -1,3 +1,13 @@
+thin (1.2.4-1.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * urgency=high because of an RC tiny bugfix.
+  * Backport a patch from v1.2.6 in Rails adapter to properly detect Rack.
+Among other things, this fixes the ActiveRecord session store (when
+configured) on Rails. (Closes: #610288)
+
+ -- Faidon Liambotis parav...@debian.org  Tue, 18 Jan 2011 14:31:07 +0200
+
 thin (1.2.4-1) unstable; urgency=low
 
   * New upstream release
diff -u thin-1.2.4/debian/patches/series thin-1.2.4/debian/patches/series
--- thin-1.2.4/debian/patches/series
+++ thin-1.2.4/debian/patches/series
@@ -4,0 +5 @@
+fix-rack-detection
only in patch2:
unchanged:
--- thin-1.2.4.orig/debian/patches/fix-rack-detection
+++ thin-1.2.4/debian/patches/fix-rack-detection
@@ -0,0 +1,16 @@
+diff --git a/lib/rack/adapter/rails.rb b/lib/rack/adapter/rails.rb
+index 8e5fd81..34196d8 100644
+--- a/lib/rack/adapter/rails.rb
 b/lib/rack/adapter/rails.rb
+@@ -32,9 +32,8 @@ module Rack
+   end
+   
+   def rack_based?
+-ActionController.const_defined?(:Dispatcher) 
+-  (ActionController::Dispatcher.instance_methods.include?(:call) ||
+-   ActionController::Dispatcher.instance_methods.include?(call))
++rails_version = ::Rails::VERSION
++rails_version::MAJOR = 2  rails_version::MINOR = 2  
rails_version::TINY = 3
+   end
+   
+   def load_application


Bug#608290: marked as done (CVE-2010-4480 CVE-2010-4481)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 14:53:15 +0100
with message-id 20110118145315.7535e...@rincewind.suse.cz
and subject line Closing for experimental as well
has caused the Debian Bug report #608290,
regarding CVE-2010-4480 CVE-2010-4481
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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi,
the following CVE (Common Vulnerabilities  Exposures) ids were
published for phpmyadmin.

CVE-2010-4480[0]:
| error.php in PhpMyAdmin 3.3.8.1, and other versions before
| 3.4.0-beta1, allows remote attackers to conduct cross-site scripting
| (XSS) attacks via a crafted BBcode tag containing @ characters, as
| demonstrated using [a@url@page].

CVE-2010-4481[1]:
| phpMyAdmin before 3.4.0-beta1 allows remote attackers to bypass
| authentication and obtain sensitive information via a direct request
| to phpinfo.php, which calls the phpinfo function.

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

For further information see:

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


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

iEYEARECAAYFAk0bdHwACgkQNxpp46476aofUACfaJ8qZk9hruUgU4JuL5t+oDW7
nVkAn2VBTXIrA3x0z85C7DUdLnRo/fkj
=pVQM
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Version: 4:3.3.9-2

Forgot to generate longer changes on upload:

phpmyadmin (4:3.3.9-2) experimental; urgency=low

  * Add php5-fpm to list of PHP SAPIs (Closes: #609808, LP: #701997).
  * Incorporate Ubuntu backported patches for security issue.

 -- Michal Čihař ni...@debian.org  Tue, 18 Jan 2011 14:44:22 +0100

phpmyadmin (4:3.3.9-1ubuntu1) natty; urgency=low

  * SECURITY UPDATE: Unvalidated input on error page (Closes: #608290,
LP: #696857)
- debian/patches/CVE-2010-4480.patch: Don't use a redirect to the
error page
- CVE-2010-4480, PMASA-2010-9
  * SECURITY UPDATE: Possible information disclosure of phpinfo (same
bug) 
- debian/patches/CVE-2010-4481.patch: Don't skip authentication for
  PMA_MINIMUM_COMMON
- CVE-2010-4481, PMASA-2010-10

 -- Micah Gersten mic...@ubuntu.com  Wed, 05 Jan 2011 23:42:17 -0600


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


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


Bug#610338: Re[2]: Bug#610338: only checked testing/unstable

2011-01-18 Thread Boris Pek
 Well, no problem:  The copyright files of the version in testing and
 experimental are the very same.  I checked iris/src/jdns,
 src/tools/crash/crash_sigsev* and third-party/qca/qca/src/botantools
 which also seem to be present in both versions.  So this bug seems
 clearly to affects both versions (also #598944 seems to claim
 otherwise).
 
 Just for the record: version 0.15~svn3463-1  available on mentors.d.n
 doesn't fix it, too.

Yes, I'll fix it in next upload.



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



Bug#609094: marked as done (fontforge: Fails to build ttf-dejavu)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 15:17:26 +
with message-id e1pfdjg-0007nr...@franck.debian.org
and subject line Bug#609094: fixed in fontforge 0.0.20100501-5
has caused the Debian Bug report #609094,
regarding fontforge: Fails to build ttf-dejavu
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.)


-- 
609094: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609094
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: fontforge
Version: 0.0.20100501-4
Severity: serious

From my pbuilder build log for ttf-dejavu:

...
scripts/generate.pe tmp/DejaVuSerif-Bold.sfd
Copyright (c) 2000-2010 by George Williams.
 Executable based on sources from 11:21 GMT 1-May-2010.
 Library based on sources from 03:43 GMT 29-Apr-2010.
On Windows many apps will have problems with this font's kerning, because 
because 2 of its glyph kern pairs cannot be mapped to unicode-BMP kern pairs
mv tmp/DejaVuSerif-Bold.sfd.ttf build/DejaVuSerif-Bold.ttf
scripts/ttpostproc.pl build/DejaVuSerif-Bold.ttf
rm -f build/DejaVuSerif-Bold.ttf~
touch -r tmp/DejaVuSerif-Bold.sfd build/DejaVuSerif-Bold.ttf
[1] src/DejaVuSerif-BoldItalic.sfd = tmp/DejaVuSerif-BoldItalic.sfd
install -d tmp/
sed s@\(Version:\? \)\(0\.[0-9]\+\.[0-9]\+\|[1-9][0-9]*\.[0-9]\+\)@\12.31@ 
src/DejaVuSerif-BoldItalic.sfd  tmp/DejaVuSerif-BoldItalic.sfd
touch -r src/DejaVuSerif-BoldItalic.sfd tmp/DejaVuSerif-BoldItalic.sfd
[3] tmp/DejaVuSerif-BoldItalic.sfd = build/DejaVuSerif-BoldItalic.ttf
install -d build/
scripts/generate.pe tmp/DejaVuSerif-BoldItalic.sfd
Copyright (c) 2000-2010 by George Williams.
 Executable based on sources from 11:21 GMT 1-May-2010.
 Library based on sources from 03:43 GMT 29-Apr-2010.

At this point the build process hangs with a fontforge process consuming 100% 
CPU.

Also, fontforge continues to run even after I've interrupted the build 
process, and I have to kill the process by hand.
-- 
Daniel Schepler


---End Message---
---BeginMessage---
Source: fontforge
Source-Version: 0.0.20100501-5

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

fontforge-nox_0.0.20100501-5_i386.deb
  to main/f/fontforge/fontforge-nox_0.0.20100501-5_i386.deb
fontforge_0.0.20100501-5.debian.tar.gz
  to main/f/fontforge/fontforge_0.0.20100501-5.debian.tar.gz
fontforge_0.0.20100501-5.dsc
  to main/f/fontforge/fontforge_0.0.20100501-5.dsc
fontforge_0.0.20100501-5_i386.deb
  to main/f/fontforge/fontforge_0.0.20100501-5_i386.deb
libfontforge-dev_0.0.20100501-5_i386.deb
  to main/f/fontforge/libfontforge-dev_0.0.20100501-5_i386.deb
libfontforge1_0.0.20100501-5_i386.deb
  to main/f/fontforge/libfontforge1_0.0.20100501-5_i386.deb
libgdraw4_0.0.20100501-5_i386.deb
  to main/f/fontforge/libgdraw4_0.0.20100501-5_i386.deb
python-fontforge_0.0.20100501-5_i386.deb
  to main/f/fontforge/python-fontforge_0.0.20100501-5_i386.deb



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

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

Debian distribution maintenance software
pp.
Hideki Yamane henr...@debian.org (supplier of updated fontforge 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: SHA512

Format: 1.8
Date: Tue, 18 Jan 2011 23:29:31 +0900
Source: fontforge
Binary: fontforge fontforge-nox libfontforge-dev libfontforge1 libgdraw4 
python-fontforge
Architecture: source i386
Version: 0.0.20100501-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description: 
 fontforge  - font editor
 fontforge-nox - font editor - non-X version
 libfontforge-dev - font editor - runtime library (development files)
 libfontforge1 - font editor - runtime library
 libgdraw4  - font editor - runtime graphics and widget library
 python-fontforge - font editor - Python bindings
Closes: 609094
Changes: 
 fontforge (0.0.20100501-5) unstable; urgency=medium
 .
   * Team upload.
   * debian/rules
 - disable --enable-double that introduced in 0.0.20100501-3
  to avoid building ttf-dejavu failure (Closes: #609094)
Checksums-Sha1: 
 a64d7979df0de13478dabb730efff2cbcafb2d25 2437 fontforge_0.0.20100501-5.dsc
 

Bug#610398: libgupnp-idg reports succes and passes invalid UPnP data instead of reporting failure

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 610398 squeeze-can-defer
tag 610398 squeeze-ignore
kthxbye

On Tue, Jan 18, 2011 at 11:32:04 +0100, Laurent Bigonville wrote:

 Package: libgupnp-1.0-3
 Version: 0.1.7-2
 Severity: serious
 Tags: patch sid squeeze
 
 Hi,
 
 The current version of gupnp-igd crashes if the gateway returns an
 invalid address/port combination.
 
 Could allow anybody make application to crash.
 
 Patch is available upstream, I will update the package soon.
 
Sounds like something that can be fixed post release.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#610398: libgupnp-idg reports succes and passes invalid UPnP data instead of reporting failure

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 610398 squeeze-can-defer
Bug#610398: libgupnp-idg reports succes and passes invalid UPnP data instead of 
reporting failure
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 610398 squeeze-ignore
Bug #610398 [libgupnp-igd-1.0-3] libgupnp-idg reports succes and passes invalid 
UPnP data instead of reporting failure
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
610398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610398
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#607903: Fails to build kernel module: missing dependency on libc6-dev

2011-01-18 Thread Julien Cristau
user release.debian@packages.debian.org
usertag 607903 squeeze-can-defer
tag 607903 squeeze-ignore
kthxbye

On Mon, Jan 17, 2011 at 22:27:05 +, Adam D. Barratt wrote:

 On Mon, 2011-01-10 at 10:00 -0800, Russ Allbery wrote:
  Julien Cristau jcris...@debian.org writes:
   On Wed, Dec 29, 2010 at 17:54:47 -0800, Russ Allbery wrote:
  
   This is fixed in Git.  I'm working with upstream to coordinate a security
   release which should be out within the next week, so will upload this fix
   in conjunction with that to avoid confusion, since the security release 
   is
   already staged in Git.  (I'll rethink this if it takes longer than that,
   but it shouldn't.)
  
   Any news or ETA for an upload?
  
  Stable update is in the security queue.  No word from upstream yet about
  when they're going to actually release the advisory.  I'll bother them
  about that today.
 
 Did you have any luck with that?
 
Tagging as not a blocker, I guess this can be fixed whenever the
security update is out.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#607903: Fails to build kernel module: missing dependency on libc6-dev

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
jcris...@debian.org).
 usertag 607903 squeeze-can-defer
Bug#607903: Fails to build kernel module: missing dependency on libc6-dev
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 607903 squeeze-ignore
Bug #607903 [openafs-modules-dkms] Fails to build kernel module: missing 
dependency on libc6-dev
Added tag(s) squeeze-ignore.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
607903: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607903
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#599096: slicer: FTBFS: make[3]: *** No rule to make target `/usr/lib/libpq.so', needed by `bin/libvtkTeem.so.3.6.0'. Stop.

2011-01-18 Thread Dominique Belhachemi
On Tue, 2011-01-18 at 13:55 +0100, Andreas Tille wrote:
 On Tue, Jan 18, 2011 at 11:31:43AM +0100, Julien Cristau wrote:
  On Tue, Jan 18, 2011 at 11:12:43 +0100, Andreas Tille wrote:
  
   Hi,
   
   I wonder why there is no answer on this a bit aged serios bug.  For me
   it smells like a missing Build-Depends from libpq-dev.  When trying to
   build the package on amd64 I noticed that libpq-dev is installed via
   implicite dependencies of other Build-Depends.  Is there any complete
   build log for powerpc arch to verify if this package is included?
   
  https://buildd.debian.org/fetch.cgi?pkg=slicerver=3.6.0~svn13936-1arch=powerpcstamp=1286207213file=log
 
 I think my theory that libpq-dev is not installed when builded on
 powerpc is true.  Could you try building the version in experimental
 (3.6.2~svn15375-1) because this package mentiones libpq-dev explicitely
 in its Build-Depends.  If this works we might be able to close the
 bug quite simply.
 
Hi Andreas,

Thanks for looking into this issue.

My ultimate goal is to remove the libpq-dev dependency completely. It is
not needed by slicer, but it gets included because of cmake's transitive
linking. I already removed a lot of those unnecessary dependencies, but
it takes some time because I have to recompile other packages as well.

I should mention that this bug is not that 'serious', because it only
effects a snapshot in experimental. I am working on it...

Thanks
Dominique





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



Bug#609094: fontforge: Fails to build ttf-dejavu

2011-01-18 Thread Hideki Yamane
On Tue, 18 Jan 2011 12:06:16 +0100
Julien Cristau jcris...@debian.org wrote:
   So, I guessed the change in 0.0.20100501-3 is somthing wrong, and dropped
   --enable-double option from debian/rules built ttf-dejavu fine.
  
   Can we drop this option?
  
 That seems like the best suggestion so far, so please NMU with this (no
 delay, and medium urgency).

 Done as fontforge/0.0.20100501-5, thanks!


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane



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



Bug#607903: Fails to build kernel module: missing dependency on libc6-dev

2011-01-18 Thread Russ Allbery
Julien Cristau jcris...@debian.org writes:
 On Mon, Jan 17, 2011 at 22:27:05 +, Adam D. Barratt wrote:
 On Mon, 2011-01-10 at 10:00 -0800, Russ Allbery wrote:

 Stable update is in the security queue.  No word from upstream yet
 about when they're going to actually release the advisory.  I'll
 bother them about that today.

 Did you have any luck with that?

 Tagging as not a blocker, I guess this can be fixed whenever the
 security update is out.

Yeah, that's the right move.  I'm really sorry about this.  Upstream is in
procedural disarray at the moment.  The security issue is actually more
severe than this other bug.  I'll make sure that both fixes get in one way
or another as soon as we can track down our security officer and actually
get the advisory out.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/



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



Bug#17545: sendfile: sendfile modifies /etc/profile which is owned by bash

2011-01-18 Thread Thijs Kinkhorst
 Meanwhile (since base-files 5.3), there is an /etc/profile.d and
 /etc/profile sources /etc/profile.d/*.sh, so this behaviour can easily
 be changed now.

Good point that this is now fixable, but it has been an issue for 12 years 
now, and squeeze is in quite a deep freeze. May I propose that this gets a 
squeeze-ignore tag?


Thijs


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


Bug#17545: sendfile: sendfile modifies /etc/profile which is owned by bash

2011-01-18 Thread Adam D. Barratt
user release.debian@packages.debian.org
usertag 17545 + squeeze-can-defer
tag 17545 + squeeze-ignore
thanks

On Tue, 2011-01-18 at 20:19 +0100, Thijs Kinkhorst wrote:
  Meanwhile (since base-files 5.3), there is an /etc/profile.d and
  /etc/profile sources /etc/profile.d/*.sh, so this behaviour can easily
  be changed now.
 
 Good point that this is now fixable, but it has been an issue for 12 years 
 now, and squeeze is in quite a deep freeze. May I propose that this gets a 
 squeeze-ignore tag?

Yep, agreed.

Regards,

Adam




-- 
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#17545: sendfile: sendfile modifies /etc/profile which is owned by bash

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 user release.debian@packages.debian.org
Setting user to release.debian@packages.debian.org (was 
a...@adam-barratt.org.uk).
 usertag 17545 + squeeze-can-defer
Bug#17545: sendfile: sendfile modifies /etc/profile which is owned by bash
There were no usertags set.
Usertags are now: squeeze-can-defer.
 tag 17545 + squeeze-ignore
Bug #17545 [sendfile] sendfile: sendfile modifies /etc/profile which is owned 
by bash
Added tag(s) squeeze-ignore.
 thanks
Stopping processing here.

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


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



Processed: downgrading

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity #606707 important
Bug #606707 [otrs2] otrs2: installation fails
Severity set to 'important' from 'serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
606707: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606707
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#610461: Trac detected an internal error: TypeError: write_err() got an unexpected keyword argument 'label'

2011-01-18 Thread Jürgen A . Erhard
Package: trac-mercurial
Version: 0.11.0.7+svnr8365-2
Severity: grave
Tags: patch

There seems to be a patch in trac's SVN, 9943.   Would be nice if
someone could apply that and roll a new package.

If anyone's even using trac from Debian anymore... sarcasm
tone=frustrated

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

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

Versions of packages trac-mercurial depends on:
ii  mercurial 1.6.4-1scalable distributed version contr
ii  python-support1.0.11 automated rebuilding support for P
ii  trac  0.11.7-4   Enhanced wiki and issue tracking s

trac-mercurial recommends no packages.

trac-mercurial suggests no packages.

-- no debconf information



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



Processed: tagging 518929

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # lenny has mercurial 1.0.1
 tags 518929 + sid squeeze
Bug #518929 {Done: John Wright j...@debian.org} [trac-mercurial] current 
trac-mercurial does not work with mercurial 1.1.2
Added tag(s) squeeze and sid.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
518929: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518929
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#609212: marked as done (spip: Cross-Site Scripting and other security issues)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 20:47:42 +
with message-id e1pfiss-0004dd...@franck.debian.org
and subject line Bug#609212: fixed in spip 2.1.1-3
has caused the Debian Bug report #609212,
regarding spip: Cross-Site Scripting and other 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.)


-- 
609212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: spip
Version: 2.1.1-2
Severity: grave
Tags: security upstream patch
Justification: user security hole

Hi,

Version 2.1.6 released Monday correct various security issues [1].
According to the changelog [2], these should be addressed by r16879 [3],
r16880 [4] and r16884 [5].

  1: 
http://archives.rezo.net/archives/spip-ann.mbox/GLOR4XJWY2W46N7PVXDF6YYOZGYF427P/
  2: 
http://core.spip.org/projects/spip/repository/entry/branches/spip-2.1/CHANGELOG.txt
  3: 
http://core.spip.org/projects/spip/repository/revisions/16879/diff/branches/spip-2.1/
  4: 
http://core.spip.org/projects/spip/repository/revisions/16880/diff/branches/spip-2.1/
  5: 
http://core.spip.org/projects/spip/repository/revisions/16884/diff/branches/spip-2.1/

Regards

David

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (600, 'unstable'), (500, 'testing'), (500, 'stable'), (150, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages spip depends on:
ii  apache2-mpm-prefork [httpd]   2.2.16-6   Apache HTTP Server - traditional n
ii  debconf [debconf-2.0] 1.5.37 Debian configuration management sy
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web
ii  lighttpd [httpd]  1.4.28-2   A fast webserver with minimal memo
ii  php-html-safe 0.10.0-1   strip down all potentially dangero
ii  php5  5.3.3-7server-side, HTML-embedded scripti
ii  php5-mysql5.3.3-7MySQL module for php5

Versions of packages spip recommends:
ii  imagemagick   8:6.6.0.4-3image manipulation programs
ii  mysql-server  5.1.49-3   MySQL database server (metapackage
ii  mysql-server-5.1 [mysql-s 5.1.49-3   MySQL database server binaries and
ii  netpbm2:10.0-12.2+b1 Graphics conversion tools between 

spip suggests no packages.

-- debconf information excluded


---End Message---
---BeginMessage---
Source: spip
Source-Version: 2.1.1-3

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

spip_2.1.1-3.diff.gz
  to main/s/spip/spip_2.1.1-3.diff.gz
spip_2.1.1-3.dsc
  to main/s/spip/spip_2.1.1-3.dsc
spip_2.1.1-3_all.deb
  to main/s/spip/spip_2.1.1-3_all.deb



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

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

Debian distribution maintenance software
pp.
Romain Beauxis to...@rastageeks.org (supplier of updated spip 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: SHA256

Format: 1.8
Date: Tue, 18 Jan 2011 14:01:35 -0600
Source: spip
Binary: spip
Architecture: source all
Version: 2.1.1-3
Distribution: unstable
Urgency: high
Maintainer: SPIP packaging team spip-maintain...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 spip   - website engine for publishing
Closes: 609212 610016
Changes: 
 spip (2.1.1-3) unstable; urgency=high
 .
   * Added security screen file (ecran_securite.php).
   Fixes all known security issues in spip.
   Closes: #609212, Closes: #610016
Checksums-Sha1: 
 66c48f6d1cd6f8a3d0d53ce5c28f556463a910a4 1392 spip_2.1.1-3.dsc
 e238ca2e7583edb2d3b2a9fbf027b97d77817c98 15686 spip_2.1.1-3.diff.gz
 bed552ee7ecd877742250aeb523822a7ced26d03 3842542 spip_2.1.1-3_all.deb
Checksums-Sha256: 
 47cd6be3ed0251e001a44a8fb3803abe64ce7572ced66f6313981945e7abd0ba 1392 
spip_2.1.1-3.dsc
 e18e6942abbcfe60909e6998641cb9ecdf0fc6f6348d9b447cfe379dccff8409 15686 
spip_2.1.1-3.diff.gz
 d86ccdfd18a4f9a4b11be5df35a2299ef84e3bfc626a3af1a9beee53f2693a17 3842542 

Bug#610016: marked as done (spip: critical security issue fixed in 2.1.8)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 20:47:42 +
with message-id e1pfiss-0004dg...@franck.debian.org
and subject line Bug#610016: fixed in spip 2.1.1-3
has caused the Debian Bug report #610016,
regarding spip: critical security issue fixed in 2.1.8
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.)


-- 
610016: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610016
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: spip
Version: 2.1.1-2
Severity: grave


A security release of SPIP has just been announced:
  
http://www.spip-contrib.net/SPIP-2-1-8-corrige-une-importante-faille-de-securite
(french)
Not much information is available about the exact issue and the changelog
is not helpful either.

I have not time at the moment to prepare a fixed package. Any contributor is 
warmly welcome
to NMU the package with no delay.

In the mean time, users can download and install a security fix called security 
screen
from there:
  
http://zone.spip.org/trac/spip-zone/browser/_core_/securite/ecran_securite.php?format=txt
and documented there:
  http://www.spip.net/en_article4200.html


Romain

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

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

Versions of packages spip depends on:
pn  apache2 | httpd   none (no description available)
ii  debconf [debconf-2.0] 1.5.37 Debian configuration management sy
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web
ii  php-html-safe 0.10.0-1   strip down all potentially dangero
ii  php5  5.3.3-7server-side, HTML-embedded scripti
ii  php5-mysql5.3.3-7MySQL module for php5

Versions of packages spip recommends:
ii  imagemagick   8:6.6.0.4-3image manipulation programs
ii  mysql-server  5.1.49-3   MySQL database server (metapackage
ii  mysql-server-5.1 [mysql-s 5.1.49-3   MySQL database server binaries and
ii  netpbm2:10.0-12.2+b1 Graphics conversion tools between 

spip suggests no packages.


---End Message---
---BeginMessage---
Source: spip
Source-Version: 2.1.1-3

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

spip_2.1.1-3.diff.gz
  to main/s/spip/spip_2.1.1-3.diff.gz
spip_2.1.1-3.dsc
  to main/s/spip/spip_2.1.1-3.dsc
spip_2.1.1-3_all.deb
  to main/s/spip/spip_2.1.1-3_all.deb



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

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

Debian distribution maintenance software
pp.
Romain Beauxis to...@rastageeks.org (supplier of updated spip 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: SHA256

Format: 1.8
Date: Tue, 18 Jan 2011 14:01:35 -0600
Source: spip
Binary: spip
Architecture: source all
Version: 2.1.1-3
Distribution: unstable
Urgency: high
Maintainer: SPIP packaging team spip-maintain...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 spip   - website engine for publishing
Closes: 609212 610016
Changes: 
 spip (2.1.1-3) unstable; urgency=high
 .
   * Added security screen file (ecran_securite.php).
   Fixes all known security issues in spip.
   Closes: #609212, Closes: #610016
Checksums-Sha1: 
 66c48f6d1cd6f8a3d0d53ce5c28f556463a910a4 1392 spip_2.1.1-3.dsc
 e238ca2e7583edb2d3b2a9fbf027b97d77817c98 15686 spip_2.1.1-3.diff.gz
 bed552ee7ecd877742250aeb523822a7ced26d03 3842542 spip_2.1.1-3_all.deb
Checksums-Sha256: 
 47cd6be3ed0251e001a44a8fb3803abe64ce7572ced66f6313981945e7abd0ba 1392 
spip_2.1.1-3.dsc
 e18e6942abbcfe60909e6998641cb9ecdf0fc6f6348d9b447cfe379dccff8409 15686 
spip_2.1.1-3.diff.gz
 d86ccdfd18a4f9a4b11be5df35a2299ef84e3bfc626a3af1a9beee53f2693a17 3842542 
spip_2.1.1-3_all.deb
Files: 
 700732bb29fc81034db159db4bff5a22 1392 web extra spip_2.1.1-3.dsc
 82999d9e7318ff1212e84e6a1fb62129 15686 web extra spip_2.1.1-3.diff.gz
 01040046f7576dd2b336bd967961ab03 3842542 web extra spip_2.1.1-3_all.deb

-BEGIN 

Processed: limit package to pdftk, tagging 610394

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 limit package pdftk
Limiting to bugs with field 'package' containing at least one of 'pdftk'
Limit currently set to 'package':'pdftk'

 tags 610394 + pending confirmed
Bug #610394 [pdftk] Missing dependency on libbcprov-java
Added tag(s) confirmed and pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
610394: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610394
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#610161: marked as done (geoip: FTBFS: cp: cannot stat `debian/tmp/debian/tmp/geoip-generator': No such file or directory)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 21:17:15 +
with message-id e1pfivt-00076m...@franck.debian.org
and subject line Bug#610161: fixed in geoip 1.4.7~beta10+dfsg-3
has caused the Debian Bug report #610161,
regarding geoip: FTBFS: cp: cannot stat 
`debian/tmp/debian/tmp/geoip-generator': No such file or directory
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.)


-- 
610161: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610161
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: geoip
Version: 1.4.7~beta10+dfsg-2
Severity: serious
Justification: FTBFS

Hi,

your package no longer builds:
| dh_install -pgeoip-bin  
| cp: cannot stat `debian/tmp/debian/tmp/geoip-generator': No such file or 
directory
| dh_install: cp -a debian/tmp/debian/tmp/geoip-generator 
debian/geoip-bin/usr/lib/geoip// returned exit code 1
| make: *** [binary-install/geoip-bin] Error 2

Wild guess, -b (on your machine) vs. -B (on the buildds).

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

KiBi.


---End Message---
---BeginMessage---
Source: geoip
Source-Version: 1.4.7~beta10+dfsg-3

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

geoip-bin_1.4.7~beta10+dfsg-3_amd64.deb
  to main/g/geoip/geoip-bin_1.4.7~beta10+dfsg-3_amd64.deb
geoip_1.4.7~beta10+dfsg-3.debian.tar.gz
  to main/g/geoip/geoip_1.4.7~beta10+dfsg-3.debian.tar.gz
geoip_1.4.7~beta10+dfsg-3.dsc
  to main/g/geoip/geoip_1.4.7~beta10+dfsg-3.dsc
libgeoip-dev_1.4.7~beta10+dfsg-3_amd64.deb
  to main/g/geoip/libgeoip-dev_1.4.7~beta10+dfsg-3_amd64.deb
libgeoip1_1.4.7~beta10+dfsg-3_amd64.deb
  to main/g/geoip/libgeoip1_1.4.7~beta10+dfsg-3_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 610...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Patrick Matthäi pmatth...@debian.org (supplier of updated geoip 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: SHA256

Format: 1.8
Date: Tue, 18 Jan 2011 21:38:37 +0100
Source: geoip
Binary: libgeoip1 libgeoip-dev geoip-bin
Architecture: source amd64
Version: 1.4.7~beta10+dfsg-3
Distribution: experimental
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 geoip-bin  - IP lookup command line tools that use the GeoIP library
 libgeoip-dev - Development files for the GeoIP library
 libgeoip1  - A non-DNS IP-to-country resolver library
Closes: 610161
Changes: 
 geoip (1.4.7~beta10+dfsg-3) experimental; urgency=low
 .
   * Drop geoip-database package, it will be split to an extra source package.
 Closes: #610161
Checksums-Sha1: 
 1d3a88fabd6a4162ef938dc799fdb52fb1361918 1793 geoip_1.4.7~beta10+dfsg-3.dsc
 97440920366229989f273b54f2e310ae434898d1 17797 
geoip_1.4.7~beta10+dfsg-3.debian.tar.gz
 465247dd73e190f1d8eda8aecdc51e0135270fe0 123888 
libgeoip1_1.4.7~beta10+dfsg-3_amd64.deb
 3dcffccdfb119cd7d8b9b1cdba795b5db6949a42 182422 
libgeoip-dev_1.4.7~beta10+dfsg-3_amd64.deb
 fdde89885b3b7c402d488ab84679782406e797af 63190 
geoip-bin_1.4.7~beta10+dfsg-3_amd64.deb
Checksums-Sha256: 
 87859a7ca70469e8fd1b9d4749671ea0ab2020d3dbe262ddacd25199d4456267 1793 
geoip_1.4.7~beta10+dfsg-3.dsc
 77dc7f18c82c79ccce8882dc2a3e6def80b24330aa4451329fa32dc93764e4c9 17797 
geoip_1.4.7~beta10+dfsg-3.debian.tar.gz
 ba9b65aeed3e25f2202f70829aa1391e8dc20489646b04c0697ff64e336ce109 123888 
libgeoip1_1.4.7~beta10+dfsg-3_amd64.deb
 bcbdb254a46aa33dd6ece3d9e83d1fc9beacf14a98e47f538513efe7c118f193 182422 
libgeoip-dev_1.4.7~beta10+dfsg-3_amd64.deb
 ab1882e952a2e3ed753f5eb72384ddceea28bfbe22cffe25cb64abbe6106 63190 
geoip-bin_1.4.7~beta10+dfsg-3_amd64.deb
Files: 
 514076b4c17d95f6132a39562909f00d 1793 net optional 
geoip_1.4.7~beta10+dfsg-3.dsc
 729a95f9cd5ba6c25e6450042f563a33 17797 net optional 
geoip_1.4.7~beta10+dfsg-3.debian.tar.gz
 8c8a88d70ecb04ec3dd66423a2f6233c 123888 libs optional 
libgeoip1_1.4.7~beta10+dfsg-3_amd64.deb
 c65e638d08ccc68131c230583df7d000 182422 libdevel optional 
libgeoip-dev_1.4.7~beta10+dfsg-3_amd64.deb
 262886ea57c6243cc7b7878128a9efe3 63190 net optional 
geoip-bin_1.4.7~beta10+dfsg-3_amd64.deb

-BEGIN PGP 

Bug#610338: Re[2]: Bug#610338: only checked testing/unstable

2011-01-18 Thread Boris Pek
 So this bug seems clearly to affects both versions (also #598944 seems to 
 claim otherwise).

I need explain it (bug #598944).

It was another problem. Our sponsor made remark that not all source files in 
the program contain license disclaimer and also some another remarks.

So we contacted with developers and showed them list of problematical files. 
When they have solved our issue sponsor uploaded fixed package.

There are no non-free icons in this package. But copyrights info is also needed 
to be updated as I see now.



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



Processed: severity of 610473 is serious

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # As per Debian Policy 3.5, squeeze RC policy 2
 severity 610473 serious
Bug #610473 [rabbitvcs-nautilus] rabbitvcs-nautilus: Missing dependency to 
python-gnome2
Severity set to 'serious' from 'normal'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
610473: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610473
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#610398: marked as done (libgupnp-idg reports succes and passes invalid UPnP data instead of reporting failure)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 22:49:10 +
with message-id e1pfkmq-jn...@franck.debian.org
and subject line Bug#610398: fixed in gupnp-igd 0.1.7-3
has caused the Debian Bug report #610398,
regarding libgupnp-idg reports succes and passes invalid UPnP data instead of 
reporting failure
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.)


-- 
610398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libgupnp-1.0-3
Version: 0.1.7-2
Severity: serious
Tags: patch sid squeeze

Hi,

The current version of gupnp-igd crashes if the gateway returns an
invalid address/port combination.

Could allow anybody make application to crash.

Patch is available upstream, I will update the package soon.

Laurent Bigonville


---End Message---
---BeginMessage---
Source: gupnp-igd
Source-Version: 0.1.7-3

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

gupnp-igd_0.1.7-3.debian.tar.gz
  to main/g/gupnp-igd/gupnp-igd_0.1.7-3.debian.tar.gz
gupnp-igd_0.1.7-3.dsc
  to main/g/gupnp-igd/gupnp-igd_0.1.7-3.dsc
libgupnp-igd-1.0-3_0.1.7-3_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-3_0.1.7-3_amd64.deb
libgupnp-igd-1.0-dbg_0.1.7-3_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dbg_0.1.7-3_amd64.deb
libgupnp-igd-1.0-dev_0.1.7-3_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dev_0.1.7-3_amd64.deb
libgupnp-igd-1.0-doc_0.1.7-3_all.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-doc_0.1.7-3_all.deb
python-gupnp-igd_0.1.7-3_amd64.deb
  to main/g/gupnp-igd/python-gupnp-igd_0.1.7-3_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 610...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Laurent Bigonville bi...@debian.org (supplier of updated gupnp-igd 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: SHA256

Format: 1.8
Date: Tue, 18 Jan 2011 23:40:27 +0100
Source: gupnp-igd
Binary: libgupnp-igd-1.0-3 libgupnp-igd-1.0-dev libgupnp-igd-1.0-dbg 
libgupnp-igd-1.0-doc python-gupnp-igd
Architecture: source all amd64
Version: 0.1.7-3
Distribution: unstable
Urgency: low
Maintainer: Laurent Bigonville bi...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 libgupnp-igd-1.0-3 - library to handle UPnP IGD port mapping
 libgupnp-igd-1.0-dbg - library to handle UPnP IGD port mapping - debug symbols
 libgupnp-igd-1.0-dev - library to handle UPnP IGD port mapping - development 
files
 libgupnp-igd-1.0-doc - library to handle UPnP IGD port mapping - documentation
 python-gupnp-igd - Python binding for the UPnP IGD port mapping library
Closes: 610398
Changes: 
 gupnp-igd (0.1.7-3) unstable; urgency=low
 .
   * debian/watch: Fix URL pattern
   * debian/control:
 - Bump Standards-Version to 3.9.1 (no further changes)
 - Versionize python-all-dev build-dependency
   * d/p/0001-fix_crash_invalid_address.patch: Fix crash if gateway returns
 invalid address (Closes: #610398 LP: #704172)
Checksums-Sha1: 
 9dab0bf37de3b56d956aacbe8b0a9cd809e659a7 1704 gupnp-igd_0.1.7-3.dsc
 8f6deb30f81421704cdb628264e28373842beefc 3900 gupnp-igd_0.1.7-3.debian.tar.gz
 cad8da647859e06f1bb2182f9aaca1cb71059db6 18926 
libgupnp-igd-1.0-doc_0.1.7-3_all.deb
 d575b8905bcc3ce0f58d0c192cf959f063937278 23480 
libgupnp-igd-1.0-3_0.1.7-3_amd64.deb
 7fceef52971020ab0aea9d36aa90d75731f4dd64 25538 
libgupnp-igd-1.0-dev_0.1.7-3_amd64.deb
 e5c1ec0d8245eb75c21673f1d87231233d916dc5 45012 
libgupnp-igd-1.0-dbg_0.1.7-3_amd64.deb
 4654e8a60007726f149e284c897c5b3515a74a10 15108 
python-gupnp-igd_0.1.7-3_amd64.deb
Checksums-Sha256: 
 522977a8125989905f67de11581703b5a91b4530c8e0d61d40aaab620f219080 1704 
gupnp-igd_0.1.7-3.dsc
 2c1f42747acf0a66bf878ebf3abe08d004d3e99217e1f55ceeebbf864e5c08b8 3900 
gupnp-igd_0.1.7-3.debian.tar.gz
 2e70259e207eca2a7368d009985d850347557911a4a2aab67d0fcd204b3e4952 18926 
libgupnp-igd-1.0-doc_0.1.7-3_all.deb
 cf7cef2add81b330f31ccfb10c4f50d786f643d22f97541d789a876dbe8251e4 23480 
libgupnp-igd-1.0-3_0.1.7-3_amd64.deb
 c2f8165862164f9f77e928bee43508dbceafea1f6791f27de11e8c514a2a8128 25538 
libgupnp-igd-1.0-dev_0.1.7-3_amd64.deb
 

Bug#525483: clamav-daemon: clamd still crahes (sporadically) on my installation (0.96.5+dfsg-1)

2011-01-18 Thread Michael Tautschnig
Hi,

 Package: clamav-daemon
 Version: 0.96.5+dfsg-1~volatile1
 Followup-For: Bug #525483
 
 
 I got the following segfault in /var/log/messages:
 Jan  8 23:18:41 mail2 kernel: [549287.869220] clamd[513]: segfault at 
 6a88f245 ip b6e871c1 sp 
 bfd9e594 error 4 in libclamav.so.6.1.7[b6dc6000+90f000]
 
[...]
 
 Platform information
 
 uname: Linux 2.6.26-2-xen-686 #1 SMP Thu Nov 25 02:32:31 UTC 2010 i686
 OS: linux-gnu, ARCH: i386, CPU: i486
 zlib version: 1.2.3.3 (1.2.3.3), compile flags: 55
 Triple: i386-pc-linux-gnu
 CPU: k8-sse3, Little-endian
 platform id: 0x0a113a3a0404030201040302
 

I'm wondering whether this is rather a problem with Bytecode (cf.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609759) not properly working on
the k8 CPU, even though most previous reports in this regard were about problems
with the k6 CPU.

Given the hostname in the above logs I guess this is a mail relay; do you think
you could figure out which file was scanned at the time of the crash? If so, is
the crash reproducible?

Best regards,
Michael



pgpwtietVCgdf.pgp
Description: PGP signature


Bug#610394: marked as done (Missing dependency on libbcprov-java)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Jan 2011 23:19:02 +
with message-id e1pfkpk-0003zr...@franck.debian.org
and subject line Bug#610394: fixed in pdftk 1.44-2
has caused the Debian Bug report #610394,
regarding Missing dependency on libbcprov-java
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.)


-- 
610394: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610394
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pdftk
Version: 1.44-1
Severity: serious
Tags: experimental

Hello:

I installed experimental pdftk version. When I tried to run it I got this
error:

WARNING: Error loading security provider
org.bouncycastle.jce.provider.BouncyCastleProvider:
java.lang.ClassNotFoundException:
org.bouncycastle.jce.provider.BouncyCastleProvider not found in
gnu.gcj.runtime.SystemClassLoader{urls=[file:./],
parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}

The problem was solved once I installed libbcprov-java, so I suggest package
depends on it as well.

Thanks for your work on this package, which I've seen is pretty difficult to
maintain.



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (80, 'unstable'), (10, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages pdftk depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared 
lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libgcj-bc 4.4.5-1Link time only library for use 
wit
ii  libgcj10  4.4.5-2Java runtime library for use with 
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3

pdftk recommends no packages.

Versions of packages pdftk suggests:
ii  poppler-utils [xpdf-utils]0.12.4-1.2 PDF utilitites (based on 
libpopple

-- no debconf information


---End Message---
---BeginMessage---
Source: pdftk
Source-Version: 1.44-2

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

pdftk_1.44-2.debian.tar.gz
  to main/p/pdftk/pdftk_1.44-2.debian.tar.gz
pdftk_1.44-2.dsc
  to main/p/pdftk/pdftk_1.44-2.dsc
pdftk_1.44-2_i386.deb
  to main/p/pdftk/pdftk_1.44-2_i386.deb



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

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

Debian distribution maintenance software
pp.
Johann Felix Soden joh...@gmx.de (supplier of updated pdftk 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: SHA512

Format: 1.8
Date: Tue, 18 Jan 2011 23:29:34 +0100
Source: pdftk
Binary: pdftk
Architecture: source i386
Version: 1.44-2
Distribution: experimental
Urgency: low
Maintainer: Johann Felix Soden joh...@gmx.de
Changed-By: Johann Felix Soden joh...@gmx.de
Description: 
 pdftk  - tool for manipulating PDF documents
Closes: 606906 610394
Changes: 
 pdftk (1.44-2) experimental; urgency=low
 .
   * debian/control:
 - Re-add dependency on libbcprov-java. (Closes: #610394)
 - Build-depend on gcj-jdk instead of transitional gcj. (Closes: #606906)
Checksums-Sha1: 
 e4ff0b1461b9e755d5c0a0145456f9dd555b56d8 1830 pdftk_1.44-2.dsc
 0206f140ff40fc0f776cc9fa68064bd203cf5572 8394 pdftk_1.44-2.debian.tar.gz
 ac0ebd308cd74dc4bf3ab07ec0ce9a0c47143ae4 955812 pdftk_1.44-2_i386.deb
Checksums-Sha256: 
 9ea791cf510d2a62472de22b849033914a460e88386e46752a8c7975a1ae1c48 1830 
pdftk_1.44-2.dsc
 ab62514eb97561b6669bda3319d8da0d05a0f846b6339755c0f7ba1293f42189 8394 
pdftk_1.44-2.debian.tar.gz
 c4cee769f27c7a7865adecf326029f63f473e240a4e388e0d25f8ffe08069925 955812 
pdftk_1.44-2_i386.deb
Files: 
 09ded4c2b427287d235858c8794758c7 1830 text optional pdftk_1.44-2.dsc
 9981116fe75ce823f5b4a4695bbcd5bb 8394 text optional pdftk_1.44-2.debian.tar.gz
 2447b7d4e717d8204c1ca5fa04fcb161 955812 text optional pdftk_1.44-2_i386.deb

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

iQIcBAEBCgAGBQJNNh49AAoJEINZGTv9ywnEvT4QAKFG+Fx2GAQ04M1t7E6o5xm6
YxC28rzcI6NyRD7UuMyP/awgR0j212stXGziMs4eOw2onqE+cKFw0Mm1BBmD9GMj

Bug#610487: asterisk: AST-2011-001: buffer overflow in caller ID URI encoding

2011-01-18 Thread Tzafrir Cohen
Package: asterisk
Version: 1:1.6.2.9-2
Justification: user security hole
Severity: grave
Tags: security patch upstream

*** Please type your report below this line ***
The Asterisk project has reported security advisory ASA-2011-011
http://downloads.asterisk.org/pub/security/AST-2011-001.html
(No CVE ATM)

When forming an outgoing SIP request while in pedantic mode, a stack
buffer can be made to overflow if supplied with carefully crafted caller
ID information. 

Caller ID information may be provided by remote users. The advisory details
potential workaround in the dialplan, but applying it varies greatly on
different configurations.

Issue applies both to the Lenny and Squeeze packages. For patches:
http://svn.debian.org/viewsvn/pkg-voip?view=revrevision=8708  (Squeeze)

http://svn.debian.org/viewsvn/pkg-voip?view=revrevision=8711  (Lenny)

-- 
Tzafrir Cohen | tzaf...@jabber.org | VIM is
http://tzafrir.org.il || a Mutt's
tzaf...@cohens.org.il ||  best
tzaf...@debian.org|| friend



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



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

2011-01-18 Thread Axel Beckert
Hi,

Vladimir 'φ-coder/phcoder' Serbinenko wrote:
  grub-ieee1275 is not the default bootloader on any architecture afaik
  (and not on sparc in any case).  I don't think this bug should be a
  blocker for squeeze, tagging accordingly.

 We already have the fix. Why not just apply it and be over with it?

Today I found time to test the updated Debian package in experimental.
I used the just uploaded 1.99~rc1-1.

I unfortunately have to report that it does _not_ suffice to get
grub-ieee1275 to work -- neither on my UltraSparc 10 nor on the one of
a friend. (IIRC he had already contact with Vladimir because of this,
but the details weren't clear at that time.)

While the bugs reported in here indeed seem to be fixed, grub now runs
into just the next problem: It runs out of memory (even though my
UltraSparc has 1 GB of RAM) and then causes (probably as follow-up
error) an illegal instruction.

But also Vladimir's manual grub installation in /usr/local has that
problem if I use the grub.cfg generated from the Debian package. Only
if I use the hinting feature (which is only in trunk IIRC), then it
does not run into this out of memory and boots the system.

I'll write a proper and separate bug report for the grub-ieee1275
package in experimental, soon, too. Just wanted to update this bug on
my findings.

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



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



Processed: unarchiving 587842, forcibly merging 587842 604196, fixed 604196 in 1:2.3.0~beta1-1

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 587842
Bug #587842 {Done: Mark Purcell m...@debian.org} [krusader] Can stop krusader 
neither by closing its window nor by Ctrl+q
Unarchived Bug 587842
 forcemerge 587842 604196
Bug#587842: Can stop krusader neither by closing its window nor by Ctrl+q
Bug#604196: Can stop krusader neither by closing it's window nor by Ctrl+q 
(again)
Forcibly Merged 587842 604196.

 fixed 604196 1:2.3.0~beta1-1
Bug #604196 {Done: Mark Purcell m...@debian.org} [krusader] Can stop krusader 
neither by closing it's window nor by Ctrl+q (again)
Bug #587842 {Done: Mark Purcell m...@debian.org} [krusader] Can stop krusader 
neither by closing its window nor by Ctrl+q
Bug Marked as fixed in versions krusader/1:2.3.0~beta1-1.
Bug Marked as fixed in versions krusader/1:2.3.0~beta1-1.
 thanks
Stopping processing here.

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


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



Processed: reopening 587842, notfixed 587842 in krusader/1:2.2.0~beta1-2 ...

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 587842
Bug #587842 {Done: Mark Purcell m...@debian.org} [krusader] Can stop krusader 
neither by closing its window nor by Ctrl+q
Bug #604196 {Done: Mark Purcell m...@debian.org} [krusader] Can stop krusader 
neither by closing it's window nor by Ctrl+q (again)
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
 notfixed 587842 krusader/1:2.2.0~beta1-2
Bug #587842 [krusader] Can stop krusader neither by closing its window nor by 
Ctrl+q
Bug #604196 [krusader] Can stop krusader neither by closing it's window nor by 
Ctrl+q (again)
Ignoring request to alter fixed versions of bug #587842 to the same values 
previously set
Ignoring request to alter fixed versions of bug #604196 to the same values 
previously set
 fixed 587842 krusader/1:2.3.0~beta1-1
Bug #587842 [krusader] Can stop krusader neither by closing its window nor by 
Ctrl+q
Bug #604196 [krusader] Can stop krusader neither by closing it's window nor by 
Ctrl+q (again)
Bug Marked as fixed in versions krusader/1:2.3.0~beta1-1.
Bug Marked as fixed in versions krusader/1:2.3.0~beta1-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
587842: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587842
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#560823: grub-ieee1275: Error Memory Address not Alligned when trying to boot any menu entry

2011-01-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko

 While the bugs reported in here indeed seem to be fixed, grub now runs
 into just the next problem: It runs out of memory (even though my
 UltraSparc has 1 GB of RAM)
RISC jumps have a limited range. Since GRUB uses heap to load modules,
it uses only a minor part of memory
  and then causes (probably as follow-up
 error) an illegal instruction.

 But also Vladimir's manual grub installation in /usr/local has that
 problem if I use the grub.cfg generated from the Debian package. Only
 if I use the hinting feature 
hints are only a performance improvement. It wasn't intended as a bug
fix for anything.
I thought that Out-of-memory problem was caused by at attempt to init
graphical subsystem. Are you sure that hints is the only difference? In
particular check following points:
- path to unicode.pf2
- absence of insmod ieee1275_fb
- used terminal_output

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




signature.asc
Description: OpenPGP digital signature


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

2011-01-18 Thread Axel Beckert
Hi Vladimir,

thanks for your prompt appraisal of the problems.

Vladimir 'φ-coder/phcoder' Serbinenko wrote:
 I thought that Out-of-memory problem was caused by at attempt to init
 graphical subsystem. Are you sure that hints is the only difference? In
 particular check following points:
 - path to unicode.pf2
 - absence of insmod ieee1275_fb
 - used terminal_output

Will check and post the answer (including a fullquote of your mail) to
the according bugreport at http://bugs.debian.org/610490

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



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



Bug#598463:

2011-01-18 Thread Jerry Chen
Hi all,

Apache Libcloud 0.4.2 is now available for public consumption:
- http://incubator.apache.org/libcloud/downloads.html
- http://pypi.python.org/pypi/apache-libcloud/0.4.2

This release begins to address the SSL issue as mentioned previously.

Thanks,
Jerry



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



Bug#610370: marked as done (python3.2-dev: trying to overwrite '/usr/bin/python3.2mu-config', which is also in package python3.2 3.2~b2-1)

2011-01-18 Thread Debian Bug Tracking System
Your message dated Wed, 19 Jan 2011 01:47:30 +
with message-id e1pfn90-0007gd...@franck.debian.org
and subject line Bug#610370: fixed in python3.2 3.2~rc1-2
has caused the Debian Bug report #610370,
regarding python3.2-dev: trying to overwrite '/usr/bin/python3.2mu-config', 
which is also in package python3.2 3.2~b2-1
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.)


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

Package: python3.2-dev
Version: 3.2~rc1-1
Severity: serious

There's a file conflict between python3.2-dev 3.2~rc1-1 and python3.2 3.2~b2-1:

| Preparing to replace python3.2-dev 3.2~b2-1 (using 
.../python3.2-dev_3.2~rc1-1_i386.deb) ...
| Unpacking replacement python3.2-dev ...
| dpkg: error processing 
/var/cache/apt/archives/python3.2-dev_3.2~rc1-1_i386.deb (--unpack):
|  trying to overwrite '/usr/bin/python3.2mu-config', which is also in package 
python3.2 3.2~b2-1
| configured to not write apport reports
|   dpkg-deb: subprocess paste killed by 
signal (Broken pipe)

--
Jakub Wilk


---End Message---
---BeginMessage---
Source: python3.2
Source-Version: 3.2~rc1-2

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

idle-python3.2_3.2~rc1-2_all.deb
  to main/p/python3.2/idle-python3.2_3.2~rc1-2_all.deb
libpython3.2_3.2~rc1-2_amd64.deb
  to main/p/python3.2/libpython3.2_3.2~rc1-2_amd64.deb
python3.2-dbg_3.2~rc1-2_amd64.deb
  to main/p/python3.2/python3.2-dbg_3.2~rc1-2_amd64.deb
python3.2-dev_3.2~rc1-2_amd64.deb
  to main/p/python3.2/python3.2-dev_3.2~rc1-2_amd64.deb
python3.2-doc_3.2~rc1-2_all.deb
  to main/p/python3.2/python3.2-doc_3.2~rc1-2_all.deb
python3.2-examples_3.2~rc1-2_all.deb
  to main/p/python3.2/python3.2-examples_3.2~rc1-2_all.deb
python3.2-minimal_3.2~rc1-2_amd64.deb
  to main/p/python3.2/python3.2-minimal_3.2~rc1-2_amd64.deb
python3.2_3.2~rc1-2.diff.gz
  to main/p/python3.2/python3.2_3.2~rc1-2.diff.gz
python3.2_3.2~rc1-2.dsc
  to main/p/python3.2/python3.2_3.2~rc1-2.dsc
python3.2_3.2~rc1-2_amd64.deb
  to main/p/python3.2/python3.2_3.2~rc1-2_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 610...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose d...@debian.org (supplier of updated python3.2 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: Wed, 19 Jan 2011 02:21:19 +0100
Source: python3.2
Binary: python3.2 python3.2-minimal libpython3.2 python3.2-examples 
python3.2-dev idle-python3.2 python3.2-doc python3.2-dbg
Architecture: source all amd64
Version: 3.2~rc1-2
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 idle-python3.2 - An IDE for Python (v3.2) using Tkinter
 libpython3.2 - Shared Python runtime library (version 3.2)
 python3.2  - An interactive high-level object-oriented language (version 3.2)
 python3.2-dbg - Debug Build of the Python Interpreter (version 3.2)
 python3.2-dev - Header files and a static library for Python (v3.2)
 python3.2-doc - Documentation for the high-level object-oriented language 
Python
 python3.2-examples - Examples for the Python language (v3.2)
 python3.2-minimal - A minimal subset of the Python language (version 3.2)
Closes: 610370
Changes: 
 python3.2 (3.2~rc1-2) experimental; urgency=low
 .
   * Fix upgrade of the python3.2-dev package. Closes: #610370.
Checksums-Sha1: 
 02354370a854aa0a9d1269c7ecf7d4be9294c10f 1742 python3.2_3.2~rc1-2.dsc
 6e9b7bc337e9da8a9fbc60058085af39a7ae141d 247894 python3.2_3.2~rc1-2.diff.gz
 6aa11df06d0c2c2128e821820c0beea0f3d20aca 381976 
python3.2-examples_3.2~rc1-2_all.deb
 3d965d5c41e53f4c4d1cf4488ddb5538c1dce360 73748 idle-python3.2_3.2~rc1-2_all.deb
 ee84ef23ca87dc41c7bd458b13b918df29556e22 5785094 
python3.2-doc_3.2~rc1-2_all.deb
 dee84175d5b2fe51e9212272ffcb49e4fdc84411 4040488 python3.2_3.2~rc1-2_amd64.deb
 b0acf3708b2493d2884e9389c6692a579bcc36e7 1833304 
python3.2-minimal_3.2~rc1-2_amd64.deb
 f52fa24fc9690968e553896ceb5a6c46da84ec59 1311974 

Processed: your mail

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 610124 grave
Bug #610124 [calendarserver] Upgrading calendarserver causes loss of data when 
using NSS directory backend
Severity set to 'grave' from 'important'


End of message, stopping processing here.

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


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



Processed: your mail

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 610124 grave
Bug #610124 [calendarserver] Upgrading calendarserver causes loss of data when 
using NSS directory backend
Ignoring request to change severity of Bug 610124 to the same value.
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
610124: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610124
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#606340: This bug not completely fixed in 2:2.13.0-5

2011-01-18 Thread Alan W. Irwin

I confirm the issue still exists for
xserver-xorg-video-intel/2:2.13.0-5 for at least one Intel-based
system (32-bit 945GME) but also does not exist for another Intel-based
system (64-bit g33).  Both systems had the same monitor (ASUS VH198T).
The 945GME was connected with DVI while the g33 was connected with
VGA.  In both cases the other alternative connection (VGA for the
945GME or DVI for the g33) is not available.

For the 945GME the tail of the server log was
(II) Primary Device is: PCI 00@00:02:0
(EE) No devices detected.

Fatal server error:
no screens found

If I downgrade the 945GME system to 2:2.13.0-2, that error message
disappears, and X on that system works normally.

More hardware details for the 945GME that fails with 2:2.13.0-5
but which succeeds with 2:2.13.0-2:

Linux meadowlark 2.6.32-5-686 #1 SMP Wed Jan 12 04:01:41 UTC 2011 i686
GNU/Linux

00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME
Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME,
943/940GML Express Integrated Graphics Controller (rev 03)

(This is the 32-bit ASUS Eee box [b202 version] with dvi connection to a
ASUS VH198T LCD monitor.  The chipset for this box is identified
everywhere but the Linux space as the 945GSE chipset).

More hardware details for the g33 that succeeds with the 2:2.13.0-5
version of the driver:

Linux raven 2.6.32-5-amd64 #1 SMP Fri Dec 10 15:35:08 UTC 2010 x86_64
GNU/Linux

00:02.0 VGA compatible controller: Intel Corporation 82G33/G31 Express
Integrated Graphics Controller (rev 02)
00:02.1 Display controller: Intel Corporation 82G33/G31 Express
Integrated Graphics Controller (rev 02)

(This is a 64-bit generic white box desktop PC built about 3 years ago with
ASUS P5K-V motherboard with VGA connection to a ASUS VH198T LCD
monitor.)

Both systems are running Debian testing.

When I first got the failure on the 945GME (during the initial Debian
testing install for the system), I compared the log in detail with the
g33 log.  The logs were essentially identical until the above error
message occurred for the 945GME.  There were no obvious error messages
with similar time stamp in any other file in /var/log.  So it seemed
pretty hopeless until I discovered the workaround suggested in this
thread to downgrade (from 2:2.13.0-5 in my case) to 2:2.13.0-2.

For what it is worth, the guy who sold me this used 945GME never had
issues with it on Ubuntu, but I don't know what version of Ubuntu was
the last he tried, or whether this issue (whatever it is) was in his
future if he had hung on to the box and done further Ubuntu upgrades
as time progressed.

I would be happy to send any further data from any of the 945GME
(using 2:2.13.0-2 or 2:2.13.0-5) or g33 (using 2:2.13.0-5) systems to
help track down what the problem is.  I am very happy that the
workaround of downgrading to 2:2.13.0-2 makes it possible to use the
945GME system, but obviously that workaround is not a permanent
solution.

Alan
__
Alan W. Irwin

Astronomical research affiliation with Department of Physics and Astronomy,
University of Victoria (astrowww.phys.uvic.ca).

Programming affiliations with the FreeEOS equation-of-state implementation
for stellar interiors (freeeos.sf.net); PLplot scientific plotting software
package (plplot.org); the libLASi project (unifont.org/lasi); the Loads of
Linux Links project (loll.sf.net); and the Linux Brochure Project
(lbproject.sf.net).
__

Linux-powered Science
__



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



Bug#610498: installation-reports: D510MO-mainboard - where to find missing rtl81168d-1.fw?

2011-01-18 Thread Janusz S. Bień
Package: installation-reports
Severity: grave

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/squeeze_di_rc1/i386/iso-cd/debian-sq-di-rc1-i386-netinst.iso

When running the installer on a D510MO-mainboard computer the non-free
driver rtl81168d-1.fw is requested.  The driver is not provided in the
firmware tarball packages. Google shows no hits for this file name,
but some postings point to r8168-8.020.00.tar.bz on the Realtek site,
but of course I cannot compile the driver on an uninstalled system :-(

Regards

JSB

-- 
 ,   
dr hab. Janusz S. Bien, prof. UW -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - Warsaw University (Department of Formal Linguistics)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/



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



Bug#610498: installation-reports: D510MO-mainboard - where to find missing rtl81168d-1.fw?

2011-01-18 Thread Cyril Brulebois
severity 610498 important
thanks

Hi,

Janusz S. Bień jsb...@mimuw.edu.pl (19/01/2011):
 When running the installer on a D510MO-mainboard computer the
 non-free driver rtl81168d-1.fw is requested.  The driver is not
 provided in the firmware tarball packages. Google shows no hits for
 this file name, but some postings point to r8168-8.020.00.tar.bz on
 the Realtek site, but of course I cannot compile the driver on an
 uninstalled system :-(

thanks for your report. At first glance, that's just an important (or
less?) bug, adjusting severity accordingly.

KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#610498: installation-reports: D510MO-mainboard - where to find missing rtl81168d-1.fw?

2011-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 610498 important
Bug #610498 [installation-reports] installation-reports: D510MO-mainboard - 
where to find missing rtl81168d-1.fw?
Severity set to 'important' from 'grave'

 thanks
Stopping processing here.

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