Processed: bug 671365 is forwarded to ror...@gatech.edu

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

 forwarded 671365 ror...@gatech.edu
Bug #671365 [mricron] halts on start
Set Bug forwarded-to-address to 'ror...@gatech.edu'.
 thanks
Stopping processing here.

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


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



Bug#662702: NMU for Unstable

2012-05-14 Thread Scott Kitterman
Fixing this bug doesn't need all the changes that are in Unstable, so I'll 
upload the attached diff shortly to delay/2 in order to minimize impact on 
the Qt 4.8 transition.  If you'd prefer I delay it further, please let me 
know.

Scott Kdiff -u libqglviewer-2.3.4/debian/changelog libqglviewer-2.3.4/debian/changelog
--- libqglviewer-2.3.4/debian/changelog
+++ libqglviewer-2.3.4/debian/changelog
@@ -1,3 +1,18 @@
+libqglviewer (2.3.4-4.1) unstable; urgency=low
+
+  * Non-maintainer upload. (Closes: #662702)
+
+  [ Daniel T Chen ]
+  * debian/rules: Use Qt4 multiarch lib path. Fixes FTBFS.
+
+  [ Felix Geyer ]
+  * Add 04glu-include.dpatch to fix FTBFS with Qt 4.8.
+  * Add 05glu-link.dpatch to make libqglviewer-qt4 link against libGLU.
+  * Add Pre-Depends: ${misc:Pre-Depends} to libqglviewer-qt4-2.
+  * Mark libqglviewer-qt4-2 as Multi-Arch: same.
+
+ -- Scott Kitterman sc...@kitterman.com  Mon, 14 May 2012 01:53:58 -0400
+
 libqglviewer (2.3.4-4) unstable; urgency=high
 
   * reupload with high urgency
diff -u libqglviewer-2.3.4/debian/control libqglviewer-2.3.4/debian/control
--- libqglviewer-2.3.4/debian/control
+++ libqglviewer-2.3.4/debian/control
@@ -5,7 +5,7 @@
 DM-Upload-Allowed: yes
 Homepage: http://www.libqglviewer.com/
 Standards-Version: 3.8.3
-Build-Depends: debhelper (= 7), libqt3-mt-dev, libqt4-dev, libqt4-opengl-dev, dpatch
+Build-Depends: debhelper (= 8.1.3~), libqt3-mt-dev, libqt4-dev (= 4:4.8.0~), libqt4-opengl-dev (= 4:4.8.0~), dpatch
 
 Package: libqglviewer-dev-common
 Section: libdevel
@@ -83,6 +83,8 @@
 Package: libqglviewer-qt4-2
 Section: libs
 Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: an OpenGL 3D viewer library based on Qt - runtime library
  libqglviewer (also known as libQGLViewer) is a free C++ library based on Qt
diff -u libqglviewer-2.3.4/debian/rules libqglviewer-2.3.4/debian/rules
--- libqglviewer-2.3.4/debian/rules
+++ libqglviewer-2.3.4/debian/rules
@@ -22,6 +22,8 @@
 	INSTALL_PROGRAM += -s
 endif
 
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
 version:=$(shell dpkg-parsechangelog | grep ^Version: | sed -e 's/^Version: //' -e 's/-.*$$//')
 ver2:=$(shell echo $(version) | cut -d. -f-2)
 major:=$(shell echo $(version) | cut -d. -f1)
@@ -76,13 +78,13 @@
 	cd qglviewer-qt4  $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp
 	cd designerPlugin-qt4  $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp
 
-	mkdir -p debian/libqglviewer-qt4-2/usr/lib debian/libqglviewer-qt4-dev/usr/lib/qt4/plugins/designer
+	mkdir -p debian/libqglviewer-qt4-2/usr/lib/$(DEB_HOST_MULTIARCH) debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer
 
-	cp -d debian/tmp/usr/lib/*.so.* debian/libqglviewer-qt4-2/usr/lib
-	cp -d qglviewer-qt4/libqglviewer-qt4.a debian/libqglviewer-qt4-dev/usr/lib
-	cp -d debian/tmp/usr/lib/*.so debian/libqglviewer-qt4-dev/usr/lib
-	cp -d debian/tmp/usr/lib/*.prl debian/libqglviewer-qt4-dev/usr/lib
-	cp -d debian/tmp/usr/lib/qt4/plugins/designer/libqglviewerplugin.so debian/libqglviewer-qt4-dev/usr/lib/qt4/plugins/designer
+	cp -d debian/tmp/usr/lib/*.so.* debian/libqglviewer-qt4-2/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp -d qglviewer-qt4/libqglviewer-qt4.a debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp -d debian/tmp/usr/lib/*.so debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp -d debian/tmp/usr/lib/*.prl debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp -d debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer/libqglviewerplugin.so debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer
 
 	cp -dr debian/tmp/usr/include/QGLViewer debian/libqglviewer-dev-common/usr/include
 
diff -u libqglviewer-2.3.4/debian/patches/00list libqglviewer-2.3.4/debian/patches/00list
--- libqglviewer-2.3.4/debian/patches/00list
+++ libqglviewer-2.3.4/debian/patches/00list
@@ -3,2 +3,4 @@
 03only-headers-in-include-dir
+04glu-include
+05glu-link
 99compile-examples
only in patch2:
unchanged:
--- libqglviewer-2.3.4.orig/debian/patches/04glu-include.dpatch
+++ libqglviewer-2.3.4/debian/patches/04glu-include.dpatch
@@ -0,0 +1,32 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 04glu-include.dpatch by Felix Geyer de...@ubuntu.com
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+
+diff -Nur libqglviewer-2.3.4.org/QGLViewer/camera.cpp libqglviewer-2.3.4/QGLViewer/camera.cpp
+--- libqglviewer-2.3.4.org/QGLViewer/camera.cpp
 libqglviewer-2.3.4/QGLViewer/camera.cpp
+@@ -24,6 +24,8 @@
+ #include camera.h
+ #include qglviewer.h
+ 
++#include GL/glu.h
++
+ using namespace std;
+ using namespace qglviewer;
+ 
+diff -Nur libqglviewer-2.3.4.org/QGLViewer/qglviewer.cpp libqglviewer-2.3.4/QGLViewer/qglviewer.cpp
+--- libqglviewer-2.3.4.org/QGLViewer/qglviewer.cpp
 libqglviewer-2.3.4/QGLViewer/qglviewer.cpp
+@@ -58,6 +58,8 @@
+ # define 

Processed: tagging 662702

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

 tags 662702 + pending
Bug #662702 [src:libqglviewer] libqglviewer: FTBFS against Qt 4.8
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#672666: Bug#6726XX: ocaml-xxx: FTBFS: Incorrectly thinks it's building as root

2012-05-14 Thread Hendrik Tews

See #670733 for the source of the problem.

Bye,

Hendrik



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



Processed: Re: tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc

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

 # Hi Andrew,
 #
 # Andrew Shadura wrote:
 #
 #  Package: tcllib
 #  Version: 1.12-dfsg-2
 #  Severity: important
 #
 # Some bureaucratic tweaks. :)
 # tcl8.6 is only in experimental
 tags 672815 + experimental
Bug #672815 [tcllib] tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc
Added tag(s) experimental.
 # file conflicts are serious.
 # luckily not currently RC for wheezy because of the above.
 severity 672815 serious
Bug #672815 [tcllib] tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc
Severity set to 'serious' from 'important'

End of message, stopping processing here.

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


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



Processed: found 672815 in 1.14-dfsg-1, notfound 672815 in 1.12-dfsg-2

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

 found 672815 1.14-dfsg-1
Bug #672815 [tcllib] tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc
Marked as found in versions tcllib/1.14-dfsg-1.
 notfound 672815 1.12-dfsg-2
Bug #672815 [tcllib] tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc
No longer marked as found in versions tcllib/1.12-dfsg-2.
 thanks
Stopping processing here.

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


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



Bug#672669: ocaml-lame: FTBFS: Incorrectly thinks it's building as root

2012-05-14 Thread Hendrik Tews

I cannot reproduce the Incorrectly thinks it's building as root
problem. When I try the build fails with

checking for suffix of object files... configure: error: in 
`/tmp/buildd/ocaml-lame-0.3.0':
configure: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details
make: *** [debian/stamp-autotools] Error 1

Bye,

Hendrik



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



Processed (with 1 errors): Re: taxbird: version in testing (0.16.x) is completely useless

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

 Version: 0.18-1
Unknown command or malformed arguments to command.

 notfound 672809 0.18-1~bpo60+2
Bug #672809 [taxbird] taxbird: version in testing (0.16.x) is completely useless
There is no source info for the package 'taxbird' at version '0.18-1~bpo60+2' 
with architecture ''
Unable to make a source version for version '0.18-1~bpo60+2'
No longer marked as found in versions 0.18-1~bpo60+2.
 forcemerge 672809 663656
Bug #672809 [taxbird] taxbird: version in testing (0.16.x) is completely useless
Bug #672809 [taxbird] taxbird: version in testing (0.16.x) is completely useless
Marked as found in versions taxbird/0.15-1.
Bug #663656 [taxbird] taxbird: need the latest version for 2012 tax declaration
Severity set to 'grave' from 'important'
Added tag(s) upstream.
Merged 663656 672809
 found 672809 taxbird/0.16-0.2
Bug #672809 [taxbird] taxbird: version in testing (0.16.x) is completely useless
Bug #663656 [taxbird] taxbird: need the latest version for 2012 tax declaration
Marked as found in versions taxbird/0.16-0.2.
Marked as found in versions taxbird/0.16-0.2.
 quit
Stopping processing here.

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


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



Bug#663656: marked as done (taxbird: need the latest version for 2012 tax declaration)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 01:44:49 -0500
with message-id 20120514064449.GA12418@burratino
and subject line Re: taxbird: version in testing (0.16.x) is completely useless
has caused the Debian Bug report #672809,
regarding taxbird: need the latest version for 2012 tax declaration
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.)


-- 
672809: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: taxbird
Version: 0.15-1+b1
Severity: important


Hi,

German users need the new version for 2012 tax declarations.
I'm working on a backport for 0.18 and the corresponding
libgeier to facilitate that.

@Maintainer: Do you prefer the package to go to
backports, or should I send you the changed code?


Kind regards,
--Toni++

PS: Justification for important: The old package can't do tax
declarations for 2012.


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

Kernel: Linux 3.2.0-0.bpo.1-686-pae (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages taxbird depends on:
ii  guile-1.8-libs 1.8.7+1-3 Main Guile libraries
ii  libart-2.0-2   2.3.21-1  Library of functions for 2D graphi
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.3-1  The Bonobo UI library
ii  libc6  2.11.3-2  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libenchant1c2a 1.6.0-1   a wrapper library for various spel
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-2.1+squeeze4FreeType 2 font engine, shared lib
ii  libgconf2-42.28.1-6  GNOME configuration database syste
ii  libgeier0  0.11-1Elster client library (German tax 
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgmp3c2  2:4.3.2+dfsg-1Multiprecision arithmetic library
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.30.1-1  A powerful object-oriented display
ii  libgnomeui-0   2.24.3-1  The GNOME libraries (User Interfac
ii  libgnomevfs2-0 1:2.24.3-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libgtkhtml3.14-19  3.30.3-1  HTML rendering/editing library - r
ii  libice62:1.0.6-2 X11 Inter-Client Exchange library
ii  libltdl7   2.2.6b-2  A system independent dlopen wrappe
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.28.3-1+squeeze2 Layout and rendering of internatio
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libxml22.7.8.dfsg-2+squeeze3 GNOME XML library

Versions of packages taxbird recommends:
ii  cups-bsd [lpr]  1.4.4-7+squeeze1 Common UNIX Printing System(tm) - 

Versions of packages taxbird suggests:
pn  html2ps   none (no description available)
ii  html2text 1.3.2a-15  advanced HTML to text converter

-- no debconf information


---End Message---
---BeginMessage---
Version: 0.18-1
notfound 672809 0.18-1~bpo60+2
forcemerge 672809 663656
found 672809 taxbird/0.16-0.2
quit

Hi Toni,

Toni Mueller wrote:

 Package: taxbird
 Version: 0.18-1~bpo60+2
[...]
 the 0.16 version of the package can only do tax declarations for 2011,
 and is thus entirely useless for anyone who wants to use it for taxes
 in 2012.

I think you filed this against the wrong version.  Fixing it, but
please feel free to correct me if I screwed it up.

Thanks,
Jonathan

---End Message---


Bug#672809: marked as done (taxbird: version in testing (0.16.x) is completely useless)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 01:44:49 -0500
with message-id 20120514064449.GA12418@burratino
and subject line Re: taxbird: version in testing (0.16.x) is completely useless
has caused the Debian Bug report #672809,
regarding taxbird: version in testing (0.16.x) is completely useless
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.)


-- 
672809: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: taxbird
Version: 0.18-1~bpo60+2
Severity: grave
Tags: upstream
Justification: renders package unusable


Hi,

the 0.16 version of the package can only do tax declarations for 2011,
and is thus entirely useless for anyone who wants to use it for taxes
in 2012. I think it would be a shame if Wheezy would release with a
package that is so useless right from the start. Please consider
grabbing my version from p.d.o (see #663656), or see me NMU it at the
latest at freeze time.


Kind regards,
--Toni++



-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'proposed-updates'), (450, 'testing'), (250, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.3.0-trunk-686-pae (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages taxbird depends on:
ii  guile-1.8-libs 1.8.7+1-3 Main Guile libraries
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libenchant1c2a 1.6.0-1   a wrapper library for various spel
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-2.1+squeeze4FreeType 2 font engine, shared lib
ii  libgconf2-42.28.1-6  GNOME configuration database syste
ii  libgeier0  0.13-1Elster client library (German tax 
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgmp3c2  2:4.3.2+dfsg-1Multiprecision arithmetic library
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libgtkhtml3.14-19  3.30.3-1  HTML rendering/editing library - r
ii  libltdl3   1.5.26-4+lenny1   A system independent dlopen wrappe
ii  libpango1.0-0  1.28.3-1+squeeze2 Layout and rendering of internatio
ii  libxml22.7.8.dfsg-2+squeeze3 GNOME XML library

Versions of packages taxbird recommends:
ii  cups-bsd [lpr]  1.4.4-7+squeeze1 Common UNIX Printing System(tm) - 

Versions of packages taxbird suggests:
pn  html2ps   none (no description available)
ii  html2text 1.3.2a-15  advanced HTML to text converter

-- no debconf information


---End Message---
---BeginMessage---
Version: 0.18-1
notfound 672809 0.18-1~bpo60+2
forcemerge 672809 663656
found 672809 taxbird/0.16-0.2
quit

Hi Toni,

Toni Mueller wrote:

 Package: taxbird
 Version: 0.18-1~bpo60+2
[...]
 the 0.16 version of the package can only do tax declarations for 2011,
 and is thus entirely useless for anyone who wants to use it for taxes
 in 2012.

I think you filed this against the wrong version.  Fixing it, but
please feel free to correct me if I screwed it up.

Thanks,
Jonathan

---End Message---


Processed: your mail

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

 tags 671983 unreproducible
Bug #671983 [src:gofigure2] gofigure2: FTBFS: make[3]: *** No rule to make 
target `/usr/lib/libQtGui.so', needed by `lib/libQGoGui.so.0.9'.  Stop.
Added tag(s) unreproducible.
 thanks
Stopping processing here.

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


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



Bug#672815: marked as done (tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 06:51:48 +
with message-id e1stp8g-0006u7...@franck.debian.org
and subject line Bug#672815: fixed in tcllib 1.14-dfsg-2
has caused the Debian Bug report #672815,
regarding tcllib trie to overwrite try.3tcl.gz from tcl8.6-doc
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.)


-- 
672815: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672815
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: tcllib
Version: 1.12-dfsg-2
Severity: important

Preparing to replace tcllib 1.12-dfsg-2 (using .../tcllib_1.14-dfsg-1_all.deb) 
...
Unpacking replacement tcllib ...
dpkg: error processing /var/cache/apt/archives/tcllib_1.14-dfsg-1_all.deb 
(--unpack):
 trying to overwrite '/usr/share/man/man3/try.3tcl.gz', which is also in 
package tcl8.6-doc 8.6.0~b2-1
configured to not write apport reports
  Processing triggers for doc-base ...
Processing 1 changed doc-base file...
Registering documents with dhelp...
Registering documents with scrollkeeper...
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/tcllib_1.14-dfsg-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 3.3.0-trunk-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages tcllib depends on:
ii  tcl 8.5.0-2
ii  tcl8.4 [tclsh]  8.4.19-4
ii  tcl8.5 [tclsh]  8.5.8-2
ii  tcl8.6 [tclsh]  8.6.0~head-2

tcllib recommends no packages.

tcllib suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: tcllib
Source-Version: 1.14-dfsg-2

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

tcllib_1.14-dfsg-2.diff.gz
  to main/t/tcllib/tcllib_1.14-dfsg-2.diff.gz
tcllib_1.14-dfsg-2.dsc
  to main/t/tcllib/tcllib_1.14-dfsg-2.dsc
tcllib_1.14-dfsg-2_all.deb
  to main/t/tcllib/tcllib_1.14-dfsg-2_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 672...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sergei Golovan sgolo...@debian.org (supplier of updated tcllib 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, 14 May 2012 10:23:37 +0400
Source: tcllib
Binary: tcllib
Architecture: source all
Version: 1.14-dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Tcl/Tk Debian Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 tcllib - Standard Tcl Library
Closes: 637301 664114 672815
Changes: 
 tcllib (1.14-dfsg-2) unstable; urgency=low
 .
   * Renamed try(3tcl) manpage into try(3tcllib) to avoid conflict with
 the tcl8.6-doc package (closes: #672815).
   * Removed Chris Waters from the uploaders list (closes: #664114).
   * Removed HTML doc for no longer existing exif module (closes: #637301).
   * Bumped standards version to 3.9.3.
Checksums-Sha1: 
 f2167eee827d9288e70554504bf3fa0ecc240b2e 1180 tcllib_1.14-dfsg-2.dsc
 433f33a52636e23730df81df1e9b56dbc031fa65 9508 tcllib_1.14-dfsg-2.diff.gz
 35a6ed2bb0bc3b6de5bb22fdd482845bcea0dca9 4627594 tcllib_1.14-dfsg-2_all.deb
Checksums-Sha256: 
 e1fe97661cb7c3e5cfa6fcefb6b11ed9a408ef2b5de707695ed646df866d8e71 1180 
tcllib_1.14-dfsg-2.dsc
 a53dd45d38740ec0165d6d3632670a241213c29c0945678af2d7152182670b0e 9508 
tcllib_1.14-dfsg-2.diff.gz
 c2dd4cdbbb77767f717ef030ed1e8f3d84adc6853bcd12f093f890ed3b151b93 4627594 
tcllib_1.14-dfsg-2_all.deb
Files: 
 81a2919317845a5231cfb610f39036b7 1180 interpreters optional 
tcllib_1.14-dfsg-2.dsc
 05b8ee8831df20fea1e078665b9a223f 9508 interpreters optional 
tcllib_1.14-dfsg-2.diff.gz
 2df27e32c07792422e70ca43d7ec622f 4627594 interpreters optional 
tcllib_1.14-dfsg-2_all.deb

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

iD8DBQFPsKZDIcdH02pGEFIRArWVAJoD/PhynVJqhHx1Vp1XX7vi19BBMwCdGF/J

Bug#672744: Bug#672744: cufflinks: needs rebuild against boost 1.49

2012-05-14 Thread Andreas Tille
Hi,

please inspect the patch provided here:

   
http://anonscm.debian.org/gitweb/?p=debian-med/cufflinks.git;a=blob;f=debian/patches/gcc-4.7.patch;h=63bfaede309d5a549f59a86f991a12297d993abf;hb=HEAD

It fixes the build issue but I'm not fully sure whether it is what the
code is supposed to be.

Kind regards

   Andreas.

On Mon, May 14, 2012 at 08:03:30AM +0900, Charles Plessy wrote:
 Dear Cufflinks developers,
 
 we are distributing Cufflinks (and Bowtie, and Tophat) in Debian.  Recently we
 changed our default compiler to be GCC 4.7, and unfortunately Cufflinks does
 not build with it.  I have committed and pushed the build log at the following
 URL.
 
 http://git.debian.org/?p=debian-med/cufflinks.git;a=blob;f=log;h=82d67ddf64cf1c0db584763c474dbfce2ff39f82;hb=cbcfb480416b4ac4e6fc45b0b2c53dc64433a002
 
 The relevant part is:
 
 assemble.cpp: In function 'void create_reachability_bp_graph(DAG, 
 ReachGraph, 
 std::vectorlemon::BidirBpUGraphExtenderlemon::SmartBpUGraphBase::BNode, 
 std::allocatorlemon::BidirBpUGraphExtenderlemon::SmartBpUGraphBase::BNode 
 , DagToBp, const boost::adjacency_list, const std::vectorbool)':
 assemble.cpp:123:17: warning: variable 'hits_for_node' set but not used 
 [-Wunused-but-set-variable]
 In file included from ./lemon/list_graph.h:26:0,
  from ./lemon/dfs.h:26,
  from ./lemon/topology.h:22,
  from assemble.cpp:19:
 ./lemon/bits/base_extender.h: In instantiation of 
 'lemon::BidirBpUGraphExtenderBase::Node 
 lemon::BidirBpUGraphExtenderBase::source(const UEdge) const [with Base = 
 lemon::SmartBpUGraphBase; lemon::BidirBpUGraphExtenderBase::Node = 
 lemon::SmartBpUGraphBase::Node; lemon::BidirBpUGraphExtenderBase::UEdge = 
 lemon::SmartBpUGraphBase::UEdge]':
 assemble.cpp:258:36:   required from here
 ./lemon/bits/base_extender.h:362:21: error: 'aNode' was not declared in this 
 scope, and no declarations were found by argument-dependent lookup at the 
 point of instantiation [-fpermissive]
 ./lemon/bits/base_extender.h:362:21: note: declarations in dependent base 
 'lemon::SmartBpUGraphBase' are not found by unqualified lookup
 ./lemon/bits/base_extender.h:362:21: note: use 'this-aNode' instead
 ./lemon/bits/base_extender.h: In instantiation of 
 'lemon::BidirBpUGraphExtenderBase::Node 
 lemon::BidirBpUGraphExtenderBase::target(const UEdge) const [with Base = 
 lemon::SmartBpUGraphBase; lemon::BidirBpUGraphExtenderBase::Node = 
 lemon::SmartBpUGraphBase::Node; lemon::BidirBpUGraphExtenderBase::UEdge = 
 lemon::SmartBpUGraphBase::UEdge]':
 assemble.cpp:259:36:   required from here
 ./lemon/bits/base_extender.h:365:21: error: 'bNode' was not declared in this 
 scope, and no declarations were found by argument-dependent lookup at the 
 point of instantiation [-fpermissive]
 ./lemon/bits/base_extender.h:365:21: note: declarations in dependent base 
 'lemon::SmartBpUGraphBase' are not found by unqualified lookup
 ./lemon/bits/base_extender.h:365:21: note: use 'this-bNode' instead
 make[3]: *** [assemble.o] Error 1
 
 I looked in the Lemon library's website so see if there was a correction
 available, but it looks that in the latest version, 
 ./lemon/bits/base_extender.h
 does not exist anymore.
 
 Please do not hesitate to contact us in case you would like us to test
 patches before releasing an update.
 
 By the way, we are already applying three patches to Cufflinks.
 
   
 http://anonscm.debian.org/gitweb/?p=debian-med/cufflinks.git;a=tree;f=debian/patches;h=181a8624688d76a6c0a7257e96f3ba80671e7169;hb=HEAD
 
 The first fixes some spelling, the second and the third normalise the path to
 the samtools headers to the one we chose for Debian (other programs, like the
 BioPerl Bio::Samtools library, were following other paths).
 
 Ubuntu also patches Cufflinks, so that it can be built on 32-bit systems.
 
   http://patches.ubuntu.com/c/cufflinks/cufflinks_1.3.0-1ubuntu2.patch 
 
 Have a nice day,
 
 -- 
 Charles Plessy
 Debian Med packaging team,
 http://www.debian.org/devel/debian-med
 Tsurumi, Kanagawa, Japan
 
 
 
 ___
 Debian-med-packaging mailing list
 debian-med-packag...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-packaging
 

-- 
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#672851: netbase 5.0: network connection does not come up upon reboot

2012-05-14 Thread Adam Warner
Package: netbase
Version: 5.0
Severity: critical

Multiple Debian sid operating systems (amd64 and i386): Could not
connect to them over the network after dist-upgrade and reboot. Isolated
cause to netbase 5.0 (which also removes ifupdown). 

Workaround if physical access is available to affected servers:

1. obtain ifupdown 0.7~alpha5+really0.6.16 and netbase 4.47 packages for
your architecture. Copy *.deb packages to USB key.

2. Mount USB key in affected servers and copy the *.deb packages
to /var/cache/apt/archives/

3. apt-get install ifupdown netbase/testing

4. Verify /etc/init.d/networking restart
brings up the network interface before rebooting.

5. Extra precaution: echo netbase hold | dpkg --set-selections
to ensure netbase is not upgraded again until this is sorted out.

This message is a quick warning for others. I understand I have not
provided enough information about my systems for debugging purposes. I
just want to limit the number of people potentially affected by this
issue.




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



Bug#672832: iceweasel: FTBFS: Build killed with signal TERM after 150 minutes of inactivity.

2012-05-14 Thread Mike Hommey
On Mon, May 14, 2012 at 01:41:15AM +0200, Nicolas Le Cam wrote:
 Package: iceweasel
 Version: 12.0-6
 Severity: serious
 Tags: patch
 Justification: fails to build from source (but built successfully in the past)
 
 Dear Maintainer,
 
 Build is killed after 150 min of inactivity, see [1] for example.
 This seems to be related to bz#595368.
 Html test file has been removed from the makefile upstream but not the js 
 unit associated.

Actually, it's a different issue: bz#754537, due to Debian bug #672573.
 
 Something like that should help the build process :
 
 --- a/debian/test.mk  2012-05-14 01:28:09.462416104 +0200
 +++ b/debian/test.mk  2012-05-14 01:37:52.154398783 +0200
 @@ -39,6 +39,8 @@
  xpcshell-tests-skip:
  # This one fails because it supposes some kind of preexisting gnome/mailcap 
 configuration
   rm -f 
 build-xulrunner/_tests/xpcshell/uriloader/exthandler/tests/unit/test_handlerService.js
 +# This one causes infinite loop. bz#595368
 + rm -f 
 build-xulrunner/_tests/xpcshell/dom/indexedDB/test/unit/test_writer_starvation.js
  
  check-skip:
  # This one fails because it only works in an american time zone. bz#515254
 
 Regards,
 Nicolas
 
 [1] 
 https://buildd.debian.org/status/fetch.php?pkg=iceweaselarch=i386ver=12.0-6stamp=1336776672
 
 
 
 ___
 pkg-mozilla-maintainers mailing list
 pkg-mozilla-maintain...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-mozilla-maintainers



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



Bug#672744: [Debian-med-packaging] Bug#672744: Bug#672744: cufflinks: needs rebuild against boost 1.49

2012-05-14 Thread Charles Plessy
Le Mon, May 14, 2012 at 08:58:53AM +0200, Andreas Tille a écrit :
 
 please inspect the patch provided here:
 

 http://anonscm.debian.org/gitweb/?p=debian-med/cufflinks.git;a=blob;f=debian/patches/gcc-4.7.patch;h=63bfaede309d5a549f59a86f991a12297d993abf;hb=HEAD
 
 It fixes the build issue but I'm not fully sure whether it is what the
 code is supposed to be.

Thanks Andreas,

the package does not have regression tests, so I would suggest to wait for
upstream's inspection to make sure the patch will not introduce bugs.

For the version 2.0.0, it is marked beta, so I think it should be rather a
target for experimental at the moment.  But the patch should apply as the
'lemon' convenience code copy in 2.0.0 is unchanged.

(By the way, it is picard-tools that needed snappy-java).

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan



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



Bug#667257: marked as done (libv8: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 09:56:37 +0200
with message-id 4fb0bab5.30...@melix.org
and subject line RE: libv8: ftbfs with GCC-4.7
has caused the Debian Bug report #667257,
regarding libv8: ftbfs with GCC-4.7
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.)


-- 
667257: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667257
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libv8
Version: 3.7.12.22-3
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

../src/string-search.h:401:3: error: assuming signed overflow does not occur 
when assuming that (X + c)  X is always false [-Werror=strict-overflow]

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/libv8_3.7.12.22-3_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]
  g++ '-DENABLE_DEBUGGER_SUPPORT' '-DV8_TARGET_ARCH_X64' '-DBUILDING_V8_SHARED' 
'-DV8_SHARED' -I../src -Wall -Werror -W -Wno-unused-parameter 
-Wnon-virtual-dtor -pthread -fno-rtti -fno-exceptions -pedantic -ansi 
-fvisibility=hidden -fPIC -fdata-sections -ffunction-sections 
-fomit-frame-pointer -O3  -MMD -MF 
/«PKGBUILDDIR»/out/x64.release/.deps//«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/hydrogen-instructions.o.d.raw
 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
-Werror=format-security -Wall -Wno-unused-but-set-variable -c -o 
/«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/hydrogen-instructions.o 
../src/hydrogen-instructions.cc
  g++ '-DENABLE_DEBUGGER_SUPPORT' '-DV8_TARGET_ARCH_X64' '-DBUILDING_V8_SHARED' 
'-DV8_SHARED' -I../src -Wall -Werror -W -Wno-unused-parameter 
-Wnon-virtual-dtor -pthread -fno-rtti -fno-exceptions -pedantic -ansi 
-fvisibility=hidden -fPIC -fdata-sections -ffunction-sections 
-fomit-frame-pointer -O3  -MMD -MF 
/«PKGBUILDDIR»/out/x64.release/.deps//«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/ic.o.d.raw
 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
-Werror=format-security -Wall -Wno-unused-but-set-variable -c -o 
/«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/ic.o ../src/ic.cc
  g++ '-DENABLE_DEBUGGER_SUPPORT' '-DV8_TARGET_ARCH_X64' '-DBUILDING_V8_SHARED' 
'-DV8_SHARED' -I../src -Wall -Werror -W -Wno-unused-parameter 
-Wnon-virtual-dtor -pthread -fno-rtti -fno-exceptions -pedantic -ansi 
-fvisibility=hidden -fPIC -fdata-sections -ffunction-sections 
-fomit-frame-pointer -O3  -MMD -MF 
/«PKGBUILDDIR»/out/x64.release/.deps//«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/incremental-marking.o.d.raw
 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
-Werror=format-security -Wall -Wno-unused-but-set-variable -c -o 
/«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/incremental-marking.o 
../src/incremental-marking.cc
  g++ '-DENABLE_DEBUGGER_SUPPORT' '-DV8_TARGET_ARCH_X64' '-DBUILDING_V8_SHARED' 
'-DV8_SHARED' -I../src -Wall -Werror -W -Wno-unused-parameter 
-Wnon-virtual-dtor -pthread -fno-rtti -fno-exceptions -pedantic -ansi 
-fvisibility=hidden -fPIC -fdata-sections -ffunction-sections 
-fomit-frame-pointer -O3  -MMD -MF 
/«PKGBUILDDIR»/out/x64.release/.deps//«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/inspector.o.d.raw
 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
-Werror=format-security -Wall -Wno-unused-but-set-variable -c -o 
/«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/inspector.o 
../src/inspector.cc
  g++ '-DENABLE_DEBUGGER_SUPPORT' '-DV8_TARGET_ARCH_X64' '-DBUILDING_V8_SHARED' 
'-DV8_SHARED' -I../src -Wall -Werror -W -Wno-unused-parameter 
-Wnon-virtual-dtor -pthread -fno-rtti -fno-exceptions -pedantic -ansi 
-fvisibility=hidden -fPIC -fdata-sections -ffunction-sections 
-fomit-frame-pointer -O3  -MMD -MF 
/«PKGBUILDDIR»/out/x64.release/.deps//«PKGBUILDDIR»/out/x64.release/obj.target/v8_base/src/interpreter-irregexp.o.d.raw
 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
-Werror=format-security -Wall 

Bug#672852: Incorrect chgrp call in postinst prevents package configuration

2012-05-14 Thread Andrey Rahmatullin
Package: munin
Version: 2.0~rc6-1
Severity: grave

Setting up munin (2.0~rc6-1) ...
chgrp: invalid group: `munin:www-data'
dpkg: error processing munin (--configure):
 subprocess installed post-installation script returned error exit status 1


Indeed, chgrp munin:www-data /var/lib/munin/cgi-tmp is an invalid command.



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

Kernel: Linux 3.4.0-rc3-wrar-2+ (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages munin depends on:
ii  adduser  3.113+nmu1
ii  cron 3.0pl1-121
ii  libcgi-fast-perl 5.14.2-10
ii  libdate-manip-perl   6.31-1
ii  libdigest-md5-perl   none
ii  libfile-copy-recursive-perl  0.38-1
ii  libhtml-template-perl2.91-1
ii  libio-socket-inet6-perl  2.69-2
ii  liblog-log4perl-perl 1.29-1
ii  libparse-recdescent-perl 1.967009+dfsg-1
ii  librrds-perl 1.4.7-1
ii  libstorable-perl none
ii  liburi-perl  1.60-1
ii  munin-common 2.0~rc6-1
ii  perl [libtime-hires-perl]5.14.2-10
ii  perl-modules 5.14.2-10
ii  rrdtool  1.4.7-1
ii  ttf-dejavu   2.33-2

Versions of packages munin recommends:
ii  munin-doc   none
ii  munin-node  2.0~rc6-1

Versions of packages munin suggests:
ii  apache2-mpm-worker [httpd]2.2.22-5
ii  elinks [www-browser]  0.12~pre5-7
ii  google-chrome-unstable [www-browser]  20.0.1132.3-r136408
ii  iceweasel [www-browser]   10.0.4esr-2
ii  konqueror [www-browser]   4:4.7.4-2
ii  libnet-ssleay-perl1.48-1
ii  links [www-browser]   2.6-1
ii  opera [www-browser]   11.64.1403
ii  opera-next [www-browser]  12.00.1387

-- Configuration Files:
/etc/cron.d/munin changed [not included]

-- no debconf information



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



Bug#671971: [Pkg-fonts-devel] Bug#671971: Bug#671971: fontforge: FTBFS: ../libtool: 1: eval: base_compile+= -c: not found

2012-05-14 Thread Christian PERRIER
Quoting Christian PERRIER (bubu...@debian.org):
 Quoting Jakub Wilk (jw...@debian.org):
  tags 671971 + patch
  thanks
 
 Thanks for the patch, Jakub. I'm working to test it, apply it and
 probably upload.


For the record, I tried building FF with this patch yesterday and went
on an FTBFS, which I didn't investigate (not sure if it is related to
the patch or not, just noticed the build failure early this morning).




signature.asc
Description: Digital signature


Bug#670878: [Pkg-cups-devel] Bug#670878: cups: FTBFS on armel (version 1.5.2-10): failed command test 5.4-lpstat.sh

2012-05-14 Thread Martin Pitt
Hello Steve,

Steve McIntyre [2012-05-12 15:57 +0100]:
 And yes, I think it's a timing bug. Earlier in the test suite (4.3)
 there are a set of ops including printing, cancelling etc. It looks
 like the issue in 5.4 on armel is that the cupsd itself hasn't had
 time to finish cancelling a job. Adding a trivial sleep 10 at the
 top of 5.4-lpstat.sh makes things work fine for me. There should be a
 better way to do things, but I'm not an expert here.

Many thanks for investigating this! Adding a sleep 10 is at least
harmless, so I have no problem with adding this to unblock the armel
build. It's at least much better than disabling the tests on armel
entirely.

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.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#667117: marked as done (blender: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:28:36 +0200
with message-id 20120514082836.GA9716@localhost
and subject line Re: blender: ftbfs with GCC-4.7
has caused the Debian Bug report #667117,
regarding blender: ftbfs with GCC-4.7
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.)


-- 
667117: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667117
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: blender
Version: 2.62-1
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

stddef.h:417:43: error: operator '' has no right operand

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/blender_2.62-1_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:206:32: 
warning: 'void av_close_input_file(AVFormatContext*)' is deprecated (declared 
at /usr/include/libavformat/avformat.h:1580) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:210:5: warning: 
'int avcodec_open(AVCodecContext*, AVCodec*)' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:4035) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:210:33: 
warning: 'int avcodec_open(AVCodecContext*, AVCodec*)' is deprecated (declared 
at /usr/include/libavcodec/avcodec.h:4035) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:212:3: warning: 
'void av_close_input_file(AVFormatContext*)' is deprecated (declared at 
/usr/include/libavformat/avformat.h:1580) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:212:32: 
warning: 'void av_close_input_file(AVFormatContext*)' is deprecated (declared 
at /usr/include/libavformat/avformat.h:1580) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:279:3: warning: 
'void av_close_input_file(AVFormatContext*)' is deprecated (declared at 
/usr/include/libavformat/avformat.h:1580) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:279:34: 
warning: 'void av_close_input_file(AVFormatContext*)' is deprecated (declared 
at /usr/include/libavformat/avformat.h:1580) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp: In member 
function 'virtual void VideoFFmpeg::openFile(char*)':
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:549:40: 
warning: 'AVIOContext::is_streamed' is deprecated (declared at 
/usr/include/libavformat/avio.h:101) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:549:40: 
warning: 'AVIOContext::is_streamed' is deprecated (declared at 
/usr/include/libavformat/avio.h:101) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp: In member 
function 'virtual void VideoFFmpeg::openCam(char*, short int)':
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:640:16: 
warning: 'AVFormatParameters::standard' is deprecated (declared at 
/usr/include/libavformat/avformat.h:357) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:640:16: 
warning: 'AVFormatParameters::standard' is deprecated (declared at 
/usr/include/libavformat/avformat.h:357) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:649:15: 
warning: 'AVFormatParameters::time_base' is deprecated (declared at 
/usr/include/libavformat/avformat.h:350) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:649:15: 
warning: 'AVFormatParameters::time_base' is deprecated (declared at 
/usr/include/libavformat/avformat.h:350) [-Wdeprecated-declarations]
/«PKGBUILDDIR»/source/gameengine/VideoTexture/VideoFFmpeg.cpp:650:15: 
warning: 'AVFormatParameters::time_base' is deprecated (declared at 
/usr/include/libavformat/avformat.h:350) [-Wdeprecated-declarations]

Bug#672852: marked as done (Incorrect chgrp call in postinst prevents package configuration)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:38:11 +0200
with message-id 201205141038.12734.hol...@layer-acht.org
and subject line Re: [Packaging] Bug#672852: Incorrect chgrp call in postinst 
prevents package configuration
has caused the Debian Bug report #672852,
regarding Incorrect chgrp call in postinst prevents package configuration
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.)


-- 
672852: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672852
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: munin
Version: 2.0~rc6-1
Severity: grave

Setting up munin (2.0~rc6-1) ...
chgrp: invalid group: `munin:www-data'
dpkg: error processing munin (--configure):
 subprocess installed post-installation script returned error exit status 1


Indeed, chgrp munin:www-data /var/lib/munin/cgi-tmp is an invalid command.



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

Kernel: Linux 3.4.0-rc3-wrar-2+ (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages munin depends on:
ii  adduser  3.113+nmu1
ii  cron 3.0pl1-121
ii  libcgi-fast-perl 5.14.2-10
ii  libdate-manip-perl   6.31-1
ii  libdigest-md5-perl   none
ii  libfile-copy-recursive-perl  0.38-1
ii  libhtml-template-perl2.91-1
ii  libio-socket-inet6-perl  2.69-2
ii  liblog-log4perl-perl 1.29-1
ii  libparse-recdescent-perl 1.967009+dfsg-1
ii  librrds-perl 1.4.7-1
ii  libstorable-perl none
ii  liburi-perl  1.60-1
ii  munin-common 2.0~rc6-1
ii  perl [libtime-hires-perl]5.14.2-10
ii  perl-modules 5.14.2-10
ii  rrdtool  1.4.7-1
ii  ttf-dejavu   2.33-2

Versions of packages munin recommends:
ii  munin-doc   none
ii  munin-node  2.0~rc6-1

Versions of packages munin suggests:
ii  apache2-mpm-worker [httpd]2.2.22-5
ii  elinks [www-browser]  0.12~pre5-7
ii  google-chrome-unstable [www-browser]  20.0.1132.3-r136408
ii  iceweasel [www-browser]   10.0.4esr-2
ii  konqueror [www-browser]   4:4.7.4-2
ii  libnet-ssleay-perl1.48-1
ii  links [www-browser]   2.6-1
ii  opera [www-browser]   11.64.1403
ii  opera-next [www-browser]  12.00.1387

-- Configuration Files:
/etc/cron.d/munin changed [not included]

-- no debconf information


---End Message---
---BeginMessage---
version: 2.0~rc6-2

Hi Andrey,

On Montag, 14. Mai 2012, Andrey Rahmatullin wrote:
 Setting up munin (2.0~rc6-1) ...
 chgrp: invalid group: `munin:www-data'
 dpkg: error processing munin (--configure):
  subprocess installed post-installation script returned error exit status 1

I've just uploaded 2.0~rc6-2 which fixes this. Thanks for your bugreport 
anyway and sorry for the trouble!


cheers,
Holger

---End Message---


Processed: found 619263 in 1:3.4.3-4

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

 found 619263 1:3.4.3-4
Bug #619263 [libreoffice] libreoffice: terminate called after throwing an 
instance of 'com::sun::star::uno::RuntimeException'
Marked as found in versions libreoffice/1:3.4.3-4.
 thanks
Stopping processing here.

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


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



Bug#672057: marked as done (binutils-z80: FTBFS: app.c:1346:10: error: array subscript is below array bounds [-Werror=array-bounds])

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 08:47:18 +
with message-id e1stqw2-0005nt...@franck.debian.org
and subject line Bug#672057: fixed in binutils-z80 2.22-3
has caused the Debian Bug report #672057,
regarding binutils-z80: FTBFS: app.c:1346:10: error: array subscript is below 
array bounds [-Werror=array-bounds]
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.)


-- 
672057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672057
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: binutils-z80
Version: 2.22-2
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120508 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -DHAVE_CONFIG_H -I. -I/«PKGBUILDDIR»/src/gas  -I. 
 -I/«PKGBUILDDIR»/src/gas -I../bfd -I/«PKGBUILDDIR»/src/gas/config 
 -I/«PKGBUILDDIR»/src/gas/../include -I/«PKGBUILDDIR»/src/gas/.. 
 -I/«PKGBUILDDIR»/src/gas/../bfd -DLOCALEDIR=\/usr/share/locale\  -W -Wall 
 -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT app.o 
 -MD -MP -MF .deps/app.Tpo -c -o app.o /«PKGBUILDDIR»/src/gas/app.c
 /«PKGBUILDDIR»/src/gas/app.c: In function 'do_scrub_chars':
 /«PKGBUILDDIR»/src/gas/app.c:1346:10: error: array subscript is below array 
 bounds [-Werror=array-bounds]
 cc1: all warnings being treated as errors
 make[5]: *** [app.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2012/05/08/binutils-z80_2.22-2_unstable.log

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

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


---End Message---
---BeginMessage---
Source: binutils-z80
Source-Version: 2.22-3

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

binutils-z80_2.22-3.debian.tar.gz
  to main/b/binutils-z80/binutils-z80_2.22-3.debian.tar.gz
binutils-z80_2.22-3.dsc
  to main/b/binutils-z80/binutils-z80_2.22-3.dsc
binutils-z80_2.22-3_amd64.deb
  to main/b/binutils-z80/binutils-z80_2.22-3_amd64.deb



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

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

Debian distribution maintenance software
pp.
Alberto Garcia agar...@igalia.com (supplier of updated binutils-z80 package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 May 2012 00:30:22 +0300
Source: binutils-z80
Binary: binutils-z80
Architecture: source amd64
Version: 2.22-3
Distribution: unstable
Urgency: low
Maintainer: Alberto Garcia agar...@igalia.com
Changed-By: Alberto Garcia agar...@igalia.com
Description: 
 binutils-z80 - GNU binary utilities for the z80-unknown-coff target
Closes: 672057
Changes: 
 binutils-z80 (2.22-3) unstable; urgency=low
 .
   * debian/app.c.diff: fix FTBFS (array subscript is below array bounds)
 (Closes: #672057).
   * debian/binutils-z80.lintian-overrides: override lintian warnings about
 missing manual pages.
   * Remove unused debian/patches directory.
Checksums-Sha1: 
 9e25b7700b6217e8911748805ae86adfbcd72597 1948 binutils-z80_2.22-3.dsc
 9a7adafbaacec79993aa98c79460c5f2f6cfd733 4578 binutils-z80_2.22-3.debian.tar.gz
 2922a872990a3903f51497167a058c86db748196 2633304 binutils-z80_2.22-3_amd64.deb
Checksums-Sha256: 
 74c35cd73e3b25c8593fd7c1639c7b2821aebb750c8630e702b00a5a5610e6a9 1948 
binutils-z80_2.22-3.dsc
 eb0e34396346f87af44078253e3d662379c85dca857ef50dae626e2d4b465ed9 4578 
binutils-z80_2.22-3.debian.tar.gz
 6352f48f99b2d4fd7f61e1631dc0a353fc56c78f829c4302fc5de75240c7e498 2633304 
binutils-z80_2.22-3_amd64.deb
Files: 
 c7a4dfc825848db72f73b5f190e3ac58 1948 devel extra binutils-z80_2.22-3.dsc
 2619203ed993a4f6948f47616ea12829 4578 devel extra 
binutils-z80_2.22-3.debian.tar.gz
 310458903f643c0e8544b9327a918ddf 2633304 devel extra 
binutils-z80_2.22-3_amd64.deb

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


Bug#672823: mana: FTBFS on sid: type 'TabbedArea' is not a base type for type 'TabbedArea'

2012-05-14 Thread Thorbjørn Lindeijer
This is caused by the following regression in gcc:

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52841

This patch includes a workaround for the problem:

https://github.com/mana/mana/commit/86154175f63a7f1a4b73b3727314ac760d83834e

Note also that by default mana compiles in C++0x mode. This should be
turned off when Guichan (one of the dependencies) is not compiled in
C++0x mode, because with GCC 4.7.0 this leads to binary compatibility
problems causing linker failure.

Regards,
Bjørn

On Mon, May 14, 2012 at 12:48 AM, Samuel Thibault sthiba...@debian.org wrote:
 Package: mana
 Version: 0.6.1-1
 Severity: serious
 Justification: FTBFS
 User: debian-...@lists.debian.org
 Usertags: ftbfs-gcc-4.7

 Hello,

 mana currently FTBFS on sid:

 /tmp/buildd/mana-0.6.1/src/gui/widgets/tabbedarea.h:101:32: error: type 
 'TabbedArea' is not a base type for type 'TabbedArea'

 It might be related with gcc-4.7

 Samuel

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

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

 --
 Samuel Thibault samuel.thiba...@fnac.net
 X-Favorit-Cartoon: Calvin and Hobbes
  -+- Mail header of Wim van Dorst -+-






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



Processed: found 619263 in 1:3.4.6-2

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

 found 619263 1:3.4.6-2
Bug #619263 [libreoffice] libreoffice: terminate called after throwing an 
instance of 'com::sun::star::uno::RuntimeException'
Marked as found in versions libreoffice/1:3.4.6-2.
 thanks
Stopping processing here.

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


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



Processed: severity of 657245 is important

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

 severity 657245 important
Bug #657245 [blender] blender: possible dfsg violation in release/windows/ 
subdirectory
Severity set to 'important' from 'serious'
 thanks
Stopping processing here.

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


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



Bug#662702: NMU for Unstable

2012-05-14 Thread Artur R. Czechowski
Hello,
Honestly, I would really preffer to find a sponsor to upload my work,
instead of NMU.

Regards
Artur

On Mon, May 14, 2012 at 02:11:08AM -0400, Scott Kitterman wrote:
 Fixing this bug doesn't need all the changes that are in Unstable, so I'll 
 upload the attached diff shortly to delay/2 in order to minimize impact on 
 the Qt 4.8 transition.  If you'd prefer I delay it further, please let me 
 know.
 
 Scott K

 diff -u libqglviewer-2.3.4/debian/changelog 
 libqglviewer-2.3.4/debian/changelog
 --- libqglviewer-2.3.4/debian/changelog
 +++ libqglviewer-2.3.4/debian/changelog
 @@ -1,3 +1,18 @@
 +libqglviewer (2.3.4-4.1) unstable; urgency=low
 +
 +  * Non-maintainer upload. (Closes: #662702)
 +
 +  [ Daniel T Chen ]
 +  * debian/rules: Use Qt4 multiarch lib path. Fixes FTBFS.
 +
 +  [ Felix Geyer ]
 +  * Add 04glu-include.dpatch to fix FTBFS with Qt 4.8.
 +  * Add 05glu-link.dpatch to make libqglviewer-qt4 link against libGLU.
 +  * Add Pre-Depends: ${misc:Pre-Depends} to libqglviewer-qt4-2.
 +  * Mark libqglviewer-qt4-2 as Multi-Arch: same.
 +
 + -- Scott Kitterman sc...@kitterman.com  Mon, 14 May 2012 01:53:58 -0400
 +
  libqglviewer (2.3.4-4) unstable; urgency=high
  
* reupload with high urgency
 diff -u libqglviewer-2.3.4/debian/control libqglviewer-2.3.4/debian/control
 --- libqglviewer-2.3.4/debian/control
 +++ libqglviewer-2.3.4/debian/control
 @@ -5,7 +5,7 @@
  DM-Upload-Allowed: yes
  Homepage: http://www.libqglviewer.com/
  Standards-Version: 3.8.3
 -Build-Depends: debhelper (= 7), libqt3-mt-dev, libqt4-dev, 
 libqt4-opengl-dev, dpatch
 +Build-Depends: debhelper (= 8.1.3~), libqt3-mt-dev, libqt4-dev (= 
 4:4.8.0~), libqt4-opengl-dev (= 4:4.8.0~), dpatch
  
  Package: libqglviewer-dev-common
  Section: libdevel
 @@ -83,6 +83,8 @@
  Package: libqglviewer-qt4-2
  Section: libs
  Architecture: any
 +Multi-Arch: same
 +Pre-Depends: ${misc:Pre-Depends}
  Depends: ${shlibs:Depends}, ${misc:Depends}
  Description: an OpenGL 3D viewer library based on Qt - runtime library
   libqglviewer (also known as libQGLViewer) is a free C++ library based on Qt
 diff -u libqglviewer-2.3.4/debian/rules libqglviewer-2.3.4/debian/rules
 --- libqglviewer-2.3.4/debian/rules
 +++ libqglviewer-2.3.4/debian/rules
 @@ -22,6 +22,8 @@
   INSTALL_PROGRAM += -s
  endif
  
 +DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
 +
  version:=$(shell dpkg-parsechangelog | grep ^Version: | sed -e 's/^Version: 
 //' -e 's/-.*$$//')
  ver2:=$(shell echo $(version) | cut -d. -f-2)
  major:=$(shell echo $(version) | cut -d. -f1)
 @@ -76,13 +78,13 @@
   cd qglviewer-qt4  $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp
   cd designerPlugin-qt4  $(MAKE) install 
 INSTALL_ROOT=$(CURDIR)/debian/tmp
  
 - mkdir -p debian/libqglviewer-qt4-2/usr/lib 
 debian/libqglviewer-qt4-dev/usr/lib/qt4/plugins/designer
 + mkdir -p debian/libqglviewer-qt4-2/usr/lib/$(DEB_HOST_MULTIARCH) 
 debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer
  
 - cp -d debian/tmp/usr/lib/*.so.* debian/libqglviewer-qt4-2/usr/lib
 - cp -d qglviewer-qt4/libqglviewer-qt4.a 
 debian/libqglviewer-qt4-dev/usr/lib
 - cp -d debian/tmp/usr/lib/*.so debian/libqglviewer-qt4-dev/usr/lib
 - cp -d debian/tmp/usr/lib/*.prl debian/libqglviewer-qt4-dev/usr/lib
 - cp -d debian/tmp/usr/lib/qt4/plugins/designer/libqglviewerplugin.so 
 debian/libqglviewer-qt4-dev/usr/lib/qt4/plugins/designer
 + cp -d debian/tmp/usr/lib/*.so.* 
 debian/libqglviewer-qt4-2/usr/lib/$(DEB_HOST_MULTIARCH)
 + cp -d qglviewer-qt4/libqglviewer-qt4.a 
 debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
 + cp -d debian/tmp/usr/lib/*.so 
 debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
 + cp -d debian/tmp/usr/lib/*.prl 
 debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)
 + cp -d 
 debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer/libqglviewerplugin.so
  
 debian/libqglviewer-qt4-dev/usr/lib/$(DEB_HOST_MULTIARCH)/qt4/plugins/designer
  
   cp -dr debian/tmp/usr/include/QGLViewer 
 debian/libqglviewer-dev-common/usr/include
  
 diff -u libqglviewer-2.3.4/debian/patches/00list 
 libqglviewer-2.3.4/debian/patches/00list
 --- libqglviewer-2.3.4/debian/patches/00list
 +++ libqglviewer-2.3.4/debian/patches/00list
 @@ -3,2 +3,4 @@
  03only-headers-in-include-dir
 +04glu-include
 +05glu-link
  99compile-examples
 only in patch2:
 unchanged:
 --- libqglviewer-2.3.4.orig/debian/patches/04glu-include.dpatch
 +++ libqglviewer-2.3.4/debian/patches/04glu-include.dpatch
 @@ -0,0 +1,32 @@
 +#! /bin/sh /usr/share/dpatch/dpatch-run
 +## 04glu-include.dpatch by Felix Geyer de...@ubuntu.com
 +##
 +## All lines beginning with `## DP:' are a description of the patch.
 +## DP: No description.
 +
 +@DPATCH@
 +
 +diff -Nur libqglviewer-2.3.4.org/QGLViewer/camera.cpp 
 libqglviewer-2.3.4/QGLViewer/camera.cpp
 +--- libqglviewer-2.3.4.org/QGLViewer/camera.cpp
  

Bug#672857: marked as done (chgrp: invalid group: `munin:www-data')

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 11:11:18 +0200
with message-id 20120514.19770.hol...@layer-acht.org
and subject line Re: [Packaging] Bug#672857: chgrp: invalid group: 
`munin:www-data'
has caused the Debian Bug report #672857,
regarding chgrp: invalid group: `munin:www-data'
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.)


-- 
672857: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672857
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: munin
Version: 2.0~rc6-1
Severity: serious

Setting up munin (2.0~rc6-1) ...
chgrp: invalid group: `munin:www-data'
dpkg: error processing munin (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 munin
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

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

Versions of packages munin depends on:
ii  adduser  3.113+nmu1
ii  cron 3.0pl1-121
ii  libcgi-fast-perl 5.14.2-10
ii  libdate-manip-perl   6.31-1
ii  libdigest-md5-perl   none
ii  libfile-copy-recursive-perl  0.38-1
ii  libhtml-template-perl2.91-1
ii  libio-socket-inet6-perl  2.69-2
ii  liblog-log4perl-perl 1.29-1
ii  librrds-perl 1.4.7-1
ii  libstorable-perl none
ii  liburi-perl  1.60-1
ii  munin-common 2.0~rc6-1
ii  perl [libtime-hires-perl]5.14.2-10
ii  perl-modules 5.14.2-10
ii  rrdtool  1.4.7-1
ii  ttf-dejavu   2.33-2

Versions of packages munin recommends:
ii  munin-doc   2.0~rc6-1
ii  munin-node  2.0~rc6-1

Versions of packages munin suggests:
ii  apache2-mpm-worker [httpd]  2.2.22-5
ii  chromium [www-browser]  18.0.1025.168~r134367-1
ii  iceweasel [www-browser] 10.0.4esr-2
ii  libnet-ssleay-perl  1.48-1
ii  lynx-cur [www-browser]  2.8.8dev.12-2

-- no debconf information


---End Message---
---BeginMessage---
version: 2.0~rc6-1

---End Message---


Bug#672857: chgrp: invalid group: `munin:www-data'

2012-05-14 Thread Julien Danjou
Package: munin
Version: 2.0~rc6-1
Severity: serious

Setting up munin (2.0~rc6-1) ...
chgrp: invalid group: `munin:www-data'
dpkg: error processing munin (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 munin
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

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

Versions of packages munin depends on:
ii  adduser  3.113+nmu1
ii  cron 3.0pl1-121
ii  libcgi-fast-perl 5.14.2-10
ii  libdate-manip-perl   6.31-1
ii  libdigest-md5-perl   none
ii  libfile-copy-recursive-perl  0.38-1
ii  libhtml-template-perl2.91-1
ii  libio-socket-inet6-perl  2.69-2
ii  liblog-log4perl-perl 1.29-1
ii  librrds-perl 1.4.7-1
ii  libstorable-perl none
ii  liburi-perl  1.60-1
ii  munin-common 2.0~rc6-1
ii  perl [libtime-hires-perl]5.14.2-10
ii  perl-modules 5.14.2-10
ii  rrdtool  1.4.7-1
ii  ttf-dejavu   2.33-2

Versions of packages munin recommends:
ii  munin-doc   2.0~rc6-1
ii  munin-node  2.0~rc6-1

Versions of packages munin suggests:
ii  apache2-mpm-worker [httpd]  2.2.22-5
ii  chromium [www-browser]  18.0.1025.168~r134367-1
ii  iceweasel [www-browser] 10.0.4esr-2
ii  libnet-ssleay-perl  1.48-1
ii  lynx-cur [www-browser]  2.8.8dev.12-2

-- 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: fixed 619263 in 1:3.5.3-2

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

 fixed 619263 1:3.5.3-2
Bug #619263 [libreoffice] libreoffice: terminate called after throwing an 
instance of 'com::sun::star::uno::RuntimeException'
Marked as fixed in versions libreoffice/1:3.5.3-2.
 thanks
Stopping processing here.

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


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



Bug#670878: marked as done (cups: FTBFS on armel (version 1.5.2-10): failed command test 5.4-lpstat.sh)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 09:17:55 +
with message-id e1strpf-0002dw...@franck.debian.org
and subject line Bug#670878: fixed in cups 1.5.2-11
has caused the Debian Bug report #670878,
regarding cups: FTBFS on armel (version 1.5.2-10): failed command test 
5.4-lpstat.sh
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.)


-- 
670878: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=670878
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:cups
Version: 1.5.2-10
Severity: serious
Justification: FTBFS on armel

Just in case you haven't seen the failure, cups 1.5.2-10 barfed out on
the armel build:
https://buildd.debian.org/status/fetch.php?pkg=cupsarch=armelver=1.5.2-10stamp=1334046792

The failure point was during the tests:

Running command tests...
Performing 5.1-lpadmin.sh: PASS
Performing 5.2-lpc.sh: PASS
Performing 5.3-lpq.sh: PASS
Performing 5.4-lpstat.sh: FAIL
Performing 5.5-lp.sh: PASS
Performing 5.6-lpr.sh: PASS
Performing 5.7-lprm.sh: PASS
Performing 5.8-cancel.sh: PASS
Performing 5.9-lpinfo.sh: PASS
Test Summary

It's blocking cups-filters from building on armel as well

Thanks!

   Julian


---End Message---
---BeginMessage---
Source: cups
Source-Version: 1.5.2-11

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

cups-bsd_1.5.2-11_amd64.deb
  to main/c/cups/cups-bsd_1.5.2-11_amd64.deb
cups-client_1.5.2-11_amd64.deb
  to main/c/cups/cups-client_1.5.2-11_amd64.deb
cups-common_1.5.2-11_all.deb
  to main/c/cups/cups-common_1.5.2-11_all.deb
cups-dbg_1.5.2-11_amd64.deb
  to main/c/cups/cups-dbg_1.5.2-11_amd64.deb
cups-ppdc_1.5.2-11_amd64.deb
  to main/c/cups/cups-ppdc_1.5.2-11_amd64.deb
cups_1.5.2-11.debian.tar.gz
  to main/c/cups/cups_1.5.2-11.debian.tar.gz
cups_1.5.2-11.dsc
  to main/c/cups/cups_1.5.2-11.dsc
cups_1.5.2-11_amd64.deb
  to main/c/cups/cups_1.5.2-11_amd64.deb
cupsddk_1.5.2-11_all.deb
  to main/c/cups/cupsddk_1.5.2-11_all.deb
libcups2-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcups2-dev_1.5.2-11_amd64.deb
libcups2_1.5.2-11_amd64.deb
  to main/c/cups/libcups2_1.5.2-11_amd64.deb
libcupscgi1-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcupscgi1-dev_1.5.2-11_amd64.deb
libcupscgi1_1.5.2-11_amd64.deb
  to main/c/cups/libcupscgi1_1.5.2-11_amd64.deb
libcupsdriver1-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcupsdriver1-dev_1.5.2-11_amd64.deb
libcupsdriver1_1.5.2-11_amd64.deb
  to main/c/cups/libcupsdriver1_1.5.2-11_amd64.deb
libcupsimage2-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcupsimage2-dev_1.5.2-11_amd64.deb
libcupsimage2_1.5.2-11_amd64.deb
  to main/c/cups/libcupsimage2_1.5.2-11_amd64.deb
libcupsmime1-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcupsmime1-dev_1.5.2-11_amd64.deb
libcupsmime1_1.5.2-11_amd64.deb
  to main/c/cups/libcupsmime1_1.5.2-11_amd64.deb
libcupsppdc1-dev_1.5.2-11_amd64.deb
  to main/c/cups/libcupsppdc1-dev_1.5.2-11_amd64.deb
libcupsppdc1_1.5.2-11_amd64.deb
  to main/c/cups/libcupsppdc1_1.5.2-11_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 670...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Martin Pitt mp...@debian.org (supplier of updated cups package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 May 2012 10:38:14 +0200
Source: cups
Binary: libcups2 libcupsimage2 libcupscgi1 libcupsdriver1 libcupsmime1 
libcupsppdc1 cups cups-client libcups2-dev libcupsimage2-dev libcupscgi1-dev 
libcupsdriver1-dev libcupsmime1-dev libcupsppdc1-dev cups-bsd cups-common 
cups-ppdc cups-dbg cupsddk
Architecture: source all amd64
Version: 1.5.2-11
Distribution: unstable
Urgency: low
Maintainer: Debian CUPS Maintainers pkg-cups-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 cups   - Common UNIX Printing System(tm) - server
 cups-bsd   - Common UNIX Printing System(tm) - BSD commands
 cups-client - Common UNIX Printing System(tm) - client programs (SysV)
 cups-common - Common UNIX Printing System(tm) - common files
 cups-dbg   - Common UNIX Printing System(tm) - debugging symbols
 cups-ppdc  - Common UNIX Printing System(tm) - PPD manipulation utilities
 cupsddk- Common UNIX Printing 

Bug#672859: wwsympa.fcgi fails to check download/delete permissions properly

2012-05-14 Thread George Kargiotakis
Package: sympa
Version: 6.0.1+dfsg-4
Severity: grave

Sympa versions 6.1.11 have a severe security issue where any user can
download or delete the archives of a mailing list if they know the name
of the list.

Debian has been tracking it at 
http://security-tracker.debian.org/tracker/CVE-2012-2352

I'm attaching a patch (taken from upstream commit:
https://sourcesup.renater.fr/scm/viewvc.php/branches/sympa-6.0-branch/wwsympa/wwsympa.fcgi.in?root=sympapathrev=7358
 ) that fixes the problem

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=el_GR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- wwsympa.fcgi2012-05-14 11:53:36.0 +0300
+++ wwsympa.fcgi2012-05-14 11:55:09.0 +0300
@@ -15956,6 +15956,11 @@
 sub do_arc_manage {
 wwslog('info', do_arc_manage ($in{'list'}));
 
+   ## Access Control
+   unless (defined check_authz('do_arc', 'web_archive.access')) {
+   return undef;
+   }
+
 my $search_base = $wwsconf-{'arc_path'}.'/'.$list-get_list_id();
 opendir ARC, $search_base;
 foreach my $dir (sort {$b cmp $a} grep(!/^\./,readdir ARC)) {
@@ -15972,6 +15977,11 @@
 sub do_arc_download {
 
 wwslog('info', do_arc_download ($in{'list'}));
+
+   ## Access Control
+   unless (defined check_authz('do_arc', 'web_archive.access')) {
+   return undef;
+   }
 
 ##zip file name:listname_archives.zip  
 my $zip_file_name = $in{'list'}.'_archives.zip';
@@ -16072,6 +16082,11 @@
 my @abs_dirs;
 
 wwslog('info', do_arc_delete ($in{'list'}));
+
+   ## Access Control
+   unless (defined check_authz('do_arc', 'web_archive.access')) {
+   return undef;
+   }
 
 unless (defined  $in{'directories'}){
report::reject_report_web('user','select_month',{},$param-{'action'});


Bug#672607: #672607: pidgin-sipe 1.11 does not use NTLM type authentication and does not connect to Lync server

2012-05-14 Thread Domenico Andreoli
Hi,

  same problem here, I confirm the severity. Workaround: downgrade pidgin-sipe 
to 1.11.2-1.

Thanks,
Domenico



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



Bug#672851: netbase 5.0: network connection does not come up upon reboot

2012-05-14 Thread Marco d'Itri
On May 14, Adam Warner li...@consulting.net.nz wrote:

 Multiple Debian sid operating systems (amd64 and i386): Could not
 connect to them over the network after dist-upgrade and reboot. Isolated
 cause to netbase 5.0 (which also removes ifupdown). 
Only if you actually *agree* to remove ifupdown, which most people will 
probably recognize to not be the wisest move...

Andrew, I mistakenly tought that = 0.7~rc1 already was in unstable: 
either you upload it today or I will have to revert this change (and 
I do not want to).

 Workaround if physical access is available to affected servers:
Actually the fix is much simpler: just run ifup -a from the console 
and then install ifupdown from experimental, or copy 
/etc/init.d/networking from any Debian system.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#672669: ocaml-lame: FTBFS: Incorrectly thinks it's building as root

2012-05-14 Thread Hendrik Tews
Hi,

Daniel, are you sure it was ocaml-lame that FTBFS? Here it builds
fine with user id 56789 inside pbuilder.

My previously reported build failure comes from an incorrect
pbuilder setup. The problem was that CCACHE_DIR
(/var/cache/pbuilder/ccache outside and inside pbuilder) was not
writable by BUILDUSERNAME. When I add the necessary permissions,
the package builds fine.

Bye,

Hendrik



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

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

 forcemerge 672851 672862
Bug #672851 [netbase] netbase 5.0: network connection does not come up upon 
reboot
Bug #672862 [netbase] Package is not installable in unstable since depends on 
experimental ifupdown
Severity set to 'critical' from 'important'
Merged 672851 672862
 thanks
Stopping processing here.

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


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



Bug#672863: file INSTALL cannot find Utilities/doxygen/latex/gdcm-2.2.0.pdf

2012-05-14 Thread Mathieu Malaterre
Package: gdcm
Severity: serious
Justification: FTBFS


PDF documentation installation is broken in buildds:

-- Installing: 
/build/buildd-gdcm_2.2.0-11-armhf-SuE9Wp/gdcm-2.2.0/debian/tmp/usr/share/doc/gdcm-doc/html/inherit_graph_69.map
CMake Error at Utilities/doxygen/cmake_install.cmake:60 (FILE):
  file INSTALL cannot find
  
/build/buildd-gdcm_2.2.0-11-armhf-SuE9Wp/gdcm-2.2.0/obj-arm-linux-gnueabihf/Utilities/doxygen/latex/gdcm-2.2.0.pdf.
Call Stack (most recent call first):
  Utilities/cmake_install.cmake:38 (INCLUDE)
  cmake_install.cmake:37 (INCLUDE)


make[2]: *** [install] Error 1
make[2]: Leaving directory 
`/build/buildd-gdcm_2.2.0-11-armhf-SuE9Wp/gdcm-2.2.0/obj-arm-linux-gnueabihf'
dh_auto_install: make -j1 install 
DESTDIR=/build/buildd-gdcm_2.2.0-11-armhf-SuE9Wp/gdcm-2.2.0/debian/tmp 
AM_UPDATE_INFO_DIR=no returned exit code 2
make[1]: *** [override_dh_auto_install] Error 29

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)

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



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



Bug#671971: [Pkg-fonts-devel] Bug#671971: Bug#671971: fontforge: FTBFS: ../libtool: 1: eval: base_compile+= -c: not found

2012-05-14 Thread Jakub Wilk

* Christian PERRIER bubu...@debian.org, 2012-05-14, 06:58:
For the record, I tried building FF with this patch yesterday and went 
on an FTBFS, which I didn't investigate (not sure if it is related to 
the patch or not, just noticed the build failure early this morning).


Interesting, it built fine here. Do you have a build log?

--
Jakub Wilk



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



Bug#667411:

2012-05-14 Thread Mathieu Malaterre
reassign 667411 insighttoolkit
tags 667411 patch
thanks

This is an issue within itk itself. Patch is :


Index: 
insighttoolkit-3.20.1/Code/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
===
--- 
insighttoolkit-3.20.1.orig/Code/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
   2012-05-14
11:44:37.334122991 +0200
+++ 
insighttoolkit-3.20.1/Code/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
2012-05-14
11:44:46.594122659 +0200
@@ -114,7 +114,7 @@
   virtual ScalarValueType CurvatureSpeed(const NeighborhoodType  neighborhood,
  const FloatOffsetType 
offset, GlobalDataStruct *gd ) const
 {
-return PropagationSpeed( neighborhood, offset, gd );
+return this-PropagationSpeed( neighborhood, offset, gd );
 }

   /** Set/Get the sigma for the Gaussian kernel used to compute the gradient



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



Processed: your mail

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

 reassign 667411 insighttoolkit
Bug #667411 [volview] volview: ftbfs with GCC-4.7
Bug reassigned from package 'volview' to 'insighttoolkit'.
No longer marked as found in versions volview/3.4-2.
Ignoring request to alter fixed versions of bug #667411 to the same values 
previously set
 tags 667411 patch
Bug #667411 [insighttoolkit] volview: ftbfs with GCC-4.7
Added tag(s) patch.
 thanks
Stopping processing here.

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


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



Bug#672695: wordpress: no sane way for security updates in stable releases

2012-05-14 Thread Martin Bagge / brother
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 2012-05-13 14:54, Yves-Alexis Perez wrote:
 Wordpress upstream doesn't seem to be able to support a stable branch
 long enough for us (and I don't blame them for that, we do know how
 painful it is).

This pretty much sounds like the web browser situation where we don't
support the current version for the entire life cycle of the stable release.
Document and be done with it.
http://www.debian.org/releases/stable/i386/release-notes/ch-information.en.html#browser-security

- -- 
brother
http://sis.bthstudent.se
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBCAAGBQJPsNiFAAoJEJbdSEaj0jV7pWEH/j3mqJqcUMQ4gyzu8yANpAf0
pM4nxSqc4bey43VXBluunNO67yiJAPv3WDnuhoBNcCm43+Q8EN+uC1x2PukMVNvD
hUIfT3TafJ5YVMV/lhnek0EayUOaxm+B/Tn1ocCgke4b9gBB+U9lkaAfIf+wPMNs
dTmY+jOM6S3TPKWyjDGXYvp1EQlZGYKvUyZ0gBOH/srvt7uWM4AVmPSDL0DtI1WV
ELRucoPNs5n5IZhnPywHo2Y8JmGROhkU3BJlkV9YcS1MheIW+KdMQbh97Ljsspwz
sgbW0EYiwscFV5NDzAfi+o9bEEabO/BXZalYaIWi1ah2AAJFhzlNadc11vGuW1Q=
=BPA0
-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#671809: marked as done (calibre: Calibre segfaults on startup. likely python-sip related)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:34:45 +
with message-id e1stsc1-00064h...@franck.debian.org
and subject line Bug#671809: fixed in calibre 0.8.51+dfsg-1
has caused the Debian Bug report #671809,
regarding calibre: Calibre segfaults on startup. likely python-sip related
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.)


-- 
671809: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: calibre
Version: 0.8.49+dfsg-0.1
Severity: normal

Hello,

Calibre is segfaulting whenever I try and run it. I am not sure of the best way 
to run gdb with python.

I ran gdb on the core dump as follows: 

dfc@bushido:/tmp/aa$ calibre
Segmentation fault (core dumped)
dfc@bushido:/tmp/aa$ gdb /usr/bin/python2.7 core
GNU gdb (GDB) 7.4.1-debian
Copyright (C) 2012 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 x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/python2.7...Reading symbols from 
/usr/lib/debug/usr/bin/python2.7...done.
done.

warning: core file may not match specified executable file.
[New LWP 19572]

warning: Can't read pathname for load map: Input/output error.
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
Core was generated by `/usr/bin/python2.7 /usr/bin/calibre'.
Program terminated with signal 11, Segmentation fault.
#0  createClassType (client=0x7fec14495ea0, ctd=0x7fec14496020, 
mod_dict=0x2e1aed0)
at /build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c:5502
5502/build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c: 
No such file or directory.


Please let me know if there is any more information I can provide or a better 
way to invoke gdb. 

Thanks...





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

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

Versions of packages calibre depends on:
ii  calibre-bin0.8.49+dfsg-0.1
ii  fonts-liberation [ttf-liberation]  1.07.2-2
ii  imagemagick8:6.7.4.0-5
ii  poppler-utils  0.16.7-3
ii  python-beautifulsoup   3.2.0-2
ii  python-chardet 2.0.1-2
ii  python-cherrypy3   3.2.2-2
ii  python-cssutils0.9.9-1
ii  python-dateutil1.5-1
ii  python-dbus0.84.0-3
ii  python-feedparser  5.0.1-1
ii  python-imaging 1.1.7-4
ii  python-lxml2.3.2-1
ii  python-mechanize   1:0.2.5-2
ii  python-pkg-resources   0.6.24-1
ii  python-pyparsing   1.5.2-2
ii  python-qt4 4.9.1-3
ii  python-routes  1.13-1
ii  python2.7  2.7.3~rc2-2.1
ii  xdg-utils  1.1.0~rc1+git20111210-6

Versions of packages calibre recommends:
pn  python-dnspython  none

calibre suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: calibre
Source-Version: 0.8.51+dfsg-1

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

calibre-bin_0.8.51+dfsg-1_amd64.deb
  to main/c/calibre/calibre-bin_0.8.51+dfsg-1_amd64.deb
calibre_0.8.51+dfsg-1.debian.tar.gz
  to main/c/calibre/calibre_0.8.51+dfsg-1.debian.tar.gz
calibre_0.8.51+dfsg-1.dsc
  to main/c/calibre/calibre_0.8.51+dfsg-1.dsc
calibre_0.8.51+dfsg-1_all.deb
  to main/c/calibre/calibre_0.8.51+dfsg-1_all.deb
calibre_0.8.51+dfsg.orig.tar.xz
  to main/c/calibre/calibre_0.8.51+dfsg.orig.tar.xz



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

Debian distribution maintenance software
pp.
Martin Pitt mp...@debian.org (supplier of updated calibre 

Bug#668314: marked as done (calibre: crash on start - python-sip api change related)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:34:45 +
with message-id e1stsc1-00064h...@franck.debian.org
and subject line Bug#671809: fixed in calibre 0.8.51+dfsg-1
has caused the Debian Bug report #671809,
regarding calibre: crash on start - python-sip api change related
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.)


-- 
671809: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: calibre
Version: 0.8.41+dfsg-1
Severity: important

Dear Maintainer,
starting calibre crashes with :

gdb --args python2.7  /usr/bin/calibre
GNU gdb (GDB) 7.4-debian
Copyright (C) 2012 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 x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/python2.7...Reading symbols from 
/usr/lib/debug/usr/bin/python2.7...done.
done.
(gdb) r
Starting program: /usr/bin/python2.7 /usr/bin/calibre
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
Python Exception class 'gdb.error' There is no member named ma_mask.: 
createClassType (client=0x7fffe2ae9e80, ctd=0x7fffe2aea000, mod_dict=) at 
/build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c:5502
5502/build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c: 
Aucun fichier ou dossier de ce type.
(gdb) bt
Python Exception class 'gdb.error' There is no member named ma_mask.: 
#0  createClassType (client=0x7fffe2ae9e80, ctd=0x7fffe2aea000, mod_dict=) at 
/build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c:5502
Python Exception class 'gdb.error' There is no member named ma_mask.: 
#1  0x72231698 in sip_api_init_module (client=0x7fffe2ae9e80, 
mod_dict=) at 
/build/buildd-sip4_4.13.2-1-amd64-oTGNAQ/sip4-4.13.2/siplib/siplib.c:1418
#2  0x7fffe28dc737 in initpictureflow () from 
/usr/lib/calibre/calibre/plugins/pictureflow.so
#3  0x00504454 in _PyImport_LoadDynamicModule ()
#4  0x005370ab in import_submodule.39132 ()
#5  0x0046e18f in load_next.39137 ()
#6  0x00537974 in import_module_level.isra.3.39158 ()
#7  0x004d682b in builtin___import__.32813 ()
#8  0x005228cc in PyEval_EvalFrameEx ()
#9  0x00529c42 in PyEval_EvalCodeEx ()
#10 0x00522e68 in PyEval_EvalFrameEx ()
#11 0x005230b2 in PyEval_EvalFrameEx ()
#12 0x00529c42 in PyEval_EvalCodeEx ()
#13 0x0057e740 in function_call.15047 ()
#14 0x0049d1e6 in PyObject_Call ()
#15 0x004e4baa in instancemethod_call.8523 ()
#16 0x0049d1e6 in PyObject_Call ()
#17 0x00502e97 in call_method.25480 ()
#18 0x00523aed in PyEval_EvalFrameEx ()
#19 0x00529c42 in PyEval_EvalCodeEx ()
#20 0x0057dd98 in PyImport_ExecCodeModuleEx ()
#21 0x005366b8 in load_source_module.39078 ()
#22 0x005370ab in import_submodule.39132 ()
#23 0x0046e18f in load_next.39137 ()
#24 0x00537b31 in import_module_level.isra.3.39158 ()
#25 0x004d682b in builtin___import__.32813 ()
#26 0x0049d1e6 in PyObject_Call ()
#27 0x0049d7f6 in PyEval_CallObjectWithKeywords ()
#28 0x00524e2e in PyEval_EvalFrameEx ()
#29 0x00529c42 in PyEval_EvalCodeEx ()
#30 0x0057dd98 in PyImport_ExecCodeModuleEx ()
#31 0x005366b8 in load_source_module.39078 ()
#32 0x005370ab in import_submodule.39132 ()
#33 0x0046e18f in load_next.39137 ()
#34 0x00537b31 in import_module_level.isra.3.39158 ()
#35 0x004d682b in builtin___import__.32813 ()
#36 0x0049d1e6 in PyObject_Call ()
#37 0x0049d7f6 in PyEval_CallObjectWithKeywords ()
#38 0x00524e2e in PyEval_EvalFrameEx ()
#39 0x005230b2 in PyEval_EvalFrameEx ()
#40 0x00529c42 in PyEval_EvalCodeEx ()
#41 0x00522e68 in PyEval_EvalFrameEx ()
#42 0x00529c42 in PyEval_EvalCodeEx ()
#43 0x0057ee71 in PyRun_FileExFlags ()
#44 0x0057f533 in PyRun_SimpleFileExFlags ()
---Type return to continue, or q return to quit---
#45 0x005345e6 in Py_Main ()
#46 0x76977ead in __libc_start_main (main=optimized out, 
argc=optimized out, 

Bug#672676: marked as done (calibre: segmentation fault at startup)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:34:45 +
with message-id e1stsc1-00064h...@franck.debian.org
and subject line Bug#671809: fixed in calibre 0.8.51+dfsg-1
has caused the Debian Bug report #671809,
regarding calibre: segmentation fault at startup
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.)


-- 
671809: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: calibre
Version: 0.8.49+dfsg-0.1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

Starting Calibre results in an immediate segmentation fault.  I can't be more
specific, because even with the -v flag, the only console output is
segmentation fault.




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

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

Versions of packages calibre depends on:
ii  calibre-bin0.8.49+dfsg-0.1
ii  fonts-liberation [ttf-liberation]  1.07.2-2
ii  imagemagick8:6.7.4.0-5
ii  poppler-utils  0.16.7-3
ii  python-beautifulsoup   3.2.0-2
ii  python-chardet 2.0.1-2
ii  python-cherrypy3   3.2.2-2
ii  python-cssutils0.9.9-1
ii  python-dateutil1.5-1
ii  python-dbus0.84.0-3
ii  python-feedparser  5.0.1-1
ii  python-imaging 1.1.7-4
ii  python-lxml2.3.2-1
ii  python-mechanize   1:0.2.5-2
ii  python-pkg-resources   0.6.24-1
ii  python-pyparsing   1.5.2-2
ii  python-qt4 4.9.1-3
ii  python-routes  1.13-1
ii  python2.7  2.7.3~rc2-2.1
ii  ttf-liberation 1.07.2-2
ii  xdg-utils  1.1.0~rc1+git20111210-6

Versions of packages calibre recommends:
ii  python-dnspython  1.9.4-1

calibre suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: calibre
Source-Version: 0.8.51+dfsg-1

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

calibre-bin_0.8.51+dfsg-1_amd64.deb
  to main/c/calibre/calibre-bin_0.8.51+dfsg-1_amd64.deb
calibre_0.8.51+dfsg-1.debian.tar.gz
  to main/c/calibre/calibre_0.8.51+dfsg-1.debian.tar.gz
calibre_0.8.51+dfsg-1.dsc
  to main/c/calibre/calibre_0.8.51+dfsg-1.dsc
calibre_0.8.51+dfsg-1_all.deb
  to main/c/calibre/calibre_0.8.51+dfsg-1_all.deb
calibre_0.8.51+dfsg.orig.tar.xz
  to main/c/calibre/calibre_0.8.51+dfsg.orig.tar.xz



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

Debian distribution maintenance software
pp.
Martin Pitt mp...@debian.org (supplier of updated calibre package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 May 2012 12:13:07 +0200
Source: calibre
Binary: calibre calibre-bin
Architecture: source all amd64
Version: 0.8.51+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Miriam Ruiz little_m...@yahoo.es
Changed-By: Martin Pitt mp...@debian.org
Description: 
 calibre- e-book converter and library management
 calibre-bin - e-book converter and library management
Closes: 671809
Changes: 
 calibre (0.8.51+dfsg-1) unstable; urgency=low
 .
   * New upstream release.
   * Rebuild against python-sip du jour. (Closes: #671809)
   * debian/control: Bump python-cssutils dependency to = 0.9.0, to ensure
 that we have the validate keyword available.
Checksums-Sha1: 
 bda0492bd941d488a3c9d8e39e180f0999074902 2395 calibre_0.8.51+dfsg-1.dsc
 68cf6f66ee6c017cbe3b0d0d4eb7e0703c85bf14 23448448 
calibre_0.8.51+dfsg.orig.tar.xz
 b8dfe9e8f32e2ea4f367bbad52682e338c7759da 20920 
calibre_0.8.51+dfsg-1.debian.tar.gz
 fa426f2e8f2f9c00587dd4ee2cedbfa4d1089f81 15637978 calibre_0.8.51+dfsg-1_all.deb
 b9e9abbd4cc1baeb93d6e36c7fd2174666bda2ce 214494 
calibre-bin_0.8.51+dfsg-1_amd64.deb
Checksums-Sha256: 
 

Bug#653664: NMU diff for libnss-ldap/264-2.3

2012-05-14 Thread Bastian Blank
Attached is the NMU diff for libnss-ldap/264-2.3.

Bastian

-- 
What kind of love is that?  Not to be loved; never to have shown love.
-- Commissioner Nancy Hedford, Metamorphosis,
   stardate 3219.8



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



Bug#653664: marked as done (libnss-ldap: Please fix libnss-ldap for multiarch)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 10:49:58 +
with message-id e1stsqk-rm...@franck.debian.org
and subject line Bug#653664: fixed in libnss-ldap 264-2.3
has caused the Debian Bug report #653664,
regarding libnss-ldap: Please fix libnss-ldap for multiarch
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.)


-- 
653664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653664
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libnss-ldap
Version: 264-2.3
Severity: serious
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

Hi Rick,

Please find attached a patch to libnss-ldap to transition it to use of the
multiarch library paths as described at
http://wiki.debian.org/Multiarch/Implementation.  This patch has been
tested and included in Ubuntu Precise.

In the process of preparing this patch, I discovered that libnss-ldap will
misbuild against a multiarch libc because it fails to locate libc and
nss_files and construct an appropriate soname for nss_ldap.  I'm therefore
marking this bug severity: serious, since regardless of whether nss_ldap is
updated to install to the multiarch paths for wheezy, it needs to cope with
a libc that has been.

Thanks for considering the patch.

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

=== modified file 'debian/control'
--- debian/control	2010-03-04 08:46:28 +
+++ debian/control	2011-12-30 03:05:06 +
@@ -3,10 +3,12 @@
 Priority: extra
 Maintainer: Richard A Nelson (Rick) cow...@debian.org
 Standards-Version: 3.7.2
-Build-Depends: cdbs, quilt, patchutils, dh-buildinfo, debhelper (= 5), autotools-dev, libkrb5-dev, libldap2-dev, libsasl2-dev, po-debconf (= 0.5.0)
+Build-Depends: cdbs (= 0.4.93~), quilt, patchutils, debhelper (= 8.1.3~), autotools-dev, libkrb5-dev, libldap2-dev, libsasl2-dev, po-debconf (= 0.5.0)
 
 Package: libnss-ldap
 Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Recommends: nscd, libpam-ldap
 Description: NSS module for using LDAP as a naming service

=== modified file 'debian/libnss-ldap.install'
--- debian/libnss-ldap.install	2007-05-14 19:40:00 +
+++ debian/libnss-ldap.install	2011-12-30 03:04:17 +
@@ -3,5 +3,5 @@
 build-tree/*/ldap.conf usr/share/doc/libnss-ldap/examples
 build-tree/*/nsswitch.ldap usr/share/doc/libnss-ldap/examples
 debian/LDAP-Permissions.txt usr/share/doc/libnss-ldap
-debian/tmp/usr/lib/* lib
+debian/tmp/lib/*/*
 debian/examples usr/share/doc/libnss-ldap

=== modified file 'debian/rules'
--- debian/rules	2009-03-01 04:12:00 +
+++ debian/rules	2011-12-30 03:05:45 +
@@ -13,6 +13,7 @@
 DEB_DESTDIR = $(CURDIR)/debian/tmp
 MY_INST_DIR = $(CURDIR)/debian/libnss-ldap/usr/share
 DEB_CONFIGURE_EXTRA_FLAGS += \
+	--libdir=/lib/$(DEB_HOST_MULTIARCH) \
 	--enable-rfc2307bis \
 	--with-ldap-lib=openldap \
 	--with-ldap-conf-file=/etc/libnss-ldap.conf \
@@ -24,14 +25,13 @@
 DEB_OPT_FLAG += -fPIC
 export LIBS=-lpthread
 
+# Hack to pick up the soname of libc on the filesystem...
+DEB_MAKE_EXTRA_ARGS += MULTI_OS_DIRECTORY=$(DEB_HOST_MULTIARCH)
+
 # Keep file autoconf list out of the diff
 clean::
 	rm *.cdbs-config_list
 
-# after the directories are created but before dh_compress is run.
-common-binary-post-install-arch::
-	dh_buildinfo
-
 binary-post-install/libnss-ldap::
 	# rename man page
 	mv $(MY_INST_DIR)/man/man5/nss_ldap.5 \

---End Message---
---BeginMessage---
Source: libnss-ldap
Source-Version: 264-2.3

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

libnss-ldap_264-2.3.diff.gz
  to main/libn/libnss-ldap/libnss-ldap_264-2.3.diff.gz
libnss-ldap_264-2.3.dsc
  to main/libn/libnss-ldap/libnss-ldap_264-2.3.dsc
libnss-ldap_264-2.3_amd64.deb
  to main/libn/libnss-ldap/libnss-ldap_264-2.3_amd64.deb



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

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

Debian distribution maintenance software
pp.
Bastian Blank wa...@debian.org (supplier of updated libnss-ldap package)

(This message 

Bug#653664: NMU diff for libnss-ldap/264-2.3

2012-05-14 Thread Bastian Blank
On Mon, May 14, 2012 at 12:41:12PM +0200, Bastian Blank wrote:
 Attached is the NMU diff for libnss-ldap/264-2.3.

Ups. Here it is.

Bastian

-- 
Men will always be men -- no matter where they are.
-- Harry Mudd, Mudd's Women, stardate 1329.8
diff -u libnss-ldap-264/debian/changelog libnss-ldap-264/debian/changelog
--- libnss-ldap-264/debian/changelog
+++ libnss-ldap-264/debian/changelog
@@ -1,3 +1,14 @@
+libnss-ldap (264-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Support multi-arch: (closes: #653664)
+- Mark libnss-ldap as same.
+- Adjust build-dependencies.
+  * Add hack to find correct libc in a multi-arch environment.
+  * Fix symlink generation.
+
+ -- Bastian Blank wa...@debian.org  Mon, 14 May 2012 10:41:48 +
+
 libnss-ldap (264-2.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u libnss-ldap-264/debian/control libnss-ldap-264/debian/control
--- libnss-ldap-264/debian/control
+++ libnss-ldap-264/debian/control
@@ -3,10 +3,12 @@
 Priority: extra
 Maintainer: Richard A Nelson (Rick) cow...@debian.org
 Standards-Version: 3.7.2
-Build-Depends: cdbs, quilt, patchutils, dh-buildinfo, debhelper (= 5), 
autotools-dev, libkrb5-dev, libldap2-dev, libsasl2-dev, po-debconf (= 0.5.0)
+Build-Depends: cdbs (= 0.4.93~), quilt, patchutils, dh-buildinfo (= 
0.9+nmu1~), debhelper (= 8.1.3~), autotools-dev, libkrb5-dev, libldap2-dev, 
libsasl2-dev, po-debconf (= 0.5.0)
 
 Package: libnss-ldap
 Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Recommends: nscd, libpam-ldap
 Description: NSS module for using LDAP as a naming service
diff -u libnss-ldap-264/debian/libnss-ldap.install 
libnss-ldap-264/debian/libnss-ldap.install
--- libnss-ldap-264/debian/libnss-ldap.install
+++ libnss-ldap-264/debian/libnss-ldap.install
@@ -5,3 +5,4 @@
 debian/LDAP-Permissions.txt usr/share/doc/libnss-ldap
-debian/tmp/usr/lib/* lib
+debian/tmp/lib/*/*
+debian/tmp/usr/lib/*/*
 debian/examples usr/share/doc/libnss-ldap
reverted:
--- libnss-ldap-264/debian/libnss-ldap.links
+++ libnss-ldap-264.orig/debian/libnss-ldap.links
@@ -1 +0,0 @@
-/lib/libnss_ldap.so.2 usr/lib/libnss_ldap.so
diff -u libnss-ldap-264/debian/rules libnss-ldap-264/debian/rules
--- libnss-ldap-264/debian/rules
+++ libnss-ldap-264/debian/rules
@@ -13,6 +13,7 @@
 DEB_DESTDIR = $(CURDIR)/debian/tmp
 MY_INST_DIR = $(CURDIR)/debian/libnss-ldap/usr/share
 DEB_CONFIGURE_EXTRA_FLAGS += \
+   --libdir=/lib/$(DEB_HOST_MULTIARCH) \
--enable-rfc2307bis \
--with-ldap-lib=openldap \
--with-ldap-conf-file=/etc/libnss-ldap.conf \
@@ -24,6 +25,9 @@
 DEB_OPT_FLAG += -fPIC
 export LIBS=-lpthread
 
+# Hack to pick up the soname of libc on the filesystem...
+DEB_MAKE_EXTRA_ARGS += MULTI_OS_DIRECTORY=$(DEB_HOST_MULTIARCH)
+
 # Keep file autoconf list out of the diff
 clean::
rm *.cdbs-config_list
diff -u libnss-ldap-264/debian/patches/series 
libnss-ldap-264/debian/patches/series
--- libnss-ldap-264/debian/patches/series
+++ libnss-ldap-264/debian/patches/series
@@ -5,0 +6 @@
+link
only in patch2:
unchanged:
--- libnss-ldap-264.orig/debian/patches/link
+++ libnss-ldap-264/debian/patches/link
@@ -0,0 +1,22 @@
+--- a/Makefile.am
 b/Makefile.am
+@@ -83,7 +83,7 @@
+   $(INSTALL_PROGRAM) -o $(INST_UID) -g $(INST_GID) nss_ldap.so 
$(DESTDIR)$(libdir)/$(NSS_LDAP_LIBC_VERSIONED)
+   (cd $(DESTDIR)$(libdir); ln -sf $(NSS_LDAP_LIBC_VERSIONED) 
$(NSS_LDAP_NSS_VERSIONED))
+   $(mkinstalldirs) $(DESTDIR)/usr$(libdir)
+-  (cd $(DESTDIR)/usr$(libdir); ln -sf 
../..$(libdir)/$(NSS_LDAP_NSS_VERSIONED) .)
++  (cd $(DESTDIR)/usr$(libdir); ln -sf $(libdir)/$(NSS_LDAP_NSS_VERSIONED) 
libnss_ldap.so)
+ else
+   $(mkinstalldirs) $(DESTDIR)$(libdir)
+ if HPUX
+--- a/Makefile.in
 b/Makefile.in
+@@ -680,7 +680,7 @@
+ @AIX_FALSE@@GLIBC_TRUE@   $(INSTALL_PROGRAM) -o $(INST_UID) -g 
$(INST_GID) nss_ldap.so $(DESTDIR)$(libdir)/$(NSS_LDAP_LIBC_VERSIONED)
+ @AIX_FALSE@@GLIBC_TRUE@   (cd $(DESTDIR)$(libdir); ln -sf 
$(NSS_LDAP_LIBC_VERSIONED) $(NSS_LDAP_NSS_VERSIONED))
+ @AIX_FALSE@@GLIBC_TRUE@   $(mkinstalldirs) $(DESTDIR)/usr$(libdir)
+-@AIX_FALSE@@GLIBC_TRUE@   (cd $(DESTDIR)/usr$(libdir); ln -sf 
../..$(libdir)/$(NSS_LDAP_NSS_VERSIONED) .)
++@AIX_FALSE@@GLIBC_TRUE@   (cd $(DESTDIR)/usr$(libdir); ln -sf 
$(libdir)/$(NSS_LDAP_NSS_VERSIONED) libnss_ldap.so)
+ @AIX_FALSE@@GLIBC_FALSE@  $(mkinstalldirs) $(DESTDIR)$(libdir)
+ @AIX_FALSE@@GLIBC_FALSE@@HPUX_TRUE@   $(INSTALL_PROGRAM) -o $(INST_UID) -g 
$(INST_GID) nss_ldap.so $(DESTDIR)$(libdir)/libnss_ldap.1
+ @AIX_FALSE@@GLIBC_FALSE@@HPUX_FALSE@  $(INSTALL_PROGRAM) -o $(INST_UID) -g 
$(INST_GID) nss_ldap.so $(DESTDIR)$(libdir)/nss_ldap.so.1


Bug#619263: More info

2012-05-14 Thread Rene Engelhard
Hector Oron wrote:
 fixed 619263 1:3.5.3-2
 thanks

Yes, assuming we just care about the runtime error here caused by
creating a non-user-accessible profile because sudo (and HOME set
to /home/user makes unopkg create stuff there this is fixed
since 1:3.5.3~rc2-1 / 3.5.2-5. (One place was missed though, will
be fixed in 3.5.3-2, see #669271)

Regards,

Rene



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



Bug#669483: marked as done (spl: FTBFS: ld: cannot find -lncurses)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 11:06:36 +
with message-id e1stt6q-0003sb...@franck.debian.org
and subject line Bug#669483: fixed in spl 1.0~pre6-3.1
has caused the Debian Bug report #669483,
regarding spl: FTBFS: ld: cannot find -lncurses
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.)


-- 
669483: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669483
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: spl
Version: 1.0~pre6-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120419 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 cc -L/«PKGBUILDDIR» -L/usr/lib/mysql -L/usr/local/lib  -rdynamic -pthread 
 -L/usr/lib splrun.o -lspl -ldl -lm -L/usr/lib/x86_64-linux-gnu -lpcre 
 -lreadline -lncurses -o splrun
 /usr/bin/ld: cannot find -lncurses
 collect2: ld returned 1 exit status

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/04/19/spl_1.0~pre6-3_unstable.log

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

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


---End Message---
---BeginMessage---
Source: spl
Source-Version: 1.0~pre6-3.1

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

spl-core_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-core_1.0~pre6-3.1_amd64.deb
spl-curl_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-curl_1.0~pre6-3.1_amd64.deb
spl-dev_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-dev_1.0~pre6-3.1_amd64.deb
spl-mysql_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-mysql_1.0~pre6-3.1_amd64.deb
spl-postgres_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-postgres_1.0~pre6-3.1_amd64.deb
spl-sdl_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-sdl_1.0~pre6-3.1_amd64.deb
spl-sqlite_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-sqlite_1.0~pre6-3.1_amd64.deb
spl-webspl_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-webspl_1.0~pre6-3.1_amd64.deb
spl-xml_1.0~pre6-3.1_amd64.deb
  to main/s/spl/spl-xml_1.0~pre6-3.1_amd64.deb
spl_1.0~pre6-3.1.diff.gz
  to main/s/spl/spl_1.0~pre6-3.1.diff.gz
spl_1.0~pre6-3.1.dsc
  to main/s/spl/spl_1.0~pre6-3.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 669...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jonathan Wiltshire j...@debian.org (supplier of updated spl package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 May 2012 11:01:33 +0100
Source: spl
Binary: spl-core spl-postgres spl-mysql spl-sqlite spl-sdl spl-xml spl-curl 
spl-webspl spl-dev
Architecture: source amd64
Version: 1.0~pre6-3.1
Distribution: unstable
Urgency: low
Maintainer: Gerfried Fuchs rho...@debian.org
Changed-By: Jonathan Wiltshire j...@debian.org
Description: 
 spl-core   - SPL Programming Language
 spl-curl   - SPL Programming Language -- curl adapter
 spl-dev- SPL Programming Language -- development files
 spl-mysql  - SPL Programming Language -- MySQL adapter
 spl-postgres - SPL Programming Language -- postgres adapter
 spl-sdl- SPL Programming Language -- SDL adapter
 spl-sqlite - SPL Programming Language -- sqlite adapter
 spl-webspl - SPL based web application framework
 spl-xml- SPL Programming Language -- XML adapter
Closes: 669483
Changes: 
 spl (1.0~pre6-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Add dependency on libncurses-dev to fix FTBFS (Closes: #669483)
Checksums-Sha1: 
 6176ea39ddef143a55704351fe7b14f57d60eb6e 2296 spl_1.0~pre6-3.1.dsc
 547351105b4adb0f58eef32ba798a585d41dd807 8275 spl_1.0~pre6-3.1.diff.gz
 c40bff28a5c26cd0de1cc34666f651a0ff06494f 189680 spl-core_1.0~pre6-3.1_amd64.deb
 bf897923affe4e9af5d6260cf65cdbb41e86203a 4056 
spl-postgres_1.0~pre6-3.1_amd64.deb
 04c1e5928fc06e5cc6eb3fc5f23e01da823b2ad2 4792 spl-mysql_1.0~pre6-3.1_amd64.deb
 8acb69dd6b6caf089474b7a82e71a3b6e34aef76 4020 spl-sqlite_1.0~pre6-3.1_amd64.deb
 

Bug#672874: emacsen-common: uninstallable -- no /usr/lib/emacsen-common/packages/install

2012-05-14 Thread Adam Borowski
Package: emacsen-common
Version: 2.0.0
Severity: grave
Justification: renders package unusable

Preparing to replace emacsen-common 1.4.23 (using 
.../emacsen-common_2.0.0_all.deb) ...
emacsen-common: Handling removal of emacsen flavor emacs
emacsen-common: Handling removal of emacsen flavor emacs23
emacsen-common: purging byte-compiled files for emacs23
Unpacking replacement emacsen-common ...
[...]
Setting up emacsen-common (2.0.0) ...
Installing new version of config file /etc/emacs/site-start.el ...
chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
/usr/lib/emacsen-common/lib.pl line 27.
dpkg: error processing emacsen-common (--configure):
 subprocess installed post-installation script returned error exit status 2

Same on a fresh install on i386.


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

Kernel: Linux 2.6.32-5-vserver-amd64 (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/dash

-- no debconf information



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



Bug#672443: marked as done (libflann1.7 and libflann1: error when trying to install together)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 11:48:10 +
with message-id e1sttl4-0007sg...@franck.debian.org
and subject line Bug#672443: fixed in flann 1.7.1-3
has caused the Debian Bug report #672443,
regarding libflann1.7 and libflann1: error when trying to install together
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.)


-- 
672443: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672443
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libflann1,libflann1.7
Version: libflann1/1.7.1-1
Version: libflann1.7/1.7.1-2
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2012-05-11
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  libflann1 libflann1.7
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously unselected package libflann1.
(Reading database ... 10560 files and directories currently installed.)
Unpacking libflann1 (from .../libflann1_1.7.1-1_amd64.deb) ...
Selecting previously unselected package libflann1.7.
Unpacking libflann1.7 (from .../libflann1.7_1.7.1-2_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libflann1.7_1.7.1-2_amd64.deb 
(--unpack):
 trying to overwrite '/usr/lib/libflann_cpp.so.1.7.1', which is also in package 
libflann1 1.7.1-1
configured to not write apport reports
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libflann1.7_1.7.1-2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/lib/libflann.so.1.7
  /usr/lib/libflann.so.1.7.1
  /usr/lib/libflann_cpp.so.1.7
  /usr/lib/libflann_cpp.so.1.7.1

-Ralf.

PS: for more information about the detection of file overwrite errors
of this kind see http://edos.debian.net/file-overwrites/.


---End Message---
---BeginMessage---
Source: flann
Source-Version: 1.7.1-3

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

flann-doc_1.7.1-3_all.deb
  to main/f/flann/flann-doc_1.7.1-3_all.deb
flann_1.7.1-3.debian.tar.gz
  to main/f/flann/flann_1.7.1-3.debian.tar.gz
flann_1.7.1-3.dsc
  to main/f/flann/flann_1.7.1-3.dsc
libflann-dev_1.7.1-3_amd64.deb
  to main/f/flann/libflann-dev_1.7.1-3_amd64.deb
libflann1.7_1.7.1-3_amd64.deb
  to main/f/flann/libflann1.7_1.7.1-3_amd64.deb



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

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

Debian distribution maintenance software
pp.
Mathieu Malaterre ma...@debian.org (supplier of updated flann 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, 14 May 2012 12:47:24 +0200
Source: flann
Binary: libflann-dev libflann1.7 flann-doc
Architecture: source amd64 all
Version: 1.7.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 flann-doc  - Fast Library for Approximate Nearest Neighbors - documentation
 libflann-dev - Fast Library for Approximate Nearest Neighbors - development
 libflann1.7 - Fast Library for Approximate Nearest Neighbors - runtime
Closes: 

Bug#669539: marked as done (alt-ergo: FTBFS: make[2]: autoconf: Command not found)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 12:32:12 +
with message-id e1sturg-0002ta...@franck.debian.org
and subject line Bug#669539: fixed in alt-ergo 0.94-2
has caused the Debian Bug report #669539,
regarding alt-ergo: FTBFS: make[2]: autoconf: Command not found
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.)


-- 
669539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669539
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: alt-ergo
Version: 0.94-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120419 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory `/«PKGBUILDDIR»'
 for i in .depend; do \
   cp -ax $i $i.debian; \
   done
 /usr/bin/make all altgr-ergo.opt
 make[2]: Entering directory `/«PKGBUILDDIR»'
 autoconf 
 make[2]: autoconf: Command not found
 make[2]: *** [configure] Error 127

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/04/19/alt-ergo_0.94-1_unstable.log

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

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


---End Message---
---BeginMessage---
Source: alt-ergo
Source-Version: 0.94-2

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

alt-ergo_0.94-2.diff.gz
  to main/a/alt-ergo/alt-ergo_0.94-2.diff.gz
alt-ergo_0.94-2.dsc
  to main/a/alt-ergo/alt-ergo_0.94-2.dsc
alt-ergo_0.94-2_amd64.deb
  to main/a/alt-ergo/alt-ergo_0.94-2_amd64.deb



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

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

Debian distribution maintenance software
pp.
Mehdi Dogguy me...@debian.org (supplier of updated alt-ergo 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, 14 May 2012 14:11:48 +0200
Source: alt-ergo
Binary: alt-ergo
Architecture: source amd64
Version: 0.94-2
Distribution: unstable
Urgency: high
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Mehdi Dogguy me...@debian.org
Description: 
 alt-ergo   - Automatic theorem prover dedicated to program verification
Closes: 669539
Changes: 
 alt-ergo (0.94-2) unstable; urgency=high
 .
   * Add autoconf to Build-Depends to resolve an FTBFS (Closes: #669539).
   * Setting urgency to high to fix the RC bug.
Checksums-Sha1: 
 179168af7c373c00c25d60bf67503690d22240dd 1770 alt-ergo_0.94-2.dsc
 00f14018208f4f83d2d6f674b2dddf0ac050cd24 13077 alt-ergo_0.94-2.diff.gz
 27ea4077f95ec22dd71412d52460fcbbf42f3127 2444692 alt-ergo_0.94-2_amd64.deb
Checksums-Sha256: 
 9e713b360cd1fcea0080c17edb7a0f5fedf9e4cf9d34284cdfa997cf5852e88a 1770 
alt-ergo_0.94-2.dsc
 03605d327d77a760740538933188899f8373db6c454a053cf04a27996a69a2f2 13077 
alt-ergo_0.94-2.diff.gz
 c76a004dbe6f7a33ca14b8823b7c2ed622b8e4783afdaa050f2eac7bcbec63c8 2444692 
alt-ergo_0.94-2_amd64.deb
Files: 
 bd336e7906352c33c183b2381b34e98e 1770 math optional alt-ergo_0.94-2.dsc
 1f9f240a6aa97e4e47e7313aada922a9 13077 math optional alt-ergo_0.94-2.diff.gz
 fa91dae6b02d1449ad70e61c1fb19fdb 2444692 math optional 
alt-ergo_0.94-2_amd64.deb

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

iQEcBAEBAgAGBQJPsPmUAAoJEDe1GR0FRlJoG48H/2mxNsxeUwcZ1t2rfemQMSSy
+hU1Dfn3ZkZdVfN8/JytfOhrul3UodPYjcb49i4VI9abXNjNRktAxyvSjo5al/6A
kLOgS7vHc8HUfTBppDXLQg0stYiqjZnhYi+SA9H6trlVbVkzLUu3AXd/GsCYS1wq
q1wxCVmLlJM5QkEwENOJcUeOsQKuobng9Rz2ONzT+DaeT+S/5q/C9zvM8ZR1iBDu
k1sTRPxkEM5upSGBCenrJC/a1JnWdG71vnasOFSwlm00Q3Nu6f7WW60SS9Ccpytr
6m/v7AlzscVM6WVulYIJzTdr5/OkgEQZ/3FB4mEhN6gR2In0n+UhJ2sN6y6FuEI=
=1jdo
-END PGP SIGNATURE-


---End Message---


Bug#667575: Name space conflict '/usr/bin/dccp'

2012-05-14 Thread Mathieu Malaterre
tags 667575 moreinfo
thanks

Mattias, any comments ? I have been using dccp for a while now. dccp
is already known since squeeze. You only introduced dccp recently.
Would it be possible to rename it to something else ?

I do not believe we can use alternatives in this case, since dccp are
fundamentally differents applications.

Thanks



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



Processed: Name space conflict '/usr/bin/dccp'

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

 tags 667575 moreinfo
Bug #667575 [dicom3tools,dcap] dcap and dicom3tools: error when trying to 
install together
Added tag(s) moreinfo.
 thanks
Stopping processing here.

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


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



Processed: your mail

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

 tags 656115 pending
Bug #656115 [libvtk5-dev] libvtk5-dev: VTKConfig.cmake sets VTK_USE_QVTK 
without libvtk5-qt4-dev being installed
Bug #584300 [libvtk5-dev] libvtk5-dev: Remove information about wrapped 
languages from  VTKConfig.cmake
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#670878: [Pkg-cups-devel] Bug#670878: cups: FTBFS on armel (version 1.5.2-10): failed command test 5.4-lpstat.sh

2012-05-14 Thread Steve McIntyre
On Mon, May 14, 2012 at 10:30:44AM +0200, Martin Pitt wrote:
Hello Steve,

Steve McIntyre [2012-05-12 15:57 +0100]:
 And yes, I think it's a timing bug. Earlier in the test suite (4.3)
 there are a set of ops including printing, cancelling etc. It looks
 like the issue in 5.4 on armel is that the cupsd itself hasn't had
 time to finish cancelling a job. Adding a trivial sleep 10 at the
 top of 5.4-lpstat.sh makes things work fine for me. There should be a
 better way to do things, but I'm not an expert here.

Many thanks for investigating this! Adding a sleep 10 is at least
harmless, so I have no problem with adding this to unblock the armel
build. It's at least much better than disabling the tests on armel
entirely.

No problem, glad to help. :-)

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
  Getting a SCSI chain working is perfectly simple if you remember that there
  must be exactly three terminations: one on one end of the cable, one on the
  far end, and the goat, terminated over the SCSI chain with a silver-handled
  knife whilst burning *black* candles. --- Anthony DeBoer




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



Processed: your mail

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

 tags 672863 pending
Bug #672863 [gdcm] file INSTALL cannot find 
Utilities/doxygen/latex/gdcm-2.2.0.pdf
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#672874: emacsen-common: uninstallable -- no /usr/lib/emacsen-common/packages/install

2012-05-14 Thread Agustin Martin
On Mon, May 14, 2012 at 01:12:45PM +0200, Adam Borowski wrote:
 Package: emacsen-common
 Version: 2.0.0
 Severity: grave
 Justification: renders package unusable
 
 Preparing to replace emacsen-common 1.4.23 (using 
 .../emacsen-common_2.0.0_all.deb) ...
 emacsen-common: Handling removal of emacsen flavor emacs
 emacsen-common: Handling removal of emacsen flavor emacs23
 emacsen-common: purging byte-compiled files for emacs23
 Unpacking replacement emacsen-common ...
 [...]
 Setting up emacsen-common (2.0.0) ...
 Installing new version of config file /etc/emacs/site-start.el ...
 chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
 /usr/lib/emacsen-common/lib.pl line 27.
 dpkg: error processing emacsen-common (--configure):
  subprocess installed post-installation script returned error exit status 2

May this be related to install and remove files being installed by
emacsen-common in the wrong place? Looking at the emacsen-common
.deb I see

/usr/lib/emacsen-common/install
/usr/lib/emacsen-common/remove

instead of 

/usr/lib/emacsen-common/packages/{install,remove}

Do you have additional foo-el add-on packages installed (something else under
/usr/lib/emacsen-common/packages/{install,remove})?

Regards,

-- 
Agustin



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



Bug#658326: [pkg-bacula-devel] Bug#658326: patch for switch to openssl SHA1 implementation

2012-05-14 Thread Luca Capello
forwarded 658326 http://bugs.bacula.org/view.php?id=1869
tags 658326 + patch
usertags 658326 + debian-packaging
thanks

Hi there!

Re-adding Kefu and Karl to the Cc:.

On Thu, 10 May 2012 00:06:25 +0200, Alexander Golovko wrote:
 Fortunally, there are SHA1 implementation in openssl library.
 Used functions have the same names and arguments and bacula already
 linked with libssl

 We need only change headers, makefile.in and remove bad files.

Thank you, forwarded upstream to:

  http://bugs.bacula.org/view.php?id=1869

 With this patch, applied to bacula_5.0.2-2.2
  - bacula packages sucessfully builded
  - patched bacula-director-mysql can backup patched client (whith
 signature = SHA1 in fileset)
  - patched bacula-director-mysql can backup original client (whith
 signature = SHA1 in fileset)
  - for same files in database written the same SHA1 signature for both
 patched and original clients.

This means that we can *safely* apply the patch.  Alexander, can you
do it in the Git repository, directly in the master branch?  You should
add your patch in debian/patches, something similar to:

  
http://anonscm.debian.org/gitweb/?p=pkg-bacula/bacula.git;a=commitdiff;h=a64dee5c2199af135e7f91978c61909829756d0b

 OpenSSL all versions has SHA1 functions, so there is big chance patch
 can be applied to oldstable too.

Uploading to oldstable/lenny is no more possible, given that it reached
EOL on 2012-03-10:

  http://lists.debian.org/e1s6rgp-0006tf...@mikado.tilapin.org

While we could provide a fixed package in the pkg-bacula HTTP space,
IMHO it is better to focus on stable, thus obliging people to move on
something which is fully supported.

Thx, bye,
Gismo / Luca


pgpORdVlDsfXj.pgp
Description: PGP signature


Processed: Re: [pkg-bacula-devel] Bug#658326: patch for switch to openssl SHA1 implementation

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

 forwarded 658326 http://bugs.bacula.org/view.php?id=1869
Bug #658326 [bacula] bacula: sha implimentation is non-free
Set Bug forwarded-to-address to 'http://bugs.bacula.org/view.php?id=1869'.
 tags 658326 + patch
Bug #658326 [bacula] bacula: sha implimentation is non-free
Added tag(s) patch.
 usertags 658326 + debian-packaging
Bug#658326: bacula: sha implimentation is non-free
User is l...@pca.it
There were no usertags set.
Usertags are now: debian-packaging.
 thanks
Stopping processing here.

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


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



Bug#667343: marked as done (qterm: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 12:51:04 +
with message-id e1stujw-0003sx...@franck.debian.org
and subject line Bug#667343: fixed in qterm 1:0.5.12-1.1
has caused the Debian Bug report #667343,
regarding qterm: ftbfs with GCC-4.7
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.)


-- 
667343: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667343
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: qterm
Version: 1:0.5.12-1
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

main.cpp:64:29: error: 'chdir' was not declared in this scope

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/qterm_1:0.5.12-1_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]


---End Message---
---BeginMessage---
Source: qterm
Source-Version: 1:0.5.12-1.1

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

qterm_0.5.12-1.1.debian.tar.gz
  to main/q/qterm/qterm_0.5.12-1.1.debian.tar.gz
qterm_0.5.12-1.1.dsc
  to main/q/qterm/qterm_0.5.12-1.1.dsc
qterm_0.5.12-1.1_amd64.deb
  to main/q/qterm/qterm_0.5.12-1.1_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 667...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
gregor herrmann gre...@debian.org (supplier of updated qterm package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 12 May 2012 14:20:47 +0200
Source: qterm
Binary: qterm
Architecture: source amd64
Version: 1:0.5.12-1.1
Distribution: unstable
Urgency: low
Maintainer: LI Daobing lidaob...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 qterm  - BBS client for X Window System written in Qt
Closes: 667343
Changes: 
 qterm (1:0.5.12-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix ftbfs with GCC-4.7: add patch from Paul Tagliamonte (missing
 include).
 (Closes: #667343)
Checksums-Sha1: 
 3b153752d9e265ee80caeb71714020ab4772a418 1978 qterm_0.5.12-1.1.dsc
 dc36f57e9315f22472dd580eb5b868fecb930c8f 11400 qterm_0.5.12-1.1.debian.tar.gz
 a2632b5c5679176278bc466d63c8ec6194e5c620 1085286 qterm_0.5.12-1.1_amd64.deb
Checksums-Sha256: 
 8d6ffc1c870a8e943c0874ee8722afe05e661ab05ee05968571fcaae2c78b7fe 1978 
qterm_0.5.12-1.1.dsc
 7074b681c0068b7405b149c31ad29ec07abbcb9dc14da7e99e2a0a717810953e 11400 
qterm_0.5.12-1.1.debian.tar.gz
 63886d7c5af9fe4f93b53ab5e5fccf5ee278f52da90d72527202f394995b0a36 1085286 
qterm_0.5.12-1.1_amd64.deb
Files: 
 77a6d5f60a19bd4f779977a753081d7f 1978 x11 optional qterm_0.5.12-1.1.dsc
 ea92ed343507b750124605544006f860 11400 x11 optional 
qterm_0.5.12-1.1.debian.tar.gz
 b5ae8568f6d960444d9906ede2492d8a 1085286 x11 optional 
qterm_0.5.12-1.1_amd64.deb

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

iQIcBAEBCAAGBQJPrla+AAoJELs6aAGGSaoGXs0P/2MdchKIe2/jjag6pT5oxLuO
Rs5RhL2+gco3rv3t4IP20cCw4LKPgef+1aMihOvl5DLM5p9r0fHBElIcOnoX2h1Z
2CLxIKaRY1dKhC3THrbGh5Oqdg4K1U9ypeHinZkMI4k+2GizFqHcQM1YqupGqnSf
6VFRQdtj2uKGlh+LHreBuy+ooZCzE5adVmdjIvrX8ZnVjDTQ1gzB8Rj+6TmSKv3p
7zHIbvsaQdLk4D2hgnjabZr30OOsuFOpscpBzSt5Q5jliDgabWVEWePfP+ZNCHxm
HFwy8OvfbtfGTbdocAD9vAB+dk0fxWnEyAtM8EfrMRPk714cnf8yIsqe+JI60Pl1
jf8j+rO5zTwB8M7ja5sbFdsp38zxOxkf4XA+RrqNHU/DKvbOwC+uy6DPhtWRIIxC
UExjMyMKvm0OjbLgV+LpqmCLPKGO8yeG5tjqkugetmyMLN5w8zuRuCMdg7yr6PoP
Yb0rQecdKcEQjrN8nMJ5GKvYRyfy/PXXn8KtM0ljk1UyOgISvhhH10h1YfW+mJtW
tPeAV3PwRAPkv99TqrNFOOvzi+amAsb1n8zWDniXta8b1kt/GXzrLjGcPMw8oQl4
gmQt8r7U6uMwkhOhn8UI4w1y7DP0Q+5MjNagp0brfX0ii1+Oa0L8dVTJsfR1Z1Om
+HcWF9Cym6prdnuFni/o
=c/UI
-END PGP SIGNATURE-


---End Message---


Bug#672885: installation fails with: chdir /usr/lib/emacsen-common/packages/install: No such file or directory at /usr/lib/emacsen-common/lib.pl line 27.

2012-05-14 Thread Ondřej Surý
Package: emacsen-common
Version: 1.4.22
Severity: serious

Hi,

emacsen-common can no longer be installed, perhaps it is missing some
(Pre)-Depends or Breaks?  Or just depends on the directory to be
created by some other package?

Setting up emacsen-common (2.0.0) ...
Installing new version of config file /etc/emacs/site-start.el ...
chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
/usr/lib/emacsen-common/lib.pl line 27.
dpkg: error processing emacsen-common (--configure):
 subprocess installed post-installation script returned error exit status 2

This can be reproduced in both i386 and amd64 pbuilder chroots, full install 
log:

debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 14631 files and directories currently installed.)
Preparing to replace grep 2.12-1 (using .../archives/grep_2.12-2_i386.deb) ...
Unpacking replacement grep ...
Setting up grep (2.12-2) ...
(Reading database ... 14631 files and directories currently installed.)
Preparing to replace libapt-pkg4.12:i386 0.9.2 (using 
.../libapt-pkg4.12_0.9.3_i386.deb) ...
Unpacking replacement libapt-pkg4.12:i386 ...
Setting up libapt-pkg4.12:i386 (0.9.3) ...
(Reading database ... 14631 files and directories currently installed.)
Preparing to replace debian-archive-keyring 2012.1 (using 
.../debian-archive-keyring_2012.2_all.deb) ...
Unpacking replacement debian-archive-keyring ...
Setting up debian-archive-keyring (2012.2) ...
(Reading database ... 14633 files and directories currently installed.)
Preparing to replace apt 0.9.2 (using .../archives/apt_0.9.3_i386.deb) ...
Unpacking replacement apt ...
Setting up apt (0.9.3) ...
gpg: key B98321F9: Squeeze Stable Release Key 
debian-rele...@lists.debian.org not changed
gpg: key 473041FA: Debian Archive Automatic Signing Key (6.0/squeeze) 
ftpmas...@debian.org not changed
gpg: key 65FFB764: Wheezy Stable Release Key 
debian-rele...@lists.debian.org not changed
gpg: key 46925553: Debian Archive Automatic Signing Key (7.0/wheezy) 
ftpmas...@debian.org not changed
gpg: Total number processed: 4
gpg:  unchanged: 4
(Reading database ... 14633 files and directories currently installed.)
Preparing to replace libacl1:i386 2.2.51-6 (using 
.../libacl1_2.2.51-7_i386.deb) ...
Unpacking replacement libacl1:i386 ...
Setting up libacl1:i386 (2.2.51-7) ...
(Reading database ... 14633 files and directories currently installed.)
Preparing to replace libdb5.1:i386 5.1.29-1 (using 
.../libdb5.1_5.1.29-3_i386.deb) ...
Unpacking replacement libdb5.1:i386 ...
Setting up libdb5.1:i386 (5.1.29-3) ...
(Reading database ... 14633 files and directories currently installed.)
Preparing to replace emacsen-common 1.4.23 (using 
.../emacsen-common_2.0.0_all.deb) ...
emacsen-common: Handling removal of emacsen flavor emacs
emacsen-common: Handling removal of emacsen flavor emacs23
emacsen-common: purging byte-compiled files for emacs23
Unpacking replacement emacsen-common ...
Preparing to replace linux-libc-dev:i386 3.2.16-1 (using 
.../linux-libc-dev_3.2.17-1_i386.deb) ...
Unpacking replacement linux-libc-dev:i386 ...
Setting up emacsen-common (2.0.0) ...
Installing new version of config file /etc/emacs/site-start.el ...
chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
/usr/lib/emacsen-common/lib.pl line 27.
dpkg: error processing emacsen-common (--configure):
 subprocess installed post-installation script returned error exit status 2
Setting up linux-libc-dev:i386 (3.2.17-1) ...
Errors were encountered while processing:
 emacsen-common

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (300, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (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/dash

Versions of packages emacsen-common depends on:
ii  bsdmainutils  8.0.13 collection of more utilities from 

emacsen-common recommends no packages.

emacsen-common 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#672816: oh

2012-05-14 Thread Marc Haber
tags #650058 - sid
thanks

Version: 3.0-1.2

On Sun, May 13, 2012 at 10:27:22PM +0100, Nicholas Bamber wrote:
 Anyway it still does not build on mips.

3.0-1.2 builds just fine on eder. I don't know what's going wrong on
rem. Anyway, closing this bug.

A rebuild of 3.0-1.2 on rem is not needed, a new upload of PowerDNS
3.1 is pending.

Greetings
Marc

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



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



Bug#672874: emacsen-common: uninstallable -- no /usr/lib/emacsen-common/packages/install

2012-05-14 Thread Adam Borowski
On Mon, May 14, 2012 at 02:44:37PM +0200, Agustin Martin wrote:
 On Mon, May 14, 2012 at 01:12:45PM +0200, Adam Borowski wrote:
  chdir /usr/lib/emacsen-common/packages/install: No such file or directory 
  at /usr/lib/emacsen-common/lib.pl line 27.
 
 May this be related to install and remove files being installed by
 emacsen-common in the wrong place? Looking at the emacsen-common
 .deb I see
 
 /usr/lib/emacsen-common/install
 /usr/lib/emacsen-common/remove
 
 instead of 
 
 /usr/lib/emacsen-common/packages/{install,remove}
 
 Do you have additional foo-el add-on packages installed (something else under
 /usr/lib/emacsen-common/packages/{install,remove})?

None, on either of the boxes I tested it on.

(Upgrading)
dis:[~]$ find /usr/lib/emacsen-common
/usr/lib/emacsen-common
/usr/lib/emacsen-common/emacs-install
/usr/lib/emacsen-common/packages
/usr/lib/emacsen-common/packages/compat
/usr/lib/emacsen-common/packages/compat/emacsen-common
/usr/lib/emacsen-common/emacs-package-install
/usr/lib/emacsen-common/emacs-remove
/usr/lib/emacsen-common/emacs-package-remove
/usr/lib/emacsen-common/remove
/usr/lib/emacsen-common/remove/emacsen-common
/usr/lib/emacsen-common/install
/usr/lib/emacsen-common/install/emacsen-common
/usr/lib/emacsen-common/lib.pl

dis:[~]$ dpkg -l '*-el'
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name  Version   Description
+++-=-=-==
un  devscripts-el none(no description 
available)
un  emacs23-elnone(no description 
available)
un  git-elnone(no description 
available)

dis:[~]$ dpkg -S /usr/lib/emacsen-common
emacsen-common: /usr/lib/emacsen-common

(Fresh install, purged back)
durthang:[~]$ ls -al /usr/lib/emacsen-common/
ls: cannot access /usr/lib/emacsen-common/: No such file or directory


-- 
“This is gonna be as easy as cheating on an ethics exam!”
-Cerise Brightmoon



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



Processed: Re: oh

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

 tags #650058 - sid
Bug #650058 [src:pdns] pdns: FTBFS with multiarch sqlite3 and libmysqlclient-dev
Bug #672816 [src:pdns] pdns: FTBFS against mysql-5.5 (cannot find MySQL 
libraries) on mipsel
Removed tag(s) sid.
Removed tag(s) sid.
 thanks
Stopping processing here.

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


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



Bug#650058: marked as done (pdns: FTBFS with multiarch sqlite3 and libmysqlclient-dev)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:06:54 +0200
with message-id 20120514130654.ga6...@torres.zugschlus.de
and subject line Re: oh
has caused the Debian Bug report #650058,
regarding pdns: FTBFS with multiarch sqlite3 and libmysqlclient-dev
to be marked as done.

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

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


-- 
650058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650058
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pdns
Version: 2.9.22-9
Severity: important
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch



*** /tmp/tmpEn7qtB/bug_body
In Ubuntu, the attached patch was applied to achieve the following:

The patch is pretty obvious, and is against the previous ubuntu version
so you'll need to manually solve it, however it will fix building against
multiarch libmysqlclient and sqlite3 when they land in unstable.

  * debian/rules: Fix FTBFS with multiarch libmysqlclient.

Thanks for considering the patch.


-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-12-generic (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
diff -Nru pdns-2.9.22/debian/changelog pdns-2.9.22/debian/changelog
diff -Nru pdns-2.9.22/debian/rules pdns-2.9.22/debian/rules
--- pdns-2.9.22/debian/rules	2011-07-04 09:03:40.0 -0700
+++ pdns-2.9.22/debian/rules	2011-11-25 17:27:28.0 -0800
@@ -9,6 +9,8 @@
 # from having to guess our platform (since we know it already)
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_MULTIARCH  ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
 
 CXXFLAGS = -Wall -g
 CFLAGS = -Wall -g
@@ -51,7 +53,8 @@
 		--with-modules= \
 		--with-pgsql-includes=`pg_config --includedir` \
 		--disable-recursor \
-		--with-sqlite3-lib=/usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`
+		--with-sqlite3-lib=/usr/lib/$(DEB_HOST_MULTIARCH) \
+		--with-mysql-lib=/usr/lib/$(DEB_HOST_MULTIARCH)
 
 build: build-stamp
 build-stamp: config.status
---End Message---
---BeginMessage---
tags #650058 - sid
thanks

Version: 3.0-1.2

On Sun, May 13, 2012 at 10:27:22PM +0100, Nicholas Bamber wrote:
 Anyway it still does not build on mips.

3.0-1.2 builds just fine on eder. I don't know what's going wrong on
rem. Anyway, closing this bug.

A rebuild of 3.0-1.2 on rem is not needed, a new upload of PowerDNS
3.1 is pending.

Greetings
Marc

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

---End Message---


Bug#672816: marked as done (pdns: FTBFS against mysql-5.5 (cannot find MySQL libraries) on mipsel)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:06:54 +0200
with message-id 20120514130654.ga6...@torres.zugschlus.de
and subject line Re: oh
has caused the Debian Bug report #650058,
regarding pdns: FTBFS against mysql-5.5 (cannot find MySQL libraries) on mipsel
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.)


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

Source: pdns
Version: 3.0-1.1
Severity: serious
Tags: wheezy sid

Hi,
Your package fails to build against mysql-5.5 on mipsel.

checking for MySQL library directory... configure: error: Didn't find 
the mysql library dir in '/usr/local/mysql/lib/mysql 
/usr/local/lib/mysql /opt/mysql/lib/mysql 		/usr/lib/mysql 
/usr/lib64/mysql /usr/local/mysql/lib /usr/local/lib /opt/mysql/lib 
/usr/lib 		/usr/sfw/lib/'

make[1]: *** [override_dh_auto_configure] Error 1
make[1]: Leaving directory `/home/periapt/pdns-3.0'
make: *** [build] Error 2

Script started on Sun 13 May 2012 20:39:45 UTC
]0;(sid)periapt@eder: ~/pdns-3.0(sid)periapt@eder:~/pdns-3.0$ dpkg-buildpackage -us -uc
dpkg-buildpackage: source package pdns
dpkg-buildpackage: source version 3.0-1.1
dpkg-buildpackage: source changed by Luk Claes l...@debian.org
dpkg-buildpackage: host architecture mipsel
 dpkg-source --before-build pdns-3.0
 fakeroot debian/rules clean
dh clean --with-autotools_dev --parallel
   dh_testdir -O--with-autotools_dev -O--parallel
   dh_auto_clean -O--with-autotools_dev -O--parallel
   dh_clean -O--with-autotools_dev -O--parallel
 dpkg-source -b pdns-3.0
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building pdns using existing ./pdns_3.0.orig.tar.gz
dpkg-source: info: building pdns in pdns_3.0-1.1.debian.tar.gz
dpkg-source: info: building pdns in pdns_3.0-1.1.dsc
 debian/rules build
dh build --with-autotools_dev --parallel
   dh_testdir -O--with-autotools_dev -O--parallel
   debian/rules override_dh_auto_configure
make[1]: Entering directory `/home/periapt/pdns-3.0'
# First run the bootstrap.
./bootstrap
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in `.'.
libtoolize: copying file `./libtool.m4'
libtoolize: copying file `./ltoptions.m4'
libtoolize: copying file `./ltsugar.m4'
libtoolize: copying file `./ltversion.m4'
libtoolize: copying file `./lt~obsolete.m4'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
# Add here commands to configure the package.
CFLAGS= CXXFLAGS= ./configure \
		--host=mipsel-linux-gnu \
		--build=mipsel-linux-gnu \
		--prefix=/usr \
		--sysconfdir=/etc/powerdns \
		--mandir=\${prefix}/share/man \
		--infodir=\${prefix}/share/info \
		--libdir='${prefix}/lib/powerdns' \
		--libexecdir='${prefix}/lib' \
		--with-dynmodules=ldap pipe gmysql gpgsql gsqlite gsqlite3 geo lua \
		--with-modules= \
		--with-pgsql-includes=`pg_config --includedir` \
		--with-boost=/usr \
		--enable-cryptopp \
		--disable-recursor
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... mipsel-unknown-linux-gnu
checking host system type... mipsel-unknown-linux-gnu
checking for style of include used by make... GNU
checking for mipsel-linux-gnu-gcc... mipsel-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mipsel-linux-gnu-gcc accepts -g... yes
checking for mipsel-linux-gnu-gcc option to accept ISO C89... none needed
checking dependency style of mipsel-linux-gnu-gcc... gcc3
checking how to run the C preprocessor... mipsel-linux-gnu-gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking for mipsel-linux-gnu-gcc... (cached) 

Bug#672885: fails with: chdir /usr/lib/emacsen-common/packages/install: No such file or directory at /usr/lib/emacsen-common/lib.pl line 27.

2012-05-14 Thread Ondřej Surý
Package: emacsen-common
Version: 2.0.0
Severity: normal

Follow-up, it's fairly easy to fix that:

root@howl:/var/lib/dpkg/info# mkdir /usr/lib/emacsen-common/packages/install
root@howl:/var/lib/dpkg/info# dpkg --configure -a
Setting up emacsen-common (2.0.0) ...
Install emacsen-common for emacs23

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (300, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (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/dash

Versions of packages emacsen-common depends on:
ii  bsdmainutils  8.0.13 collection of more utilities from 

emacsen-common recommends no packages.

emacsen-common 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: notfound 672885 in emacsen-common/1.4.22, found 672885 in emacsen-common/2.0.0

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

 notfound 672885 emacsen-common/1.4.22
Bug #672885 [emacsen-common] installation fails with: chdir 
/usr/lib/emacsen-common/packages/install: No such file or directory at 
/usr/lib/emacsen-common/lib.pl line 27.
No longer marked as found in versions emacsen-common/1.4.22.
 found 672885 emacsen-common/2.0.0
Bug #672885 [emacsen-common] installation fails with: chdir 
/usr/lib/emacsen-common/packages/install: No such file or directory at 
/usr/lib/emacsen-common/lib.pl line 27.
Marked as found in versions emacsen-common/2.0.0; no longer marked as found in 
versions emacsen-common/2.0.0.
 thanks
Stopping processing here.

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


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



Bug#672874: emacsen-common: uninstallable -- no /usr/lib/emacsen-common/packages/install

2012-05-14 Thread Rob Browning
Adam Borowski kilob...@angband.pl writes:

 Package: emacsen-common
 Version: 2.0.0
 Severity: grave
 Justification: renders package unusable

 Installing new version of config file /etc/emacs/site-start.el ...
 chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
 /usr/lib/emacsen-common/lib.pl line 27.
 dpkg: error processing emacsen-common (--configure):
  subprocess installed post-installation script returned error exit status 2

Thanks, I'll look at this tonight.
-- 
Rob Browning
rlb @defaultvalue.org and @debian.org
GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4



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



Bug#672885: installation fails with: chdir /usr/lib/emacsen-common/packages/install: No such file or directory at /usr/lib/emacsen-common/lib.pl line 27.

2012-05-14 Thread Rob Browning
Ondřej Surý ond...@debian.org writes:

 Setting up emacsen-common (2.0.0) ...
 Installing new version of config file /etc/emacs/site-start.el ...
 chdir /usr/lib/emacsen-common/packages/install: No such file or directory at 
 /usr/lib/emacsen-common/lib.pl line 27.
 dpkg: error processing emacsen-common (--configure):
  subprocess installed post-installation script returned error exit status 2

Thanks, I'll look at this tonight.
-- 
Rob Browning
rlb @defaultvalue.org and @debian.org
GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4



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



Bug#672859: wwsympa.fcgi fails to check download/delete permissions properly

2012-05-14 Thread David Verdin

Hi, and thanks for reporting this problem to the Debian tracking system.
Upgrading the package to 6.0.7 will also fix the problem.

Cheers,

David

Le 14/05/12 11:15, George Kargiotakis a écrit :

Package: sympa
Version: 6.0.1+dfsg-4
Severity: grave

Sympa versions6.1.11 have a severe security issue where any user can
download or delete the archives of a mailing list if they know the name
of the list.

Debian has been tracking it at 
http://security-tracker.debian.org/tracker/CVE-2012-2352

I'm attaching a patch (taken from upstream commit:
https://sourcesup.renater.fr/scm/viewvc.php/branches/sympa-6.0-branch/wwsympa/wwsympa.fcgi.in?root=sympapathrev=7358
 ) that fixes the problem

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

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




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



Processed: tagging 667410

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

 tags 667410 + pending
Bug #667410 [vite] vite: ftbfs with GCC-4.7
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#653948: [Python-modules-team] Bug#653948: marked as done (cephes_smirnov never returns on mips)

2012-05-14 Thread Yaroslav Halchenko
Hi Varun,

thanks for taking care and adopting my patch.  now it got accepted
upstream and I wanted to mention that they refactored few other
comparisons -- so it might be wise for Debian to adopt that patch as
well (attaching).

Cheers

On Fri, 20 Apr 2012, Debian Bug Tracking System wrote:

 Your message dated Fri, 20 Apr 2012 07:32:47 +
 with message-id e1sl8kl-0001gh...@franck.debian.org
 and subject line Bug#653948: fixed in python-scipy 0.10.1+dfsg1-2
 has caused the Debian Bug report #653948,
 regarding cephes_smirnov never returns on mips
 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.)
-- 
Yaroslav O. Halchenko
Postdoctoral Fellow,   Department of Psychological and Brain Sciences
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik
From 2858f452b8083f1eca4499889e6b43942c2eda03 Mon Sep 17 00:00:00 2001
From: Pauli Virtanen p...@iki.fi
Date: Fri, 11 May 2012 23:03:18 +0200
Subject: [PATCH 3/3] BUG: special: nan safety in smirnovi  kolmogi

---
 scipy/special/cephes/kolmogorov.c |4 ++--
 scipy/special/tests/test_basic.py |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/scipy/special/cephes/kolmogorov.c b/scipy/special/cephes/kolmogorov.c
index d78e0ae..86ae669 100644
--- a/scipy/special/cephes/kolmogorov.c
+++ b/scipy/special/cephes/kolmogorov.c
@@ -117,7 +117,7 @@ smirnovi (n, p)
   double e, t, dpde;
   int iterations;
 
-  if (p = 0.0 || p  1.0)
+  if (!(p  0.0  p = 1.0))
 {
   mtherr (smirnovi, DOMAIN);
   return (NPY_NAN);
@@ -165,7 +165,7 @@ kolmogi (p)
   double y, t, dpdy;
   int iterations;
 
-  if (p = 0.0 || p  1.0)
+  if (!(p  0.0  p = 1.0))
 {
   mtherr (kolmogi, DOMAIN);
   return (NPY_NAN);
diff --git a/scipy/special/tests/test_basic.py b/scipy/special/tests/test_basic.py
index 4553ecb..5adceef 100644
--- a/scipy/special/tests/test_basic.py
+++ b/scipy/special/tests/test_basic.py
@@ -268,6 +268,7 @@ class TestCephes(TestCase):
 
 def test_kolmogi(self):
 assert_equal(cephes.kolmogi(1),0.0)
+assert_(np.isnan(cephes.kolmogi(np.nan)))
 def test_kolmogorov(self):
 assert_equal(cephes.kolmogorov(0),1.0)
 
@@ -428,9 +429,11 @@ class TestCephes(TestCase):
 assert_equal(cephes.sindg(90),1.0)
 def test_smirnov(self):
 assert_equal(cephes.smirnov(1,.1),0.9)
+assert_(np.isnan(cephes.smirnov(1,np.nan)))
 def test_smirnovi(self):
 assert_almost_equal(cephes.smirnov(1,cephes.smirnovi(1,0.4)),0.4)
 assert_almost_equal(cephes.smirnov(1,cephes.smirnovi(1,0.6)),0.6)
+assert_(np.isnan(cephes.smirnovi(1,np.nan)))
 
 def test_spence(self):
 assert_equal(cephes.spence(1),0.0)
-- 
1.7.9.1



signature.asc
Description: Digital signature


Bug#666352: ncftp: diff for NMU version 2:3.2.5-1.1

2012-05-14 Thread Noël Köthe
Hello Jakub,

Am Samstag, den 12.05.2012, 13:35 +0200 schrieb Jakub Wilk:

 I've prepared an NMU for ncftp (versioned as 2:3.2.5-1.1) and uploaded 
 it to DELAYED/5. Please feel free to tell me if I should delay it 
 longer.

Fine.:)
Thanks for your work.

-- 
Noël Köthe noel debian.org
Debian GNU/Linux, www.debian.org


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


Bug#656505: Bug #656505

2012-05-14 Thread Evgeni Golov
Hi Stefan,

On Sat, May 12, 2012 at 08:42:35PM +0200, Stefan Siegl wrote:

 On Fri, 2012-05-11 at 19:09 +0200, Evgeni Golov wrote:
  2. taxbird should also depend on the proper libgeier binary. I am not 
  sure whether it is a good idea to leave the soname of the binary at 0 
  all the time. IMHO it should be bumped on every incompatible release. 
 
 I think the soname shouldn't be bumped, since the library's code doesn't
 actually change at all.  libgeier is shipped with a bunch of XSD  XSL
 files, which are needed to validate the data against the rules as
 specified by Germany's fiscal authorities.  As those rules change from
 year to year, further XSDs are added every year.  The C-library just
 picks the XSD by certain rules and uses it, i.e. there's no change
 required in the library itself.
 
 Or, to put it another way, if you'd split libgeier into three packages
 (libgeier0, libgeier-dev, libgeier-data - the latter with the XSD  XSL
 files), newer taxbird version could live with older libgeier0, but
 require an up-to-date version of libgeier-data (since it relies on
 libgeier to be able to validate the data and apply stylesheets)
 
  On a related topic: is libgeier incompatible in both directions?
  Your explanation says taxbird+1 needs libgeier+1. But would an older 
  taxbird work with the newer libgeier? If not, soname bump is the way 
  to go.
 
 Older taxbird versions happily work with newer libgeier versions.

Thanks a lot for the clarification!

Did I get it right, I actually can mix geier and taxbird as I like (if I 
patch taxbird a bit), but will be able to do my taxes up to the year 
geier's data supports it?

Then I think the long-term perfect solution would be some sort of 
metadata in libgeier(-data) which taxbird can read and inform the user 
about. Then a build-time check isn't needed.

I wonder how http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529376 
fits in this picture. Tax data for a too new year I guess?

For the time being, I think the before-mentioned patches should fix 
the issue, right? They would properly tight the depends (build and 
runtime).

Regards

-- 
Bruce Schneier can read and understand Perl programs.



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



Bug#611130: CVE-2010-2087

2012-05-14 Thread Steve McIntyre
On Sun, May 13, 2012 at 09:23:45PM +0200, Moritz Mühlenhoff wrote:
On Sun, May 13, 2012 at 05:52:05PM +0100, Steve McIntyre wrote:
 On Sun, Oct 02, 2011 at 05:53:48PM -0430, Miguel Landaeta wrote:
 #tag 611130 + idontgiveadamn
 tag 611130 + moreinfo
 kthxbye
 
 Upstream doesn't answer any request about this bug.
 
 I sent emails, I posted in their discussion forum and even joined their
 irc channel to ask a couple of question about this bug. I didn't receive
 any answer, I can say I was completely ignored.
 
 There is no info at Mitre website and AFAIK this issue is not fixed in
 any other free software distribution.
 
 I don't have time neither interest on this, good luck to anybody
 interested in fixing this bug. Be aware of uncooperative upstream.
 
 Given this, this package looks like a prime candidate for removal from
 the archive to be honest. Thoughts?

I concur, but libspring build-depends on it, something which needs to
be addressed somehow.

Ick. :-(

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Support the Campaign for Audiovisual Free Expression: http://www.eff.org/cafe/




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



Bug#672809: taxbird: version in testing (0.16.x) is completely useless

2012-05-14 Thread Jonathan Nieder
Hi again,

Toni Mueller wrote:

 well... I may have screwed up since I'm running that version on my
 computers, but as I wrote, you can find this version at p.d.o/~toni. I
 did already file a bug to notify the maintainer and asked whether he
 wanted to import it, but got no answer yet. But I'm determined to get
 this 0.18 version into Debian, somehow...

0.18 is in Debian sid.

Based on [1] the release team would be happy to see this fixed in
squeeze, provided the changes are sensibly small.  If I understand
correctly, that means preparing uploads for libgeier and taxbird
intended to build and run in a squeeze environment, with version
numbers like 0.18-0+squeeze1, as described at [2] (and corrected by
[3]).  Would you like to pursue this?  I would be happy to help in any
way I can.

Thanks,
Jonathan

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=76;bug=619734
[2] 
http://www.debian.org/doc/manuals/developers-reference/pkgs.html#upload-stable
[3] http://bugs.debian.org/670362



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



Bug#672893: security: private archives available to all

2012-05-14 Thread Micah Anderson
Package: sympa
Version: 6.0.1+dfsg-4
Severity: grave
Tags: security patch
Justification: user security hole

It is possible to open the archive management (arc_manage) page
for any list, even those set to only be available to members,
giving anyone the option to download the archive, or delete the
archive.

http://www.sympa.org/distribution/latest-stable/NEWS 

Patch for the version in stable:
https://sourcesup.renater.fr/scm/viewvc.php/branches/sympa-6.0-branch/wwsympa/wwsympa.fcgi.in?root=sympar1=6706r2=7358pathrev=7358

Please reference CVE-2012-2352 in any changelogs addressing this issue.

micah

System Information:
Debian Release: wheezy/sid
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-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/dash



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



Bug#665036: Upstream fixed in version 2012.1~rc2

2012-05-14 Thread Mehdi Abaakouk
Hi,

the equivalent upstream bug is:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/959262

This one is fixed since version 2012.1~rc2

The sid package is 2012.1-2, so this issue seems fixed.

I have check the debian package and build it in a sbuild chroot
now all tests are OK

Regards

-- 
Mehdi Abaakouk
sil...@sileht.net



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



Bug#611138: CVE-2010-4438 / CVE-2011-5035

2012-05-14 Thread Steve McIntyre
On Mon, May 14, 2012 at 12:13:50AM +0200, Damien Raude-Morvan wrote:
Hi all,

Le dimanche 13 mai 2012 18:54:38, Steve McIntyre a écrit :
 Sadly, no :/ I must admit that Oracle does not publish details of its
 fixes so it's hard to confirm firmly what's component is exactly
 impacted.
 
 I'll try to revive my contact @Oracle to get some feedback on this
 issue (on future security issues).
 
 Hi,
 
 Any news on this?

I'll just start by restating my initial comment on both issues :
-
We don't build any real Glassfish Server but just some parts of API 
library used as Java EE specifications. As for any specification, this is just 
a 
collection of interfaces and don't have much more implementations than dumb or 
stub code.
-

So I don't think that CVE-2010-4438 or CVE-2011-5035 affect Debian binary 
packages. 

OK, fair enough.

But I cannot be 100% sure since :
- Upstream bugtracker [1] doesn't contains ref to those security issues
- My Oracle contact (GlassFish community manager) only told me that 
CVE-2011-5035 is integrated in GlassFish 3.1.1 Patch 2 (an update to 3.1.1 
for paying customers). The fix is in the trunk and will be integrated in the 
3.1.2 release scheduled for later this quarter

I don't think I'll do further investigation on those issues...
At least, there is one instructing thing : we have to think twice before 
integrating of a full blown Glassfish JEE server (ie. not just API) into 
Debian 
as from my point of view Glassfish Security is not handled as an open source 
should.

Yes, I'd have to agree with that. :-(

If you're *reasonably* confident that we're not affected by those
CVE issues, is it worth maybe dropping the severity of the Debian bugs
from serious?

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
There's no sensation to compare with this
Suspended animation, A state of bliss




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



Bug#672809: taxbird: version in testing (0.16.x) is completely useless

2012-05-14 Thread Toni Mueller


Hi Jonathan,

On Mon, May 14, 2012 at 09:41:48AM -0500, Jonathan Nieder wrote:
 0.18 is in Debian sid.

thank you - I didn't see that when I emailed you.

 Based on [1] the release team would be happy to see this fixed in
 squeeze, provided the changes are sensibly small.  If I understand
 correctly, that means preparing uploads for libgeier and taxbird
 intended to build and run in a squeeze environment, with version
 numbers like 0.18-0+squeeze1, as described at [2] (and corrected by
 [3]).  Would you like to pursue this?  I would be happy to help in any
 way I can.

I'm not sure that I understand you, and I'm also unsure what the
problem with http://people.debian.org/~toni/taxbird/ is, except that I
should also sign it.


Kind regards,
--Toni++




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



Bug#672809: taxbird: version in testing (0.16.x) is completely useless

2012-05-14 Thread Toni Mueller
On Mon, May 14, 2012 at 04:50:34PM +0200, Toni Mueller wrote:
 except that I should also sign it.

Scratch that, it's already signed.


Kind regards,
--Toni++



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



Bug#672809: taxbird: version in testing (0.16.x) is completely useless

2012-05-14 Thread Jonathan Nieder
Toni Mueller wrote:

 I'm not sure that I understand you, and I'm also unsure what the
 problem with http://people.debian.org/~toni/taxbird/ is, except that I
 should also sign it.

You should use an appropriate version number for a squeeze update.
Then we can provide the source and binary debdiffs that the release
team has requested.  If they like it, we can ask Marvin to upload it
to stable or can do a non-maintainer upload.

Note that I can't easily test it myself --- I am in the US, where
there's an entirely different tax submission process.  I just
generally prefer for there to be fewer serious bugs in squeeze.

Thanks,
Jonathan



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



Bug#670756: Tuxguitar does not start

2012-05-14 Thread Jakub Adam

In my opinion libswt-gtk-3.5-java and libswt-3-gtk-java are not in conflict,
generally it's ok to have them installed both. The problem is in tuxguitar
package itself which will not work with SWT 3.5.

So I suggest that we make tuxguitar to conflict with libswt-gtk-3.5-java
(and maybe also with libswt-gtk-3.4-java and libswt-gtk-3.6-java I see
in Grant's package list too).

On 14.5.2012 06:08, Grant Diffey wrote:

so my installed package list is

nevyn@cetacea:~$ dpkg -l libswt*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ NameVersion Description
+++-===-===-==
ii  libswt-cairo-gtk-3-jni  3.7.2-2 Standard 
Widget Toolkit for GTK+ Cairo JNI library
ii  libswt-glx-gtk-3-jni3.7.2-2 Standard 
Widget Toolkit for GTK+ GLX JNI library
ii  libswt-gnome-gtk-3-jni  3.7.2-2 Standard 
Widget Toolkit for GTK+ GNOME JNI library
un  libswt-gnome-gtk-3.5-jni none  (no description 
available)
un  libswt-gnome-gtk-3.6-jni none  (no description 
available)
ii  libswt-gtk-3-java   3.7.2-2 Standard 
Widget Toolkit for GTK+ Java library
un  libswt-gtk-3-java-gcj none  (no description 
available)
ii  libswt-gtk-3-jni3.7.2-2 Standard 
Widget Toolkit for GTK+ JNI library
un  libswt-gtk-3.4-java none  (no description 
available)
un  libswt-gtk-3.4-jni none  (no description 
available)
ii  libswt-gtk-3.5-java 3.5.1-5 Standard 
Widget Toolkit for GTK+ Java library
un  libswt-gtk-3.5-java-gcj none  (no description 
available)
ii  libswt-gtk-3.5-jni  3.5.1-5 Standard 
Widget Toolkit for GTK+ JNI library
ii  libswt-gtk-3.6-java 3.6.2-1 Standard 
Widget Toolkit for GTK+ Java library
un  libswt-gtk-3.6-java-gcj none  (no description 
available)
ii  libswt-gtk-3.6-jni  3.6.2-1 Standard 
Widget Toolkit for GTK+ JNI library
ii  libswt-webkit-gtk-3-jni 3.7.2-2 Standard 
Widget Toolkit for GTK+ WebKit JNI library
un  libswt3.2-gtk-gcj none  (no description available)
un  libswt3.2-gtk-java none  (no description 
available)
un  libswt3.2-gtk-jni none  (no description available)



so yes

ii  libswt-gtk-3.5-jni  3.5.1-5 Standard 
Widget Toolkit for GTK+ JNI library

is installed.

if this breaks with the new version of

libswt-3-gtk-java should it not conflict?






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



Bug#672896: legit: missing dependency on python-pkg-resources

2012-05-14 Thread Jakub Wilk

Package: legit
Version: 0.1.1-1
Severity: serious
Justification: Policy 3.5

In a minimal chroot:

$ legit
Traceback (most recent call last):
  File /usr/bin/legit, line 5, in module
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources


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

Kernel: Linux 3.3.0-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages legit depends on:
ii  python2.7.2-10
ii  python-clint  0.3.1-1
ii  python-git0.3.2~RC1-1
ii  python2.7 2.7.3~rc2-2.1

--
Jakub Wilk



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



Bug#672018: marked as done (minbif: FTBFS: inetd.cpp:43:24: error: 'close' was not declared in this scope)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:24:28 +
with message-id e1stx8o-000592...@franck.debian.org
and subject line Bug#672018: fixed in minbif 1:1.0.5+git20120508-1
has caused the Debian Bug report #672018,
regarding minbif: FTBFS: inetd.cpp:43:24: error: 'close' was not declared in 
this scope
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.)


-- 
672018: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: minbif
Version: 1:1.0.5-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120508 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[3]: Entering directory `/«PKGBUILDDIR»/builddir'
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 9
 [  1%] Building CXX object src/CMakeFiles/minbif.dir/core/minbif.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/minbif.cpp.o -c /«PKGBUILDDIR»/src/core/minbif.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 10
 [  3%] Building CXX object src/CMakeFiles/minbif.dir/core/sighandler.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/sighandler.cpp.o -c 
 /«PKGBUILDDIR»/src/core/sighandler.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 11
 [  5%] Building CXX object src/CMakeFiles/minbif.dir/core/util.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/util.cpp.o -c /«PKGBUILDDIR»/src/core/util.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 12
 [  7%] Building CXX object src/CMakeFiles/minbif.dir/core/log.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/log.cpp.o -c /«PKGBUILDDIR»/src/core/log.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 13
 [  8%] Building CXX object src/CMakeFiles/minbif.dir/core/mutex.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/mutex.cpp.o -c /«PKGBUILDDIR»/src/core/mutex.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 14
 [ 10%] Building CXX object src/CMakeFiles/minbif.dir/core/callback.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra 
 -Wno-unused-parameter -O3 -DNDEBUG -I/usr/include/glib-2.0 
 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpurple 
 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 -I/«PKGBUILDDIR»/src-o 
 CMakeFiles/minbif.dir/core/callback.cpp.o -c 
 /«PKGBUILDDIR»/src/core/callback.cpp
 /usr/bin/cmake -E cmake_progress_report /«PKGBUILDDIR»/builddir/CMakeFiles 15
 [ 12%] Building CXX object src/CMakeFiles/minbif.dir/core/config.cpp.o
 cd /«PKGBUILDDIR»/builddir/src  /usr/bin/c++-DHAVE_IMLIB -DHAVE_CACA 
 -DHAVE_PAM -DHAVE_TLS 

Bug#667281: marked as done (minitube: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:25:09 +
with message-id e1stx93-0005cj...@franck.debian.org
and subject line Bug#667281: fixed in minitube 1.7-1.1
has caused the Debian Bug report #667281,
regarding minitube: ftbfs with GCC-4.7
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.)


-- 
667281: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667281
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: minitube
Version: 1.7-1
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

src/qtsingleapplication/qtlocalpeer.cpp:104:54: error: '::getuid' has not been 
declared

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/minitube_1.7-1_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]
Generated 136 translation(s) (136 finished and 0 unfinished)
Ignored 42 untranslated source text(s)
/usr/bin/lrelease locale/te.ts -qm build/target/locale/te.qm
Updating 'build/target/locale/te.qm'...
Generated 132 translation(s) (132 finished and 0 unfinished)
Ignored 46 untranslated source text(s)
/usr/bin/lrelease locale/tr.ts -qm build/target/locale/tr.qm
Updating 'build/target/locale/tr.qm'...
Generated 150 translation(s) (150 finished and 0 unfinished)
Ignored 28 untranslated source text(s)
/usr/bin/lrelease locale/uk_UA.ts -qm build/target/locale/uk_UA.qm
Updating 'build/target/locale/uk_UA.qm'...
Generated 134 translation(s) (134 finished and 0 unfinished)
Ignored 44 untranslated source text(s)
/usr/bin/lrelease locale/zh_CN.ts -qm build/target/locale/zh_CN.qm
Updating 'build/target/locale/zh_CN.qm'...
Generated 137 translation(s) (137 finished and 0 unfinished)
Ignored 41 untranslated source text(s)
g++ -c -m64 -pipe -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
-Wall -Wall -W -D_REENTRANT -DAPP_VERSION=1.7 -DAPP_NAME=Minitube 
-DAPP_UNIX_NAME=minitube -DQT_USE_FAST_CONCATENATION 
-DQT_USE_FAST_OPERATOR_PLUS -DDATADIR=\/usr/share\ 
-DPKGDATADIR=\/usr/share/minitube\ -DQT_NO_DEBUG -DQT_PHONON_LIB 
-DQT_DBUS_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB 
-DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml 
-I/usr/include/qt4/QtDBus -I/usr/include/phonon -I/usr/include/qt4 
-I/usr/include/phonon -Isrc/qtsingleapplication -Ilocale 
-I/usr/include/qt4/phonon_compat -Ibuild/moc -o build/obj/qtsingleapplication.o 
src/qtsingleapplication/qtsingleapplication.cpp
g++ -c -m64 -pipe -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
-Wall -Wall -W -D_REENTRANT -DAPP_VERSION=1.7 -DAPP_NAME=Minitube 
-DAPP_UNIX_NAME=minitube -DQT_USE_FAST_CONCATENATION 
-DQT_USE_FAST_OPERATOR_PLUS -DDATADIR=\/usr/share\ 
-DPKGDATADIR=\/usr/share/minitube\ -DQT_NO_DEBUG -DQT_PHONON_LIB 
-DQT_DBUS_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB 
-DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml 
-I/usr/include/qt4/QtDBus -I/usr/include/phonon -I/usr/include/qt4 
-I/usr/include/phonon -Isrc/qtsingleapplication -Ilocale 
-I/usr/include/qt4/phonon_compat -Ibuild/moc -o build/obj/qtlocalpeer.o 
src/qtsingleapplication/qtlocalpeer.cpp
src/qtsingleapplication/qtlocalpeer.cpp: In constructor 
'QtLocalPeer::QtLocalPeer(QObject*, const QString)':
src/qtsingleapplication/qtlocalpeer.cpp:104:54: error: '::getuid' has not been 
declared
src/qtsingleapplication/qtlocalpeer.cpp:104:54: note: suggested alternative:
In file included from src/qtsingleapplication/qtlockedfile_unix.cpp:49:0,
 from src/qtsingleapplication/qtlocalpeer.cpp:68:
/usr/include/unistd.h:694:16: note:   'QtLP_Private::getuid'
make[1]: *** [build/obj/qtlocalpeer.o] Error 1
make[1]: Leaving directory `/«PKGBUILDDIR»'
make: *** [debian/stamp-makefile-build] Error 2

Bug#667337: marked as done (qbankmanager: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:26:14 +
with message-id e1stxa6-0005rs...@franck.debian.org
and subject line Bug#667337: fixed in qbankmanager 0.9.55beta-1.1
has caused the Debian Bug report #667337,
regarding qbankmanager: ftbfs with GCC-4.7
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.)


-- 
667337: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667337
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: qbankmanager
Version: 0.9.55beta-1
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

./../widgets/../prg/refpointer.h:762:9: error: 'makePointer' was not declared 
in this scope, and no declarations were found by argument-dependent lookup at 
the point of instantiation [-fpermissive]

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/qbankmanager_0.9.55beta-1_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]
libtool: compile:  g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. -I../widgets 
-I../dialogs -I../prg -I.. -I../qbanking -I../qbanking/widgets 
-I../qbanking/dialogs -I../qbanking/views -I/usr/include/aqbanking5 
-I/usr/include/gwenhywfar4 -I/usr/include/gwenhywfar4 -I/usr/include/qt4 
-I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/Qt3Support -fvisibility=hidden -g -O2 -g -Wall -c 
jobview.cpp -o jobview.o /dev/null 21
/bin/bash ../../../../libtool --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. -I../widgets 
-I../dialogs -I../prg -I.. -I../qbanking -I../qbanking/widgets 
-I../qbanking/dialogs -I../qbanking/views -I/usr/include/aqbanking5 
-I/usr/include/gwenhywfar4 -I/usr/include/gwenhywfar4 -I/usr/include/qt4 
-I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/Qt3Support -fvisibility=hidden   -g -O2 -g -Wall -c -o 
transactionview.lo transactionview.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. -I../widgets 
-I../dialogs -I../prg -I.. -I../qbanking -I../qbanking/widgets 
-I../qbanking/dialogs -I../qbanking/views -I/usr/include/aqbanking5 
-I/usr/include/gwenhywfar4 -I/usr/include/gwenhywfar4 -I/usr/include/qt4 
-I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/Qt3Support -fvisibility=hidden -g -O2 -g -Wall -c 
transactionview.cpp  -fPIC -DPIC -o .libs/transactionview.o
libtool: compile:  g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. -I../widgets 
-I../dialogs -I../prg -I.. -I../qbanking -I../qbanking/widgets 
-I../qbanking/dialogs -I../qbanking/views -I/usr/include/aqbanking5 
-I/usr/include/gwenhywfar4 -I/usr/include/gwenhywfar4 -I/usr/include/qt4 
-I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/Qt3Support -fvisibility=hidden -g -O2 -g -Wall -c 
transactionview.cpp -o transactionview.o /dev/null 21
/bin/bash ../../../../libtool --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. -I../widgets 
-I../dialogs -I../prg -I.. -I../qbanking -I../qbanking/widgets 
-I../qbanking/dialogs -I../qbanking/views -I/usr/include/aqbanking5 
-I/usr/include/gwenhywfar4 -I/usr/include/gwenhywfar4 -I/usr/include/qt4 
-I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/Qt3Support -fvisibility=hidden   -g -O2 -g -Wall -c -o 
transactionwindow.lo transactionwindow.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H 
-DHOMEDATA_PATH=\/usr/share/qbankmanager/home\ -DQT3_SUPPORT -I. 
-I../../../.. -I./../widgets -I./../dialogs -I./../prg -I./.. 

Bug#672054: marked as done (parser: FTBFS: ld: cannot find -l-l)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:25:53 +
with message-id e1stx9l-0005os...@franck.debian.org
and subject line Bug#672054: fixed in parser 3.4.1-6
has caused the Debian Bug report #672054,
regarding parser: FTBFS: ld: cannot find -l-l
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.)


-- 
672054: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672054
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: parser
Version: 3.4.1-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120508 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -shared -o mod_parser3.so -Wl,--whole-archive libmod_parser3.a 
 ../../classes/libclasses.a ../../types/libtypes.a ../../main/libmain.a 
 ../../lib/gd/libgd.a ../../lib/cord/libcord.a ../../lib/md5/libmd5.a 
 ../../lib/sdbm/libsdbm.a ../../lib/smtp/libsmtp.a ../../lib/json/libjson.a 
 ../../../src/lib/ltdl/libltdlc.a -Wl,--no-whole-archive \
   -L/usr/ -lgc  -L/usr//lib -l -l -l  -ldl -lstdc++
 /usr/bin/ld: cannot find -l-l
 /usr/bin/ld: cannot find -l-ldl
 collect2: error: ld returned 1 exit status

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/05/08/parser_3.4.1-4_unstable.log

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

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


---End Message---
---BeginMessage---
Source: parser
Source-Version: 3.4.1-6

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

libapache2-mod-parser3_3.4.1-6_amd64.deb
  to main/p/parser/libapache2-mod-parser3_3.4.1-6_amd64.deb
parser3-cgi_3.4.1-6_amd64.deb
  to main/p/parser/parser3-cgi_3.4.1-6_amd64.deb
parser3-common_3.4.1-6_amd64.deb
  to main/p/parser/parser3-common_3.4.1-6_amd64.deb
parser3-dev_3.4.1-6_amd64.deb
  to main/p/parser/parser3-dev_3.4.1-6_amd64.deb
parser3_3.4.1-6_all.deb
  to main/p/parser/parser3_3.4.1-6_all.deb
parser_3.4.1-6.debian.tar.gz
  to main/p/parser/parser_3.4.1-6.debian.tar.gz
parser_3.4.1-6.dsc
  to main/p/parser/parser_3.4.1-6.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 672...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sergey B Kirpichev skirpic...@gmail.com (supplier of updated parser package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 May 2012 17:39:07 +0400
Source: parser
Binary: parser3 parser3-common parser3-cgi libapache2-mod-parser3 parser3-dev
Architecture: source all amd64
Version: 3.4.1-6
Distribution: experimental
Urgency: low
Maintainer: Sergey B Kirpichev skirpic...@gmail.com
Changed-By: Sergey B Kirpichev skirpic...@gmail.com
Description: 
 libapache2-mod-parser3 - Parser 3, HTML-embedded scripting language (Apache2 
module)
 parser3- Parser 3, HTML-embedded scripting language (metapackage)
 parser3-cgi - Parser 3, HTML-embedded scripting language (CGI binary)
 parser3-common - Common files for packages built from the Parser 3 source
 parser3-dev - Files for Parser 3 module development
Closes: 672054
Changes: 
 parser (3.4.1-6) experimental; urgency=low
 .
   * Added patch 115 to call pa_setup_module_cells() while real request
 handling.
   * Fix FTBFS: multiarch path for xml lib (Closes: #672054)
   * Fix build errors for apache 2.4
   * Drop workaround for #666875
Checksums-Sha1: 
 69e97e7f1a3cc6a57fb3e8f89eac915171db6de3 2165 parser_3.4.1-6.dsc
 4d8728f8209b4e1a82bed0f0b0ded7883d2b716f 380677 parser_3.4.1-6.debian.tar.gz
 f3f949f356bb30d9fdc51a61c5b5f12b57a70b8d 1060 parser3_3.4.1-6_all.deb
 bc3cb54432fa81c44c77a381e65973f4678acb81 106696 
parser3-common_3.4.1-6_amd64.deb
 ec2597b3ffcff5757067c4b3ed400b27f8168419 356764 parser3-cgi_3.4.1-6_amd64.deb
 a3120eb5f9b5e1b9e21771497670a62e68b9b835 461890 
libapache2-mod-parser3_3.4.1-6_amd64.deb
 41231aa7fe9d91191d48da8b61af782d6b4bd39a 3088 

Processed: tag 663674 patch

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

 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663674#15
 # did not get sent to control@
 tag 663674 patch
Bug #663674 [ztex-bmp] ztex-bmp: FTBFS: bmp.pas(309, 20) Error: Call by var for 
arg no. 1 has to match exactly: Got CMacroBuf expected CTextBuf
Added tag(s) patch.

End of message, stopping processing here.

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


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



Processed: tagging 619263

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

 tags 619263 + pending
Bug #619263 [libreoffice] libreoffice: terminate called after throwing an 
instance of 'com::sun::star::uno::RuntimeException'
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#672716: marked as done (paraview: FTBFS on armel, hurd-i386, mips, s390, s390x, sparc)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 15:52:06 +
with message-id e1stxz8-00084v...@franck.debian.org
and subject line Bug#672716: fixed in paraview 3.14.1-4
has caused the Debian Bug report #672716,
regarding paraview: FTBFS on armel, hurd-i386, mips, s390, s390x, sparc
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.)


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

Source: paraview
Version: 3.14.1-3   
Severity: serious
Tags: wheezy sid

Hi,
Your package fails to build on  armel, hurd-i386, mips, s390, s390x, 
sparc.

 from 
/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/Qt/Widgets/pqWaitCursor.cxx:35:
/usr/include/qt4/QtCore/qstring.h:174:17: note: the mangling of 
'va_list' has changed in GCC 4.4
/usr/bin/cmake -E cmake_progress_report 
/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi/CMakeFiles 

[ 89%] Building CXX object 
Qt/Widgets/CMakeFiles/pqWidgets.dir/pqHelpWindow.cxx.o
cd 
/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi/Qt/Widgets 
 /usr/bin/c++   -DpqWidgets_EXPORTS -DVTK_PYTHON_BUILD 
-DMPICH_IGNORE_CXX_SEEK -DQT_UITOOLS_LIB -DQT_HELP_LIB -DQT_GUI_LIB 
-DQT_XML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_DEBUG -Wall -g -O2 
-fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security  -Wno-deprecated -g -fPIC 
-I/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi 
-I/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi/VTK/Utilities 
-I/usr/include/python2.7 -I/usr/include/qt4 -I/usr/include/qt4/QtUiTools 
-I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/QtXml -I/usr/include/qt4/QtNetwork 
-I/usr/include/qt4/QtCore 
-I/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/Qt/Widgets -I/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi/Qt/Widgets 
-I/usr/include/qt4/QtDesigner-o 
CMakeFiles/pqWidgets.dir/pqHelpWindow.cxx.o -c 
/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/Qt/Widgets/pqHelpWindow.cxx
/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/Qt/Widgets/pqHelpWindow.cxx:50:20: 
fatal error: QWebPage: No such file or directory

compilation terminated.
make[3]: *** [Qt/Widgets/CMakeFiles/pqWidgets.dir/pqHelpWindow.cxx.o] 
Error 1
make[3]: Leaving directory 
`/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi'

make[2]: *** [Qt/Widgets/CMakeFiles/pqWidgets.dir/all] Error 2
make[1]: *** [all] Error 2
make[2]: Leaving directory 
`/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi'
make[1]: Leaving directory 
`/build/buildd-paraview_3.14.1-3-armel-Yvt0tO/paraview-3.14.1/obj-arm-linux-gnueabi'

dh_auto_build: make -j1 returned exit code 2
make: *** [build-arch] Error 2
(more)


Logs available here:
https://buildd.debian.org/status/package.php?p=paraview


---End Message---
---BeginMessage---
Source: paraview
Source-Version: 3.14.1-4

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

paraview-dev_3.14.1-4_amd64.deb
  to main/p/paraview/paraview-dev_3.14.1-4_amd64.deb
paraview-doc_3.14.1-4_all.deb
  to main/p/paraview/paraview-doc_3.14.1-4_all.deb
paraview-python_3.14.1-4_amd64.deb
  to main/p/paraview/paraview-python_3.14.1-4_amd64.deb
paraview_3.14.1-4.debian.tar.gz
  to main/p/paraview/paraview_3.14.1-4.debian.tar.gz
paraview_3.14.1-4.dsc
  to main/p/paraview/paraview_3.14.1-4.dsc
paraview_3.14.1-4_amd64.deb
  to main/p/paraview/paraview_3.14.1-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 672...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Anton Gladky gladky.an...@gmail.com (supplier of updated paraview package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 May 2012 22:57:04 +0200
Source: paraview
Binary: paraview paraview-dev paraview-doc paraview-python
Architecture: source amd64 all
Version: 3.14.1-4
Distribution: unstable
Urgency: low

Bug#672904: pgxnclient: missing dependency on python-pkg-resources

2012-05-14 Thread Jakub Wilk

Package: pgxnclient
Version: 1.0.2-1
Severity: serious
Justification: Policy 3.5

In a minimal chroot:

$ pgxn
Traceback (most recent call last):
  File /usr/bin/pgxn, line 5, in module
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources

$ pgxnclient
Traceback (most recent call last):
  File /usr/bin/pgxnclient, line 5, in module
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources


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

Kernel: Linux 3.3.0-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages pgxnclient depends on:
ii  python 2.7.2-10
ii  python2.7  2.7.3~rc2-2.1

--
Jakub Wilk



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



Bug#672809: taxbird: version in testing (0.16.x) is completely useless

2012-05-14 Thread Toni Mueller
On Mon, May 14, 2012 at 10:15:41AM -0500, Jonathan Nieder wrote:
 Note that I can't easily test it myself --- I am in the US, where
 there's an entirely different tax submission process.

Doesn't matter - I'm using this in production, and without any problem.


Kind regards,
--Toni++




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



Bug#667284: marked as done (mm3d: ftbfs with GCC-4.7)

2012-05-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 May 2012 16:11:57 +
with message-id e1stxsl-0001de...@franck.debian.org
and subject line Bug#667284: fixed in mm3d 1.3.7-1.4
has caused the Debian Bug report #667284,
regarding mm3d: ftbfs with GCC-4.7
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.)


-- 
667284: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667284
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mm3d
Version: 1.3.7-1.3
Severity: important
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.7

The package fails to build in a test rebuild on at least amd64 with
gcc-4.7/g++-4.7, but succeeds to build with gcc-4.6/g++-4.6. The
severity of this report may be raised before the wheezy release.

misc.cc:152:36: error: 'getcwd' was not declared in this scope

The full build log can be found at:
http://people.debian.org/~lucas/logs/2012/03/29-clang-gcc47/unstable-gcc47/mm3d_1.3.7-1.3_unstable-gcc47.log
The last lines of the build log are at the end of this report.

Some hints on fixing these issues can be found at
http://gcc.gnu.org/gcc-4.7/porting_to.html

To build with GCC 4.7, either set CC=gcc-4.7 CXX=g++-4.7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

[...]
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT filefactory.o -MD 
-MP -MF .deps/filefactory.Tpo -c -o filefactory.o filefactory.cc
mv -f .deps/filefactory.Tpo .deps/filefactory.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT filtermgr.o -MD 
-MP -MF .deps/filtermgr.Tpo -c -o filtermgr.o filtermgr.cc
mv -f .deps/filtermgr.Tpo .deps/filtermgr.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT glmath.o -MD -MP 
-MF .deps/glmath.Tpo -c -o glmath.o glmath.cc
mv -f .deps/glmath.Tpo .deps/glmath.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT log.o -MD -MP -MF 
.deps/log.Tpo -c -o log.o log.cc
mv -f .deps/log.Tpo .deps/log.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT lwofilter.o -MD 
-MP -MF .deps/lwofilter.Tpo -c -o lwofilter.o lwofilter.cc
mv -f .deps/lwofilter.Tpo .deps/lwofilter.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT mesh.o -MD -MP -MF 
.deps/mesh.Tpo -c -o mesh.o mesh.cc
mesh.cc: In function 'void mesh_create_list(MeshList, Model*, int)':
mesh.cc:34:11: warning: variable 'lastGroup' set but not used 
[-Wunused-but-set-variable]
mv -f .deps/mesh.Tpo .deps/mesh.Po
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../..   -coverage -Wall -I.. 
-DMM3D_EDIT -O2 -fomit-frame-pointer -fno-math-errno -MT misc.o -MD -MP -MF 
.deps/misc.Tpo -c -o misc.o misc.cc
misc.cc: In function 'std::string normalizePath(const char*, const char*)':
misc.cc:152:36: error: 'getcwd' was not declared in this scope
In file included from misc.cc:31:0:
sorted_list.h: In instantiation of 'void sorted_listT::insert_sorted(const 
T) [with T = std::basic_stringchar]':
misc.cc:472:41:   required from here
sorted_list.h:58:7: error: 'push_back' was not declared in this scope, and no 
declarations were found by argument-dependent lookup at the point of 
instantiation [-fpermissive]
sorted_list.h:58:7: note: declarations in dependent base 
'std::vectorstd::basic_stringchar, std::allocatorstd::basic_stringchar  
' are not found by unqualified lookup
sorted_list.h:58:7: note: use 'this-push_back' instead
make[4]: *** [misc.o] Error 1
make[4]: Leaving directory `/«PKGBUILDDIR»/src/libmm3d'
make[3]: *** [all-recursive] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all] Error 2
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2


---End Message---
---BeginMessage---
Source: mm3d
Source-Version: 1.3.7-1.4

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

mm3d_1.3.7-1.4.diff.gz
  to main/m/mm3d/mm3d_1.3.7-1.4.diff.gz
mm3d_1.3.7-1.4.dsc
  to main/m/mm3d/mm3d_1.3.7-1.4.dsc
mm3d_1.3.7-1.4_amd64.deb
  to main/m/mm3d/mm3d_1.3.7-1.4_amd64.deb



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

Thank you for reporting the bug, 

Processed: tagging 667379

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

 tags 667379 + pending
Bug #667379 [spring] spring: ftbfs with GCC-4.7
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#614443: boinc-app-seti: FTBFS: coproc.h:74:23: error: cal_boinc.h: No such file or directory

2012-05-14 Thread Ying-Chun Liu (PaulLiu)
Hi,

This bug is quite old.
I'm going to NMU to fix this RC bug.
I'll upload it to delay/7.

The attachment is the changes to fix this bug.

Regards,
Paul

-- 
PaulLiu (劉穎駿)
E-mail: Ying-Chun Liu (PaulLiu) paul...@debian.org
diff -Nru boinc-app-seti-5.13+cvs20060510/debian/changelog 
boinc-app-seti-5.13+cvs20060510/debian/changelog
--- boinc-app-seti-5.13+cvs20060510/debian/changelog2010-03-26 
12:02:04.0 +0800
+++ boinc-app-seti-5.13+cvs20060510/debian/changelog2012-05-15 
00:00:14.0 +0800
@@ -1,3 +1,12 @@
+boinc-app-seti (5.13+cvs20060510-7.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Includes Ilya Barygin bary...@gmail.com patchs to fix a FTBFS
+coming since the last upgrade of boinc-dev, thanks for the
+patches! (Closes: #614443)
+
+ -- Ying-Chun Liu (PaulLiu) paul...@debian.org  Mon, 14 May 2012 23:58:40 
+0800
+
 boinc-app-seti (5.13+cvs20060510-7) unstable; urgency=low
 
   * debian/control:
diff -Nru boinc-app-seti-5.13+cvs20060510/debian/rules 
boinc-app-seti-5.13+cvs20060510/debian/rules
--- boinc-app-seti-5.13+cvs20060510/debian/rules2010-03-26 
10:40:17.0 +0800
+++ boinc-app-seti-5.13+cvs20060510/debian/rules2012-05-15 
00:03:58.0 +0800
@@ -22,6 +22,7 @@
# Remember to not configure with --disable-dependency-tracking, because
# it breaks some handwritten rules in client/Makefile.am which require
# that DEPDIR exists.
+   CXXFLAGS=$(CXXFLAGS) -I/usr/include/boinc -I/usr/include/boinc/lib \
BOINCDIR=/usr/share/boinc-dev ./configure \
  --enable-client \
  --disable-graphics \


signature.asc
Description: OpenPGP digital signature


Bug#672915: slimit: missing dependency on python-pkg-resources

2012-05-14 Thread Jakub Wilk

Package: slimit
Version: 0.7-1
Severity: serious
Justification: Policy 3.5

In a minimal chroot:

$ slimit
Traceback (most recent call last):
  File /usr/bin/slimit, line 5, in module
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources


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

Kernel: Linux 3.3.0-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages slimit depends on:
ii  python  2.7.2-10
ii  python-ply  3.4-3
ii  python2.7   2.7.3~rc2-2.1

--
Jakub Wilk



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



  1   2   >