Processed: Re: nvidia-kernel-source: Module fails to build from 180.44-2 on 2.6.28-1-686

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 523962 normal
Bug#523962: nvidia-kernel-source: Module fails to build from 180.44-2 on 
2.6.28-1-686
Severity set to `normal' from `grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#523962: nvidia-kernel-source: Module fails to build from 180.44-2 on 2.6.28-1-686

2009-04-14 Thread Daniel Baumann
severity 523962 normal
thanks

we've .29 in sid, buidling the 180.44 against an older kernel is not rc.
specifically, building against .28 which is unsupported, is a normal
bug. therefore adjusting severity.

Regards,
Daniel

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



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



Bug#523030: wrong quoting in aclocal's python.m4 check

2009-04-14 Thread Matthias Klose
tags 523030 + patch
tags 523031 + patch
thanks

'${prefix}' and '${exec_prefix}' are passed unexpanded to get_python_lib()), and
the macro then defaults to the hardcoded alternative case. The patch passes the
real path names to get_python_lib(), and only for the case, where the prefix
argument was specified on the command line (the case for a missing prefix
argument is handled inside the get_python_lib() function).

tested the macro with python versions 2.0 up to trunk, and the 3.0 and 3.1 
branches.

  Matthias
--- m4/python.m4.orig   2009-04-10 16:39:16.0 +0200
+++ m4/python.m42009-04-12 15:21:41.0 +0200
@@ -117,7 +117,13 @@
   dnl doesn't work.
   AC_CACHE_CHECK([for $am_display_PYTHON script directory],
 [am_cv_python_pythondir],
-[am_cv_python_pythondir=`$PYTHON -c from distutils import sysconfig; 
print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX') 2/dev/null ||
+[if test x$prefix = xNONE
+ then
+   py_prefix_arg=
+ else
+   py_prefix_arg=,prefix='$prefix'
+ fi
+ am_cv_python_pythondir=`$PYTHON -c from distutils import sysconfig; 
print sysconfig.get_python_lib(0,0$py_prefix_arg) -n -q install $py_prefix_arg 
2/dev/null ||
  echo $PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages`])
   AC_SUBST([pythondir], [$am_cv_python_pythondir])
 
@@ -134,8 +140,14 @@
   dnl doesn't work.
   AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
 [am_cv_python_pyexecdir],
-[am_cv_python_pyexecdir=`$PYTHON -c from distutils import sysconfig; 
print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX') 2/dev/null ||
- echo ${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages`])
+[if test x$exec_prefix = xNONE
+ then
+   py_exec_prefix_arg=$py_prefix_arg
+ else
+   py_exec_prefix_arg=,prefix='$exec_prefix'
+ fi
+ am_cv_python_pyexecdir=`$PYTHON -c from distutils import sysconfig; 
print sysconfig.get_python_lib(1,0$py_exec_prefix_arg) -n -q install 
$py_exec_prefix_arg 2/dev/null ||
+ echo $PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages`])
   AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
 
   dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)


Bug#523823: [hal] Upgrade of hal fails

2009-04-14 Thread Christian Frommeyer
Michael Biebl schrieb:
 That's a bug in splashy, see
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523187

Hi Michael,

thanks that did the trick. Renaming the shell script and restart the
configure task...

Regards Christian



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



Processed: Re: wrong quoting in aclocal's python.m4 check

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 523030 + patch
Bug#523030: wrong quoting in aclocal's python.m4 check
There were no tags set.
Tags added: patch

 tags 523031 + patch
Bug#523031: wrong quoting in aclocal's python.m4 check
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#523995: FTBFS on armel: qreal/double mismatch

2009-04-14 Thread Riku Voipio
Package: kdeartwork
Version: 4:4.2.2-1
Severity: serious

Ubuntu appears to have a patch for this:

+Index: kdeartwork-4.2.1/styles/phase/phasestyle.cpp
+===
+--- kdeartwork-4.2.1.orig/styles/phase/phasestyle.cpp  2009-01-21 
05:24:12.0 -0500
 kdeartwork-4.2.1/styles/phase/phasestyle.cpp   2009-02-27 
12:04:15.0 -0500
+@@ -2052,7 +2052,7 @@
+   qreal cx = rect.center().x();
+   qreal cy = rect.center().y();
+   qreal radius = (qMin(w, h) / 2.0) - 2.0;
+-  qreal tick = qMax(radius / 6, 4.0);
++  qreal tick = qMax(double(radius / 6), 4.0);
+
+   if (dial-subControls  SC_DialGroove) {
+   QRectF groove = QRectF(cx-radius+tick, cy-radius+tick,


On Sun, Apr 12, 2009 at 04:28:13PM +0100, buildd user wrote:
 [ 96%] Building CXX object styles/phase/CMakeFiles/phasestyle.dir/phasestyle.o
 cd styles/phase  /usr/bin/g++   -D_BSD_SOURCE -D_XOPEN_SOURCE=500 
 -D_BSD_SOURCE -DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT 
 -DKDE_DEPRECATED_WARNINGS -DQT_PLUGIN -Dphasestyle_EXPORTS -g -O2 -g -Wall 
 -O2 -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align 
 -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions 
 -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics 
 -fvisibility=hidden -fvisibility-inlines-hidden -DNDEBUG -DQT_NO_DEBUG -fPIC 
 -I. -I../../../styles/phase -I../../.. -I../.. -I/usr/include/KDE 
 -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns 
 -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtHelp 
 -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/QtDBus 
 -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtUiTools 
 -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtXml 
 -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtOpenGL 
 -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtDesigner 
 -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui 
 -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
 -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4   -D_GNU_SOURCE 
 -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o 
 CMakeFiles/phasestyle.dir/phasestyle.o -c ../../../styles/phase/phasestyle.cpp
 ../../../styles/phase/phasestyle.cpp: In member function 'virtual void 
 PhaseStyle::drawComplexControl(QStyle::ComplexControl, const 
 QStyleOptionComplex*, QPainter*, const QWidget*) const':
 ../../../styles/phase/phasestyle.cpp:2055: error: no matching function for 
 call to 'qMax(qreal, double)'
 make[3]: *** [styles/phase/CMakeFiles/phasestyle.dir/phasestyle.o] Error 1
 make[3]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make[2]: *** [styles/phase/CMakeFiles/phasestyle.dir/all] Error 2
 make[2]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make: *** [debian/stamp-makefile-build] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2
 **
 Build finished at 20090412-1625
 FAILED [dpkg-buildpackage died]
 Purging chroot-unstable/build/buildd/kdeartwork-4.2.2



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



Bug#524000: FTBFS: missing build dependency libtevent-dev and other build problems

2009-04-14 Thread Peter Eisentraut
Package: openchange
Version: 1:0.8-2
Severity: serious
Justification: no longer builds from source

Building this package fails at:

Compiling libmapi/IABContainer.c with -fPIC
In file included from libmapi/IABContainer.c:20:
./libmapi/libmapi.h:48:20: error: tevent.h: No such file or directory
make[1]: *** [libmapi/IABContainer.po] Error 1

After installing libtevent-dev, it is able to proceed past this point.

Later on it fails with

Linking torture/openchange.so
Compiling mapiproxy/dcesrv_mapiproxy_module.c with -fPIC
mapiproxy/dcesrv_mapiproxy_module.c: In function ‘mapiproxy_module_push’:
mapiproxy/dcesrv_mapiproxy_module.c:47: error: ‘const struct dcesrv_interface’ 
has no member named ‘private’
mapiproxy/dcesrv_mapiproxy_module.c: In function ‘mapiproxy_module_ndr_pull’:
mapiproxy/dcesrv_mapiproxy_module.c:71: error: ‘const struct dcesrv_interface’ 
has no member named ‘private’
mapiproxy/dcesrv_mapiproxy_module.c: In function ‘mapiproxy_module_pull’:
mapiproxy/dcesrv_mapiproxy_module.c:95: error: ‘const struct dcesrv_interface’ 
has no member named ‘private’
mapiproxy/dcesrv_mapiproxy_module.c: In function ‘mapiproxy_module_dispatch’:
mapiproxy/dcesrv_mapiproxy_module.c:120: error: ‘const struct dcesrv_interface’ 
has no member named ‘private’
make[1]: *** [mapiproxy/dcesrv_mapiproxy_module.po] Error 1


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

Kernel: Linux 2.6.26-1-686 (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




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



Bug#524003: FTBFS on armel

2009-04-14 Thread Riku Voipio
Package: tokyocabinet
Severity: serious
Version: 1.4.14-2
User: debian-...@lists.debian.org
Usertag: eabi

Package testsuite failed with the following error:

 LD_LIBRARY_PATH=.  ./tcftest rcat -pn 500 -ru casket 5000 500
 ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be 
 preloaded: ignored.
 Random Concatenating Test
   seed=4294967295  path=casket  rnum=5000  width=500  limsiz=-1  mt=0  
 omode=0  pnum=500  dai=0  dad=0  rl=0  ru=1
 
 .make[2]: *** [check-fdb] Segmentation fault
 make[2]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
 make[1]: *** [check] Error 2
 make[1]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
 make: *** [build-arch-stamp] Error 2
 dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
 error exit status 2



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



Bug#523902: New Gnash 0.8.5 actually works!

2009-04-14 Thread Miriam Ruiz
2009/4/14 Jonas Smedegaard d...@jones.dk:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Hi Miriam,

Hi :)

 On Mon, Apr 13, 2009 at 11:30:39PM +0200, Miriam Ruiz wrote:
2009/4/13 Jonas Smedegaard d...@jones.dk:
 Gnash 0.8.5 was released for Debian Sid the other day, and works
 nicely for me - I have now watched a youtube video online for the
 first time ever (I've used clive till now). Other flash sites, like
 the british mikmik webdesign website that interests my girlfriend,
 works too.

 I have backportet the new Gnash to Lenny for i386 and amd64.  Add to
 /etc/apt/sources.lst the line below, if you want it:

Did you finally have to backport libtool or patch the source code
somehow? If so, please, send me your changes and I'll upload a newer
release :)

 [You wrote me in private. I have taken the liberty of responding through
 the related bugreport, to share our discussion with the public]

No problem, I just forgot to CC the bug report :)

 I backported libtool 2.x.

 If the Gnash package had used CDBS I could enable libtool regeneration
 elegantly in only a few lines, and would be happy to share the changes.

I'm not really that proficient in CDBS and I don't really have so much
spare time right now for learning it properly. I understand that Gnash
might be a package complex enough for needing to understand how CDBS
works and not just blindly use it. I might switch to it in the future
though, but I need to have time to properly switch to it.

 Gnash packaging use a more classical packaging style that would require
 more care to do the same thing.  Not much work, probably, but enough
 that I chose to not spend time on ensuring the sanity and stability of
 various rebuilt autotools, but found it quicker to setup a chain of
 build environments and backport that newer libtool.

 If interested in CDBS-style packaging, then have a look at unicap (which
 contains nice patches from you already!) for a recent and relatively
 complex autotools package, and sugar-toolkit-0.86 (yes, the version
 number _is_ part of the source package name!) for a recent simpler
 example enabling autotools regeneration but only when flagged to do so
 (i.e. not on build daemons!).

Thanks, I'll have a look at it when I have time :)

 The simplest fix for this bug is to tighten build-dependency to be on
 libtool (= 2) and build-depend on libltdl-dev (which was only provided
 by libtool 2.x) instead of libltdl3-dev (which is a transitional package
 in Sid and won't work in the earlier releases when it was a real
 package.  ...or at least that is my understanding (I might be wrong).

I'll do that then. I was just waiting to see if you got it working
with a lower version of libtool.

 Hope that helps.

Yup, it does :)

Thanks,
Miry



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



Bug#521394: heartbeat: ocf resources script o2cb doesn't work

2009-04-14 Thread Simon Horman
This bug is from upstream, it was present in umpstream 2.1.3 and thus
Debian 2.1.3-1. It is probably also present in earlier versions.

To the best of my knowlege, is not present in versions beyond 2.1.4,
as o2cb appears to have been removed from upstream after that release.

-- 
Simon Horman
  VA Linux Systems Japan K.K., Sydney, Australia Satellite Office
  H: www.vergenet.net/~horms/ W: www.valinux.co.jp/en




-- 
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 523863 is normal

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 523863 normal
Bug#523863: [kontact] Contacts can't be added to a list
Severity set to `normal' from `grave'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#521394: heartbeat: ocf resources script o2cb doesn't work

2009-04-14 Thread Simon Horman
On Fri, Mar 27, 2009 at 10:56:30AM +0100, Michel Rode wrote:
 Package: heartbeat
 Version: 2.1.3-6lenny0
 Severity: critical
 Tags: patch
 Justification: breaks the whole system
 
 
 ocf resources script doe't start because there is a missing $ in line 314.

Thanks, I will see about getting this included in the next Lenny update.

-- 
Simon Horman
  VA Linux Systems Japan K.K., Sydney, Australia Satellite Office
  H: www.vergenet.net/~horms/ W: www.valinux.co.jp/en




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



Processed: forcibly merging 505316 492317

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 505316 492317
Bug#505316: [lilo-config] Choosing a kernel from kde-shutdown menu renders 
system with grub unbootable
Bug#492317: update breaks grub boot (MBR) Grub Error 28: Selected item can not 
fit into memory
Forcibly Merged 492317 505316.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524017: gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: No such file or directory

2009-04-14 Thread Claudio Sacerdoti Coen
Package: libzip-ocaml-dev
Version: 1.04-3
Severity: grave
Justification: renders package unusable

zip.a missing:

gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: No such file or directory



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

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

Versions of packages libzip-ocaml-dev depends on:
ii  libzip-ocaml   1.04-3OCaml compression libraries (runti
ii  ocaml-nox [ocaml-nox-3 3.11.0-5  ML implementation with a class-bas
ii  zlib1g-dev 1:1.2.3.3.dfsg-13 compression library - development

libzip-ocaml-dev recommends no packages.

libzip-ocaml-dev 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: severity of 520150 is important

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 520150 important
Bug#520150: [kde] Regression: accent are not displayed
Severity set to `important' from `serious'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#521394: heartbeat: ocf resources script o2cb doesn't work

2009-04-14 Thread Simon Horman
found 521394 2.1.3-1
fixed 521394 2.1.4-1
thanks

Update:

This bug is from upstream, it was present in umpstream 2.1.3 and thus
Debian 2.1.3-1. It is probably also present in earlier versions.

This bug is not was fixed upstream prior to the release of 2.1.4.

Subsequent to the release of 2.1.4 o2cb appears to have been
removed from upstream.

-- 
Simon Horman
  VA Linux Systems Japan K.K., Sydney, Australia Satellite Office
  H: www.vergenet.net/~horms/ W: www.valinux.co.jp/en




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



Bug#524017: marked as done (gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: No such file or directory)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 09:32:03 +
with message-id e1ltezr-0006wm...@ries.debian.org
and subject line Bug#524017: fixed in camlzip 1.04-4
has caused the Debian Bug report #524017,
regarding gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: 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.)


-- 
524017: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524017
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libzip-ocaml-dev
Version: 1.04-3
Severity: grave
Justification: renders package unusable

zip.a missing:

gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: No such file or directory



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

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

Versions of packages libzip-ocaml-dev depends on:
ii  libzip-ocaml   1.04-3OCaml compression libraries (runti
ii  ocaml-nox [ocaml-nox-3 3.11.0-5  ML implementation with a class-bas
ii  zlib1g-dev 1:1.2.3.3.dfsg-13 compression library - development

libzip-ocaml-dev recommends no packages.

libzip-ocaml-dev suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: camlzip
Source-Version: 1.04-4

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

camlzip_1.04-4.diff.gz
  to pool/main/c/camlzip/camlzip_1.04-4.diff.gz
camlzip_1.04-4.dsc
  to pool/main/c/camlzip/camlzip_1.04-4.dsc
libzip-ocaml-dev_1.04-4_amd64.deb
  to pool/main/c/camlzip/libzip-ocaml-dev_1.04-4_amd64.deb
libzip-ocaml_1.04-4_amd64.deb
  to pool/main/c/camlzip/libzip-ocaml_1.04-4_amd64.deb



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

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

Debian distribution maintenance software
pp.
Stephane Glondu st...@glondu.net (supplier of updated camlzip 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: Tue, 14 Apr 2009 10:59:42 +0200
Source: camlzip
Binary: libzip-ocaml libzip-ocaml-dev
Architecture: source amd64
Version: 1.04-4
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stephane Glondu st...@glondu.net
Description: 
 libzip-ocaml - OCaml compression libraries (runtime libraries)
 libzip-ocaml-dev - OCaml compression libraries (development files)
Closes: 524017
Changes: 
 camlzip (1.04-4) unstable; urgency=low
 .
   * Install zip.a along with zip.cmxa (Closes: #524017)
Checksums-Sha1: 
 a560779f1816c4ba8764530e2c7fa4d0f81494b7 1532 camlzip_1.04-4.dsc
 c3de8d97866d24b87f725d37a14278a9150787fb 6090 camlzip_1.04-4.diff.gz
 05b5558b1f3d473799546058b6fe13c985217971 84144 libzip-ocaml_1.04-4_amd64.deb
 b72418f1abd99f168a281e63f61192970df12358 50214 
libzip-ocaml-dev_1.04-4_amd64.deb
Checksums-Sha256: 
 ff1d37d43a17c1b2823793297aa385fc5b3a61c096a6b6b5b5dc95e6f25f4376 1532 
camlzip_1.04-4.dsc
 2d2a2fae525cfbed6ac58c172693f1a034a5ca78d7fb99bafd26e3bf1ac61e1c 6090 
camlzip_1.04-4.diff.gz
 0860fe7c9ac67ebc22db3b07ea72bb7e81f35b51c88d1303fe2215f9b2476c60 84144 
libzip-ocaml_1.04-4_amd64.deb
 b4636468ee91de0eaaf82195d2a18a61bc4838b959988a58c49387774c815c46 50214 
libzip-ocaml-dev_1.04-4_amd64.deb
Files: 
 aeffa32aab0d126fd518097a60015feb 1532 ocaml optional camlzip_1.04-4.dsc
 0075eb44b3529126e2f82b6efa6cb4e7 6090 ocaml optional camlzip_1.04-4.diff.gz
 fb3ee9985304e164f06ee0a189f33204 84144 ocaml optional 
libzip-ocaml_1.04-4_amd64.deb
 1fc1975cbfb06ed568503a21f516abac 50214 ocaml optional 
libzip-ocaml-dev_1.04-4_amd64.deb

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

iEYEARECAAYFAknkVasACgkQBg8odvzgPaqHtACeJw7HNZwCuwS+gad/NEnaGMeq
p+cAoI9FzY7C6E6afHgvHpm67pBgO7n1
=FRXd
-END PGP SIGNATURE-


---End Message---


Bug#523995: marked as done (FTBFS on armel: qreal/double mismatch)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 09:17:34 +
with message-id e1ltelq-0005dz...@ries.debian.org
and subject line Bug#523995: fixed in kdeartwork 4:4.2.2-2
has caused the Debian Bug report #523995,
regarding FTBFS on armel: qreal/double mismatch
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.)


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

Ubuntu appears to have a patch for this:

+Index: kdeartwork-4.2.1/styles/phase/phasestyle.cpp
+===
+--- kdeartwork-4.2.1.orig/styles/phase/phasestyle.cpp  2009-01-21 
05:24:12.0 -0500
 kdeartwork-4.2.1/styles/phase/phasestyle.cpp   2009-02-27 
12:04:15.0 -0500
+@@ -2052,7 +2052,7 @@
+   qreal cx = rect.center().x();
+   qreal cy = rect.center().y();
+   qreal radius = (qMin(w, h) / 2.0) - 2.0;
+-  qreal tick = qMax(radius / 6, 4.0);
++  qreal tick = qMax(double(radius / 6), 4.0);
+
+   if (dial-subControls  SC_DialGroove) {
+   QRectF groove = QRectF(cx-radius+tick, cy-radius+tick,


On Sun, Apr 12, 2009 at 04:28:13PM +0100, buildd user wrote:
 [ 96%] Building CXX object styles/phase/CMakeFiles/phasestyle.dir/phasestyle.o
 cd styles/phase  /usr/bin/g++   -D_BSD_SOURCE -D_XOPEN_SOURCE=500 
 -D_BSD_SOURCE -DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT 
 -DKDE_DEPRECATED_WARNINGS -DQT_PLUGIN -Dphasestyle_EXPORTS -g -O2 -g -Wall 
 -O2 -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align 
 -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions 
 -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics 
 -fvisibility=hidden -fvisibility-inlines-hidden -DNDEBUG -DQT_NO_DEBUG -fPIC 
 -I. -I../../../styles/phase -I../../.. -I../.. -I/usr/include/KDE 
 -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns 
 -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtHelp 
 -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/QtDBus 
 -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtUiTools 
 -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtXml 
 -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtOpenGL 
 -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtDesigner 
 -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui 
 -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
 -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4   -D_GNU_SOURCE 
 -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o 
 CMakeFiles/phasestyle.dir/phasestyle.o -c ../../../styles/phase/phasestyle.cpp
 ../../../styles/phase/phasestyle.cpp: In member function 'virtual void 
 PhaseStyle::drawComplexControl(QStyle::ComplexControl, const 
 QStyleOptionComplex*, QPainter*, const QWidget*) const':
 ../../../styles/phase/phasestyle.cpp:2055: error: no matching function for 
 call to 'qMax(qreal, double)'
 make[3]: *** [styles/phase/CMakeFiles/phasestyle.dir/phasestyle.o] Error 1
 make[3]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make[2]: *** [styles/phase/CMakeFiles/phasestyle.dir/all] Error 2
 make[2]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory 
 `/build/buildd/kdeartwork-4.2.2/obj-arm-linux-gnueabi'
 make: *** [debian/stamp-makefile-build] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2
 **
 Build finished at 20090412-1625
 FAILED [dpkg-buildpackage died]
 Purging chroot-unstable/build/buildd/kdeartwork-4.2.2


---End Message---
---BeginMessage---
Source: kdeartwork
Source-Version: 4:4.2.2-2

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

kdeartwork-emoticons_4.2.2-2_all.deb
  to pool/main/k/kdeartwork/kdeartwork-emoticons_4.2.2-2_all.deb
kdeartwork-style_4.2.2-2_amd64.deb
  to pool/main/k/kdeartwork/kdeartwork-style_4.2.2-2_amd64.deb
kdeartwork-theme-icon_4.2.2-2_all.deb
  to pool/main/k/kdeartwork/kdeartwork-theme-icon_4.2.2-2_all.deb
kdeartwork-theme-window_4.2.2-2_amd64.deb
  to pool/main/k/kdeartwork/kdeartwork-theme-window_4.2.2-2_amd64.deb
kdeartwork_4.2.2-2.diff.gz
  to pool/main/k/kdeartwork/kdeartwork_4.2.2-2.diff.gz
kdeartwork_4.2.2-2.dsc
  to pool/main/k/kdeartwork/kdeartwork_4.2.2-2.dsc
kdeartwork_4.2.2-2_all.deb
  to 

Bug#523077: marked as done (science-physics: suggests a package with a broken name)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 09:17:14 +
with message-id e1ltelw-0005bi...@ries.debian.org
and subject line Bug#523077: fixed in debian-science 0.6
has caused the Debian Bug report #523077,
regarding science-physics: suggests a package with a broken name
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.)


-- 
523077: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523077
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: science-physics
Version: 0.5
Severity: serious
Justification: Policy 5.6.7

Suggests contains 'ESPResSo++, PWscf', but upper-case letters are not allowed in
package names.

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

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


---End Message---
---BeginMessage---
Source: debian-science
Source-Version: 0.6

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

debian-science_0.6.dsc
  to pool/main/d/debian-science/debian-science_0.6.dsc
debian-science_0.6.tar.gz
  to pool/main/d/debian-science/debian-science_0.6.tar.gz
science-astronomy-dev_0.6_all.deb
  to pool/main/d/debian-science/science-astronomy-dev_0.6_all.deb
science-astronomy_0.6_all.deb
  to pool/main/d/debian-science/science-astronomy_0.6_all.deb
science-biology_0.6_all.deb
  to pool/main/d/debian-science/science-biology_0.6_all.deb
science-chemistry_0.6_all.deb
  to pool/main/d/debian-science/science-chemistry_0.6_all.deb
science-config_0.6_all.deb
  to pool/main/d/debian-science/science-config_0.6_all.deb
science-dataacquisition_0.6_all.deb
  to pool/main/d/debian-science/science-dataacquisition_0.6_all.deb
science-electronics_0.6_all.deb
  to pool/main/d/debian-science/science-electronics_0.6_all.deb
science-engineering-dev_0.6_all.deb
  to pool/main/d/debian-science/science-engineering-dev_0.6_all.deb
science-engineering_0.6_all.deb
  to pool/main/d/debian-science/science-engineering_0.6_all.deb
science-geography_0.6_all.deb
  to pool/main/d/debian-science/science-geography_0.6_all.deb
science-imageanalysis_0.6_all.deb
  to pool/main/d/debian-science/science-imageanalysis_0.6_all.deb
science-linguistics_0.6_all.deb
  to pool/main/d/debian-science/science-linguistics_0.6_all.deb
science-mathematics-dev_0.6_all.deb
  to pool/main/d/debian-science/science-mathematics-dev_0.6_all.deb
science-mathematics_0.6_all.deb
  to pool/main/d/debian-science/science-mathematics_0.6_all.deb
science-neuroscience-cognitive_0.6_all.deb
  to pool/main/d/debian-science/science-neuroscience-cognitive_0.6_all.deb
science-numericalcomputation_0.6_all.deb
  to pool/main/d/debian-science/science-numericalcomputation_0.6_all.deb
science-physics_0.6_all.deb
  to pool/main/d/debian-science/science-physics_0.6_all.deb
science-robotics_0.6_all.deb
  to pool/main/d/debian-science/science-robotics_0.6_all.deb
science-statistics_0.6_all.deb
  to pool/main/d/debian-science/science-statistics_0.6_all.deb
science-tasks_0.6_all.deb
  to pool/main/d/debian-science/science-tasks_0.6_all.deb
science-typesetting_0.6_all.deb
  to pool/main/d/debian-science/science-typesetting_0.6_all.deb
science-viewing_0.6_all.deb
  to pool/main/d/debian-science/science-viewing_0.6_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 523...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Tille ti...@debian.org (supplier of updated debian-science 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: Tue, 14 Apr 2009 10:51:31 +0200
Source: debian-science
Binary: science-tasks science-config science-astronomy science-astronomy-dev 
science-biology science-chemistry science-dataacquisition science-electronics 
science-engineering science-engineering-dev science-geography 
science-imageanalysis science-linguistics science-mathematics 
science-mathematics-dev science-neuroscience-cognitive 
science-numericalcomputation science-physics science-robotics 
science-statistics science-typesetting 

Processed: Bug#521394: heartbeat: ocf resources script o2cb doesn't work

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 521394 2.1.3-1
Bug#521394: heartbeat: ocf resources script o2cb doesn't work
Bug marked as found in version 2.1.3-1.

 fixed 521394 2.1.4-1
Bug#521394: heartbeat: ocf resources script o2cb doesn't work
Bug marked as fixed in version 2.1.4-1.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: setting package to libzip-ocaml camlzip libzip-ocaml-dev, tagging 524017

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #camlzip (1.04-4) unstable; urgency=low
 #
 #  * Install zip.a along with zip.cmxa (Closes: #524017)
 #
 package libzip-ocaml camlzip libzip-ocaml-dev
Ignoring bugs not assigned to: libzip-ocaml camlzip libzip-ocaml-dev

 tags 524017 + pending
Bug#524017: gcc: /usr/lib/ocaml/3.11.0/zip/zip.a: No such file or directory
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524035: /etc/ntp.conf.dhcp file is dynamic, should live in /var

2009-04-14 Thread martin f krafft
Package: ntp
Version: 1:4.2.4p6+dfsg-1
Severity: serious
File: /etc/dhcp3/dhclient-enter-hooks.d/ntp

Changes to /etc/ntp.conf.dhcp are not preserved and the package is
thus in violation of the Debian Policy. Since the file is
dynamically generated, it should live in /var/lib/ntp or
/var/cache/ntp.

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

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

Versions of packages ntp depends on:
ii  adduser  3.110   add and remove users and groups
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libcap2  1:2.16-5support for getting/setting POSIX.
ii  libedit2 2.11~20080614-1 BSD editline and history libraries
ii  libncurses5  5.7+20090404-1  shared libraries for terminal hand
ii  libssl0.9.8  0.9.8g-16   SSL shared libraries
ii  lsb-base 3.2-22  Linux Standard Base 3.2 init scrip
ii  netbase  4.34Basic TCP/IP networking system

Versions of packages ntp recommends:
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

Versions of packages ntp suggests:
pn  ntp-doc   none (no description available)

-- debconf-show failed


-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#523977: marked as done (executable /usr/sbin/nodm disappeared)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 10:47:51 +
with message-id e1ltgbd-0003lk...@ries.debian.org
and subject line Bug#523977: fixed in nodm 0.3-1
has caused the Debian Bug report #523977,
regarding executable /usr/sbin/nodm disappeared
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.)


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

The main executable /usr/sbin/nodm disappeared in this version 0.3!  Oops.
The man page disappeared also.

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (730, 'stable'), (720, 'testing'), (710, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages nodm depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libpam0g  1.0.1-5+lenny1 Pluggable Authentication Modules l
ii  roxterm [x-terminal-emula 1.11.1-1.1 multi-tabbed GTK+2 terminal emulat
ii  x11-common1:7.3+18   X Window System (X.Org) infrastruc
ii  xinit 1.0.9-2X server initialisation tool
ii  xterm [x-terminal-emulato 235-2  X terminal emulator

nodm recommends no packages.

nodm suggests no packages.

-- debconf information:
* nodm/xinit: /usr/bin/xinit
* nodm/x_options: vt7 -nolisten tcp
* nodm/min_session_time: 60
* nodm/enabled: true
* nodm/xsession: /etc/X11/Xsession
* nodm/user: user


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: nodm
Source-Version: 0.3-1

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

nodm_0.3-1.diff.gz
  to pool/main/n/nodm/nodm_0.3-1.diff.gz
nodm_0.3-1.dsc
  to pool/main/n/nodm/nodm_0.3-1.dsc
nodm_0.3-1_amd64.deb
  to pool/main/n/nodm/nodm_0.3-1_amd64.deb
nodm_0.3.orig.tar.gz
  to pool/main/n/nodm/nodm_0.3.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Joachim Breitner nome...@debian.org (supplier of updated nodm 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: Tue, 14 Apr 2009 10:25:30 +0200
Source: nodm
Binary: nodm
Architecture: source amd64
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Joachim Breitner nome...@debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 nodm   - Automatic Display Manager
Closes: 523977
Changes: 
 nodm (0.3-1) unstable; urgency=low
 .
   * Make a non-native packge and create a .orig.tar.gz with make dist before
 building the package, fixes executable /usr/sbin/nodm disappeared
 (Closes: #523977)
Checksums-Sha1: 
 4ba86096e3add05e293c1425908e2b76e4655592 1100 nodm_0.3-1.dsc
 0d1af4d966906be974fc7b72fef2e01d0c0341a7 86867 nodm_0.3.orig.tar.gz
 23dcce944ac325a50ed087abb8fab20c2620dfda 6379 nodm_0.3-1.diff.gz
 ff05bbf742ddf082b52ec3305cd42c795b56133a 15696 nodm_0.3-1_amd64.deb
Checksums-Sha256: 
 5411eeb577d1e3f721b3db9b5030cb4cdd70b479e6be1f3176cdb6f0808552d3 1100 
nodm_0.3-1.dsc
 b1399f7aebde248a0c89bbe71fa375b85829f601e0eb44005e475a3486f25a48 86867 
nodm_0.3.orig.tar.gz
 43c1168ae413267a34f271e304fb6d31640c35130d06788c787c5a4e26034113 6379 
nodm_0.3-1.diff.gz
 5ed21c986f3ff81792fd0970c3220028ebe9a2aefbf6412a6a5516d2ecf68e63 15696 
nodm_0.3-1_amd64.deb
Files: 
 83d6504d885824d25d8312f48bbd341b 1100 misc extra nodm_0.3-1.dsc
 b76b028647b30c8a58b9ec10303985cc 86867 misc extra nodm_0.3.orig.tar.gz
 bb405b140255780b700c09a0504dcbdd 6379 misc extra nodm_0.3-1.diff.gz
 659bfb482c1639ef2d13ad16e4c5a5fb 15696 misc extra nodm_0.3-1_amd64.deb

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

iEYEARECAAYFAknkZvwACgkQ9ijrk0dDIGxkqQCfTFj8zqzYwsWubhyLkKAyQ8fa
dKAAoIY77Q54J0ljVVgXlN+FTYVOd7Or
=qPPa
-END PGP SIGNATURE-


---End 

Bug#521394: Pre-approval for heartbeat stable-proposed-updates upload (2.1.3-6lenny3)

2009-04-14 Thread Simon Horman
Hi,

I would like to upload a(nother) fresh version of heartbeat to fix
a but in the o2cf resource. Without the simple fix suggested
by Michel, the script is completely broken - though I should
not that the script was first deprecated and more recently
removed from upstream.

The fix itself is as follows:

--- heartbeat-2.1.3.orig/resources/OCF/o2cb
+++ heartbeat-2.1.3/resources/OCF/o2cb
@@ -311,7 +311,7 @@
;;
 esac
 
-RCO2CB=INITDIR/o2cb
+RCO2CB=$INITDIR/o2cb
 # RCO2CB=/etc/init.d/o2cb
 
 if [ ! -x $RCO2CB ]; then

This problem is being tracked as #521394

The debdiff below is between 2.1.3-6lenny1 (the current version in lenny)
and the most recent proposed version, 2.1.3-6lenny3.  2.1.3-6lenny2 was
proposed, but I don't think that it was ever uploaded. It change
still appears to be worthy to me.

The packages are available for anyone who is intersted at
http://packages.vergenet.net/stable-proposed-updates/heartbeat/

Debdiff:

diff -u heartbeat-2.1.3/version.Debian heartbeat-2.1.3/version.Debian
--- heartbeat-2.1.3/version.Debian
+++ heartbeat-2.1.3/version.Debian
@@ -1 +1 @@
-2.1.3-6lenny1
+2.1.3-6lenny3
diff -u heartbeat-2.1.3/debian/changelog heartbeat-2.1.3/debian/changelog
--- heartbeat-2.1.3/debian/changelog
+++ heartbeat-2.1.3/debian/changelog
@@ -1,3 +1,20 @@
+heartbeat (2.1.3-6lenny3) stable-proposed-updates; urgency=low
+
+  * Fix syntax error in o2cb which prevented it from working
+Upstream-status: o2cb has been removed from upstream
+(closes: #521394)
+
+ -- Simon Horman ho...@debian.org  Tue, 14 Apr 2009 18:55:26 +1000
+
+heartbeat (2.1.3-6lenny2) stable-proposed-updates; urgency=low
+
+  * IPv6addr: Fix handling of /64 prefixes
+Upstream-Status: commit 6d5f0f600c0b2147490af0c5e592fc995336902a
+ IPv6addr fails on /64 prefixes
+(closes: #515662)
+
+ -- Simon Horman ho...@debian.org  Fri, 20 Feb 2009 02:34:29 +
+
 heartbeat (2.1.3-6lenny1) stable-proposed-updates; urgency=low
 
   * dopd: fix basic failover; fix hb message corruption by fprintf(stderr)
only in patch2:
unchanged:
--- heartbeat-2.1.3.orig/resources/OCF/o2cb
+++ heartbeat-2.1.3/resources/OCF/o2cb
@@ -311,7 +311,7 @@
;;
 esac
 
-RCO2CB=INITDIR/o2cb
+RCO2CB=$INITDIR/o2cb
 # RCO2CB=/etc/init.d/o2cb
 
 if [ ! -x $RCO2CB ]; then
only in patch2:
unchanged:
--- heartbeat-2.1.3.orig/resources/OCF/IPv6addr.c
+++ heartbeat-2.1.3/resources/OCF/IPv6addr.c
@@ -487,7 +487,10 @@
n = plen / 32;
memset(mask.s6_addr32 + n + 1, 0, (3 - n) * 4);
s = 32 - plen % 32;
-   mask.s6_addr32[n] = 0x  s;
+   if (s == 32) 
+   mask.s6_addr32[n] = 0x0;
+   else
+   mask.s6_addr32[n] = 0x  s;
mask.s6_addr32[n] = htonl(mask.s6_addr32[n]);
}
 
only in patch2:
unchanged:
--- heartbeat-2.1.3.orig/debian/patches/o2cb-INITDIR.patch
+++ heartbeat-2.1.3/debian/patches/o2cb-INITDIR.patch
@@ -0,0 +1,144 @@
+From horms  Sun Mar 29 21:28:35 2009
+Return-Path: bounces+20090327-horms=debian@packages.qa.debian.org
+X-Spam-Checker-Version: SpamAssassin 3.2.5-kirsty.vergenet.net_2007012401
+   (2008-06-10) on kirsty.vergenet.net
+X-Spam-Level: 
+X-Spam-Status: No, score=-3.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW
+   autolearn=ham version=3.2.5-kirsty.vergenet.net_2007012401
+X-Original-To: ho...@verge.net.au
+Delivered-To: ho...@vergenet.net
+Received: from mail.au.vergenet.net [202.4.237.240]
+   by yukiko.kent.sydney.vergenet.net with POP3 (fetchmail-6.3.9-rc2)
+   for ho...@localhost (single-drop); Mon, 30 Mar 2009 08:28:35 +1100 
(EST)
+Received: from master.debian.org (master.debian.org [70.103.162.29])
+   by kirsty.vergenet.net (Postfix) with ESMTP id A38DD24060
+   for ho...@verge.net.au; Fri, 27 Mar 2009 21:06:11 +1100 (EST)
+Received: from qa by master.debian.org with local (Exim 4.69)
+   (envelope-from 
bounces+20090327-horms=debian@packages.qa.debian.org)
+   id 1Ln8x0-TZ-48; Fri, 27 Mar 2009 10:06:10 +
+Received: from rietz.debian.org ([140.211.166.43]) by master.debian.org
+ with esmtp (Exim 4.69)(envelope-from debb...@rietz.debian.org)  
id
+ 1Ln8wz-TK-N2  for heartb...@packages.qa.debian.org; Fri, 27 Mar 2009
+ 10:06:09 +
+Received: from debbugs by rietz.debian.org with local (Exim 4.63)
+ (envelope-from debb...@rietz.debian.org)id 1Ln8r6-0004Ok-JC; Fri,
+ 27 Mar 2009 10:00:04 +
+X-Loop: ow...@bugs.debian.org
+Subject: Bug#521394: heartbeat: ocf resources script o2cb doesn't work
+Reply-To: Michel Rode rmic...@devnu11.net, 521...@bugs.debian.org
+Resent-From: Michel Rode rmic...@devnu11.net
+Resent-To: debian-bugs-d...@lists.debian.org
+Resent-CC: Simon Horman ho...@debian.org
+Resent-Date: Fri, 27 Mar 2009 10:00:02 +
+Resent-Message-ID: 

Bug#523502:

2009-04-14 Thread Diego Fernández Durán
There's a new version of the package waiting in m.d.n that solves this bug.


-- 
Diego Fernández Durán di...@goedi.net | http://www.goedi.net
GPG : 925C 9A21 7A11 3B13 6E43 50DB F579 D119 90D2 66BB




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



Bug#520285: installation-reports: The squeeze netinst dosn't configure DHCP

2009-04-14 Thread Dinyar Rabady
I can reproduce this error with the daily image from Monday, April 13.
I used the amd64 images netinstall per usb-stick method on a Lenovo
x61s and the configuration of the network failed both with DHCP aswell
as manually. The console output indicates that the configuaration
doesn't actually fail, as the NIC is bound to the correct IP-adress
after the network configuration. The installer just doesn't seem to be
able to see this.

-- 
Please avoid sending me Word, Excel or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html

Unite against human rights abuse in the 'war on terror'
http://www.unsubscribe-me.org

Amnesty International



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



Bug#522584: Dependency going away

2009-04-14 Thread Leopold Palomo Avellaneda
A Diumenge 05 Abril 2009, Ana Guerrero va escriure:
 Package: bulmages-common
 Severity: normal


 Hi,

 bulmages-common depends on kpdf that is going away RSN with kde3 being
 replaced with kde4. Your package will become uninstallable then.

 ana

Bulmages upstream is doing a big restructuring. So, the package in sid will be 
non operative soon. When upstream stabilizes their code (I hope soon) I will 
try to commit a new package, erasing (and adding) the dependency correctly,

I leave this bug as pending. Thanks to report it.

Regards,

Leo



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



Bug#523953: xserver-xorg-video-intel: Backtraces

2009-04-14 Thread Matthias Breier
Hi Apelete,

maybe you could install temporarily the following packages to obtain more 
meaningful backtraces:

xserver-xorg-video-intel-dbg
libdrm-intel1-dbg
libc6-dbg
libgl1-mesa-dri-dbg

Bye
Matthias




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



Bug#523971: krb5-admin-server: krb5_newrealm hangs on fresh install

2009-04-14 Thread Sam Hartman
I'm guessing that this is a server system that you're sshing into or a virtual 
machine or something
and so the kernel is not getting a lot of random data.

I'm not entirely sure what to tell you: it's really incredibly
important that you have good random data when running krb5_newrealm.
I don't know what the lenny kernel will use as a source of random data.
If we find out good recommendations for dealing with this, we can document them.

--Sam



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



Bug#503367: Again: Bug#503367: plink: file conflict with putty-tools

2009-04-14 Thread Andreas Tille

Hi,

I try to resume the thread about the name of plink binary in Debian to
finally find a solution. Status:

  1. we can not use /usr/bin/plink because of the name
 conflict with the putty tool
  2. plink executable will be moved to /usr/lib/plink/plink
  3. we use a symlink to this place under /usr/bin/NEWNAME
  4. the issue will be documented in README.Debian,
 NEWS.Debian and the long description of the package.

The remaining issue to decide about is the actual name to choose.  Here
re the options:

  1. snplink
 Pro: Just announced by upstream as alternate name
  used by Debian (which is not true because the
  suggestion was never realised) and used by
  Gentoo (because of this announcement)
 Con: Another potential name conflict [1]
  2. PLINK
 Pro: Sound remains the same.
 Con: Not portable to files systems which are not
  case sensitive
  3. Plink
 Same pros/cons as 2.
  4. p_link
  5. p-link

I'd really love if we can find a solution together with upstream (in CC)
and I'd actually would wight upstreams opinion about this issue highest
according to the principle that it is not only a Debian issue but might
happen on any users machine who tries to install plink.

So please let us find a reasonable solution which lets us move foreward
to a policy compliant plink package inside Debian.

Kind regards

  Andreas.

[1] 
http://www.icr.ac.uk/research/research_sections/cancer_genetics/cancer_genetics_teams/molecular_and_population_genetics/software_and_databases/index.shtml

--
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#523445: Bug#516122: NMU prepared

2009-04-14 Thread Torsten Marek
Am Montag, den 13.04.2009, 14:14 +0200 schrieb Bernd Zeimetz:
 tags 516122 + patch
 tags 523445 + patch
 
 Hi,
 
 as I've prepared a NMU which fixes the two RC bugs and includes all necessary
 changes to follow the updates in python-qt4.
 Also I'd suggest to upload the version from experimental to unstable now, but
 I'd not like to do that without the maintainers permission.

Hi,

please, go ahead. I have the go from debian-release wrt the SONAME
change, but didn't hear back from all maintainers of reverse
dependencies, which I had contacted privately some weeks ago, which was
the main thing keeping me back. I'll schedule some rebuilds for those
then.


best,


Torsten
-- 
.: Torsten Marek
.: http://shlomme.diotavelli.net
.: tors...@diotavelli.net -- GnuPG: 1024D/A244C858



signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#506212: marked as done (xserver-xorg: After upgrade, X starts but there is no keyboard, user stuck)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 14:02:00 +0100
with message-id 1239714120.4439.51.ca...@radis.liafa.jussieu.fr
and subject line Re: Bug#506212: xserver-xorg: After upgrade, X starts but 
there is no keyboard, user stuck
has caused the Debian Bug report #506212,
regarding xserver-xorg: After upgrade, X starts but there is no keyboard, user 
stuck
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.)


-- 
506212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg
Version: 1:7.4~4
Severity: normal


After an upgrade, I restarted X and it came up but with no
keyboard at all. 

After powering off and rebooting without X, I found this
in Xorg.0.log:

(WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be 
disabled.

After some googling, I found that I could use
Option AllowEmptyInput false and then everything is fine again.

I don't complain - experimental can pull such stunts of course.
But this needs fixing before it gets to stable, where users
expect their old config to work, or new necessary options to
be added automatically.

The information I found suggests that this option might be needed
when the keyboard is specified in xorg.conf, rather than autodetected.
I think I always will need some keyboard information in
xorg.xonf, because I use a norwegian keyboard layout. This surely
cannot be autodetected, even though the keyboard device is
trivially detectable.  It is the same for every other non-english user.


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 26 okt.  2007 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1797392 12 nov. 14:14 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation Quadro NVS 135M (rev a1)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 5342 19 nov. 13:07 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (ra...@juliet2)  Sat May 12 15:12:41 PDT 2007

# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg
#God ide?


Section ServerFlags
#Allow ctrl+alt+Fn - in theory but doesn't actually work.
#vt switch fail when started from xdm, works when started from startx
#   Option  DontVTSwitch  off
#Get the console switching back?
#strangely, this works for xd but is not needed for startx ???
#This option also kills autorepeat and is therefore unuseable
#Option XkbDisable true

#Attempt to fix the mysteriously lost keyboard
Option AllowEmptyInput false

EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen 0 0
InputDevice Generic Keyboard
#Touchpad before other mouse, according to:
##http://gentoo-wiki.com/HARDWARE_Synaptics_Touchpad
#now also CorePointer
InputDevice Synaptics Touchpad CorePointer
InputDevice Configured Mouse
EndSection



#Section Module
#nonexistantLoadtype1
#Load   glx
#Load   dbe
#Load   extmod
#Load   fbdevhw
#Load   record
#Load   freetype
#Virker ikke?
#EndSection

Section InputDevice
Identifier Generic Keyboard
Driver kbd
Option CoreKeyboard
Option XkbRules xorg
Option XkbModel pc105
Option XkbLayout no
EndSection

Section InputDevice
Identifier Configured Mouse
Driver mouse
Option Buttons 10
Option ZaxisMapping 4 5 6 7
Option SendCoreEvents true
Option 

Bug#508244: marked as done (input-hotplug needs an automatic way to setup keyboard layout)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 14:02:00 +0100
with message-id 1239714120.4439.51.ca...@radis.liafa.jussieu.fr
and subject line Re: Bug#506212: xserver-xorg: After upgrade, X starts but 
there is no keyboard, user stuck
has caused the Debian Bug report #506212,
regarding input-hotplug needs an automatic way to setup keyboard layout
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.)


-- 
506212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg
Version: 1:7.4~4
Severity: grave
Justification: renders package unusable

Hi,

On a new laptop, I need the intel driver from experimental, so I'm
forced to use the xorg from experimental as well.

With the lenny version (using the vesa driver) input works fine.

After switching to the experimental version, the keyboard layout is
switched to qwerty, and I can't switch VT using Ctrl+Alt+FX, nor kill
the X server using C-A-backspace.

Lucas


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2008-12-08 13:58 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1797392 2008-11-12 14:14 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller (rev 07)

/etc/X11/xorg.conf unchanged from checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1108 2008-12-08 13:58 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout fr
Option  XkbVariantlatin9
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 26276 2008-12-09 08:37 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.5.3
Release Date: 5 November 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.17.7 x86_64 Debian
Current Operating System: Linux beothuk 2.6.27-1-amd64 #1 SMP Sun Nov 23 
06:55:06 UTC 2008 x86_64
Build Date: 12 November 2008  12:59:43PM
xorg-server 2:1.5.3-1 (bui...@xenophanes) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Tue Dec  9 08:37:16 2008
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi/ does not exist.
Entry deleted from font path.
(WW) The directory 

Bug#506009: maq: gzopen64 implicitly converted to pointer

2009-04-14 Thread Andreas Tille

Hi,

the log of this bug says:

  Date: Tue, 18 Nov 2008 12:45:01 +0900
  ...
  I will wait one week or two in case Upstream prepares a corrected
  update, and if not I will rework debian/rules.

Well, we have now waited more than one or two monthes - IMHO we should
upload now.  Did I missed anything?

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#522926: Same bug on Arch linux (2.6.29)

2009-04-14 Thread Mathieu Clabaut
Same bug here on arch linux 2.6.29 with nfs-utils-1.1.3. Shared volume
mounted from a nfs V3 server.

A way to reproduce the problem:
rm ./blob; echo foo  ./blob ; echo $? cat blob; echo $?
print 1 and then 0.


Some related links :
Same problem on 2.6.23 :
http://www.mail-archive.com/linux-...@vger.kernel.org/msg00481.html


Bug#514135: marked as done (xserver-xorg-video-savage: X fails to start up with crash)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 15:07:21 +0100
with message-id 1239718041.4439.52.ca...@radis.liafa.jussieu.fr
and subject line fixed
has caused the Debian Bug report #514135,
regarding xserver-xorg-video-savage: X fails to start up with crash
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.)


-- 
514135: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514135
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-video-savage
Version: 1:2.2.1-4
Severity: important



-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2008-05-24 20:19 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1689756 2009-01-23 21:26 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: S3 Inc. 86C270-294 Savage/IX-MV (rev 11)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1188 2009-02-04 17:55 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
Driver  savage
EndSection
Section Serverflags
Option  DontZap false
EndSection
Section Monitor
Identifier  Configured Monitor
EndSection
Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 29990 2009-02-04 17:55 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/laptop:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the xorg product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.5.99.901 (1.6.0 RC 1)
Release Date: (unreleased)
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.18-6-686 i686 Debian
Current Operating System: Linux laptop 2.6.26-1-686 #1 SMP Sat Jan 10 18:29:31 
UTC 2009 i686
Build Date: 23 January 2009  08:18:28PM
xorg-server 2:1.5.99.901-2 (jcris...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Wed Feb  4 17:55:45 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(**) Option DontZap false
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath 

Processed: Re: [debian-mysql] Bug#524049: mysql-server-5.0 fails to upgrade

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 524049 important
Bug#524049: mysql-server-5.0 fails to upgrade 
Severity set to `important' from `grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524049: [debian-mysql] Bug#524049: mysql-server-5.0 fails to upgrade

2009-04-14 Thread Norbert Tretkowski
severity 524049 important
thanks

Am Dienstag, den 14.04.2009, 15:21 +0200 schrieb Milou:
 After my last upgrade, mysql-server-5.0 can't be upgrade or remove.
 The consequence is that I can't use aptitude/apt-get anymore.

Please send the english error messages, and the corresponding entries
from /var/log/daemon.log.

Norbert




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



Bug#523902: New Gnash 0.8.5 actually works!

2009-04-14 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Apr 14, 2009 at 09:57:45AM +0200, Miriam Ruiz wrote:
2009/4/14 Jonas Smedegaard d...@jones.dk:

 If the Gnash package had used CDBS I could enable libtool 
 regeneration elegantly in only a few lines, and would be happy to 
 share the changes.

I'm not really that proficient in CDBS and I don't really have so much 
spare time right now for learning it properly. I understand that Gnash 
might be a package complex enough for needing to understand how CDBS 
works and not just blindly use it. I might switch to it in the future 
though, but I need to have time to properly switch to it.

You are right - gnash packaging does need some tuning here and there.

I would be more than happy to team up with you in maintaining gnash 
if/when you choose to use CDBS.  I can do the conversion, if you like: 
not to hide it from you, but do it step by step so that you can follow 
what goes where.

Or perhaps we can sit together and do it at debcamp? :-)


Kind regards,

  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknkozAACgkQn7DbMsAkQLjrzACePPtzAiO0IzK3yc63vNj3gGjc
XPwAoIqeGtjHMpfepY49WB4ceZG6BY/o
=jJZi
-END PGP SIGNATURE-



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



Bug#523445: Bug#516122: NMU prepared

2009-04-14 Thread Bernd Zeimetz
Hi Torsten,

 please, go ahead. I have the go from debian-release wrt the SONAME
 change, but didn't hear back from all maintainers of reverse
 dependencies, which I had contacted privately some weeks ago, which was
 the main thing keeping me back. I'll schedule some rebuilds for those
 then.

the NMU was uploaded a few seconds ago, please take care of the binNMUs.

Thanks,

 Bernd

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79



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



Bug#516122: marked as done (qscintilla2: incomplete debian/copyright)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 15:32:09 +
with message-id e1ltkcl-0006z6...@ries.debian.org
and subject line Bug#516122: fixed in qscintilla2 2.3.2-1.1
has caused the Debian Bug report #516122,
regarding qscintilla2: incomplete debian/copyright
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.)


-- 
516122: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516122
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: qscintilla2
Severity: serious
Justification: Policy 12.5

Hi,

while working on a package that has a copy of qscintilla2 in its tarball
(for building on MacOSX), I noticed that qscintilla2 is a huge copyright-mess.
I thought I could steal your copyright-information for that, before doing
the job myself, but your debian/copyright only says:

Copyright: 

QScintilla 2:
Copyright (C) 2007 Phil Thompson

Scintilla (under src/):
Copyright 1998-2007 by Neil Hodgson ne...@scintilla.org

While doing a 'grep -ri copyright .' in the source brings a lot of other
copyright holders, and checking with licencecheck says there are lots of
files without copyright at all.

Please fix (I might offer some help when I have the time :))

Regards
Evgeni

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

Kernel: Linux 2.6.28-x31-1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


---End Message---
---BeginMessage---
Source: qscintilla2
Source-Version: 2.3.2-1.1

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

libqscintilla2-5_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/libqscintilla2-5_2.3.2-1.1_amd64.deb
libqscintilla2-designer_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/libqscintilla2-designer_2.3.2-1.1_amd64.deb
libqscintilla2-dev_2.3.2-1.1_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-dev_2.3.2-1.1_all.deb
libqscintilla2-doc_2.3.2-1.1_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-doc_2.3.2-1.1_all.deb
python-qscintilla2_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/python-qscintilla2_2.3.2-1.1_amd64.deb
qscintilla2_2.3.2-1.1.diff.gz
  to pool/main/q/qscintilla2/qscintilla2_2.3.2-1.1.diff.gz
qscintilla2_2.3.2-1.1.dsc
  to pool/main/q/qscintilla2/qscintilla2_2.3.2-1.1.dsc



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 516...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bernd Zeimetz b...@debian.org (supplier of updated qscintilla2 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: Mon, 13 Apr 2009 13:43:44 +0200
Source: qscintilla2
Binary: libqscintilla2-5 libqscintilla2-designer libqscintilla2-dev 
libqscintilla2-doc python-qscintilla2
Architecture: source all amd64
Version: 2.3.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Torsten Marek shlo...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 libqscintilla2-5 - The Qt4 port of the Scintilla source code editing widget
 libqscintilla2-designer - Qt4 Designer plugin for QScintilla 2
 libqscintilla2-dev - The Scintilla source code editing widget for Qt4, 
development fil
 libqscintilla2-doc - API documentation for QScintilla 2
 python-qscintilla2 - Python bindings for QScintilla 2
Closes: 516122 523445
Changes: 
 qscintilla2 (2.3.2-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/copyright:
 - Adding missing copyright informations.
   Thanks to Mathieu Parent for providing the fixed file.
   (Closes: #516122)
   * debian/control, debian/rules, debian/pyversions:
 - Replace python-central by python-support to follow the change in
   python-qt4. This would not be an issue if python-central would
   create namespace packages properly.
   (Closes: #523445)
   * debian/control, debian/rules:
 - Let python-qscintilla2 depend on a python-qt4 version larger or
   equal to the version it was built with.
   * debian/rules:
 - Prepare to build with Python 2.6 to follow the changes in python-qt4.
   * debian/control:
 - 

Bug#523445: marked as done (python-qscintilla2: cannot import module with python-qt4 4.4.6 installed)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 15:32:09 +
with message-id e1ltkcl-0006z8...@ries.debian.org
and subject line Bug#523445: fixed in qscintilla2 2.3.2-1.1
has caused the Debian Bug report #523445,
regarding python-qscintilla2: cannot import module with python-qt4 4.4.6 
installed
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.)


-- 
523445: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523445
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-qscintilla2
Version: 2.2-4
Severity: grave
Justification: renders package unusable

python-qt4's packaging has changed and now uses python-support. As a result,
packages shipping submodules of PyQt4 must be updated to use python-support
too, or they cannot be imported:

Traceback (most recent call last):
  File /home/syt/bin/hgqv, line 24, in module
  from hgview.qt4 import hgview_qt4 as hgview
File /home/syt/src/hgview/qt4/hgview_qt4.py, line 16, in module
from PyQt4 import QtCore, QtGui, Qsci
ImportError: cannot import name Qsci

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-qscintilla2 depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-3  GCC support library
ii  libqscintilla2-3  2.2-4  The Qt4 port of the Scintilla sour
ii  libqtcore44.4.3-2Qt 4 core module
ii  libqtgui4 4.4.3-2Qt 4 GUI module
ii  libstdc++64.3.3-3The GNU Standard C++ Library v3
ii  python2.5.2-3An interactive high-level object-o
ii  python-qt44.4.2-4Python bindings for Qt4

python-qscintilla2 recommends no packages.

python-qscintilla2 suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: qscintilla2
Source-Version: 2.3.2-1.1

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

libqscintilla2-5_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/libqscintilla2-5_2.3.2-1.1_amd64.deb
libqscintilla2-designer_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/libqscintilla2-designer_2.3.2-1.1_amd64.deb
libqscintilla2-dev_2.3.2-1.1_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-dev_2.3.2-1.1_all.deb
libqscintilla2-doc_2.3.2-1.1_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-doc_2.3.2-1.1_all.deb
python-qscintilla2_2.3.2-1.1_amd64.deb
  to pool/main/q/qscintilla2/python-qscintilla2_2.3.2-1.1_amd64.deb
qscintilla2_2.3.2-1.1.diff.gz
  to pool/main/q/qscintilla2/qscintilla2_2.3.2-1.1.diff.gz
qscintilla2_2.3.2-1.1.dsc
  to pool/main/q/qscintilla2/qscintilla2_2.3.2-1.1.dsc



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 523...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bernd Zeimetz b...@debian.org (supplier of updated qscintilla2 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: Mon, 13 Apr 2009 13:43:44 +0200
Source: qscintilla2
Binary: libqscintilla2-5 libqscintilla2-designer libqscintilla2-dev 
libqscintilla2-doc python-qscintilla2
Architecture: source all amd64
Version: 2.3.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Torsten Marek shlo...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 libqscintilla2-5 - The Qt4 port of the Scintilla source code editing widget
 libqscintilla2-designer - Qt4 Designer plugin for QScintilla 2
 libqscintilla2-dev - The Scintilla source code editing widget for Qt4, 
development fil
 libqscintilla2-doc - API documentation for QScintilla 2
 python-qscintilla2 - Python bindings for QScintilla 2
Closes: 516122 523445
Changes: 
 qscintilla2 (2.3.2-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/copyright:
 - Adding missing copyright informations.
 

Processed: r2704 - trunk/openchange/debian

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 524000 pending
Bug#524000: FTBFS: missing build dependency libtevent-dev and other build 
problems
There were no tags set.
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#520285: installation-reports: The squeeze netinst dosn't configure DHCP

2009-04-14 Thread Glenn Saberton
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dinyar Rabady wrote:
 I can reproduce this error with the daily image from Monday, April 13.
 I used the amd64 images netinstall per usb-stick method on a Lenovo
 x61s and the configuration of the network failed both with DHCP aswell
 as manually. The console output indicates that the configuaration
 doesn't actually fail, as the NIC is bound to the correct IP-adress
 after the network configuration. The installer just doesn't seem to be
 able to see this.
 
The timeout for dhcp configuration in with the debconf display is 15
seconds. Sometimes dhcp can take longer than this to get a lease and
then succeed after the debconf display has indicated an error,
particularly with wireless. I have seen this a few times, but i'm not
sure what the original thoughts were irt the timeout for dhcp configuration.

Cheers

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

iEUEARECAAYFAknktrEACgkQV8GyuTwyskOBbQCgsl3uCPknGIMgjs/oqKQOYIBG
ZpoAli+SsJQyCzt4Dvt9vVF1KYGBjYY=
=NGBP
-END PGP SIGNATURE-



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



Bug#522477: [png-mng-implement] Bug#522477: inkscape: FTBFS: pngconf.h:328: error: expected constructor, destructor, or type conversion before '.' token

2009-04-14 Thread John Bowler
From: Wolfram Quester [mailto:wo...@sigxcpu.org] 
OK, thanks for the link. But the crazy thing is that inkscape
includes setjmp.h in the code leading to the compiler error
only via png.h. 

You need to look for the #define of _SETJMP_H.  Greg's method doesn't work
for that unfortunately, but some header file *other* than setjmp.h is
defining it.  IMO that's a big bug in itself, though I've seen similar
things done in code attempting to fake out system header files and
substitute a different implementation.

First check that you really have a valid png.h:

${CC} -c -o foo.o /usr/include/png.h

If this fails your installation has been hacked; reinstall libpng.  If it
still fails then the gcc standard pre-include is itself #include'ing
setjmp.h.  I think someone suggested that on a bug around 2000 - I saw
something to that effect on a recent web search.

Then take the file that fails and temporarily move the #include png.h to
the top of the file - make it the first #include.  Rebuild.  If that fails
you have a local png.h and *it* has been hacked - get a released version.
If it still fails your build script sets the gcc pre-include to #include
setjmp.h, fix it.

If it still works move #include png.h down towards its previous location
in the file.  (Use a binary chop.)  This will isolate the #include that is
the top level culprit.  Suppose this is foo.h, then you should be able to
repro the problem with a simple file of the form:

#include foo.h
#include png.h

You will probably need to get the gcc -I directives to match those in the
build, but maybe not - just try a simple gcc -c first.

Now it gets more difficult unless it is immediately obvious where foo.h
defines _SETJMP_H.  If you can hack on foo.h then you can actually insert
#include png.h into the middle and repeat the search in there.  If not you
may be able to make a local foo.h and repro the problem in the same way, but
beware the semantics of #include bar.h within foo.h - it actually means
'include the bar.h from the directory containing foo.h'.  If you can't repro
the problem with a local foo.h it is because you have changed 'the directory
containing foo.h'.

John Bowler jbow...@acm.org




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



Bug#522051: marked as done (/usr/bin/couchdb requires gawk)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 16:32:07 +
with message-id e1ltlyn-0002lh...@ries.debian.org
and subject line Bug#522051: fixed in couchdb 0.9.0-1
has caused the Debian Bug report #522051,
regarding /usr/bin/couchdb requires gawk
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.)


-- 
522051: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522051
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: couchdb
Version: 0.8.0-2+b1
Severity: serious
Tags: patch
Justification: Policy 3.5

Invoking /etc/init.d/couchdb start renders the following output:

   Starting database server: couchdb/usr/bin/couchdb: line 100: gawk: command
   not found failed!

I expect it to just start.

Further investigation shows that /usr/bin/couchdb uses gawk at lines 100 and
104. The option -F is readily available in awk so there should be no problem
replacing gawk with awk in this case. Patch below.

--- couchdb.orig2009-03-31 12:26:28.0 +0100
+++ couchdb 2009-03-31 12:29:03.0 +0100
@@ -97,11 +97,11 @@
 }
 
 _load_configuration () {
-dbrootdir_ini_value=`gawk -F = /^DbRootDir=/{print \\$2}  $INI_FILE`
+dbrootdir_ini_value=`awk -F = /^DbRootDir=/{print \\$2}  $INI_FILE`
 if test -n $dbrootdir_ini_value; then
 LIB_DIRECTORY=$dbrootdir_ini_value
 fi
-logfile_ini_value=`gawk -F = /^LogFile=/{print \\$2}  $INI_FILE`
+logfile_ini_value=`awk -F = /^LogFile=/{print \\$2}  $INI_FILE`
 if test -n $logfile_ini_value; then
 LOG_DIRECTORY=`dirname $logfile_ini_value`
 fi


If gawk is necessary for couchdb please add it to the dependency field.


Best regards,
Per

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

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

Versions of packages couchdb depends on:
ii  adduser  3.110   add and remove users and groups
ii  erlang-base [erlang-abi- 1:12.b.5-dfsg-2 Concurrent, real-time, distributed
ii  erlang-nox   1:12.b.5-dfsg-2 Concurrent, real-time, distributed
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libicu40 4.0.1-2 International Components for Unico
ii  libmozjs1d   1.9.0.7-1   The Mozilla SpiderMonkey JavaScrip
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip
ii  mime-support 3.44-1  MIME files 'mime.types'  'mailcap

couchdb recommends no packages.

couchdb suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: couchdb
Source-Version: 0.9.0-1

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

couchdb_0.9.0-1.diff.gz
  to pool/main/c/couchdb/couchdb_0.9.0-1.diff.gz
couchdb_0.9.0-1.dsc
  to pool/main/c/couchdb/couchdb_0.9.0-1.dsc
couchdb_0.9.0-1_i386.deb
  to pool/main/c/couchdb/couchdb_0.9.0-1_i386.deb
couchdb_0.9.0.orig.tar.gz
  to pool/main/c/couchdb/couchdb_0.9.0.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Noah Slater nsla...@tumbolia.org (supplier of updated couchdb 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: Tue, 14 Apr 2009 16:32:45 +0100
Source: couchdb
Binary: couchdb
Architecture: source i386
Version: 0.9.0-1
Distribution: unstable
Urgency: low
Maintainer: Noah Slater nsla...@tumbolia.org
Changed-By: Noah Slater nsla...@tumbolia.org
Description: 
 couchdb- RESTful document oriented database
Closes: 522051
Changes: 
 couchdb (0.9.0-1) unstable; urgency=low
 .
   * New upstream release. Closes: #522051
   * Added debian/patches/pid.patch, corrects daemon pidfile handling.
   * Updated debian/control, added Build-Depends on libcurl4-openssl-dev.
   * Updated debian/control, changed Homepage and Description.
   * Updated debian/control, changed Standards-Version to 3.8.0.
   * Updated debian/copyright, changed maintainer 

Bug#520410: uploading texlive new packages build with tex-common 1.18

2009-04-14 Thread Norbert Preining
Hi guys,

I am planning to upload the texlive packages I have built with
tex-common 1.18, that means there will be a dependency on tex-common
1.18. This version introduces the layout I have described in the
previous emails:
- new script update-texmf-config in /usr/sbin that is used as the
  maintainer script call. It does nothing else bug calling dpkg-trigger
- postinst of tex-common calls trigger actions.

My tests with the packages went fine, but i would like to ask some of
you to do tests, too. Any chances that you take a look at
deb http://people.debian.org/~preining/TeX/ pool/
deb-src http://people.debian.org/~preining/TeX/ pool/
and report anything, but I am mostly interested in getting the FTBFS and
other grave bugs fixed.

Thanks for any comments.

Best wishes

Norbert

---
Dr. Norbert Preining prein...@logic.atVienna University of Technology
Debian Developer prein...@debian.org Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
SPITTAL OF GLENSHEE (n.)
That which has to be cleaned off castle floors in the morning after a
bagpipe contest or vampire attack.
--- Douglas Adams, The Meaning of Liff



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



Bug#522477: [png-mng-implement] Bug#522477: inkscape: FTBFS: pngconf.h:328: error: expected constructor, destructor, or type conversion before '.' token

2009-04-14 Thread Kurt Roeckx
On Mon, Apr 13, 2009 at 06:17:52PM +0200, Wolfram Quester wrote:
 
 OK, thanks for the link. But the crazy thing is that inkscape includes 
 setjmp.h
 in the code leading to the compiler error only via png.h. It does not include
 setjmp.h directly.
 So I'm still tempted to call this a bug in libpng. Furthermore, since we 
 don't include
 setjmp.h I don't see a way for th recommended workaround, namely including 
 png.h before
 setjmp.h. But I have to look deeper into the code for a fix.

/usr/include/freetype2/freetype/config/ftstdlib.h has an
#include setjmp.h


Kurt




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



Bug#523475: libxine1: Xine-based players crash here too

2009-04-14 Thread Heikki Kantola
Package: libxine1
Version: 1.1.16.3-1+b1
Severity: normal


This morning I noticed that Kaffeine crashes whenever I try to start
viewing DVB. So, I now started to seriously look what causes this and
eventually stumbled on this bug and noticed that also other Xine-based
video players (xine, totem) crash. And in my case, it doesn't seem to
be ~/.xine/catalog.cache causing the trouble as I cannot see anything
wrong with that file. Most likely the problem isn't strictly in Xine
libraries itself as I just tried downgrading into the version in
testing distribution and the results were still the same, so I guess
the problem lies in some config file or related library/driver...

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

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

Versions of packages libxine1 depends on:
ii  libxine1-console   1.1.16.3-1+b1 libaa/libcaca/framebuffer/directfb
ii  libxine1-misc-plugins  1.1.16.3-1+b1 Input, audio output and post plugi
ii  libxine1-plugins   1.1.16.3-1the xine video/media player librar
ii  libxine1-x 1.1.16.3-1+b1 X desktop video output plugins for

Versions of packages libxine1 recommends:
ii  libxine1-ffmpeg1.1.16.3-1+b1 MPEG-related plugins for libxine1

Versions of packages libxine1 suggests:
pn  libxine1-doc | li none (no description available)
ii  xine-ui   0.99.5+cvs20070914-2.1 the xine video player, user interf

-- 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#523953: Xserver crash whenever playing high resolution video

2009-04-14 Thread Mathieu GELI
Package: xserver-xorg-video-intel
Version: 2:2.6.3-1
Severity: grave

I figured out having *all* the dbg packages woule be better.
See attached traces.

Cheers

-- 
Mathieu
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
(gdb) attach 16900
Attaching to program: /usr/bin/Xorg, process 16900
Reading symbols from /usr/lib/libpciaccess.so.0...done.
Loaded symbols for /usr/lib/libpciaccess.so.0
Reading symbols from /lib/i686/cmov/libdl.so.2...Reading symbols from 
/usr/lib/debug/lib/i686/cmov/libdl-2.9.so...done.
done.
Loaded symbols for /lib/i686/cmov/libdl.so.2
Reading symbols from /lib/i686/cmov/libpthread.so.0...Reading symbols from 
/usr/lib/debug/lib/i686/cmov/libpthread-2.9.so...done.
[Thread debugging using libthread_db enabled]
[New Thread 0xb7a5b720 (LWP 16900)]
done.
Loaded symbols for /lib/i686/cmov/libpthread.so.0
Reading symbols from /usr/lib/libXfont.so.1...done.
Loaded symbols for /usr/lib/libXfont.so.1
Reading symbols from /usr/lib/libXau.so.6...done.
Loaded symbols for /usr/lib/libXau.so.6
Reading symbols from /usr/lib/libfontenc.so.1...done.
Loaded symbols for /usr/lib/libfontenc.so.1
Reading symbols from /usr/lib/libpixman-1.so.0...done.
Loaded symbols for /usr/lib/libpixman-1.so.0
Reading symbols from /usr/lib/libhal.so.1...done.
Loaded symbols for /usr/lib/libhal.so.1
Reading symbols from /usr/lib/libdbus-1.so.3...done.
Loaded symbols for /usr/lib/libdbus-1.so.3
Reading symbols from /usr/lib/libXdmcp.so.6...done.
Loaded symbols for /usr/lib/libXdmcp.so.6
Reading symbols from /usr/lib/libgcrypt.so.11...done.
Loaded symbols for /usr/lib/libgcrypt.so.11
Reading symbols from /lib/libaudit.so.0...done.
Loaded symbols for /lib/libaudit.so.0
Reading symbols from /lib/libselinux.so.1...done.
Loaded symbols for /lib/libselinux.so.1
Reading symbols from /lib/i686/cmov/libm.so.6...Reading symbols from 
/usr/lib/debug/lib/i686/cmov/libm-2.9.so...done.
done.
Loaded symbols for /lib/i686/cmov/libm.so.6
Reading symbols from /lib/i686/cmov/librt.so.1...Reading symbols from 
/usr/lib/debug/lib/i686/cmov/librt-2.9.so...done.
done.
Loaded symbols for /lib/i686/cmov/librt.so.1
Reading symbols from /lib/libgcc_s.so.1...done.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /lib/i686/cmov/libc.so.6...Reading symbols from 
/usr/lib/debug/lib/i686/cmov/libc-2.9.so...done.
done.
Loaded symbols for /lib/i686/cmov/libc.so.6
Reading symbols from /usr/lib/libz.so.1...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /lib/ld-linux.so.2...Reading symbols from 
/usr/lib/debug/lib/ld-2.9.so...done.
done.
Loaded symbols for /lib/ld-linux.so.2
Reading symbols from /usr/lib/libfreetype.so.6...done.
Loaded symbols for /usr/lib/libfreetype.so.6
Reading symbols from /usr/lib/libsmbios.so.2...done.
Loaded symbols for /usr/lib/libsmbios.so.2
Reading symbols from /usr/lib/libgpg-error.so.0...done.
Loaded symbols for /usr/lib/libgpg-error.so.0
Reading symbols from /usr/lib/libstdc++.so.6...done.
Loaded symbols for /usr/lib/libstdc++.so.6
Reading symbols from /usr/lib/xorg/modules/extensions/libdbe.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libdbe.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//libdbe.so
Reading symbols from /usr/lib/xorg/modules/extensions/libextmod.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libextmod.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//libextmod.so
Reading symbols from /usr/lib/xorg/modules/extensions/libdri.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libdri.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//libdri.so
Reading symbols from /usr/lib/libdrm.so.2...done.
Loaded symbols for /usr/lib/libdrm.so.2
Reading symbols from /usr/lib/xorg/modules/extensions/libglx.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//libglx.so
Reading symbols from /usr/lib/xorg/modules/extensions/librecord.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/librecord.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//librecord.so
Reading symbols from /usr/lib/xorg/modules/extensions/libdri2.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libdri2.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions//libdri2.so
Reading symbols from /usr/lib/xorg/modules/drivers/intel_drv.so...Reading 
symbols from /usr/lib/debug/usr/lib/xorg/modules/drivers/intel_drv.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/drivers//intel_drv.so
Reading symbols from 

Bug#511698: marked as done (update-menus fails with unknown error)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 19:52:32 +0200
with message-id 20090414175232.gc4...@yellowpig
and subject line Bug#511698: popen broken on 32bit userland with 64bit kernel
has caused the Debian Bug report #511698,
regarding update-menus fails with unknown error
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.)


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

Running update-menus either from triggers at the end of an apt transaction or as
root results in this output:

Unknown error, message=exec /bin/bash -o pipefail -c 'dpkg-query --show
--showformat=\${status} \${provides} \${package}\n | sed -n -e
/installed\|triggers-awaited\|triggers-pending
/{s/^.*\(installed\|triggers-awaited\|triggers-pending\) *//; s/[, ][, ]*/\n/g;
p}'

Running the command being executed manually results in the following similar
output:

acpi
acpi-support
acpi-support-base
acpid
adduser
smeg
alacarte
alien
alsa
alsa-base
audio-mixer
alsa-utils
anacron
apmd
app-install-data
...


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

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

Versions of packages menu depends on:
ii  libc6 2.9-0exp1  GNU C Library: Shared libraries
ii  libgcc1   1:4.3.2-2  GCC support library
ii  libstdc++64.3.2-2The GNU Standard C++ Library v3

menu recommends no packages.

Versions of packages menu suggests:
ii  gksu  2.0.0-6graphical frontend to su

-- no debconf information


---End Message---
---BeginMessage---
On Mon, Mar 30, 2009 at 09:53:52PM +0200, Bill Allombert wrote:
 Below is the answer of the GLIBC maintainer.
 It appears that these bugs are instances of bug #521863
 against the Linux kernel. This bug will be fixed in
 2.6.26-2-amd64 for lenny and 2.6.29-1-amd64 for sid.
 
 I will let the bugs open so other affected users can see.
 Please close your bug once you have updated your kernel
 and confirmed this fix the issue.

Well, Lenny 5.0.1 has been released with this fix and I tested it 
fixed the issue, so I am closing these reports.

Thanks for your cooperation,
-- 
Bill. ballo...@debian.org

Imagine a large red swirl here. 

---End Message---


Bug#524084: viking: FTBFS: vikgpslayer.c:237: error: field 'realtime_gpsd_unit' has incomplete type

2009-04-14 Thread Kurt Roeckx
Source: viking
Version: 0.9.8-1
Severity: serious

Hi,

Your package is failing to build with the following error:
vikgpslayer.c:237: error: field 'realtime_gpsd_unit' has incomplete type
vikgpslayer.c: In function 'vik_gps_layer_new':
vikgpslayer.c:473: warning: implicit declaration of function 'gpsd_units'
vikgpslayer.c: In function 'rt_gpsd_try_connect':
vikgpslayer.c:1321: warning: passing argument 2 of 'gps_set_raw_hook' from 
incompatible pointer type
make[4]: *** [vikgpslayer.o] Error 1


Kurt




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



Bug#416594: nvidia-kernel-source: 180.44-2 fails to build with 2.6.29: nested fakeroot error

2009-04-14 Thread Bastian Kleineidam
Package: nvidia-kernel-source
Version: 180.44-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

the version 180.44-2 still fails to build for 2.6.29 kernels:
make[3]: [kdist_clean] Error 1 (ignored)
fakeroot /usr/bin/make -w -f debian/rules configure
fakeroot: FAKEROOTKEY set to 813936224
fakeroot: nested operation not yet supported
make[3]: *** [kdist_config] Error 1

The complete logs - both the error version and the one with the patch -
are attached.

Regards,
  Bastian


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

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

Versions of packages nvidia-kernel-source depends on:
ii  debhelper 7.2.7  helper programs for debian/rules
ii  dpatch2.0.31 patch maintenance system for Debia
ii  make  3.81-5 The GNU version of the make util
ii  sed   4.1.5-8The GNU sed stream editor

Versions of packages nvidia-kernel-source recommends:
ii  devscripts2.10.48scripts to make the life of a Debi
ii  kernel-package12.008 A utility for building Linux kerne
ii  nvidia-glx180.29-1   NVIDIA binary Xorg driver

nvidia-kernel-source suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAknk0XwACgkQeBwlBDLsbz41VgCfaK148wi7YbhSsB8sxGOd3ywa
XvEAoJ7PItJjDpAzkfHLi7AyhHTdKl3X
=Z9L3
-END PGP SIGNATURE-


nvidia-module-build.log.gz
Description: GNU Zip compressed data


nvidia-module-build-with-fix.log.gz
Description: GNU Zip compressed data
--- debian/rules.orig   2009-04-13 09:17:40.0 +0200
+++ debian/rules2009-04-13 09:18:51.0 +0200
@@ -87,7 +87,7 @@
 # should configure the module so it is ready for compilation (mostly
 # useful for calling configure)
 kdist_config kdist_configure:
-   $(ROOT_CMD) $(MAKE) $(MFLAGS) -f debian/rules configure
+   $(MAKE) $(MFLAGS) -f debian/rules configure
 
 # the kdist_clean target is called by make-kpkg modules_clean. It is
 # responsible for cleaning up any changes that have been made by the


Processed: unarchiving 416594

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 416594
Bug 416594 [nvidia-kernel-source] nvidia-kernel-source: bad attempt to nest 
fakeroot sessions
Unarchived Bug 416594

End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: reopening 416594

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # nested fakeroot bug has crept up from the dead
 reopen 416594
Bug#416594: nvidia-kernel-source: bad attempt to nest fakeroot sessions
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524085: kmess: FTBFS: -- Configuring incomplete, errors occurred!

2009-04-14 Thread Kurt Roeckx
Source: kmess
Version: 2.0~beta1-1
Severity: serious

Hi,

Your package is failing to build with the following error:
CMake Error at
/usr/share/kde4/apps/cmake/modules/MacroLogFeature.cmake:76 (IF):
  if had incorrect arguments: ${_comments} MATCHES .* (Unknown arguments
  specified).
Call Stack (most recent call first):
  CMakeLists.txt:51 (MACRO_LOG_FEATURE)


-- Configuring incomplete, errors occurred!
make: *** [obj-x86_64-linux-gnu/CMakeCache.txt] Error 1


Kurt




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



Bug#524086: lilypond: FTBFS: Aborted

2009-04-14 Thread Kurt Roeckx
Source: lilypond
Version: 2.10.33-2.3
Severity: serious

Hi,

Your package is failing to build with the following error:
Processing `/build/buildd/lilypond-2.10.33/ly/generate-documentation.ly'
Parsing...[/build/buildd/lilypond-2.10.33/out/bin/../share/lilypond/2.10.33/ly/init.lylilypond:
+ports.c:978: scm_fill_input: Assertion `pt-read_pos == pt-read_end' failed.
/bin/sh: line 1: 25440 Aborted 
/build/buildd/lilypond-2.10.33/out/bin/lilypond
+--verbose /build/buildd/lilypond-2.10.33/ly/generate-documentation
make[3]: *** [out/lilypond-internals.texi] Error 134


Kurt




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



Bug#524088: s3d: FTBFS: error: 'struct gps_data_t' has no member named 'latitude'

2009-04-14 Thread Kurt Roeckx
Source: s3d
Version: 0.2.1-11
Severity: serious

Hi,

Your package is failing to build with the following error:
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c: In function 'show_gpsdata':
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:66: error: 'struct gps_data_t' has no 
member named 'latitude'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:66: error: 'struct gps_data_t' has no 
member named 'longitude'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:66: error: 'struct gps_data_t' has no 
member named 'altitude'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:67: error: 'struct gps_data_t' has no 
member named 'speed'/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:85: error: 
'struct gps_data_t' has no member named 'mode'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c: In function 'show_position':
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:128: error: 'struct gps_data_t' has 
no member named 'mode'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:136: error: 'struct gps_data_t' has 
no member named 'latitude'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:137: error: 'struct gps_data_t' has 
no member named 'longitude'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:138: error: 'struct gps_data_t' has 
no member named 'track'
/build/buildd/s3d-0.2.1/apps/s3dosm/gps.c:139: error: 'struct gps_data_t' has 
no member named 'speed'
make[3]: *** [apps/s3dosm/CMakeFiles/s3dosm.dir/gps.c.o] Error 1


Kurt




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



Bug#523031: Bug#523030: wrong quoting in aclocal's python.m4 check

2009-04-14 Thread Ralf Wildenhues
Hello Matthias,

* Matthias Klose wrote on Tue, Apr 14, 2009 at 09:13:24AM CEST:
 '${prefix}' and '${exec_prefix}' are passed unexpanded to get_python_lib()), 
 and
 the macro then defaults to the hardcoded alternative case. The patch passes 
 the
 real path names to get_python_lib(), and only for the case, where the prefix
 argument was specified on the command line (the case for a missing prefix
 argument is handled inside the get_python_lib() function).
 
 tested the macro with python versions 2.0 up to trunk, and the 3.0 and 3.1 
 branches.

Thanks for the bug report and patch.  The way I read info Automake
Python, the non-expanded '${prefix}' and '${exec_prefix}' were done
on purpose.  Now, I'm not a python expert, nor have I worked much with
the Automake support code for python (except for accepting a patch into
the git tree that adds python 3.0 support).  Can you describe or provide
an example that is fixed with your patch and broken without, and look
over the above-mentioned section in the manual, to see whether it still
describes the situation accurately with your patch?

Thanks,
Ralf



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



Processed: block 518037 with 515949

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 518037 with 515949
Bug#515949: vorbis encoder is broken on armel
Bug#518037: libsndfile_1.0.19-1(mips/unstable): FTBFS on mips. regression test 
failure.
Was not blocked by any bugs.
Blocking bugs of 518037 added: 515949


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524095: fglrx-driver: FTBFS with lmn-2.6 2.6.29 on sid/i386

2009-04-14 Thread Daniel Baumann
Package: fglrx-driver
Severity: serious

Hi,

current fglrx-driver does not build anymore with linux-modules-nonfree-2.6.

---snip---
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:
In function 'KCL_GetEffectiveUid':
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:1407:
error: 'struct task_struct' has no member named 'euid'
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:
In function 'KCL_PosixSecurityCapSetIPCLock':
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:1781:
error: 'struct task_struct' has no member named 'cap_effective'
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:1785:
error: 'struct task_struct' has no member named 'cap_effective'
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:
In function 'KCL_MEM_VM_GetRegionPhysAddrStr':
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:3225:
warning: return makes pointer from integer without a cast
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:3226:
warning: return makes pointer from integer without a cast
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:3227:
warning: return makes pointer from integer without a cast
/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.c:3229:
warning: return makes pointer from integer without a cast
make[6]: ***
[/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx/firegl_public.o]
Error 1
make[5]: ***
[_module_/home/user/linux-modules-nonfree-2.6/debian/build/build_i386_none_486_fglrx]
Error 2
make[4]: *** [sub-make] Error 2
make[3]: *** [all] Error 2
make[3]: Leaving directory `/usr/src/linux-headers-2.6.29-1-486'
make[2]: *** [debian/stamps/build_i386_none_486_fglrx] Error 2
make[2]: Leaving directory `/home/user/linux-modules-nonfree-2.6'
make[1]: *** [build_i386_none_486_fglrx] Error 2
make[1]: Leaving directory `/home/user/linux-modules-nonfree-2.6'
make: *** [debian/stamps/build-base] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
(sid_i386)u...@debian:~/linux-modules-nonfree-2.6$
---snap---

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



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



Bug#524097: libgwrap-runtime-dev: missing depends.

2009-04-14 Thread Kurt Roeckx
Source: libgwrap-runtime-dev
Version: 1.9.12-2
Severity: serious

Hi,

When building guile-gnome-platform, I get the following error:
In file included from /usr/include/g-wrap/core-runtime.h:23,
 from guile-gnome-gw-gobject.c:3:
/usr/include/g-wrap/ffi-support.h:24:17: error: ffi.h: No such file or directory
In file included from guile-gnome-gw-gobject.c:3:
/usr/include/g-wrap/core-runtime.h:65: error: expected declaration specifiers 
or '...' before 'size_t'


Kurt




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



Bug#523025: fglrx-modules-2.6-686: X driver is newer than kernel module

2009-04-14 Thread Daniel Baumann
There has never been such a version as 8.58.2, closing.

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



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



Bug#523971: krb5-admin-server: krb5_newrealm hangs on fresh install

2009-04-14 Thread Roman Bojczuk
I waited about 10 minutes and just randomly hit keys on the keyboard
while it was generating random data. I have an Intel dual core 1.6 GHz
machine which does not usually take too long to generate randomness.
Thanks for your reply.

On Mon, Apr 13, 2009 at 10:18:34PM -0700, Russ Allbery wrote:
 roman ro...@moose.romanbo.com writes:
 
  After a default fresh install of Lenny 5.0, krb5-newrealm just hangs at
  Loading random data.
 
 How long did you wait and did you do other things on the system at the
 same time to help the kernel rebuild its entropy?
 
 -- 
 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#523025: marked as done (fglrx-modules-2.6-686: X driver is newer than kernel module)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 21:21:41 +0200
with message-id 49e4e245.80...@debian.org
and subject line Re: fglrx-modules-2.6-686: X driver is newer than kernel module
has caused the Debian Bug report #523025,
regarding fglrx-modules-2.6-686: X driver is newer than kernel module
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.)


-- 
523025: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523025
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: fglrx-modules-2.6-686
Version: 2:2.6.26-2
Severity: grave
Justification: renders package unusable


The version of the ATI driver in fglrx-driver is 8.58.2, but in the kernel 
module it is 8.56.4.
This is revealed in the Xorg log.

In a single monitor set-up, this just causes hardware acceleration to be 
dropped. However, on my
dual-monitor system it freezes the kernel the instant X starts: no response 
from any kind of
keyboard input, not even VT switching, and no response to pings from another 
machine. The only way
out is a forced reboot using the reset button. This is 100% repeatable, too.

I was able to get the flgrx driver to run without crashing the kernel by 
removing the
dual-monitor-specific parts of my xorg.conf. That was how I was able to look at 
the Xorg log,
which otherwise was being lost due to the lack of a disk sync before the kernel 
crash.

I solved this by using module-assistant to build a module from fglrx-source, so 
I assume a rebuild
of fglrx-modules-2.6-686 would achieve the same result.

However, it would be good if this situation didn't completely crash the system 
when it happens
again (as it surely will -- it's happened to me at various times in the past). 
I don't know if
this is an ATI bug or a Debian bug, and whether it is in fglrx-driver or 
fglrx-source. I will
happily make another bug report if you can tell me where.

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

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

Versions of packages fglrx-modules-2.6-686 depends on:
ii  fglrx-modules-2.6.26-1-686 2.6.26+8-12-2 Display driver for AMD/ATI Radeon 
ii  linux-image-686 [linux-lat 2.6.26+17 Linux image on PPro/Celeron/PII/PI

fglrx-modules-2.6-686 recommends no packages.

fglrx-modules-2.6-686 suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
There has never been such a version as 8.58.2, closing.

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

---End Message---


Processed: Re: Bug#524097: libgwrap-runtime-dev: missing depends.

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 524097 libffi-dev
Bug#524097: libgwrap-runtime-dev: missing depends.
Bug reassigned from package `libgwrap-runtime-dev' to `libffi-dev'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524097: libgwrap-runtime-dev: missing depends.

2009-04-14 Thread Kurt Roeckx
reassign 524097 libffi-dev
thanks

On Tue, Apr 14, 2009 at 09:20:11PM +0200, Kurt Roeckx wrote:
 Source: libgwrap-runtime-dev
 Version: 1.9.12-2
 Severity: serious
 
 Hi,
 
 When building guile-gnome-platform, I get the following error:
 In file included from /usr/include/g-wrap/core-runtime.h:23,
  from guile-gnome-gw-gobject.c:3:
 /usr/include/g-wrap/ffi-support.h:24:17: error: ffi.h: No such file or 
 directory
 In file included from guile-gnome-gw-gobject.c:3:
 /usr/include/g-wrap/core-runtime.h:65: error: expected declaration specifiers 
 or '...' before 'size_t'

The Depends is there.  It seems that the libffi.pc file is not set
up properly.  On amd64 the file is at:
/usr/include/x86_64-linux-gnu/ffi.h

But the libffi.pc file contains:
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: libffi
Description: Library supporting Foreign Function Interfaces
Version: 3.0.7
Libs: -lffi
Cflags:

So pkg-config --cflags libffi returns nothing.


Kurt




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



Bug#523971: krb5-admin-server: krb5_newrealm hangs on fresh install

2009-04-14 Thread Sam Hartman
 Roman == Roman Bojczuk roma...@gmail.com writes:

Roman I waited about 10 minutes and just randomly hit keys on the
Roman keyboard while it was generating random data. I have an
Roman Intel dual core 1.6 GHz machine which does not usually take
Roman too long to generate randomness.  Thanks for your reply.


OK, you were running krb5_newrealm from the console of a machine, not
running virtualization, and got this hang?
If so, that is surprising.



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



Bug#524105: konqueror: fails to upgrade, missing Conflicts

2009-04-14 Thread Eugene V. Lyubimkin
Package: konqueror
Version: 4:4.1.3-1
Severity: serious
Justification: fails to upgrade

Please Conflicts (+ probably Replaces) with earlier kdebase-data
package:

-8-
Preparing to replace konqueror 4:4.1.3-1 (using
.../konqueror_4:4.2.2-1_amd64.deb) ...
Unpacking replacement konqueror ...
dpkg: error processing
/var/cache/apt/archives/konqueror_4:4.2.2-1_amd64.deb (--unpack):
 trying to overwrite
`/usr/share/kde4/apps/khtml/kpartplugins/khtmlkttsd.rc', which is also
in package kdebase-data
dpkg-deb: subprocess paste killed by signal (Broken pipe)
-8-


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

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

Versions of packages konqueror depends on:
ii  kdebase-data   4:4.1.3-1 shared data files for the KDE 4 ba
ii  kdebase-runtime4:4.2.0-1 runtime components from the offici
ii  kdelibs5   4:4.2.1-1 core libraries for all KDE 4 appli
ii  libc6  2.9-6 GNU C Library: Shared libraries
ii  libkonq5   4:4.1.3-1 core libraries for Konqueror
ii  libqt4-dbus4.4.3-2   Qt 4 D-Bus module
ii  libqt4-qt3support  4.4.3-2   Qt 3 compatibility library for Qt 
ii  libqt4-xml 4.4.3-2   Qt 4 XML module
ii  libqtcore4 4.4.3-2   Qt 4 core module
ii  libqtgui4  4.4.3-2   Qt 4 GUI module
ii  libstdc++6 4.3.3-5   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2-1   X11 client-side library
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages konqueror recommends:
pn  konqueror-nsplugins   none (no description available)

Versions of packages konqueror suggests:
pn  konq-plugins  none (no description available)

-- no debconf information



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



Processed: severity of 521899 is important

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 521899 important
Bug#521899: libaprutil1: Building ldap support as DSO breaks apache2 mod_ldap
Severity set to `important' from `grave'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#522580: libqt-perl/kdebindings: build-depend libsmokeqt-dev going away

2009-04-14 Thread Bart Martens
retitle 522580 libqt-perl/kdebindings: build-depend (libsmokeqt-dev) going away
stop


Sune and I have briefly discussed this on irc.  We agreed that I wait
for a heads-up from Sune.





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



Processed: libqt-perl/kdebindings: build-depend libsmokeqt-dev going away

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 522580 libqt-perl/kdebindings: build-depend (libsmokeqt-dev) going 
 away
Bug#522580: build-depend (libsmokeqt-dev) going away
Changed Bug title to `libqt-perl/kdebindings: build-depend (libsmokeqt-dev) 
going away' from `build-depend (libsmokeqt-dev) going away'.

 stop
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524059: gcc-4.3: Internal compiler error with gcc 4.3.2 on armel

2009-04-14 Thread Riku Voipio
Hi,

If you reboot your build machine and try compiling again, will you still
get the same crash? Internal compiler errors can be sign of bad
RAM, if they are random.

-- 
rm -rf only sounds scary if you don't have backups



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



Bug#522490: [Indlinux-group] AksharYogini font family released

2009-04-14 Thread Christian Perrier
Quoting Guntupalli Karunakar (karuna...@indlinux.org):

 I had met with font publishers again, their position is clear to keep
 the status as is, with no change in terms and conditions. So I guess
 font will remain as non-free for Debian.


Not remain, but become. The font is currently distributed in Debian
mainand should not.

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

To debian-in-workers: AksharYogini font is not likely to be non
free. It *is* non free. Karunakar words are very clear about this.

The patch is trivial: drop it from ttf-indic-fonts and eventually
create a ttf-indic-fonts-nonfree source package with it included.

Again, something has to be done as this release critical bug is likely
to make the entire ttf-indic-fonts package dropped from Debian main,
which is certainly not what we want.





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



Bug#524003: FTBFS on armel

2009-04-14 Thread Pierre Habouzit
On Tue, Apr 14, 2009 at 07:50:18AM +, Riku Voipio wrote:
 Package: tokyocabinet
 Severity: serious
 Version: 1.4.14-2
 User: debian-...@lists.debian.org
 Usertag: eabi
 
 Package testsuite failed with the following error:
 
  LD_LIBRARY_PATH=.  ./tcftest rcat -pn 500 -ru casket 5000 500
  ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be 
  preloaded: ignored.
  Random Concatenating Test
seed=4294967295  path=casket  rnum=5000  width=500  limsiz=-1  mt=0  
  omode=0  pnum=500  dai=0  dad=0  rl=0  ru=1
  
  .make[2]: *** [check-fdb] Segmentation fault
  make[2]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
  make[1]: *** [check] Error 2
  make[1]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
  make: *** [build-arch-stamp] Error 2
  dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
  error exit status 2

Yes, I saw that, OTOH it built fine on the experimental buildds, so I'm
kind of lost here.

-- 
·O·  Pierre Habouzit
··Omadco...@debian.org
OOOhttp://www.madism.org


pgpzSoEQd7xfz.pgp
Description: PGP signature


Bug#524003: FTBFS on armel

2009-04-14 Thread Riku Voipio
On Tue, Apr 14, 2009 at 11:13:43PM +0200, Pierre Habouzit wrote:
  Package testsuite failed with the following error:
  
   LD_LIBRARY_PATH=.  ./tcftest rcat -pn 500 -ru casket 5000 500
   ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be 
   preloaded: ignored.
   Random Concatenating Test
 seed=4294967295  path=casket  rnum=5000  width=500  limsiz=-1  mt=0  
   omode=0  pnum=500  dai=0  dad=0  rl=0  ru=1
   
   .make[2]: *** [check-fdb] Segmentation fault
   make[2]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
   make[1]: *** [check] Error 2
   make[1]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
   make: *** [build-arch-stamp] Error 2
   dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch 
   gave error exit status 2

 Yes, I saw that, OTOH it built fine on the experimental buildds, so I'm
 kind of lost here.

Same error on experimental build:

http://experimental.debian.net/fetch.php?pkg=tokyocabinetver=1.4.14-1arch=armelstamp=1239671928file=logas=raw


-- 
rm -rf only sounds scary if you don't have backups



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



Bug#517839: marked as done (slime: SLIME fails to upgrade)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 21:02:29 +
with message-id e1ltpm1-0006p5...@ries.debian.org
and subject line Bug#517839: fixed in slime 1:20090409-1
has caused the Debian Bug report #517839,
regarding slime: SLIME fails to upgrade
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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Updating SLIME in testing fails on configuration. See the aptitude
output attached to this mail.

Regards

Christoph

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

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

Versions of packages slime depends on:
ii  emacsen-common1.4.17 Common facilities for all emacsen

Versions of packages slime recommends:
ii  cl-swank   1:20090217-1  Superior LISP Interaction Mode for
pn  emacs | emacs22none(no description available)
ii  emacs22-gtk [info-browser] 22.2+2-5  The GNU Emacs editor (with GTK use
ii  info [info-browser]4.11.dfsg.1-4 Standalone GNU Info documentation 
ii  konqueror [info-browser]   4:4.2.0-1 KDE 4's advanced file manager, web
ii  xemacs21-gnome-mule [info- 21.4.21-4 highly customizable text editor --
ii  xemacs21-mule [info-browse 21.4.21-4 highly customizable text editor --

slime suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAkmr2nIACgkQz9S5sZBYslM5jACfZfUG17fxL2lqmEPr6vs4/Ua/
c2kAn1+2jeTHaaeOc44ygteakT282563
=Y0oI
-END PGP SIGNATURE-
Die folgenden teilweise installierten Pakete werden konfiguriert:
  slime 
0 Pakete aktualisiert, 0 zusätzlich installiert, 0 werden entfernt und 16 nicht 
aktualisiert.
Muss 0B an Archiven herunterladen. Nach dem Entpacken werden 0B zusätzlich 
belegt sein.
Schreibe erweiterte Statusinformationen... Fertig
Richte slime ein (1:20090217-1) ...
emacsen-common: Handling install of emacsen flavor emacs
emacsen-common: Handling install of emacsen flavor emacs22
emacsen-common: byte-compiling for emacs22
Loading /etc/emacs22/site-start.d/00debian-vars.el (source)...
Loading /etc/emacs/site-start.d/20apel.el (source)...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Loading /etc/emacs/site-start.d/50chess.el (source)...
Loading /usr/share/emacs/site-lisp/chess/chess-auto.el (source)...
Loading /etc/emacs/site-start.d/50cmake.el (source)...
Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
Loading /etc/emacs/site-start.d/50devhelp.el (source)...
Loading /etc/emacs/site-start.d/50devscripts-el.el (source)...
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
Loading /etc/emacs/site-start.d/50dpkg-dev-el.el (source)...
Loading /etc/emacs/site-start.d/50elserv.el (source)...
Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
Loading /etc/emacs/site-start.d/50flim.el (source)...
Loading /etc/emacs/site-start.d/50git-core.el (source)...
Loading /etc/emacs/site-start.d/50gtk-doc-tools.el (source)...
Loading /etc/emacs/site-start.d/50lilypond-data.el (source)...
Loading /etc/emacs/site-start.d/50psvn.el (source)...
Loading /etc/emacs/site-start.d/50pylint.el (source)...
Loading pylint...
Loading /etc/emacs/site-start.d/50python-docutils.el (source)...
Loading /etc/emacs/site-start.d/50slime.el (source)...
Loading /usr/share/emacs22/site-lisp/slime/slime-autoloads...
Loading /etc/emacs/site-start.d/50whitespace.el (source)...
Loading /etc/emacs/site-start.d/51debian-el.el (source)...
Wrote /etc/emacs22/site-start.d/00debian-vars.elc
Wrote /usr/share/emacs22/site-lisp/debian-startup.elc
emacsen-common: Handling install of emacsen flavor xemacs21
emacsen-common: byte-compiling for xemacs21
Loading /usr/share/emacs/site-lisp/debian-startup...
Loading 00debian...
Loading site-start...
Loading 00debian-vars...
Loading 20apel...
Loading 50autoconf...
Loading 50chess...
Loading chess-auto...
Loading 50cmake...
Loading 50cmake-data...
Loading 

Bug#517205: marked as done (cl-swank: Possible DFSG violation in xref.lisp)

2009-04-14 Thread Debian Bug Tracking System

Your message dated Tue, 14 Apr 2009 21:02:29 +
with message-id e1ltpm1-0006p3...@ries.debian.org
and subject line Bug#517205: fixed in slime 1:20090409-1
has caused the Debian Bug report #517205,
regarding cl-swank: Possible DFSG violation in xref.lisp
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.)


-- 
517205: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517205
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: cl-swank
Version: 1:20080223-2
Severity: critical

The xref.lisp source has the following license:

;;; Use and copying of this software and the preparation of derivative
;;; works based on this software are permitted, so long as the following
;;; conditions are met:
;;; o  The copyright notice and this entire notice are included intact
;;;and prominently carried on all copies and supporting documentation.
;;; o  No fees or compensation are charged for use, copies, or
;;;access to this software. You may charge a nominal
;;;distribution fee for the physical act of transferring a
;;;copy, but you may not charge for the program itself. 
;;; o  If you modify this software, you must cause the modified
;;;file(s) to carry prominent notices (a Change Log)
;;;describing the changes, who made the changes, and the date
;;;of those changes.
;;; o  Any work distributed or published that in whole or in part
;;;contains or is a derivative of this software or any part 
;;;thereof is subject to the terms of this agreement. The 
;;;aggregation of another unrelated program with this software
;;;or its derivative on a volume of storage or distribution
;;;medium does not bring the other program under the scope
;;;of these terms.
;;; o  Permission is granted to manufacturers and distributors of
;;;lisp compilers and interpreters to include this software
;;;with their distribution. 

Is there possible DFSG violation when xref.lisp is distributed within
cl-swank package? Last rule restricts the distribution of xref.lisp only
to lisp compilers and interpreters. I can't understand clearly, does
this item forbid us to include xref.lisp with slime (which is not lisp
compiler or interpreter)? The second rule also conflicts with DFSG in my
oppinion.


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

Kernel: Linux 2.6.26-1-486
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cl-swank depends on:
ii  common-lisp-controller6.17   Common Lisp source and compiler ma

cl-swank recommends no packages.

Versions of packages cl-swank suggests:
ii  slime   1:20080223-2 Superior LISP Interaction Mode for

-- no debconf information


---End Message---
---BeginMessage---
Source: slime
Source-Version: 1:20090409-1

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

cl-swank_20090409-1_all.deb
  to pool/main/s/slime/cl-swank_20090409-1_all.deb
slime_20090409-1.diff.gz
  to pool/main/s/slime/slime_20090409-1.diff.gz
slime_20090409-1.dsc
  to pool/main/s/slime/slime_20090409-1.dsc
slime_20090409-1_all.deb
  to pool/main/s/slime/slime_20090409-1_all.deb
slime_20090409.orig.tar.gz
  to pool/main/s/slime/slime_20090409.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Peter Van Eynde pvane...@debian.org (supplier of updated slime 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: Tue, 14 Apr 2009 22:26:54 +0200
Source: slime
Binary: slime cl-swank
Architecture: source all
Version: 1:20090409-1
Distribution: unstable
Urgency: low
Maintainer: Debian Common Lisp Team 
pkg-common-lisp-de...@lists.alioth.debian.org
Changed-By: Peter Van Eynde pvane...@debian.org
Description: 
 cl-swank   - Superior LISP Interaction Mode for Emacs (Lisp-side server)
 slime  - Superior LISP Interaction Mode for Emacs
Closes: 410856 457648 477265 478355 

Processed: new debian revision uploaded

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 524088 + pending
Bug#524088: s3d: FTBFS: error: 'struct gps_data_t' has no member named 
'latitude'
There were no tags set.
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#520499: Batch Number: 074/05/ZY369

2009-04-14 Thread Irish Lottery News Center
You won £750,000.

Contact Mr.Derek White

Send Information: Name Age Country




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



Bug#524125: apt-get installing virtualbox-ose-modules-2.6.26-2-amd64 makes my internet stop working!

2009-04-14 Thread Deniz Akcal
Package: virtualbox-ose-modules-2.6.26-2-amd64
Severity: grave
Justification: renders package unusable


Whenever I install virtualbox-ose-modules-2.6.26-2-amd64 and then reboot my 
computer, network-manager-gnome says Wired Network Connection with a 
self-assigned address when I hover the cursor over it. This does not allow me 
to have any access to any network! I must apt-get remove --purge 
virtualbox-ose-modules-2.6.26-2-amd64 and then reboot in order to not have this 
problem and be able to browse the internet etc.

Having virtualbox-ose-modules-2.6.26-1-amd64 or even virtualbox-ose itself 
doesn't cause this problem but virtualbox-ose-modules-2.6.26-2-amd64 
does! The reason why I chose the severity grave is because; unless I boot the 
2.6.26-1-amd64 kernel (instead of the 2.6.26-2-amd64 kernel) with 
the virtualbox-ose-modules-2.6.26-1-amd64 package, I cannot get virtualbox-ose 
running with functional internet at all!


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

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

Versions of packages virtualbox-ose-modules-2.6.26-2-amd64 depends on:
ii  linux-image-2.6.26-2-amd64 [l 2.6.26-15  Linux 2.6.26 image on AMD64

virtualbox-ose-modules-2.6.26-2-amd64 recommends no packages.

virtualbox-ose-modules-2.6.26-2-amd64 suggests no packages.



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



Bug#524003: FTBFS on armel

2009-04-14 Thread Pierre Habouzit
On Tue, Apr 14, 2009 at 09:20:41PM +, Riku Voipio wrote:
 On Tue, Apr 14, 2009 at 11:13:43PM +0200, Pierre Habouzit wrote:
   Package testsuite failed with the following error:
   
LD_LIBRARY_PATH=.  ./tcftest rcat -pn 500 -ru casket 5000 500
ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be 
preloaded: ignored.
Random Concatenating Test
  seed=4294967295  path=casket  rnum=5000  width=500  limsiz=-1  mt=0  
omode=0  pnum=500  dai=0  dad=0  rl=0  ru=1

.make[2]: *** [check-fdb] Segmentation fault
make[2]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
make[1]: *** [check] Error 2
make[1]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
make: *** [build-arch-stamp] Error 2
dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch 
gave error exit status 2
 
  Yes, I saw that, OTOH it built fine on the experimental buildds, so I'm
  kind of lost here.
 
 Same error on experimental build:
 
 http://experimental.debian.net/fetch.php?pkg=tokyocabinetver=1.4.14-1arch=armelstamp=1239671928file=logas=raw

Damn okay, I was pretty sure it built fine, sorry, I'll try to look into
it.

-- 
·O·  Pierre Habouzit
··Omadco...@debian.org
OOOhttp://www.madism.org


pgpilKiW6sQ16.pgp
Description: PGP signature


Bug#524127: [uscan] 'x509_user' not valid URI scheme at /usr/bin/uscan line 389

2009-04-14 Thread Steffen Moeller
Package: devscripts
Version: 2.10.48
Severity: serious


uscan should have went off to fetch the latest version, the watch file is

version=3
http://sf.net/gwyddion/gwyddion-([0-9].[0-9]+\w*)\.tar\.gz


I get this error

'x509_user' is not a valid URI scheme at /usr/bin/uscan line 389

Many thanks

Steffen

-- Package-specific info:

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

--- ~/.devscripts ---
DEBSIGN_KEYID=BE9D5339
DEBSIGN_PROGRAM=gpg --use-agent
DEBSIGN_SIGNLIKE=gpg

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

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

Versions of packages devscripts depends on:
ii  dpkg-dev  1.14.26Debian package development tools
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

Versions of packages devscripts recommends:
ii  at 3.1.10.2  Delayed job execution and batch pr
ii  bsd-mailx [mailx]  8.1.2-0.20081101cvs-2 A simple mail user agent
ii  bzr1.14~rc1-2easy to use distributed version co
ii  curl   7.18.2-8.1Get a file from an HTTP, HTTPS or 
ii  cvs1:1.12.13-12  Concurrent Versions System
ii  dctrl-tools2.13.1Command-line tools to process Debi
ii  debian-keyring 2009.04.04GnuPG (and obsolete PGP) keys of D
ii  debian-maintainers 1.55  GPG keys of Debian maintainers
ii  dupload2.6.6 utility to upload Debian packages
ii  equivs 2.0.7-0.1 Circumvent Debian package dependen
ii  fakeroot   1.12.2Gives a fake root environment
ii  git-core   1:1.6.2.2-1   fast, scalable, distributed revisi
ii  gnupg  1.4.9-4   GNU privacy guard - a free PGP rep
ii  iceweasel [www-bro 3.0.7-1   lightweight web browser based on M
ii  konqueror [www-bro 4:4.2.2-1 KDE 4's advanced file manager, web
ii  libauthen-sasl-per 2.12-1Authen::SASL - SASL Authentication
ii  libcrypt-ssleay-pe 0.57-1+b1 Support for https protocol in LWP
ii  libparse-debcontro 2.005-2   Easy OO parsing of Debian control-
ii  libsoap-lite-perl  0.710.08-2Client and server side SOAP implem
ii  libterm-size-perl  0.2-4+b1  Perl extension for retrieving term
ii  libtimedate-perl   1.1600-9  Time and date functions for Perl
ii  liburi-perl1.37+dfsg-1   Manipulates and accesses URI strin
ii  libwww-perl5.825-1   WWW client/server library for Perl
ii  libyaml-syck-perl  1.05-1Fast, lightweight YAML loader and 
ii  lintian2.2.9 Debian package checker
ii  lsb-release3.2-22Linux Standard Base version report
ii  lynx-cur [www-brow 2.8.7pre1-1   Text-mode WWW Browser with NLS sup
ii  mailx  1:20081101-2  Transitional package for mailx ren
ii  man-db 2.5.5-1   on-line manual pager
ii  midori [www-browse 0.1.4-1   fast, lightweight graphical web br
ii  openssh-client [ss 1:5.1p1-5 secure shell client, an rlogin/rsh
ii  opera [www-browser 9.64.2480.gcc4.qt3The Opera Web Browser
ii  patch  2.5.9-5   Apply a diff file to an original
ii  patchutils 0.3.1-1   Utilities to work with patches
ii  strace 4.5.18-1  A system call tracer
ii  subversion 1.5.6dfsg-1   Advanced version control system
ii  unzip  5.52-12   De-archiver for .zip files
ii  w3m [www-browser]  0.5.2-2+b1WWW browsable pager with excellent
ii  wdiff  0.5-18Compares two files word by word
ii  wget   1.11.4-2  retrieves files from the web

Versions of packages devscripts suggests:
ii  build-essential   11.4   Informational list of build-essent
pn  cvs-buildpackage  none (no description available)
pn  devscripts-el none (no description available)
ii  gnuplot   4.2.5-1A command-line driven interactive 
pn  libfile-desktopentry-perl none (no description available)
pn  libnet-smtp-ssl-perl  none (no description available)
ii  mutt  1.5.18-6   text-based mailreader supporting M
ii  svn-buildpackage  0.6.23 helper programs to maintain Debian

-- no debconf information



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

Bug#524003: FTBFS on armel

2009-04-14 Thread Pierre Habouzit
forwarded 524003 mi...@users.sourceforge.net
thanks

On Tue, Apr 14, 2009 at 07:50:18AM +, Riku Voipio wrote:
 Package: tokyocabinet
 Severity: serious
 Version: 1.4.14-2
 User: debian-...@lists.debian.org
 Usertag: eabi
 
 Package testsuite failed with the following error:
 
  LD_LIBRARY_PATH=.  ./tcftest rcat -pn 500 -ru casket 5000 500
  ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be 
  preloaded: ignored.
  Random Concatenating Test
seed=4294967295  path=casket  rnum=5000  width=500  limsiz=-1  mt=0  
  omode=0  pnum=500  dai=0  dad=0  rl=0  ru=1
  
  .make[2]: *** [check-fdb] Segmentation fault
  make[2]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
  make[1]: *** [check] Error 2
  make[1]: Leaving directory `/build/buildd/tokyocabinet-1.4.14'
  make: *** [build-arch-stamp] Error 2
  dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
  error exit status 2

Hi Mikio, I'm the Debian maintainer of tokyocabinet, I wanted to report
to you that tokyocabinet seems to have issues on armel (and also hppa).
You can see the full build logs here:
https://buildd.debian.org/fetch.cgi?pkg=tokyocabinetarch=armelver=1.4.14-2stamp=1239676884file=logas=raw
https://buildd.debian.org/fetch.cgi?pkg=tokyocabinetarch=hppaver=1.4.14-2stamp=1239662413file=logas=raw

I'm really unsure what is going on, so if you have any idea of how I can
debug this, I'd be glad.

For the armel one, I do have a backtrace though:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x4001fd80 (LWP 7696)]
0x4007258c in tcfdbputimpl (fdb=value optimized out, 
id=4612214096449045504, vbuf=0xbee56661, vsiz=-1, dmode=0) at tcfdb.c:2060
2060  char *nvbuf = procptr-proc(rp, osiz, nvsiz, 
procptr-op);
(gdb) bt full
#0  0x4007258c in tcfdbputimpl (fdb=value optimized out, 
id=4612214096449045504, vbuf=0xbee56661, vsiz=-1, dmode=0) at tcfdb.c:2060
procptr = (FDBPDPROCOP *) 0x8e5677c
nvsiz = value optimized out
nvbuf = value optimized out
wp = value optimized out
rec = (unsigned char *) 0x40314322 
nsiz = value optimized out
rp = (unsigned char *) 0x40314324 \001
osiz = 4
snum = 0
lnum = 1074397736
wp = value optimized out
__PRETTY_FUNCTION__ = tcfdbputimpl
__func__ = tcfdbputimpl
#1  0x40073674 in tcfdbputproc (fdb=0x1a008, id=100, vbuf=0x0, vsiz=0, 
proc=0xa55c pdprocfunc, op=0x1) at tcfdb.c:1291
procop = {proc = 0xa55c pdprocfunc, op = 0x0}
procptr = (FDBPDPROCOP *) 0xbee5677c
stack = 
|gå¾145\000\000\000\000l\217\000\000\000\000\000\000Dgå¾\230\231\000@,\222\...@hà\001@\000\000\000\000þ3ª\a\001\000\000\000\000\000\000\000
 
\002\...@\234©\002@hà\...@\000p\002@\000`\...@\000ð\035@\030xå¾\214\f\001\000¨gå¾Øfå¾\b \001\000\000\000\000\000\030xå¾Ðfå¾
 
ç\...@`ë\016@\000\000\000\000,\222\...@\001\200­û\030xå¾\030xå¾\030xå¾\030xå¾\033xå¾\030xå¾,
 '\0' repeats 20 times, 
:\...@\000\000\000\000\000\000\000\000\000\000\a@\000\000\000\000\000\000\000\000\b \001\000\000\000\000...
rv = value optimized out
__PRETTY_FUNCTION__ = tcfdbputproc
__func__ = tcfdbputproc
#2  0xa3a8 in procrcat (path=value optimized out, rnum=5000, 
width=value optimized out, limsiz=0, mt=value optimized out, omode=0, 
pnum=500, dai=false, dad=false, rl=71, ru=200) at tcftest.c:668
id = value optimized out
kbuf = 
209\000\001\000\000\000\...@\177@\004}å¾\000\000\000\000\000\000\000\000\...@\177@l\00...@\000\000\000\000\000\000\000\000\000@\...@Ø\004\t@
ksiz = 3
i = 105
err = false
stime = 1239752343.776659
fdb = (TCFDB *) 0x1a008
#3  0xf9c4 in main (argc=1, argv=0xbee57b14) at tcftest.c:356
rv = value optimized out
(gdb) p *procptr
Cannot access memory at address 0x8e5677c
(gdb) 

Please tell me if you need more informations.

-- 
·O·  Pierre Habouzit
··Omadco...@debian.org
OOOhttp://www.madism.org


pgpMaptNugBMb.pgp
Description: PGP signature


Processed: Re: Bug#524003: FTBFS on armel

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 524003 mi...@users.sourceforge.net
Bug#524003: FTBFS on armel
Noted your statement that Bug has been forwarded to mi...@users.sourceforge.net.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524131: python-scipy: outdated and incomplete copyright file

2009-04-14 Thread Yaroslav Halchenko
Package: python-scipy
Version: 0.7.0-1
Severity: serious
Justification: Policy 2.3

Currently shipped copyright file has only

Copyright:

Copyright (c) 2001, 2002 Enthought, Inc.

so it is far from the current state I bet

THANKS.txt lists contributors without describing either they contributed
and transfered a copyright or they reserved (kept) the copyright. According to
the code -- copyright still belongs to plenty of contributors. just run

dpkg -L python-scipy | xargs grep -i copyright  | grep -v Entho

to see what I am talking about 

The proper solution is to list all the copyright holders (with proper
terms/years) within the copyright file.

Sorry for being pedantic

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

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

Versions of packages python-scipy depends on:
ii  libatlas3gf-base [liblapack. 3.6.0-22Automatically Tuned Linear Algebra
ii  libblas3gf [libblas.so.3gf]  1.2-2   Basic Linear Algebra Subroutines 3
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgfortran3 4.3.2-1.1   Runtime library for GNU Fortran ap
ii  liblapack3gf [liblapack.so.3 3.1.1-1 library of linear algebra routines
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libsuitesparse-3.2.0 1:3.2.0-4   collection of libraries for comput
ii  python   2.5.2-3 An interactive high-level object-o
ii  python-central   0.6.11  register and build utility for Pyt
ii  python-numpy 1:1.2.1-1   Numerical Python adds a fast array

Versions of packages python-scipy recommends:
ii  g++ [c++-compiler]4:4.3.2-2  The GNU C++ compiler
ii  g++-4.2 [c++-compiler]4.2.4-6The GNU C++ compiler
ii  g++-4.3 [c++-compiler]4.3.2-1.1  The GNU C++ compiler

Versions of packages python-scipy suggests:
ii  python-profiler   2.5.2-1deterministic profiling of any Pyt

-- 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#524059: Hmm...actually, rebooting worked

2009-04-14 Thread Ron Wright
Wow, I should have known to do that.  My apologies for the troubles.  I
followed the advice in the previous post, and rebooting worked.  I have
no clue how the RAM got corrupt.




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



Bug#522490: [Debian-in-workers] Bug#522490: [Indlinux-group] AksharYogini font family released

2009-04-14 Thread Jaldhar H. Vyas

On Tue, 14 Apr 2009, Christian Perrier wrote:


Quoting Guntupalli Karunakar (karuna...@indlinux.org):


I had met with font publishers again, their position is clear to keep
the status as is, with no change in terms and conditions. So I guess
font will remain as non-free for Debian.



Not remain, but become. The font is currently distributed in Debian
mainand should not.

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

To debian-in-workers: AksharYogini font is not likely to be non
free. It *is* non free. Karunakar words are very clear about this.

The patch is trivial: drop it from ttf-indic-fonts and eventually
create a ttf-indic-fonts-nonfree source package with it included.

Again, something has to be done as this release critical bug is likely
to make the entire ttf-indic-fonts package dropped from Debian main,
which is certainly not what we want.



As I finally have some time again I was getting ready to write a nice 
letter explaining why it is really in the designers best interests to make 
their font truly free software but it looks like it's going to be 
futile.


ttf-indic-fonts-nonfree it is.

--
Jaldhar H. Vyas jald...@debian.org



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



Bug#524139: login: tty perms very, weirdly wrong on console

2009-04-14 Thread Chip Salzenberg
Package: login
Version: 1:4.1.3-1
Severity: grave

When logging in on the console, the permission on e.g. /dev/tty1 are Weirdly 
Wrong:

   # ls -l /dev/tty1
   c--x-wx--T 1 root 4, 1 Apr 14 21:24 /dev/tty1

That's not right.  It's not even wrong.
Priority grave becuase of the group-write bit.

And no, I haven't been playing with login.defs:

   # grep '^TTY' /etc/login.defs
   TYGROUPtty
   TTYPERM0600


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

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

Versions of packages login depends on:
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libpam-modules1.0.1-9Pluggable Authentication Modules f
ii  libpam-runtime1.0.1-9Runtime support for the PAM librar
ii  libpam0g  1.0.1-9Pluggable Authentication Modules l

login recommends no packages.

login 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



Bug#523271: bloboats: segfault at start up

2009-04-14 Thread Raphael Geissert
On Thursday 09 April 2009 10:25:29 Gonéri Le Bouder wrote:
 On Thu, Apr 09, 2009 at 09:59:19AM -0500, Raphael Geissert wrote:
 Works fine here:
[...]
 I've the 
 feeling the problem come from your libgl1-mesa-glx from experimental. Can
 you please upgrade your sysetem.


Did that a couple of days ago, no difference.

  I tried to get the debug symbols of the package from debug.d.n but it
  they are not available for i386.

 It's probably because I built the package on my own machin. Is there
 anything I can do to avoid that?

No, it is unrelated to whether you built the package or a buildd did. I've 
already pinged the right person for that.

I rebuilt the package with DEB_BUILD_OPTIONS=nostrip and got a better 
backtrace:
(gdb) bt
#0  0xb7f06756 in glViewport () from /usr/lib/libGL.so.1
#1  0x0804d348 in window::OpenWindow (this=0x807c820, w=1024, h=768, b=32, 
flags=-2147483646)
at src/window.cpp:59
#2  0x0804ab95 in main (argc=1, argv=Cannot access memory at address 0x5
) at src/main.cpp:211


By the way, like I mentioned to Barry via IRC, the package doesn't have an 
un/patch target and doesn't respect the debug and noopt DEB_BUILD_OPTIONS 
options; you should fix that.


One of the obvious errors on the code is that while SDL_SetVideoMode takes a 
Uint32 for the flags, the code passes an integer which, as soon as 
SDL_FULLSCREEN is added, is overflowed, turning into a negative integer.
Attached is the fix for that bug.

While this doesn't fix the segfault it is one bug less (although I expect 
many, similar, bugs to be there on the code). What did help get the game's 
screen was commenting out the SDL_FULLSCREEN-related line in main.cpp; 
although after a few seconds the screen got corrupted and had to SIGTERM it.

This is the backtrace from the code with the attached patch applied:

(gdb) bt
#0  0xb7e13756 in glViewport () from /usr/lib/libGL.so.1
#1  0x0804d348 in window::OpenWindow (this=0x807c820, w=1024, h=768, b=32, 
flags=2147483650) at src/window.cpp:59
#2  0x0804ab95 in main (argc=1, argv=Cannot access memory at address 0x5
) at src/main.cpp:211

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net
Index: bloboats-1.0.1.dsfg/src/window.cpp
===
--- bloboats-1.0.1.dsfg.orig/src/window.cpp
+++ bloboats-1.0.1.dsfg/src/window.cpp
@@ -36,7 +36,7 @@ window::~window(){}
 
 
 
-SDL_Surface * window::OpenWindow(int w, int h, int b, int flags) {
+SDL_Surface * window::OpenWindow(int w, int h, int b, Uint32 flags) {
 	if (!flags) {
 		flags = oldflags^SDL_FULLSCREEN;
 	}
Index: bloboats-1.0.1.dsfg/src/window.h
===
--- bloboats-1.0.1.dsfg.orig/src/window.h
+++ bloboats-1.0.1.dsfg/src/window.h
@@ -31,7 +31,7 @@ class window
 		window();
 		~window();
 
-		SDL_Surface * OpenWindow(int width, int height, int bpp, int flags);
+		SDL_Surface * OpenWindow(int width, int height, int bpp, Uint32 flags);
 		void SetTitle(char *text, char *icon);
 		bool Iconify();
 
@@ -52,7 +52,7 @@ class window
 
 		int xlast, ylast;
 
-		int oldflags;
+		Uint32 oldflags;
 
 	private:
 		SDL_Surface *screen;


Processed: Re: Bug#524127: [uscan] 'x509_user' not valid URI scheme at /usr/bin/uscan line 389

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 524127 moreinfo unreproducible
Bug#524127: [uscan] 'x509_user' not valid URI scheme at /usr/bin/uscan line 389
There were no tags set.
Tags added: moreinfo, unreproducible

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#524127: [uscan] 'x509_user' not valid URI scheme at /usr/bin/uscan line 389

2009-04-14 Thread Adam D. Barratt
tag 524127 moreinfo unreproducible
thanks

Hi,

On Wed, 2009-04-15 at 01:22 +0200, Steffen Moeller wrote:
 uscan should have went off to fetch the latest version, the watch file is
 
 version=3
 http://sf.net/gwyddion/gwyddion-([0-9].[0-9]+\w*)\.tar\.gz
 
 
 I get this error
 
 'x509_user' is not a valid URI scheme at /usr/bin/uscan line 389

Your watch file works fine for me:

$ cat ~/watch-524127 
version=3
http://sf.net/gwyddion/gwyddion-([0-9].[0-9]+\w*)\.tar\.gz

$ uscan --watchfile ~/watch-524127 --package gwyddion --upstream-version 0 
--download
gwyddion: Newer version (2.14) available on remote site:
  
http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/g/gw/gwyddion/gwyddion-2.14.tar.gz
  (local version is 0)
gwyddion: Successfully downloaded updated package gwyddion-2.14.tar.gz
and symlinked gwyddion_2.14.orig.tar.gz to it

$ uscan --watchfile ~/watch-524127 --package gwyddion --upstream-version 0 
--download
gwyddion: Newer version (2.14) available on remote site:
  http://qa.debian.org/watch/sf.php/gwyddion/gwyddion-2.14.tar.gz
  (local version is 0)
gwyddion: Successfully downloaded updated package gwyddion-2.14.tar.gz
and symlinked gwyddion_2.14.orig.tar.gz to it

Please could you confirm whether it is currently working for you? If
not, please could you post the output of set | grep -i proxy and rerun
uscan with the --debug flag and make the output available?

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#524125: apt-get installing virtualbox-ose-modules-2.6.26-2-amd64 makes my internet stop working!

2009-04-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 524125 important
Bug#524125: apt-get installing virtualbox-ose-modules-2.6.26-2-amd64 makes my 
internet stop working!
Severity set to `important' from `grave'

 reassign 524125 virtualbox-ose-source
Bug#524125: apt-get installing virtualbox-ose-modules-2.6.26-2-amd64 makes my 
internet stop working!
Bug reassigned from package `virtualbox-ose-modules-2.6.26-2-amd64' to 
`virtualbox-ose-source'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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