Processed: Re: blockdiag: FTBFS: Tests failed

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 +unreproducible
Bug #738408 [src:blockdiag] blockdiag: FTBFS: Tests failed
Added tag(s) unreproducible.

-- 
738408: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738408
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#738408: blockdiag: FTBFS: Tests failed

2014-02-15 Thread Hideki Yamane
control: tags -1 +unreproducible

Hi,

 I've tested it with cowbuilder/pbuilder on amd64(sid) and kfreebsd-i386(sid)
 but cannot reproduce it (no failure with test), so tags as unreproducible.


-- 
Regards,

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


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



Bug#738392: proofgeneral: FTBFS: Latex errors

2014-02-15 Thread Hideki Yamane
control: tags -1 +patch +pending

Hi,

 Attached patch fix this FTBFS (and also lintian error that prevent to
 create .deb file), please check and consider to apply it.

 Also, I'll upload it to 10-delayed queue. If you don't want it, please
 tell me.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane
diff -Nru proofgeneral-4.3~pre130510/debian/changelog proofgeneral-4.3~pre130510/debian/changelog
--- proofgeneral-4.3~pre130510/debian/changelog	2013-05-18 15:57:05.0 +0900
+++ proofgeneral-4.3~pre130510/debian/changelog	2014-02-15 21:08:59.0 +0900
@@ -1,3 +1,19 @@
+proofgeneral (4.3~pre130510-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/control
+- add Build-Depends: texlive-fonts-recommended to fix FTBFS
+ (Closes: #738392)
+- remove unnecessary Build-Depends: texi2html due to transtion
+  (see https://wiki.debian.org/Texi2htmlTransition)
+  * debian/patches
+- add transition_to_makeinfo.patch to use makeinfo, instead of texi2html.
+  It eliminates lintian error.
+  * also update debian/proofgeneral-doc.doc-base to deal with changes with
+above
+
+ -- Hideki Yamane henr...@debian.org  Sat, 15 Feb 2014 19:57:15 +0900
+
 proofgeneral (4.3~pre130510-1) unstable; urgency=low
 
   * New upstream release (Closes: #707331)
diff -Nru proofgeneral-4.3~pre130510/debian/control proofgeneral-4.3~pre130510/debian/control
--- proofgeneral-4.3~pre130510/debian/control	2013-05-18 15:57:05.0 +0900
+++ proofgeneral-4.3~pre130510/debian/control	2014-02-15 20:18:36.0 +0900
@@ -2,7 +2,7 @@
 Section: editors
 Priority: optional
 Maintainer: Hendrik Tews hend...@askra.de
-Build-Depends: debhelper (= 9), texinfo, texlive-latex-recommended, texlive-generic-recommended, texi2html, emacs23-nox | emacs23 | emacs23-lucid | emacs24-nox | emacs24 | emacs24-lucid
+Build-Depends: debhelper (= 9), texinfo, texlive-latex-recommended, texlive-generic-recommended, texlive-fonts-recommended, emacs23-nox | emacs23 | emacs23-lucid | emacs24-nox | emacs24 | emacs24-lucid
 Standards-Version: 3.9.4
 Homepage: http://proofgeneral.inf.ed.ac.uk
 
diff -Nru proofgeneral-4.3~pre130510/debian/patches/series proofgeneral-4.3~pre130510/debian/patches/series
--- proofgeneral-4.3~pre130510/debian/patches/series	2013-05-18 15:57:05.0 +0900
+++ proofgeneral-4.3~pre130510/debian/patches/series	2014-02-15 20:18:20.0 +0900
@@ -9,3 +9,4 @@
 fix-texinfo-5-1-bug.patch
 pg-image-bug.patch
 smartly-enable-prooftree.patch
+transition_to_makeinfo.patch
diff -Nru proofgeneral-4.3~pre130510/debian/patches/transition_to_makeinfo.patch proofgeneral-4.3~pre130510/debian/patches/transition_to_makeinfo.patch
--- proofgeneral-4.3~pre130510/debian/patches/transition_to_makeinfo.patch	1970-01-01 09:00:00.0 +0900
+++ proofgeneral-4.3~pre130510/debian/patches/transition_to_makeinfo.patch	2014-02-15 20:58:54.0 +0900
@@ -0,0 +1,27 @@
+Description: use makeinfo, instead of obsolete texi2html
+Author: Hideki Yamane henr...@debian.org
+Forwarded: no
+Last-Update: 2014-02-15
+
+Index: proofgeneral-4.3~pre130510/doc/Makefile.doc
+===
+--- proofgeneral-4.3~pre130510.orig/doc/Makefile.doc	2014-02-15 20:18:20.0 +0900
 proofgeneral-4.3~pre130510/doc/Makefile.doc	2014-02-15 20:49:28.388819142 +0900
+@@ -18,7 +18,7 @@
+ 
+ MAKE = make -f Makefile.doc 
+ MAKEINFO = makeinfo
+-TEXI2HTML = texi2html -expandinfo -number -split_chapter --noheader --css-include proofgen.css
++TEXI2HTML = makeinfo --html --ifinfo --number-sections --split=chapter --no-headers --css-include=proofgen.css
+ # `texinfo-tex' package contains texi2pdf
+ TEXI2PDF = texi2pdf
+ # `dviutils' package contains these useful utilities.
+@@ -50,7 +50,7 @@
+ 	$(TEXI2PDF) $ 
+ 
+ .texi.html:	
+-	$(TEXI2HTML) --output $* $ 
++	$(TEXI2HTML) $ 
+ 
+ default: doc
+ 
diff -Nru proofgeneral-4.3~pre130510/debian/proofgeneral-doc.doc-base proofgeneral-4.3~pre130510/debian/proofgeneral-doc.doc-base
--- proofgeneral-4.3~pre130510/debian/proofgeneral-doc.doc-base	2012-01-10 21:45:03.0 +0900
+++ proofgeneral-4.3~pre130510/debian/proofgeneral-doc.doc-base	2014-02-15 21:04:11.0 +0900
@@ -8,5 +8,5 @@
 Files: /usr/share/doc/proofgeneral-doc/proofgeneral.pdf
 
 Format: HTML
-Index: /usr/share/doc/proofgeneral-doc/html/ProofGeneral.html
+Index: /usr/share/doc/proofgeneral-doc/html/index.html
 Files: /usr/share/doc/proofgeneral-doc/html/*.html


Processed: RE: proofgeneral: FTBFS: Latex errors

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 +patch +pending
Bug #738392 [src:proofgeneral] proofgeneral: FTBFS: Latex errors
Added tag(s) patch.
Bug #738392 [src:proofgeneral] proofgeneral: FTBFS: Latex errors
Added tag(s) pending.

-- 
738392: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738392
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 739023 in 0.9.20-1, notfound 739023 in 1.15-1, severity of 739023 is important

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

 found 739023 0.9.20-1
Bug #739023 [xul-ext-greasemonkey] xul-ext-greasemonkey: Broken with iceweasel 
24 from stable-security
Marked as found in versions greasemonkey/0.9.20-1.
 notfound 739023 1.15-1
Bug #739023 [xul-ext-greasemonkey] xul-ext-greasemonkey: Broken with iceweasel 
24 from stable-security
No longer marked as found in versions 1.15-1.
 severity 739023 important
Bug #739023 [xul-ext-greasemonkey] xul-ext-greasemonkey: Broken with iceweasel 
24 from stable-security
Severity set to 'important' from 'grave'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
739023: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739023
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#739053: rpcbind LSB initscript runlevels are incorrect

2014-02-15 Thread Roger Leigh
Package: rpcbind
Version: 0.2.1-2
Severity: serious
Tags: patch
Justification: Breaks upgrades

Please could you apply the following patch.  We are planning to upgrade
the version of insserv, and testing shows that the new version breaks
on the dependencies declared by rpcbind (which doesn't match the
dependent nfs-common).  This change adjusts the start runlevels to
match nfs-common.

Marking as serious because this will break upgrades if left unfixed.


Thanks,
Roger

--- /etc/init.d/rpcbind.old 2014-02-10 18:55:20.645945248 +
+++ /etc/init.d/rpcbind 2014-02-15 11:23:32.000400663 +
@@ -6,7 +6,7 @@
 # Provides:  rpcbind
 # Required-Start:$network $local_fs
 # Required-Stop: $network $local_fs
-# Default-Start: S
+# Default-Start: 2 3 4 5 S
 # Default-Stop:  0 1 6
 # Short-Description: RPC portmapper replacement
 # Description:   rpcbind is a server that converts RPC (Remote

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

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

Versions of packages rpcbind depends on:
ih  initscripts  2.88dsf-51
ii  insserv  1.16.0-1
ii  libc62.17-97
ii  libtirpc10.2.2-5
ii  libwrap0 7.6.q-25
ii  lsb-base 4.1+Debian12

rpcbind recommends no packages.

rpcbind suggests no packages.

-- Configuration Files:
/etc/init.d/rpcbind 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#725998: marked as done (glib-networking: incomplete debian/copyright)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 13:48:27 +
with message-id e1wefbx-0003dj...@franck.debian.org
and subject line Bug#725998: fixed in glib-networking 2.38.2-1
has caused the Debian Bug report #725998,
regarding glib-networking: incomplete debian/copyright
to be marked as done.

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

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


-- 
725998: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725998
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: glib-networking
Version: 2.32.1-1ubuntu2
Severity: serious
Justification: Policy 12.5

Dear maintainer,

You missed some copyright holders:

glib-networking-2.38.0\po\bg.po
glib-networking-2.38.0\po\eo.po
glib-networking-2.38.0\po\sl.po
glib-networking-2.38.0\po\sv.po
glib-networking-2.38.0\po\th.po
glib-networking-2.38.0\po\tr.po
Copyright (C) 2011, 2012, 2013 Free Software Foundation

glib-networking-2.38.0\po\fi.po
Copyright (C) 2011 Tommi Vainikainen


glib-networking-2.38.0\po\te.po
Copyright (C) 2011, 2012 Swecha Telugu Localisation team

glib-networking-2.38.0\po\vi.po
Copyright (C) 2011 glib-networking's Free Software Foundation, Inc.

(uhm, what)

glib-networking-2.38.0\tls\tests\mock-pkcs11.*
Copyright (C) 2010 Stefan Walter

Cheers,

Luke Faraone
FTP Team
---End Message---
---BeginMessage---
Source: glib-networking
Source-Version: 2.38.2-1

We believe that the bug you reported is fixed in the latest version of
glib-networking, which is due to be installed in the Debian FTP archive.

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

Debian distribution maintenance software
pp.
Emilio Pozuelo Monfort po...@debian.org (supplier of updated glib-networking 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 12:59:52 +0100
Source: glib-networking
Binary: glib-networking glib-networking-services glib-networking-common 
glib-networking-dbg glib-networking-tests
Architecture: source all amd64
Version: 2.38.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Emilio Pozuelo Monfort po...@debian.org
Description: 
 glib-networking - network-related giomodules for GLib
 glib-networking-common - network-related giomodules for GLib - data files
 glib-networking-dbg - network-related giomodules for GLib - debugging symbols
 glib-networking-services - network-related giomodules for GLib - D-Bus services
 glib-networking-tests - network-related giomodules for GLib - installed tests
Closes: 725998
Changes: 
 glib-networking (2.38.2-1) unstable; urgency=low
 .
   [ Vincent Cheng ]
   * Add missing entries in debian/copyright. (Closes: #725998)
 .
   [ Iain Lane ]
   * Use dh-autoreconf to update libtool.m4 for new ports.
 .
   [ Emilio Pozuelo Monfort ]
   * New upstream release.
   * Upload to unstable.
Checksums-Sha1: 
 52f69fecdd089ea56f12ab1246a89309ce3951ba 1932 glib-networking_2.38.2-1.dsc
 02e4eb212dd5a322ca726802c714dd4e5a143a74 362524 
glib-networking_2.38.2.orig.tar.xz
 868aec4934b97251a93470d3b3921ff76005cb6d 5168 
glib-networking_2.38.2-1.debian.tar.xz
 dc1a130ca37ffee70776fe4d218bf85a23db5b76 50596 
glib-networking-common_2.38.2-1_all.deb
 0b0b9bb454cad4a069d095710f482c0e06520dd9 48594 
glib-networking_2.38.2-1_amd64.deb
 584cda3b77511cada638c5b3a6efee0e50200b9c 15406 
glib-networking-services_2.38.2-1_amd64.deb
 cb4f45099101a5d23e9640ced0083c60067c096c 237066 
glib-networking-dbg_2.38.2-1_amd64.deb
 67f3bc9b0ac8d499262f19047293b5d75ca8f83c 68748 
glib-networking-tests_2.38.2-1_amd64.deb
Checksums-Sha256: 
 00363a0e0555bd0c3565bf8910c090e9de17d1ed376e44d45eebfb39bd5a9141 1932 
glib-networking_2.38.2-1.dsc
 e8e2fe919d3236169c9bfaec807966ec81b844fc28b11bddc9f8256cfa949fc7 362524 
glib-networking_2.38.2.orig.tar.xz
 dd693a3a566005490d0e2748f80086c3a845ab01cbacb8a738322f37f6490053 5168 
glib-networking_2.38.2-1.debian.tar.xz
 fb6b9033559cb50ff18f0a09592f55429d051aa5ad3944d498fa09c6c4fc82c5 50596 
glib-networking-common_2.38.2-1_all.deb
 d9e743609827e2dd8d2a7454122c3c01859427c95fa7ca9bfee72b0c3df38ff6 48594 
glib-networking_2.38.2-1_amd64.deb
 340eef1e2451c90d4a74ba3ca1a237a3b61a56565801d80f9685f932f0a239bf 

Bug#738909: apt: Can not reproduce

2014-02-15 Thread Claudio Moretti
Package: apt
Followup-For: Bug #738909

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear Maintainer,

I cannot reproduce this bug.

I held apt before a dist-upgrade because of this bug; after reading it,
I unheld it and installed it.

I was not asked to remove anything; apt-get install apt and apt-get
dist-upgrade went perfectly fine.

IMHO, the reporter added experimental sources (like I did) and pinned
them in some way that prioritizes experimental over unstable (or lower).

Therefore, probably not a bug?

Unless somebody is able to reproduce it and/or the reporter gives more
details, I propose this bug report is closed, because it may scare
people into not upgrading while the problem is user-specific.

Cheers,

Claudio


- -- Package-specific info:

- -- apt-config dump --

APT ;
APT::Architecture amd64;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^firmware-linux.*;
APT::NeverAutoRemove:: ^linux-firmware$;
APT::NeverAutoRemove:: ^kfreebsd-image.*;
APT::NeverAutoRemove:: ^gnumach$;
APT::NeverAutoRemove:: ^gnumach-image.*;
APT::NeverAutoRemove:: ^linux-image-3.12-1-amd64$;
APT::NeverAutoRemove:: ^linux-image-extra-3.12-1-amd64$;
APT::NeverAutoRemove:: ^linux-signed-image-3.12-1-amd64$;
APT::NeverAutoRemove:: ^linux-backports-modules-.*-3.12-1-amd64$;
APT::NeverAutoRemove:: ^linux-headers-3.12-1-amd64$;
APT::NeverAutoRemove:: ^postgresql-;
APT::Never-MarkAuto-Sections ;
APT::Never-MarkAuto-Sections:: metapackages;
APT::Never-MarkAuto-Sections:: restricted/metapackages;
APT::Never-MarkAuto-Sections:: universe/metapackages;
APT::Never-MarkAuto-Sections:: multiverse/metapackages;
APT::Never-MarkAuto-Sections:: oldlibs;
APT::Never-MarkAuto-Sections:: restricted/oldlibs;
APT::Never-MarkAuto-Sections:: universe/oldlibs;
APT::Never-MarkAuto-Sections:: multiverse/oldlibs;
APT::Update ;
APT::Update::Post-Invoke-Success ;
APT::Update::Post-Invoke-Success:: [ ! -f /var/run/dbus/system_bus_socket ] || 
/usr/bin/dbus-send --system --dest=org.debian.apt --type=signal /org/debian/apt 
org.debian.apt.CacheChanged || true;
APT::Update::Post-Invoke-Success:: /usr/bin/test -e 
/usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service  
/usr/bin/test -S /var/run/dbus/system_bus_socket  /usr/bin/gdbus call 
--system --dest org.freedesktop.PackageKit --object-path 
/org/freedesktop/PackageKit --timeout 4 --method 
org.freedesktop.PackageKit.StateHasChanged cache-update  /dev/null; /bin/echo 
 /dev/null;
APT::Architectures ;
APT::Architectures:: amd64;
APT::Architectures:: i386;
APT::Compressor ;
APT::Compressor::. ;
APT::Compressor::.::Name .;
APT::Compressor::.::Extension ;
APT::Compressor::.::Binary ;
APT::Compressor::.::Cost 1;
APT::Compressor::gzip ;
APT::Compressor::gzip::Name gzip;
APT::Compressor::gzip::Extension .gz;
APT::Compressor::gzip::Binary gzip;
APT::Compressor::gzip::Cost 2;
APT::Compressor::gzip::CompressArg ;
APT::Compressor::gzip::CompressArg:: -9n;
APT::Compressor::gzip::UncompressArg ;
APT::Compressor::gzip::UncompressArg:: -d;
APT::Compressor::bzip2 ;
APT::Compressor::bzip2::Name bzip2;
APT::Compressor::bzip2::Extension .bz2;
APT::Compressor::bzip2::Binary bzip2;
APT::Compressor::bzip2::Cost 3;
APT::Compressor::bzip2::CompressArg ;
APT::Compressor::bzip2::CompressArg:: -9;
APT::Compressor::bzip2::UncompressArg ;
APT::Compressor::bzip2::UncompressArg:: -d;
APT::Compressor::xz ;
APT::Compressor::xz::Name xz;
APT::Compressor::xz::Extension .xz;
APT::Compressor::xz::Binary xz;
APT::Compressor::xz::Cost 4;
APT::Compressor::xz::CompressArg ;
APT::Compressor::xz::CompressArg:: -6;
APT::Compressor::xz::UncompressArg ;
APT::Compressor::xz::UncompressArg:: -d;
APT::Compressor::lzma ;
APT::Compressor::lzma::Name lzma;
APT::Compressor::lzma::Extension .lzma;
APT::Compressor::lzma::Binary xz;
APT::Compressor::lzma::Cost 5;
APT::Compressor::lzma::CompressArg ;
APT::Compressor::lzma::CompressArg:: --format=lzma;
APT::Compressor::lzma::CompressArg:: -9;
APT::Compressor::lzma::UncompressArg ;
APT::Compressor::lzma::UncompressArg:: --format=lzma;
APT::Compressor::lzma::UncompressArg:: -d;
APT::CompressorName ;
APT::CompressorExtension .;
APT::CompressorBinary ;
APT::CompressorCost 100;
APT::CompressorCompressArg ;
APT::CompressorCompressArg:: -9;
APT::CompressorUncompressArg ;
APT::CompressorUncompressArg:: -d;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::mirrors mirrors/;
Dir::State::extended_states extended_states;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts 

Bug#739058: springlobby: is non-distributable due to the combination of GPL-2 only and GPL-3+ licensed files

2014-02-15 Thread Markus Koschany
Package: springlobby
Version: 0.169-1+b1
Severity: serious
Tags: upstream

while I was reviewing the license of springlobby, I discovered that
springlobby uses GPL-2 only and GPL 3 or later copyleft licenses for the
same program. GPL-2 only and GPL-3 or later are not compatible and can't be
legally combined.

See also https://www.gnu.org/licenses/gpl-faq.html#AllCompatibility

I have already forwarded this bug report upstream. They are aware of
the issue and intend to contact the copyright holders to relicense the
affected files so that the whole program can be legally distributed again.

https://github.com/springlobby/springlobby/issues/171

Markus


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



Processed: RE: ceph upgrade fails in post-install step

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 grave
Bug #734241 [ceph] ceph upgrade fails in post-install step
Severity set to 'grave' from 'important'

-- 
734241: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734241
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: Bug#739058: springlobby: is non-distributable due to the combination of GPL-2 only and GPL-3+ licensed files

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

 forwarded 739058 https://github.com/springlobby/springlobby/issues/171
Bug #739058 [springlobby] springlobby: is non-distributable due to the 
combination of GPL-2 only and GPL-3+ licensed files
Set Bug forwarded-to-address to 
'https://github.com/springlobby/springlobby/issues/171'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
739058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739058
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#725376: marked as done (musl-dev: must not provide libc-dev)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 15:23:51 +
with message-id e1weh5r-00071j...@franck.debian.org
and subject line Bug#725376: fixed in musl 0.9.15-1
has caused the Debian Bug report #725376,
regarding musl-dev: must not provide libc-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.)


-- 
725376: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725376
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: musl-dev
Version: 0.9.14-1
Severity: serious

Providing libc-dev in musl-dev is incorrect, since other -dev packages
that currently depend on libc-dev are not going to work with musl-dev
and need the eglibc libc-dev implementation.  Please drop this Provides
from the package.


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

Kernel: Linux 3.11.3-nouveau (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---End Message---
---BeginMessage---
Source: musl
Source-Version: 0.9.15-1

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

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

Debian distribution maintenance software
pp.
Kevin Bortis p...@bortis.ch (supplier of updated musl 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 05 Jan 2014 20:11:11 +0100
Source: musl
Binary: musl musl-dev musl-tools
Architecture: source amd64
Version: 0.9.15-1
Distribution: unstable
Urgency: low
Maintainer: Kevin Bortis p...@bortis.ch
Changed-By: Kevin Bortis p...@bortis.ch
Description: 
 musl   - standard C library
 musl-dev   - standard C library development files
 musl-tools - standard C library tools
Closes: 725376 732170
Changes: 
 musl (0.9.15-1) unstable; urgency=low
 .
   * Import upstream version 0.9.15
   * Do no longer provide libc-dev (Closes: #725376)
   * Make runtime package multi-arch (Closes: #732170)
Checksums-Sha1: 
 713896c080093a8f5833c78bee72704a725dc36e 1857 musl_0.9.15-1.dsc
 8faf2c4eb04ea33b66dc76759bcd117ee362b947 829742 musl_0.9.15.orig.tar.gz
 b4b580b91581019111e7e3004bad84505e23c5e4 6332 musl_0.9.15-1.debian.tar.xz
 1b938b0e6728f86144b1675da0b3c9f67f095470 299732 musl_0.9.15-1_amd64.deb
 14e23901cdb6b5e96de877b012f50b2311412dc9 434746 musl-dev_0.9.15-1_amd64.deb
 f294db47c0c336b6ea651fb33c9284bb969b3024 5848 musl-tools_0.9.15-1_amd64.deb
Checksums-Sha256: 
 753216f6b82b1cd9341f67474c177c8167e055278fe56abae8007d788a04ada5 1857 
musl_0.9.15-1.dsc
 4a7baab8f295511196dee48d33b8b82a159a81233facb89433707c792033cbe7 829742 
musl_0.9.15.orig.tar.gz
 0e13cb2d6ee66de928060be759dfed9c4357951f3dd107f2e712383cf71d93c4 6332 
musl_0.9.15-1.debian.tar.xz
 866b403dfb4621eb1e2d1e7e5f92176770195cafd96e43326d6a3bd7a15e8d47 299732 
musl_0.9.15-1_amd64.deb
 7eb9d2d8be46c2efc26b635088a322d62f4d24f4e6f263ae6b969a6687348b14 434746 
musl-dev_0.9.15-1_amd64.deb
 4c7ebc40685de9df74f01407ef13fb2934d9266892471a9fb0f522888490407a 5848 
musl-tools_0.9.15-1_amd64.deb
Files: 
 58bf5caf951f1889f1cecfbae90f1644 1857 libs extra musl_0.9.15-1.dsc
 06f590a38c85722ee9343db2416425f4 829742 libs extra musl_0.9.15.orig.tar.gz
 5eb5ec5adcce354d06eb97b64c9d8ed8 6332 libs extra musl_0.9.15-1.debian.tar.xz
 53d22017d02c4f573457c5a78b5c1917 299732 libs extra musl_0.9.15-1_amd64.deb
 65b3cf35300abced56cd4592c1dae279 434746 libdevel extra 
musl-dev_0.9.15-1_amd64.deb
 4a519b7b4998a4adda2caf77ba6f7b7f 5848 devel extra musl-tools_0.9.15-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS/4LJAAoJENPhc4PPp/8G1/AP/2rI1hKPRhIhRQKEzWkfNX/t
hppr2GvSQifdsdTyk7dP6g26bTSNx2hN1TlsZuDcopgn5OkD2EZDKT0eDla/tKBQ
bZk25v3+6Bzbx/H3NW6nzfQkxux/fv74nDxGwTi4K/r5ZIxWM8VOV8aZd1AmNdHz
yQi2ww89LbtSoPyW2EdHPnXPWjTt5NvsViYD41VBSvNhlVHSjUfAfCRmWyT9JIql
i0lW22U75PXzeR+mnzykY7LDA+InnjXtTKXT4a76ooSG/J5C2T2YnBN/MnjZy3qH
BnYx5ADYvN1fxf8wFdCR64qfJ1TJIF8RRKeOpomaJaOOtYCacM+ZKBj6EEgyyhtv
tJAj5WyFHuBO0IIEFubG4ASDDh9tOeX3Ne4NENnObN1//E0C3GnUS4kRUKaj+0ag
M/Y6wJvjINzX0nUR9s0U8AS1PcNpmeahgSGwh/eigosiVCA7XZScYIjkwHUzGFjY

Bug#739067: jenkins: multiple security vulnerabilities

2014-02-15 Thread Nobuhiro Ban
Package: jenkins
Version: 1.509.2+dfsg-2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory.
In this advisory, some vulnerabilities are rated high severity.

https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2014-02-14
 SECURITY-105
   affected by CVE-2013-7285 reported against XStream
 SECURITY-76  SECURITY-88 / CVE-2013-5573
 SECURITY-109
 SECURITY-108
 SECURITY-106
 SECURITY-93
 SECURITY-89
 SECURITY-80
 SECURITY-79
 SECURITY-77
 SECURITY-75
 SECURITY-74
 SECURITY-73


Regards,
Nobuhiro


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



Bug#736623: marked as done (gucharmap: Unsatisfiable Build-Depends on unicode-data ( 6.2))

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 16:50:09 +
with message-id e1weirn-0001kv...@franck.debian.org
and subject line Bug#736623: fixed in gucharmap 1:3.10.1-1
has caused the Debian Bug report #736623,
regarding gucharmap: Unsatisfiable Build-Depends on unicode-data ( 6.2)
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.)


-- 
736623: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736623
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: gucharmap
Version: 1:3.8.2.3
Severity: serious

From my pbuilder build log:

W: /root/.pbuilderrc does not exist
I: using fakeroot in build.
I: Current time: Sat Jan 25 08:38:24 PST 2014
I: pbuilder-time-stamp: 1390667904
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /run/shm filesystem
I: mounting /dev/pts filesystem
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Installing the build-deps
 - Attempting to satisfy build-dependencies
 - Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team pbuilder-ma...@lists.alioth.debian.org
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: cdbs, debhelper (= 8), autotools-dev, desktop-file-utils, 
gobject-introspection (= 1.0.0), valac (= 0.16), libgirepository1.0-dev (= 
0.9.0), libgtk-3-dev (= 3.4.0), libglib2.0-dev (= 2.32.0), libpopt-dev, 
gnome-pkg-tools, gtk-doc-tools (= 1.0), yelp-tools, intltool (= 0.40), 
libglib2.0-doc, libpango1.0-doc, libgtk-3-doc, unicode-data ( 6.2)
dpkg-deb: building package `pbuilder-satisfydepends-dummy' in 
`/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 12184 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on cdbs; however:
  Package cdbs is not installed.
 pbuilder-satisfydepends-dummy depends on debhelper (= 8); however:
  Package debhelper is not installed.
 pbuilder-satisfydepends-dummy depends on autotools-dev; however:
  Package autotools-dev is not installed.
 pbuilder-satisfydepends-dummy depends on desktop-file-utils; however:
  Package desktop-file-utils is not installed.
 pbuilder-satisfydepends-dummy depends on gobject-introspection (= 1.0.0); 
however:
  Package gobject-introspection is not installed.
 pbuilder-satisfydepends-dummy depends on valac (= 0.16); however:
  Package valac is not installed.
 pbuilder-satisfydepends-dummy depends on libgirepository1.0-dev (= 0.9.0); 
however:
  Package libgirepository1.0-dev is not installed.
 pbuilder-satisfydepends-dummy depends on libgtk-3-dev (= 3.4.0); however:
  Package libgtk-3-dev is not installed.
 pbuilder-satisf
Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
The following NEW packages will be installed:
  autoconf{a} automake{a} autopoint{a} autotools-dev{a} bsdmainutils{a} 
  ca-certificates{a} cdbs{a} dconf-gsettings-backend{a} dconf-service{a} 
  debhelper{a} desktop-file-utils{a} docbook{a} docbook-dsssl{a} 
  docbook-to-man{a} docbook-xml{a} docbook-xsl{a} file{a} fontconfig{a} 
  fontconfig-config{a} fonts-dejavu-core{a} gettext{a} gettext-base{a} 
  gir1.2-atk-1.0{a} gir1.2-freedesktop{a} gir1.2-gdkpixbuf-2.0{a} 
  gir1.2-glib-2.0{a} gir1.2-gtk-3.0{a} gir1.2-pango-1.0{a} gnome-common{a} 
  gnome-pkg-tools{a} gobject-introspection{a} groff-base{a} 
  gtk-doc-tools{a} highlight{a} highlight-common{a} intltool{a} 
  intltool-debian{a} itstool{a} jade{a} libasprintf0c2{a} 
  libatk-bridge2.0-0{a} libatk-bridge2.0-dev{a} libatk1.0-0{a} 
  libatk1.0-data{a} libatk1.0-dev{a} libatspi2.0-0{a} libavahi-client3{a} 
  libavahi-common-data{a} libavahi-common3{a} libbsd0{a} 
  libcairo-gobject2{a} libcairo-script-interpreter2{a} libcairo2{a} 
  libcairo2-dev{a} libcolord1{a} libcroco3{a} libcups2{a} libdatrie1{a} 
  libdbus-1-3{a} libdconf1{a} libdrm-dev{a} libdrm-intel1{a} 
  libdrm-nouveau2{a} libdrm-radeon1{a} libdrm2{a} libegl1-mesa{a} 
  libegl1-mesa-dev{a} libegl1-mesa-drivers{a} libelf1{a} 

Bug#739073: cython: FTBFS: Failure in embedsignatures

2014-02-15 Thread Daniel Schepler
Source: cython
Version: 0.20-3
Severity: serious

From my pbuilder build log:

...
Doctest: cppwrap.transmogrify_from_cpp ... ok
voidfunc (cppwrap)
Doctest: cppwrap.voidfunc ... ok
test_embed (__main__.EmbedTest) ... ok

==
FAIL: embedsignatures ()
Doctest: embedsignatures
--
Traceback (most recent call last):
  File /usr/lib/python3.4/doctest.py, line 2193, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for embedsignatures
  File 
/tmp/buildd/cython-0.20/build/work-dir/run/c/embedsignatures/embedsignatures.cpython-34m.so,
 line 1, in embedsignatures

--
File 
/tmp/buildd/cython-0.20/build/work-dir/run/c/embedsignatures/embedsignatures.cpython-34m.so,
 line 74, in embedsignatures
Failed example:
print (funcdoc(foo))
Expected:
foo()
Got:
fooNone
foo()
...
--
File 
/tmp/buildd/cython-0.20/build/work-dir/run/cpp/embedsignatures/embedsignatures.cpython-34m.so,
 line 178, in embedsignatures
Failed example:
print(funcdoc(f_defexpr5))
Expected:
f_defexpr5(int x=4)
Got:
f_defexpr5None
f_defexpr5(int x=4)


--
Ran 8599 tests in 1255.323s

FAILED (failures=2)
ALL DONE
make[1]: *** [override_dh_auto_test] Error 1
make[1]: Leaving directory `/tmp/buildd/cython-0.20'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2

(I wasn't sure by looking at #734291 if that was the same issue as this;
if so, sorry about the duplicate instead of raising the severity of the
other one.)
-- 
Daniel Schepler


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



Bug#739076: pyopenssl: FTBFS: I can't find file `ecrm1000'.

2014-02-15 Thread Daniel Schepler
Source: pyopenssl
Version: 0.13.1-1
Severity: serious

From my pbuilder build log:

...
python tools/mkhowto --a4 --html --iconserver . pyOpenSSL.tex
+++ 
TEXINPUTS=.:/tmp/buildd/pyopenssl-0.13.1/doc:/tmp/buildd/pyopenssl-0.13.1/doc/tools/paper-a4:/tmp/buildd/pyopenssl-0.13.1/doc/tools/texinputs:
+++ latex pyOpenSSL
*** Session transcript and error messages are in pyOpenSSL.how.
The relevant lines from the transcript are:

+++ latex pyOpenSSL
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian)
 restricted \write18 enabled.
entering extended mode
(./pyOpenSSL.tex
LaTeX2e 2011/06/27
Babel 3.9h and hyphenation patterns for 2 languages loaded.
(/tmp/buildd/pyopenssl-0.13.1/doc/tools/texinputs/howto.cls
Document Class: howto 1998/02/25 Document class (Python HOWTO)
(/tmp/buildd/pyopenssl-0.13.1/doc/tools/paper-a4/pypaper.sty)
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)
Using fancier footers than usual.
(/tmp/buildd/pyopenssl-0.13.1/doc/tools/texinputs/python.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty)
(/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty)))
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def)))
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def)
kpathsea: Running mktextfm ecrm1000
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1000.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1000
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)

kpathsea: Running mktexmf ecrm1000

! I can't find file `ecrm1000'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Transcript written on mfput.log.
grep: ecrm1000.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1000' failed to make ecrm1000.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font T1/cmr/m/n/10=ecrm1000 at 10.0pt not loadable: Metric (TFM) file not fou
nd.
to be read again 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
? 
! Emergency stop.
to be read again 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
No pages of output.
Transcript written on pyOpenSSL.log.
*** Session transcript and error messages are in pyOpenSSL.how.
rm -rf html/
mkdir html/
mv *.html pyOpenSSL.css html/
mv: cannot stat '*.html': No such file or directory
mv: cannot stat 'pyOpenSSL.css': No such file or directory
make[2]: *** [html] Error 1
make[2]: Leaving directory `/tmp/buildd/pyopenssl-0.13.1/doc'
make[1]: *** [override_dh_auto_build] Error 2
make[1]: Leaving directory `/tmp/buildd/pyopenssl-0.13.1'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Bug#737284: marked as done (3depict: needs versioned Build-Depends: libmgl-dev (= 2))

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 17:33:23 +
with message-id e1wej7d-0007g2...@franck.debian.org
and subject line Bug#737284: fixed in 3depict 0.0.15-3
has caused the Debian Bug report #737284,
regarding 3depict: needs versioned Build-Depends: libmgl-dev (= 2)
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.)


-- 
737284: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737284
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: 3depict
Version: 0.0.15-2
Severity: serious
Justification: fails to build from source (but built successfully in the past)

3depict failed to build on several architectures where mathgl 2 was not
yet available [1]. Please add an explicit
  Build-Depends: libmgl-dev (= 2)
to clarify this and avoid such problems e.g. for backports.

[1] https://buildd.debian.org/status/package.php?p=3depict


Andreas
---End Message---
---BeginMessage---
Source: 3depict
Source-Version: 0.0.15-3

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

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

Debian distribution maintenance software
pp.
D Haley my...@gmx.com (supplier of updated 3depict 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 12 Feb 2014 22:14:51 +0100
Source: 3depict
Binary: 3depict
Architecture: source amd64
Version: 0.0.15-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: D Haley my...@gmx.com
Description: 
 3depict- visualisation and analysis for single valued point data
Closes: 737284
Changes: 
 3depict (0.0.15-3) unstable; urgency=medium
 .
   * Adjust dependencies to force mgl=2 (Closes: #737284)
Checksums-Sha1: 
 382cbcce3fbe5b67d0915a78096262c49e397140 2100 3depict_0.0.15-3.dsc
 9f616d036bddccbff9459e3e67956d8f084472ed 6516 3depict_0.0.15-3.debian.tar.xz
 8dd2ae5f9d6c39a22587bceba4af7c17c6e0545d 5225818 3depict_0.0.15-3_amd64.deb
Checksums-Sha256: 
 3f5cd13de5bf89ea7fdf2a0f75504ace730294d92b7ea8e77b1200d11e1ef5af 2100 
3depict_0.0.15-3.dsc
 58a27eef6002778fa3b188b2dc703fecd9040c59a3364249927cbe187de9ba6d 6516 
3depict_0.0.15-3.debian.tar.xz
 39561f09f72fc53aa738d397f387d1b530516a38f53f713eaf20cc75ac53e243 5225818 
3depict_0.0.15-3_amd64.deb
Files: 
 d534f6e5045a38720b96e54233fbbbfe 2100 science optional 3depict_0.0.15-3.dsc
 df0ef50d19d824a69d6df6f4418fab82 6516 science optional 
3depict_0.0.15-3.debian.tar.xz
 026a5e2e08de527c272e073c6438fb55 5225818 science optional 
3depict_0.0.15-3_amd64.deb

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

iQIcBAEBCAAGBQJS/6FgAAoJEF+zP5NZ6e0IxMQQAKxDpsQS2XJ9a/5iks7hhvNE
a7f91yEgeYw2pesirhdjY2lCBooaG60sC83w1Hp2fzJUhtPmsVVM0djKmfe+o4RN
f5a4Cc+IHU8dGZz5KWAmVJcWy70LDskkIhpjjMgvpZM3HU6DxisgVlIcNnDOYHbb
pzOeF2PyCuH+OFAfH8kD2JpNt6sOZBuNrEYoI1y1d1Kf3TjCgs2sD+s8PTGB05+n
LsrbjCEkhqjHbaCgE/52wf77YFWFoexWLtfgNkXZA0wkH4CVwQ2kdByV3orX4hGf
cM7esf0cUcpe8mADLbex9oRCUSEF8T0BpbyttBWysmi1fwnviBbDr6N9uc26jpJB
qCZj9iHucUT9JCKwFOtoJh9NsX6ZqxZBACX8SvhWOLtVtbh08A5WowlluLekit2/
L/5fkU4TQ7mVNoD66/Quqlp+5rCxz4caBux2Dzol6SLE559q0CvdGIg0Tq7efHUV
TT5dyTq9ggK6wxI4LY8H9MXlSSfIo93qgb2t63guyyMfRrzUD2mRbLQYNm1Jm19h
6Lon72Kn1PS8Gg1HvH8pH2z4zg8NCRrp2dhTsgJSfv9kwN5lpcCRcXc0c2mkXR+X
+oVwWB39Dfj2ZN9VpKXzHVLrwlPgFPid1cjLu/oKgeVm/ILXhmFtPiLizXu3PUK8
4TKlEh78TMc3FKD/lRYJ
=It7c
-END PGP SIGNATUREEnd Message---


Bug#739077: python-werkzeug: FTBFS: testsuite failure with UnicodeEncodeError

2014-02-15 Thread Daniel Schepler
Source: python-werkzeug
Version: 0.9.4+dfsg-1.1
Severity: serious

From my pbuilder build log:

...
test_responder (werkzeug.testsuite.wsgi.WSGIUtilsTestCase) ... ok
test_shared_data_middleware (werkzeug.testsuite.wsgi.WSGIUtilsTestCase) ... 
ERROR
test_shareddatamiddleware_get_file_loader 
(werkzeug.testsuite.wsgi.WSGIUtilsTestCase) ... ok

==
ERROR: test_shared_data_middleware (werkzeug.testsuite.wsgi.WSGIUtilsTestCase)
--
Traceback (most recent call last):
  File /tmp/buildd/python-werkzeug-0.9.4+dfsg/werkzeug/testsuite/wsgi.py, 
line 47, in test_shared_data_middleware
app_iter, status, headers = run_wsgi_app(app, create_environ(p))
  File /tmp/buildd/python-werkzeug-0.9.4+dfsg/werkzeug/test.py, line 854, in 
run_wsgi_app
app_iter = app(environ, start_response)
  File /tmp/buildd/python-werkzeug-0.9.4+dfsg/werkzeug/wsgi.py, line 558, in 
__call__
cleaned_path = cleaned_path.encode(sys.getfilesystemencoding())
UnicodeEncodeError: 'ascii' codec can't encode characters in position 5-7: 
ordinal not in range(128)

--
Ran 332 tests in 3.351s

FAILED (errors=1)
E: pybuild pybuild:256: test: plugin distutils failed with: exit code=1: 
python2.7 setup.py test 
dh_auto_test: pybuild --test -i python{version} -p 2.7 --dir . returned exit 
code 13
+ kill 7736
make[1]: *** [override_dh_auto_test] Error 13
make[1]: Leaving directory `/tmp/buildd/python-werkzeug-0.9.4+dfsg'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Bug#739078: xpra: recommends contrib package python-pyopencl

2014-02-15 Thread Jonas Smedegaard
Package: xpra
Version: 0.11.3+dfsg-1
Severity: serious
Justification: Policy 2.2.1

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

As subject says, xpra recommends contrib package python-pyopencl.

xpra should either only suggest python-pyopencl, or itself be moved to
contrib.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQF8BAEBCgBmBQJS/6bnXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3NjQ4ODQwMTIyRTJDNTBFQzUxRDQwRTI0
RUMxQjcyMjM3NEY5QkQ2AAoJEE7BtyI3T5vWvEkIALOVz/H8Yq2upvdWl6f7G1Ue
Gp5Hco1yL8tBUlyGdFqUNEp9iFaLvQunZWCnUQWFmVuED58kDAG/98AiGjMe2HN4
jhjcS/OI1YMgsBc+Szv5STK+vkZ3YuMc3XiKlvsPyvI6J6fqxC79AWssulvBg06f
M50nl+zwcFQA8bKeKj6qPMS87k9lD0tFxdIw7ITzt8+QVekBt+8aBB/3ga4RreKR
FA938jMci634SxJ5SK7xCtYmQf8VZmWGqke5Ls1QD9iPPD1ulnjDzBqexkqxnNlr
NNxkXtWlpB6zw2CtLU285WYUTx92f80/z98ELCTNpaGvlhpN34oHhevhiIyI5+Y=
=ELo8
-END PGP SIGNATURE-


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



Processed: your mail

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

 severity 739031 grave
Bug #739031 [dict-freedict-eng-rus] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Severity set to 'grave' from 'serious'
 thanks
Stopping processing here.

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

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

 reassign 738973 freedict
Bug #738973 [dict-freedict-nld-deu] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Bug reassigned from package 'dict-freedict-nld-deu' to 'freedict'.
No longer marked as found in versions freedict/2014.02.02-1.
Ignoring request to alter fixed versions of bug #738973 to the same values 
previously set
 reassign 739031 freedict
Bug #739031 [dict-freedict-eng-rus] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Bug reassigned from package 'dict-freedict-eng-rus' to 'freedict'.
No longer marked as found in versions freedict/2014.02.02-1.
Ignoring request to alter fixed versions of bug #739031 to the same values 
previously set
 reassign 738881 freedict
Bug #738881 [dict-freedict-deu-eng] [dict-freedict-deu-eng] invoke-rc.d: 
unknown initscript, /etc/init.d/dictd not found.
Bug reassigned from package 'dict-freedict-deu-eng' to 'freedict'.
No longer marked as found in versions freedict/2014.02.02-1.
Ignoring request to alter fixed versions of bug #738881 to the same values 
previously set
 severity 738881 grave
Bug #738881 [freedict] [dict-freedict-deu-eng] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Severity set to 'grave' from 'serious'
 merge 738973 739031 738881
Bug #738973 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
Bug #738881 [freedict] [dict-freedict-deu-eng] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Bug #739031 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
Merged 738881 738973 739031

End of message, stopping processing here.

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


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



Processed: Re: [PATCH] init trustdb before trying to clear it

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 critical
Bug #735363 [gnupg] gnupg: Fatal error/non-zero exit code returned when 
--trust-model=always used
Severity set to 'critical' from 'important'

-- 
735363: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735363
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: numptyphysics: FTBFS with latest version of box2d 2.3.0

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 serious
Bug #735879 [numptyphysics] numptyphysics: FTBFS with latest version of box2d 
2.3.0
Severity set to 'serious' from 'important'
 tags -1 patch
Bug #735879 [numptyphysics] numptyphysics: FTBFS with latest version of box2d 
2.3.0
Added tag(s) patch.

-- 
735879: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735879
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#708450: PATCH for FTBFS due to g_type_init

2014-02-15 Thread Andreas Cadhalpun

Control: tags -1 patch

Hi,

I found a fix for this FTBFS, which is due to g_type_init being 
deprecated after glib 2.36.


Please consider applying the patch.

Best regards,
Andreas
--- a/src/application-service.c
+++ b/src/application-service.c
@@ -52,7 +52,10 @@
 int
 main (int argc, char ** argv)
 {
+#if GLIB_VERSION_CUR_STABLE  G_ENCODE_VERSION(2, 36)
+	// g_type_init is deprecated after 2.36
 	g_type_init();
+#endif
 
 	/* Bring us up as a basic indicator service */
 	service = indicator_service_new_version(INDICATOR_APPLICATION_DBUS_ADDR, INDICATOR_APPLICATION_SERVICE_VERSION);


Processed: Bug#708450: PATCH for FTBFS due to g_type_init

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 patch
Bug #708450 [src:indicator-application] indicator-application: FTBFS: 
application-service.c:55:2: error: 'g_type_init' is deprecated (declared at 
/usr/include/glib-2.0/gobject/gtype.h:669) [-Werror=deprecated-declarations]
Added tag(s) patch.

-- 
708450: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=708450
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#737366: marked as done (transmission unconditionally build-depends on libsystemd-daemon-dev which is linux only)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 18:50:45 +
with message-id e1wekk5-000149...@franck.debian.org
and subject line Bug#737366: fixed in transmission 2.82-1.1
has caused the Debian Bug report #737366,
regarding transmission unconditionally build-depends on libsystemd-daemon-dev 
which is linux only
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.)


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

Package: transmission
Version: 2.82-1
Severity: serious
Tags: patch

transmission unconditionally build-depends on libsystemd-daemon-dev 
which is only available on linux.


The attatched patch adjusts debian/control and debian/rules to make the 
systemd stuff linux only. I have tested it builds successfully on i386 
and kfreebsd-amd64 (in a moderately dirty development environment) and 
that the systemd parameters are passed to dh on linux and not on 
kfreebsd. I have not tested it beyond that.


I have no immediate intent to NMU, I may change my mind on that later 
(If I decide to NMU I will do some further testing first but honestly 
I'd rather the upload was done by someone more familiar with the package).



diff -Nru transmission-2.82/debian/changelog transmission-2.82/debian/changelog
--- transmission-2.82/debian/changelog  2013-09-15 00:15:07.0 +0100
+++ transmission-2.82/debian/changelog  2013-12-08 01:05:49.0 +
@@ -1,3 +1,10 @@
+transmission (2.82-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Make systemd stuff linux only.
+
+ -- root root@debian-kfbsd-amd64  Sun, 08 Dec 2013 01:05:01 +
+
 transmission (2.82-1) unstable; urgency=low
 
   * [5b6dca28] Imported Upstream version 2.82
diff -Nru transmission-2.82/debian/control transmission-2.82/debian/control
--- transmission-2.82/debian/control2013-09-14 23:54:56.0 +0100
+++ transmission-2.82/debian/control2013-12-08 01:13:34.0 +
@@ -2,14 +2,14 @@
 Section: net
 Priority: optional
 Maintainer: Leo Costela cost...@debian.org
-Build-Depends: debhelper (= 8), autotools-dev, dh-systemd,
+Build-Depends: debhelper (= 8), autotools-dev, dh-systemd [linux-any],
  libgtk-3-dev, libevent-dev (= 2.0),
  libglib2.0-dev, libnotify-dev (= 0.7), libssl-dev, zlib1g-dev,
  libcurl4-gnutls-dev | libcurl4-dev | libcurl-dev, 
  intltool (= 0.40), 
  qt5-qmake, qtbase5-dev, qttools5-dev-tools, qt5-default,
  libminiupnpc-dev, libnatpmp-dev (= 20110808),
- libsystemd-daemon-dev,
+ libsystemd-daemon-dev [linux-any],
 # buildflags.mk
  dpkg-dev (= 1.16.1~),
 # libcanberra-gtk-dev
diff -Nru transmission-2.82/debian/rules transmission-2.82/debian/rules
--- transmission-2.82/debian/rules  2013-07-27 20:34:53.0 +0100
+++ transmission-2.82/debian/rules  2013-12-08 01:44:49.0 +
@@ -8,8 +8,16 @@
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk
 
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+
+DH_EXTRA_ARGS := --with autotools-dev
+
+ifeq ($(DEB_HOST_ARCH_OS),linux)
+  DH_EXTRA_ARGS += --with systemd
+endif
+
 %:
-   dh $@ --with autotools-dev --with systemd
+   dh $@ $(DH_EXTRA_ARGS)
 
 override_dh_auto_configure:
dh_auto_configure -- \
---End Message---
---BeginMessage---
Source: transmission
Source-Version: 2.82-1.1

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

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

Debian distribution maintenance software
pp.
Boris Pek tehn...@debian.org (supplier of updated transmission 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 22:19:08 +0400
Source: transmission
Binary: transmission transmission-common transmission-dbg transmission-cli 
transmission-gtk transmission-qt transmission-daemon
Architecture: source all i386
Version: 2.82-1.1
Distribution: unstable
Urgency: medium
Maintainer: Leo Costela cost...@debian.org
Changed-By: Boris Pek tehn...@debian.org
Description: 
 transmission - lightweight BitTorrent client
 transmission-cli - lightweight BitTorrent 

Processed: Bug#707409: libdbusmenu: fix FTBFS with new upstream version (with support for valac 0.22)

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 patch
Bug #707409 [src:libdbusmenu] libdbusmenu: FTBFS: 
Dbusmenu-0.4.gir:158.11-158.32: error: expected start element of `parameter'
Added tag(s) patch.

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


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



Processed: Re: [Pkg-mozext-maintainers] Bug#739023:

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 grave
Bug #739023 [xul-ext-greasemonkey] xul-ext-greasemonkey: Broken with iceweasel 
24 from stable-security
Severity set to 'grave' from 'important'

-- 
739023: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739023
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#724844: bind9: Missing dns/rrl.h

2014-02-15 Thread Jim Popovitch
Is there someone who can contact LaMont to make sure he is OK?


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



Bug#732652: testing changed Icedove package

2014-02-15 Thread Ximin Luo
On 14/02/14 10:09, Carsten Schoenert wrote:
 Hello Ximin,
 
 On Wed, Feb 12, 2014 at 04:00:47PM +, Ximin Luo wrote:
 All extensions are from the Debian repos. Actually I have disabled
 everything except moz-g-k and the bug is still present. I'm not sure
 how another extension could interfere with where icedove loads its
 libs from.
 
 O.k. just want to be sure that no other installed software will causes
 some trouble.
 
 I repeat, setting LD_LIBRARY_PATH=/usr/lib/icedove makes things work.
 Perhaps you just forgot a -Wl,rpath during the build process?
 
 Mozilla has changed the starting wrapper for Thunderbird in version 14
 or so. They use some kind of intelligent mechanism to detect the used
 librarys and set a LD_LIBRARY_PATH if needed.
 But this covers just a included directory 'plugins/' and not
 /usr/lib/icedove.
 

(I assume 14 is a typo, you meant 24?)

Perhaps a better fix would be to tweak the intelligent mechanism to be aware 
of /usr/lib/icedove, then. I can understand why upstream doesn't look here, 
since icedove is a Debian-specific name. This seems to me to be a better fix 
than to hard-code the path by -Wl,rpath, which AFAICS wasn't done before either 
(yet things still worked).

 So you propably right with the linker flag '-Wl,rpath. I rebuild
 yesterday the current version 24.3.0 with this additional declaration to
 LDFLAGS.
 I uploaded the packages with this little change to
 
   http://openmct.org/misc/icedove24-test/
 

Thanks - could I ask you to sign the changes file so I can verify what I'm 
installing?

 I checked the builded binary 'icedove' with readelf. The binarys now
 uses RUNPATH.
 
 (pbuilder)root@jessie:~/icedove-24.3.0/debian/tmp/usr/lib/icedove# readelf 
 --dynamic icedove | grep PATH
  0x001d (RUNPATH)Library runpath:  [/usr/lib/icedove]
 
 So I'd like to ask you if you please can test once again the Icedove
 package with mozilla-gnome-keyring?
 Unfortunately I never have used m-g-k and I'm having currently not much
 time and testing installations to play with m-g-k. I think you know your
 package much better then me and will find much quicker if it works
 correctly with this changes while the build process.
 

This is an issue with icedove and not m-g-k though. I can only test, but I 
cannot attempt to fix it, since I'm not familiar with the icedove build system. 
You don't need to know m-g-k - it just helps you to verify that the bug is 
fixed, by confirming the absence of the failed to load [..] .so error 
message. You don't need to use m-g-k at all, you don't need to change any 
settings.

 Here are the messages from icedove console:

 Could not read chrome manifest 
 'file:///usr/lib/icedove/components/components.manifest'.
 
 This should be also fixed in the packages from above. We have forgotten
 to change the install declarations for this directory. Mozilla has added
 the manifest file between version 17 and 24.
 
 Failed to load native module at path 
 '/usr/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}/{6f9d85e0-794d-11dd-ad8b-0800200c9a66}/platform/Linux_x86_64-gcc3/components/libgnomekeyring-icedove.so':
  (80004005) libldif60.so: cannot open shared object file: No such file or 
 directory
 Could not read chrome manifest 
 'file:///usr/lib/icedove/extensions/%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D/chrome.manifest'.
 While creating services from category 'profile-after-change', could not 
 create service for entry 'Disk Space Watcher Service', contract ID 
 '@mozilla.org/toolkit/disk-space-watcher;1'

 Feel free to install xul-ext-gnome-keyring and play with it yourself.
 
 Thanks for your interaction.
 

-- 
GPG: 4096R/1318EFAC5FBBDBCE
git://github.com/infinity0/pubkeys.git



signature.asc
Description: OpenPGP digital signature


Bug#739107: python-fitbit: fails to upgrade from 'testing' - trying to overwrite /usr/share/doc-base/python3-fitbitscraper

2014-02-15 Thread Andreas Beckmann
Package: python-fitbit
Version: 0.0.3-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Selecting previously unselected package python-fitbit.
  Preparing to unpack .../python-fitbit_0.0.3-1_all.deb ...
  Unpacking python-fitbit (0.0.3-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb (--unpack):
   trying to overwrite '/usr/share/doc-base/python3-fitbitscraper', which is 
also in package python3-fitbitscraper 0.1-1
  Processing triggers for mime-support (3.54) ...
  Errors were encountered while processing:
   /var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb


cheers,

Andreas


python3-fitbitscraper=0.1-1_python-fitbit=0.0.3-1.log.gz
Description: GNU Zip compressed data


Bug#738392: proofgeneral: FTBFS: Latex errors

2014-02-15 Thread Hendrik Tews
Hi,

Hideki Yamane writes:

   Also, I'll upload it to 10-delayed queue. If you don't want it, please
   tell me.

thanks a lot for helping me out here!

Bye,

Hendrik


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



Bug#731860: marked as done (libtar: CVE-2013-4420: directory traversal when extracting archives)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 21:20:56 +
with message-id e1wemfq-00029u...@franck.debian.org
and subject line Bug#731860: fixed in libtar 1.2.20-2
has caused the Debian Bug report #731860,
regarding libtar: CVE-2013-4420: directory traversal when extracting archives
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.)


-- 
731860: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731860
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libtar
Severity: grave
Tags: security

Hi,
the following vulnerability was published for libtar.

CVE-2013-4420[0]:
tar_extract_glob and tar_extract_all path prefix directory traversal

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities  Exposures) id in your changelog entry.

For further information see:

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

Attached is a proposed patch that makes libtar work similarly to tar.

Cheers,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net
Index: libtar-1.2.16/lib/decode.c
===
--- libtar-1.2.16.orig/lib/decode.c	2013-12-09 14:11:03.212344872 +0100
+++ libtar-1.2.16/lib/decode.c	2013-12-09 14:49:19.865470471 +0100
@@ -21,24 +21,54 @@
 # include string.h
 #endif
 
+char *
+safer_name_suffix (char const *file_name)
+{
+	char const *p, *t;
+	p = t = file_name;
+	while (*p)
+	{
+		if (p[0] == '.'  p[0] == p[1]  p[2] == '/')
+		{
+			p += 3;
+			t = p;
+		}
+		/* advance pointer past the next slash */
+		while (*p  (p++)[0] != '/');
+	}
+
+	if (!*t)
+	{
+		t = .;
+	}
+
+	if (t != file_name)
+	{
+		/* TODO: warn somehow that the path was modified */
+	}
+	return (char*)t;
+}
 
 /* determine full path name */
 char *
 th_get_pathname(TAR *t)
 {
 	static char filename[MAXPATHLEN];
+	char *safer_name;
 
 	if (t-th_buf.gnu_longname)
-		return t-th_buf.gnu_longname;
+		return safer_name_suffix(t-th_buf.gnu_longname);
+
+	safer_name = safer_name_suffix(t-th_buf.name);
 
 	if (t-th_buf.prefix[0] != '\0')
 	{
 		snprintf(filename, sizeof(filename), %.155s/%.100s,
-			 t-th_buf.prefix, t-th_buf.name);
+			 t-th_buf.prefix, safer_name);
 		return filename;
 	}
 
-	snprintf(filename, sizeof(filename), %.100s, t-th_buf.name);
+	snprintf(filename, sizeof(filename), %.100s, safer_name);
 	return filename;
 }
 
Index: libtar-1.2.16/lib/extract.c
===
--- libtar-1.2.16.orig/lib/extract.c	2013-12-09 14:11:03.212344872 +0100
+++ libtar-1.2.16/lib/extract.c	2013-12-09 14:39:22.248955358 +0100
@@ -305,7 +305,7 @@ tar_extract_hardlink(TAR * t, char *real
 		linktgt = lnp[strlen(lnp) + 1];
 	}
 	else
-		linktgt = th_get_linkname(t);
+		linktgt = safer_name_suffix(th_get_linkname(t));
 
 #ifdef DEBUG
 	printf(  == extracting: %s (link to %s)\n, filename, linktgt);
@@ -343,9 +343,9 @@ tar_extract_symlink(TAR *t, char *realna
 
 #ifdef DEBUG
 	printf(  == extracting: %s (symlink to %s)\n,
-	   filename, th_get_linkname(t));
+	   filename, safer_name_suffix(th_get_linkname(t)));
 #endif
-	if (symlink(th_get_linkname(t), filename) == -1)
+	if (symlink(safer_name_suffix(th_get_linkname(t)), filename) == -1)
 	{
 #ifdef DEBUG
 		perror(symlink());
Index: libtar-1.2.16/lib/internal.h
===
--- libtar-1.2.16.orig/lib/internal.h	2012-05-17 09:34:32.0 +0200
+++ libtar-1.2.16/lib/internal.h	2013-12-09 14:36:57.503866114 +0100
@@ -15,3 +15,4 @@
 
 #include libtar.h
 
+char* safer_name_suffix(char const*);
---End Message---
---BeginMessage---
Source: libtar
Source-Version: 1.2.20-2

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

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

Debian distribution maintenance software
pp.
Magnus Holmgren holmg...@debian.org (supplier of updated libtar 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 15 Feb 2014 21:49:37 +0100
Source: libtar

Bug#739107: [Debian-med-packaging] Bug#739107: python-fitbit: fails to upgrade from 'testing' - trying to overwrite /usr/share/doc-base/python3-fitbitscraper

2014-02-15 Thread Iain R. Learmonth
On 15/02/14 21:05, Andreas Beckmann wrote:
 Package: python-fitbit
 Version: 0.0.3-1
 Severity: serious
 User: debian...@lists.debian.org
 Usertags: piuparts
 
 Hi,
 
 during a test with piuparts I noticed your package fails to upgrade from
 'testing'.
 It installed fine in 'testing', then the upgrade to 'sid' fails
 because it tries to overwrite other packages files without declaring a
 Breaks+Replaces relation.
 
 See policy 7.6 at
 http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces
 
From the attached log (scroll to the bottom...):
 
   Selecting previously unselected package python-fitbit.
   Preparing to unpack .../python-fitbit_0.0.3-1_all.deb ...
   Unpacking python-fitbit (0.0.3-1) ...
   dpkg: error processing archive 
 /var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb (--unpack):
trying to overwrite '/usr/share/doc-base/python3-fitbitscraper', which is 
 also in package python3-fitbitscraper 0.1-1
   Processing triggers for mime-support (3.54) ...
   Errors were encountered while processing:
/var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb
 

I appear to have copied and pasted the doc-base file from another
package and not changed all the fields.

Whoops. Fixing now.

Iain.

-- 
urn:x-human:Iain R. Learmonth
http://iain.learmonth.me/
mailto:i...@fsfe.org
xmpp:i...@jabber.fsfe.org
tel:+447875886930

GPG Fingerprint: 1F72 607C 5FF2 CCD5 3F01 600D 56FF 9EA4 E984 6C49
Please verify out-of-band before trusting with sensitive information.

[[[ To any GCHQ or other security service agents reading my email: ]]]
[[[ Please consider if any professional body code of conduct to]]]
[[[ which you subscribe requires you to follow Snowden's example.  ]]]
[[[ Your professional membership, chartered or incorporated status ]]]
[[[ may be at risk.]]]



signature.asc
Description: OpenPGP digital signature


Bug#739111: libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-

2014-02-15 Thread Sven Joachim
Package: libsigc++-2.0-dev
Version: 2.2.11-2
Severity: grave

Your package depends on libsigc++-2.0- (= 2.2.11-2) which is not
available.  The following message from the build log gives a hint:

,
| dpkg-gencontrol: warning: Depends field of package libsigc++-2.0-dev: unknown 
substitution variable ${Soname}
`


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

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


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



Bug#739111: libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-

2014-02-15 Thread Michael Biebl
Am 15.02.2014 22:46, schrieb Sven Joachim:
 Package: libsigc++-2.0-dev
 Version: 2.2.11-2
 Severity: grave
 
 Your package depends on libsigc++-2.0- (= 2.2.11-2) which is not
 available.  The following message from the build log gives a hint:
 
 ,
 | dpkg-gencontrol: warning: Depends field of package libsigc++-2.0-dev: 
 unknown substitution variable ${Soname}
 `
 
Depends: libsigc++-2.0-${Soname} (= ${binary:Version})

that doesn't work of course, after having dropped the ${Soname}
substitution from debian/rules.

The symbols file looks broken as well:

libsigc-2.0.so.0 libsigc++-2.0-0c2a (= 2.0.2)

Why was the version hard-coded here instead of using #MINVER#?

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#739118: blender: FTBFS on s390x (and other non-official 64-bit architectures)

2014-02-15 Thread Aurelien Jarno
Package: blender
Version: 2.69-3
Severity: serious
Tags: upstream patch
Justification: fails to build from source (but built successfully in the past)

Since the default gcc has been upgraded to gcc-4.8, blender fails to
build on s390x, and on a few non-official architectures like ppc64 and
sparc64. This is due to a hardcoded list of architectures with 64-bit
pointers which has to be updated. The patch below fixes the issue:

--- blender-2.69.orig/intern/atomic/atomic_ops.h
+++ blender-2.69/intern/atomic/atomic_ops.h
@@ -61,7 +61,7 @@
 #  endif
 #endif
 
-#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__)
+#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__) || 
defined(__s390x__) || defined(__powerpc64__) || (defined(__sparc__)  
defined(__arch64__))
 #  define LG_SIZEOF_PTR 3
 #  define LG_SIZEOF_INT 2
 #else

On the other hand, it might be a good idea to actually detect the size
of a pointer instead of having an hardcoded list. The following code
can be used for that:

| #include stdint.h
| #include limits.h
| 
| #if (UINTPTR_MAX == UINT64_MAX)
| #  define LG_SIZEOF_PTR 3
| #elif (UINTPTR_MAX == UINT32_MAX)
| #  define LG_SIZEOF_PTR 2
| #else
| #  error Can not determine size of a pointer
| #endif
| 
| #if (UINT_MAX == UINT64_MAX)
| #  define LG_SIZEOF_INT 3
| #elif (UINT_MAX == UINT32_MAX)
| #  define LG_SIZEOF_INT 2
| #else
| #  error Can not determine size of a int
| #endif

Or it can probably also be done directly with cmake.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: s390x

Kernel: Linux 3.2.0-4-s390x (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.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#739117: gpxviewer: Depends from python-osmgpsmap which is not in Debian any more

2014-02-15 Thread Andreas Tille
Package: gpxviewer
Severity: grave
Tags: upstream
Justification: renders package unusable

Hi,

gpxviewer depends from python-osmgpsmap but this package is not
available any more since it is not created any more from the source
osm-gps-map version = 1.0.

Kind regards

Andreas.

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

Kernel: Linux 2.6.36-xenU-4814-i386 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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#739111: libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-

2014-02-15 Thread Bálint Réczey
2014-02-15 23:01 GMT+01:00 Michael Biebl bi...@debian.org:
 Am 15.02.2014 22:46, schrieb Sven Joachim:
 Package: libsigc++-2.0-dev
 Version: 2.2.11-2
 Severity: grave

 Your package depends on libsigc++-2.0- (= 2.2.11-2) which is not
 available.  The following message from the build log gives a hint:

 ,
 | dpkg-gencontrol: warning: Depends field of package libsigc++-2.0-dev: 
 unknown substitution variable ${Soname}
 `

 Depends: libsigc++-2.0-${Soname} (= ${binary:Version})

 that doesn't work of course, after having dropped the ${Soname}
 substitution from debian/rules.

 The symbols file looks broken as well:

 libsigc-2.0.so.0 libsigc++-2.0-0c2a (= 2.0.2)

 Why was the version hard-coded here instead of using #MINVER#?
I wanted to stay as close as possible to the meaning of the original
shlibs file:
dh_makeshlibs -a -V'libsigc++-2.0-$(SONAME) (= 2.0.2)'

I'm in the middle of preparing the fix, I'll upload it in half an hour.

Thanks,
Balint

 --
 Why is it that all of the instruments seeking intelligent life in the
 universe are pointed away from Earth?



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



Bug#739111: libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-

2014-02-15 Thread Michael Biebl
Am 15.02.2014 23:23, schrieb Bálint Réczey:
 2014-02-15 23:01 GMT+01:00 Michael Biebl bi...@debian.org:
 The symbols file looks broken as well:

 libsigc-2.0.so.0 libsigc++-2.0-0c2a (= 2.0.2)

 Why was the version hard-coded here instead of using #MINVER#?
 I wanted to stay as close as possible to the meaning of the original
 shlibs file:
 dh_makeshlibs -a -V'libsigc++-2.0-$(SONAME) (= 2.0.2)'
 
 I'm in the middle of preparing the fix, I'll upload it in half an hour.

Sorry if that may come of as rude:
Have you maintained library packages before? Do you know how symbols
files work and how they are supposed to be used?

Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#739121: creepy: Depends from python-osmgpsmap which is not in Debian any more

2014-02-15 Thread Andreas Tille
Package: creepy
Severity: grave
Tags: upstream
Justification: renders package unusable

Hi,

creepy depends from python-osmgpsmap but this package is not available
any more since it is not created any more from the source osm-gps-map
version = 1.0.

I also realised that creepy is lagging a lot behind the latest upstream
version and the watch file is broken.  I'd recommend upgrading the package
and maintaining it in Debian GIS team.

Kind regards

 Andreas.

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

Kernel: Linux 2.6.36-xenU-4814-i386 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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#733071: NMU coming

2014-02-15 Thread Jay Berkenbilt
I'm going to upload an NMU to break the dependency on libxerces-c2-dev
so this doesn't prevent my removal request from going through.  There
are two additional FTBFS problems that are also addressed by my NMU.
Since this package has not been uploaded for a while and is not in
testing, and since this upload fixes two RC bugs, I'm going to upload
the NMU immediately.  The debdiff is attached.  All the changes except
for the change to debian/control come from upstream svn.

diff -Nru clam-1.4.0/debian/changelog clam-1.4.0/debian/changelog
--- clam-1.4.0/debian/changelog	2012-05-29 00:48:54.0 -0400
+++ clam-1.4.0/debian/changelog	2014-02-15 17:27:09.0 -0500
@@ -1,3 +1,12 @@
+clam (1.4.0-5.2) unstable; urgency=low
+
+  * Non maintainer upload
+  * Fix FTBFS: TIME_UTC compilation error (Closes: #701257)
+  * Fix FTBFS: gcc 4.8 template expansion error
+  * Support Xerces C 3 (Closes: #733071)
+
+ -- Jay Berkenbilt q...@debian.org  Sat, 15 Feb 2014 17:27:09 -0500
+
 clam (1.4.0-5.1) unstable; urgency=low
 
   * Non maintainer upload
diff -Nru clam-1.4.0/debian/control clam-1.4.0/debian/control
--- clam-1.4.0/debian/control	2011-05-16 19:58:16.0 -0400
+++ clam-1.4.0/debian/control	2014-02-15 17:24:45.0 -0500
@@ -7,7 +7,7 @@
 	libasound2-dev,
 	libjack-dev,
 	libfftw3-dev,
-	libxerces-c2-dev,
+	libxerces-c-dev,
 	ladspa-sdk,
 	libogg-dev,
 	libsndfile1-dev,
diff -Nru clam-1.4.0/debian/patches/gcc48.patch clam-1.4.0/debian/patches/gcc48.patch
--- clam-1.4.0/debian/patches/gcc48.patch	1969-12-31 19:00:00.0 -0500
+++ clam-1.4.0/debian/patches/gcc48.patch	2014-02-15 17:32:04.0 -0500
@@ -0,0 +1,16 @@
+Description: support Xerces-c 3
+Origin: upstream
+svn diff -c15306
+
+Index: clam-1.4.0/src/Flow/Ports/OutPort.hxx
+===
+--- clam-1.4.0.orig/src/Flow/Ports/OutPort.hxx	2014-02-15 16:36:01.654895560 -0500
 clam-1.4.0/src/Flow/Ports/OutPort.hxx	2014-02-15 17:15:31.955139980 -0500
+@@ -28,6 +28,7 @@
+ #include string
+ #include InPort.hxx
+ #include InPortPublisher.hxx
++#include TypeInfo.hxx
+ 
+ namespace CLAM
+ {
diff -Nru clam-1.4.0/debian/patches/series clam-1.4.0/debian/patches/series
--- clam-1.4.0/debian/patches/series	2011-05-16 19:58:16.0 -0400
+++ clam-1.4.0/debian/patches/series	2014-02-15 17:27:48.0 -0500
@@ -1 +1,4 @@
 ftbfs_NULL
+gcc48.patch
+time_utc.patch
+xerces-c-3.patch
diff -Nru clam-1.4.0/debian/patches/time_utc.patch clam-1.4.0/debian/patches/time_utc.patch
--- clam-1.4.0/debian/patches/time_utc.patch	1969-12-31 19:00:00.0 -0500
+++ clam-1.4.0/debian/patches/time_utc.patch	2014-02-15 17:31:08.0 -0500
@@ -0,0 +1,21 @@
+Description: fix FTBFS with TIME_UTC difinition
+Origin: upstream
+svn diff -r 15397:15398
+Bug-Debian: http://bugs.debian.org/701257
+
+Index: clam-1.4.0/src/System/Threads/xtime.hxx
+===
+--- clam-1.4.0.orig/src/System/Threads/xtime.hxx	2014-02-15 17:00:47.975907239 -0500
 clam-1.4.0/src/System/Threads/xtime.hxx	2014-02-15 17:02:27.892272416 -0500
+@@ -30,6 +30,11 @@
+ #endif
+ #include pthread.h
+ 
++// KLUDGE: C11 defines TIME_UTC as macro in time.h
++#ifdef TIME_UTC
++#undef TIME_UTC
++#endif
++
+ namespace CLAM
+ {
+ 
diff -Nru clam-1.4.0/debian/patches/xerces-c-3.patch clam-1.4.0/debian/patches/xerces-c-3.patch
--- clam-1.4.0/debian/patches/xerces-c-3.patch	1969-12-31 19:00:00.0 -0500
+++ clam-1.4.0/debian/patches/xerces-c-3.patch	2014-02-15 17:31:50.0 -0500
@@ -0,0 +1,64 @@
+Description: support Xerces-c 3
+Origin: upstream
+svn diff -c14272
+Bug-Debian: http://bugs.debian.org/733071
+
+Index: clam-1.4.0/src/Storage/XML/XercesDomWriter.cxx
+===
+--- clam-1.4.0.orig/src/Storage/XML/XercesDomWriter.cxx	2014-02-15 16:36:34.074990685 -0500
 clam-1.4.0/src/Storage/XML/XercesDomWriter.cxx	2014-02-15 17:00:40.499879918 -0500
+@@ -26,7 +26,8 @@
+ #include xercesc/dom/DOMImplementation.hpp
+ #include xercesc/dom/DOMImplementationLS.hpp
+ #include xercesc/dom/DOMImplementationRegistry.hpp
+-#include xercesc/dom/DOMWriter.hpp
++#include xercesc/dom/DOMLSSerializer.hpp
++#include xercesc/dom/DOMLSOutput.hpp
+ #include xercesc/framework/MemBufFormatTarget.hpp
+ #include string
+ #include sstream
+@@ -38,23 +39,30 @@
+ 		XercesInitializer::require();
+ 		const XMLCh * propertyCanonical = xercesc::XMLUni::fgDOMWRTCanonicalForm;
+ 		const XMLCh * propertyPrettyPrint = xercesc::XMLUni::fgDOMWRTFormatPrettyPrint;
+-		xercesc::DOMImplementation *impl = 
++		xercesc::DOMImplementationLS *impl = 
++			(xercesc::DOMImplementationLS*)
+ 			xercesc::DOMImplementationRegistry::getDOMImplementation(U(LS));
+-		xercesc::DOMWriter *xercesWriter = 
+-			((xercesc::DOMImplementationLS*)impl)-createDOMWriter();
++		xercesc::DOMLSSerializer *serializer = impl-createLSSerializer();
++		

Bug#739122: python-regex: FTBFS on s390x

2014-02-15 Thread Aurelien Jarno
Package: python-regex
Version: 0.1.20140120-1
Severity: serious
Tags: upstream patch
Justification: fails to build from source (but built successfully in the past)

python-regex fails to build from source on s390x due to failures in the
testsuite. The problem is that the flags properties internally uses an
uint32, but is declared as T_PYSSIZET, that is an int64 value. The patch
below fixes the problem.

--- python-regex-0.1.20140120.orig/Python2/_regex.c
+++ python-regex-0.1.20140120/Python2/_regex.c
@@ -17089,7 +17089,7 @@ static PyGetSetDef pattern_getset[] = {
 static PyMemberDef pattern_members[] = {
 {pattern, T_OBJECT, offsetof(PatternObject, pattern), READONLY,
   The pattern string from which the regex object was compiled.},
-{flags, T_PYSSIZET, offsetof(PatternObject, flags), READONLY,
+{flags, T_UINT, offsetof(PatternObject, flags), READONLY,
   The regex matching flags.},
 {groups, T_PYSSIZET, offsetof(PatternObject, public_group_count),
   READONLY, The number of capturing groups in the pattern.},
--- python-regex-0.1.20140120.orig/Python3/_regex.c
+++ python-regex-0.1.20140120/Python3/_regex.c
@@ -17082,7 +17082,7 @@ static PyGetSetDef pattern_getset[] = {
 static PyMemberDef pattern_members[] = {
 {pattern, T_OBJECT, offsetof(PatternObject, pattern), READONLY,
   The pattern string from which the regex object was compiled.},
-{flags, T_PYSSIZET, offsetof(PatternObject, flags), READONLY,
+{flags, T_UINT, offsetof(PatternObject, flags), READONLY,
   The regex matching flags.},
 {groups, T_PYSSIZET, offsetof(PatternObject, public_group_count),
   READONLY, The number of capturing groups in the pattern.},


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: s390x

Kernel: Linux 3.2.0-4-s390x (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.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#739111: libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-

2014-02-15 Thread Bálint Réczey
2014-02-15 23:31 GMT+01:00 Michael Biebl bi...@debian.org:
 Am 15.02.2014 23:23, schrieb Bálint Réczey:
 2014-02-15 23:01 GMT+01:00 Michael Biebl bi...@debian.org:
 The symbols file looks broken as well:

 libsigc-2.0.so.0 libsigc++-2.0-0c2a (= 2.0.2)

 Why was the version hard-coded here instead of using #MINVER#?
 I wanted to stay as close as possible to the meaning of the original
 shlibs file:
 dh_makeshlibs -a -V'libsigc++-2.0-$(SONAME) (= 2.0.2)'

 I'm in the middle of preparing the fix, I'll upload it in half an hour.

 Sorry if that may come of as rude:
 Have you maintained library packages before? Do you know how symbols
 files work and how they are supposed to be used?
It is somewhat rude, but I kind of deserved it. :-)
Yes, I maintain some libs and I think 2.0.2 was a wrong value
originally and I should not have kept it.
I have retrurned to #MINVER# and also fixed the broken dependency.
I misinterpreted the relevant policy part and I thought setting an
exact value instead of the template
was a valid option.

Thanks,
Balint


 Michael

 --
 Why is it that all of the instruments seeking intelligent life in the
 universe are pointed away from Earth?



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



Bug#738627: marked as done (missing copyright in debian/copyright)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:03:45 +
with message-id e1weogv-0007rf...@franck.debian.org
and subject line Bug#738627: fixed in docker.io 0.8.0+dfsg1-2
has caused the Debian Bug report #738627,
regarding missing copyright in debian/copyright
to be marked as done.

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

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


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

Package: docker.io
Severity: serious
User: alteh...@debian.org
Usertags: ftp
X-Debbugs-CC: ftpmas...@ftp-master.debian.org
thanks

Hi Paul,

the files pkg/mflag/* are under BSD-3 license and 
contrib/completion/zsh/_docker is BSD (I assume BSD-4, but as the 
license text is missing, I don't know).

So please add those to debian/copyright

Thanks!
  Thorsten
---End Message---
---BeginMessage---
Source: docker.io
Source-Version: 0.8.0+dfsg1-2

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

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

Debian distribution maintenance software
pp.
Tianon Gravi admwig...@gmail.com (supplier of updated docker.io 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 17:51:58 -0500
Source: docker.io
Binary: docker.io vim-syntax-docker
Architecture: source amd64 all
Version: 0.8.0+dfsg1-2
Distribution: unstable
Urgency: medium
Maintainer: Paul Tagliamonte paul...@debian.org
Changed-By: Tianon Gravi admwig...@gmail.com
Description: 
 docker.io  - Linux container runtime
 vim-syntax-docker - Docker container engine - Vim highlighting syntax files
Closes: 738627
Changes: 
 docker.io (0.8.0+dfsg1-2) unstable; urgency=medium
 .
   [ Tianon Gravi ]
   * Added more license notes to debian/copyright (Closes: #738627).
Checksums-Sha1: 
 c27a3a46ef4e86f60451495b1085a58435f118c4 2286 docker.io_0.8.0+dfsg1-2.dsc
 4553db1d25dc513e0980bf5e7898ef8ffa3059cd 9456 
docker.io_0.8.0+dfsg1-2.debian.tar.xz
 b363dcdf5727265e68ceef2b1f1ab91c641fbde8 3057064 
docker.io_0.8.0+dfsg1-2_amd64.deb
 ba1edb8aeaa316bbf688e58e46ffaa52a435c8ed 19324 
vim-syntax-docker_0.8.0+dfsg1-2_all.deb
Checksums-Sha256: 
 21b9d9b5543e3ea224381138626db1b1592577319095d1c330d024a7d2a4e316 2286 
docker.io_0.8.0+dfsg1-2.dsc
 a01a314ae69a3df9b23013fb12e414e011a0947bdb261a5167dbc421db63abae 9456 
docker.io_0.8.0+dfsg1-2.debian.tar.xz
 0f4242e26db6af43bddec35d3dab36ccf8d5c36f7d9368dd88f5dad7adb80e57 3057064 
docker.io_0.8.0+dfsg1-2_amd64.deb
 b69540d6bf7eb3ba18d56ff34e48239c8842e160d960e9bec8fdb37afb141033 19324 
vim-syntax-docker_0.8.0+dfsg1-2_all.deb
Files: 
 482c4b372fdcd24d131cd9f6afb299ba 2286 admin optional 
docker.io_0.8.0+dfsg1-2.dsc
 5093bdd0858e54ff119fe7cfbc2e169a 9456 admin optional 
docker.io_0.8.0+dfsg1-2.debian.tar.xz
 e2252258b0009434a4c12067eacc9ee7 3057064 admin optional 
docker.io_0.8.0+dfsg1-2_amd64.deb
 05538d8d0cd4474462ed326b9c069bd7 19324 admin optional 
vim-syntax-docker_0.8.0+dfsg1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS//AXAAoJEHtYWzCAfCqHrUEP/iPzF5sDEbXHa9R4ygXwslS8
pDzHCdL4gDrAwNYPwS3jN1ZztMnpoCfZcEZnC9ogIiRbgwNj7Z2LrKHWN7WsZ2PF
s9Jv1QLWlOUcbPgHcEXI98tkaHzjkAdw0Mliz1D5rJQ+5+3ca4yovfQtiLD60C4d
IK/NjTqNKfQfE7PK6IHewHSJNnSuhmE1wJDmtx2j0Kd9SQoYk5WqN/mLuHB+Ww15
OK93dknodsaWIie+avvyMPOMegz53QUxZZJoHvszh8RapWkK/okGFC8SxP6LfLTZ
or8/u0AG5yAtgTPaARUALN0Hm5JhucPzgtjfl/Jc2l5wasBUau+XlcxhiRviNvNY
eOmNpXLxOvi3k1o/kMxye4WgaWq84AOA5LqoCI67H3CRBTm4AQ1/K5AjMs/6UMtB
21i4jcdtC0JQ6FcLGhWVifFpDjiD59lA8Lm+uYF2ANAh8AAx1auhjlhQZ/ESzx+6
wFPZ4wCZv3mxsHPUwdKZMqPfpE3EJT6w0oGym0wHWNys243Ql544dSaV5WtZnV/2
TLckXXNO8QkNatMgEK5beO1/UtkTh8AM/sCdKqS8xmVkGDrUKdJCV6g9jIkXtH77
9K+4KjMRgssRZVGtycsiD/O3rqMTpU3NZXVpQXwjj8nprmzuZNxWrnZ1HCxMYgvP
En6XUnnkz5gnSWrXd/1q
=dKRF
-END PGP SIGNATUREEnd Message---


Bug#739111: marked as done (libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:04:09 +
with message-id e1weohj-0007vt...@franck.debian.org
and subject line Bug#739111: fixed in libsigc++-2.0 2.2.11-3
has caused the Debian Bug report #739111,
regarding libsigc++-2.0-dev: depends on unavailable package libsigc++-2.0-
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.)


-- 
739111: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739111
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libsigc++-2.0-dev
Version: 2.2.11-2
Severity: grave

Your package depends on libsigc++-2.0- (= 2.2.11-2) which is not
available.  The following message from the build log gives a hint:

,
| dpkg-gencontrol: warning: Depends field of package libsigc++-2.0-dev: unknown 
substitution variable ${Soname}
`


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

Kernel: Linux 3.13.3-nouveau (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---End Message---
---BeginMessage---
Source: libsigc++-2.0
Source-Version: 2.2.11-3

We believe that the bug you reported is fixed in the latest version of
libsigc++-2.0, which is due to be installed in the Debian FTP archive.

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

Debian distribution maintenance software
pp.
Balint Reczey bal...@balintreczey.hu (supplier of updated libsigc++-2.0 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 15 Feb 2014 22:53:04 +0100
Source: libsigc++-2.0
Binary: libsigc++-2.0-0c2a libsigc++-2.0-dev libsigc++-2.0-doc
Architecture: source amd64 all
Version: 2.2.11-3
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Balint Reczey bal...@balintreczey.hu
Description: 
 libsigc++-2.0-0c2a - type-safe Signal Framework for C++ - runtime
 libsigc++-2.0-dev - type-safe Signal Framework for C++ - development files
 libsigc++-2.0-doc - type-safe Signal Framework for C++ - reference 
documentation
Closes: 739111
Changes: 
 libsigc++-2.0 (2.2.11-3) unstable; urgency=low
 .
   * Fix libsigc++-2.0-dev's dependency on libsigc++-2.0-0c2a (Closes: #739111)
   * Return to using #MINVER# in symbols file
Checksums-Sha1: 
 95203714475ec25f1ebf239a4bda0ff34b176653 2216 libsigc++-2.0_2.2.11-3.dsc
 dc47594bb372a5a569992869caa9fae0ef089269 8020 
libsigc++-2.0_2.2.11-3.debian.tar.xz
 0d492cd956d6ff8e4d73ae9a0740eda683a36f64 42910 
libsigc++-2.0-0c2a_2.2.11-3_amd64.deb
 c57b4e26680ef4bbc5c6805fc34a64ea3ba67fcf 97724 
libsigc++-2.0-dev_2.2.11-3_amd64.deb
 9518d5e9503361a0238cb88cc2c4e7c5f7744a6f 2931204 
libsigc++-2.0-doc_2.2.11-3_all.deb
Checksums-Sha256: 
 081724b5946c3704bb2a80c5da42180fab494ef73033682c8c82a274a3b8e5fd 2216 
libsigc++-2.0_2.2.11-3.dsc
 cf768ce060a09316dba0ad660f9fc3312eb1b6b95d988cfb3bb870b556bc7c28 8020 
libsigc++-2.0_2.2.11-3.debian.tar.xz
 2b1cc4365262458b923780a3227fd7987152a3db9bc60580cdb8f4a70dadcf8d 42910 
libsigc++-2.0-0c2a_2.2.11-3_amd64.deb
 5a1ef2b1a542a24df02a7a28bc440f6420036264922f8aa2914b527142c43557 97724 
libsigc++-2.0-dev_2.2.11-3_amd64.deb
 9a1f849a62714b92ace4aeffd4c2241978af62c73a04b9aa3f24ca7b34711254 2931204 
libsigc++-2.0-doc_2.2.11-3_all.deb
Files: 
 ccf1a64c9e46b7caae12cd29c58c748d 2216 devel optional libsigc++-2.0_2.2.11-3.dsc
 f7fa65305f1d8ba3a83445b0c8ed65d4 8020 devel optional 
libsigc++-2.0_2.2.11-3.debian.tar.xz
 8bba5f95b4fcfe0827ce2bfc3b3db48e 42910 libs optional 
libsigc++-2.0-0c2a_2.2.11-3_amd64.deb
 06df3b41ff55715c92303a912b379ca8 97724 libdevel optional 
libsigc++-2.0-dev_2.2.11-3_amd64.deb
 1d47169fcf9a7bbff73cce8f3a957a68 2931204 doc optional 
libsigc++-2.0-doc_2.2.11-3_all.deb

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

iQIcBAEBCAAGBQJS/+oAAAoJEPZk0la0aRp93HgQALf/RnduNurs4OUkOEKlybaj
fnHxW5OnhVlGHyFb+l77xC5++gEbvrJTgmQj9dzQ1gqsEMuTAr1o/pyplCPBMGKd
tU/Kja9Nz9JW1oth4USW916m3WtwhkU10hZ5wGxczI6gMZluNCD8xhwYsiQvQcQY
GqnC863dc4cL+gZ/9ySh5bLR8Uahkq7d2EUFBJrksy65n5P5vqYr4zNigsUxZ02+

Bug#733071: marked as done (please build-depend on libxerces-c-dev instead of libxerces-c2-dev)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:03:31 +
with message-id e1weogh-0007mw...@franck.debian.org
and subject line Bug#733071: fixed in clam 1.4.0-5.2
has caused the Debian Bug report #733071,
regarding please build-depend on libxerces-c-dev instead of libxerces-c2-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.)


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

In preparation for requesting removal of xerces-c2 from sid (and
jessie), I am asking maintainers of packages that still have build
dependencies on libxerces-c2-dev to instead build depend on
libxerces-c-dev.  In most cases, no changes will be required.  There are
only five packages left in the archive that still depend on
libxerces-c2-dev that have not already been requested for removal.

-- 
Jay Berkenbilt q...@debian.org
---End Message---
---BeginMessage---
Source: clam
Source-Version: 1.4.0-5.2

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

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

Debian distribution maintenance software
pp.
Jay Berkenbilt q...@debian.org (supplier of updated clam 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 17:27:09 -0500
Source: clam
Binary: libclam-dev libclam1.4 libclam-doc
Architecture: source amd64 all
Version: 1.4.0-5.2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jay Berkenbilt q...@debian.org
Description: 
 libclam-dev - C++ Library for Audio and Music(development files)
 libclam-doc - C++ Library for Audio and Music (documentation)
 libclam1.4 - C++ Library for Audio and Music
Closes: 701257 733071
Changes: 
 clam (1.4.0-5.2) unstable; urgency=low
 .
   * Non maintainer upload
   * Fix FTBFS: TIME_UTC compilation error (Closes: #701257)
   * Fix FTBFS: gcc 4.8 template expansion error
   * Support Xerces C 3 (Closes: #733071)
Checksums-Sha1: 
 bc34d8c8aba4bd8d6919af2b22a2dd3647eda53b 2139 clam_1.4.0-5.2.dsc
 d58279c9a700b7c14ae6679c7a7a709c20a8da5a 4196 clam_1.4.0-5.2.debian.tar.xz
 c2b427c29c10b85c1f964f78529a4e30dcf30c77 303976 libclam-dev_1.4.0-5.2_amd64.deb
 fff74d4a4d33e876e13037b69245fa45c54832f8 1471746 libclam1.4_1.4.0-5.2_amd64.deb
 2176242234a031a6faa506cfcbeb963d32b4a510 322558 libclam-doc_1.4.0-5.2_all.deb
Checksums-Sha256: 
 0c5a7a63ddafdec1007310eb9f7d63a2a3800eaac4f7fba3e7b805a223878d5f 2139 
clam_1.4.0-5.2.dsc
 7865fe598d836f8543062220d08e203b8477352de497c465770c1f393f2cc69a 4196 
clam_1.4.0-5.2.debian.tar.xz
 27ea861c350a8e323fb6c18948b01f68c023cb9e4a6783654e85ff4108c1d04e 303976 
libclam-dev_1.4.0-5.2_amd64.deb
 d519c25addc9b2647cdd3887d512b0140f28d21576afb1bf593b398f23244e49 1471746 
libclam1.4_1.4.0-5.2_amd64.deb
 0115aac0cce7221d93737b24d4781e71d01b8908838b0af99ddfe707369c7ca6 322558 
libclam-doc_1.4.0-5.2_all.deb
Files: 
 96806700dad9dc2df8689ca316eb5567 2139 libs extra clam_1.4.0-5.2.dsc
 07efa90563ea10dc07555c6994bfa78f 4196 libs extra clam_1.4.0-5.2.debian.tar.xz
 65bf65dad63e1ac81cc30a2601048953 303976 libdevel extra 
libclam-dev_1.4.0-5.2_amd64.deb
 1598d567f83d633516432fa4b28bc476 1471746 libs extra 
libclam1.4_1.4.0-5.2_amd64.deb
 ee576f1b0f98a1b05c200a0fb1d75727 322558 doc extra libclam-doc_1.4.0-5.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS/+8GAAoJEIp10QmYASx+INEQAKOUflmeZjpNiXcPGk2EtTe7
VXMgEjAt7JyuJts5mGjB5hp9kEOdk+JNYe0jPwqOFr+9CTluj37iMU4hvMDbOPWv
XOIqRMSlFGOx6X1UOnnDNpFmB7SxcaN4caQp0VVrsEgC2bSJ1f0jr0eHQPQ2rQ6E
OL7FZ4VmojBN9ex87MjT20ePT6iorrZTq69DawcmOsLYupjJf6iO79ZRVdkSw2uq
GIS2674RAAXzpkZLMp1KzyRuuDXr/PJi5I9bf3CR9+JslPVVbGIV0lTyr74qDS3E
Ow2laxOeaHE0NKJaQeQ8EWIsQfcWik0yCpQxfc6tBR1ppylwqPgo8bl+m7IuUBck
HWZOS4t0xFPKvR33i0yaoqMP40mI4u0ScH1smBtYzB+SbBSkZNCFQ1C+QP1juSo9
kWNXrObegEzUGqdKr5BTSgo7Zh6SBcppRbd2or4qHxW6yIBqGuzOSwaNw1pOfsEx
BmM9QP+txJN64VNuBO13JY88gFORtOh6cPWDtfOx5TZPdJkJVufee/H8iZS/avlQ
GX7BOYvV5saBKsmrfQdjulpbjOsY2uxVQ49bJEWmlekOVlCgcXi3ERGwJlw1tcs7

Bug#701257: marked as done (clam: ftbfs with GCC-4.8)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:03:31 +
with message-id e1weogh-0007mq...@franck.debian.org
and subject line Bug#701257: fixed in clam 1.4.0-5.2
has caused the Debian Bug report #701257,
regarding clam: ftbfs with GCC-4.8
to be marked as done.

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

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


-- 
701257: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701257
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:clam
Version: 1.4.0-5.1
Severity: important
Tags: sid jessie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.8

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

  scons/libs/core/include/CLAM/xtime.hxx:38:3: error: expected identifier 
before numeric constant

The full build log can be found at:
http://people.debian.org/~doko/logs-20130217/gcc48/clam_1.4.0-5.1_unstable_gcc48.log
The last lines of the build log are at the end of this report.

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

  apt-get -t experimental install g++ g++-4.7 g++-4.8 libc6-dev

The test rebuild was done with eglibc-2.17 and GCC-4.8, so some issues
might be caused by the updated glibc.

[...]
== Compiling shared scons/libs/core/src/XercesDomReadingContext.cxx
== Build copying src/Storage/XML/XmlWriteContext.cxx
== Build copying src/Storage/XML/XmlWriteContext.hxx
== Compiling shared scons/libs/core/src/XmlWriteContext.cxx
== Build copying src/Storage/XML/XercesDomWritingContext.cxx
== Compiling shared scons/libs/core/src/XercesDomWritingContext.cxx
== Build copying src/Storage/XML/XMLable.cxx
== Compiling shared scons/libs/core/src/XMLable.cxx
== Build copying src/Storage/XML/XercesDomWriter.cxx
== Compiling shared scons/libs/core/src/XercesDomWriter.cxx
== Build copying src/Storage/XML/XMLAdapter.cxx
== Compiling shared scons/libs/core/src/XMLAdapter.cxx
== Build copying src/Storage/XML/XmlStorageErr.cxx
== Compiling shared scons/libs/core/src/XmlStorageErr.cxx
== Build copying src/Storage/XML/BasicXMLable.cxx
== Compiling shared scons/libs/core/src/BasicXMLable.cxx
== Build copying src/Storage/XML/XMLComponentAdapter.cxx
== Compiling shared scons/libs/core/src/XMLComponentAdapter.cxx
== Build copying src/System/FileSystem.cxx
== Build copying src/System/FileSystem.hxx
== Build copying src/System/Threads/Lock.hxx
== Build copying src/System/Threads/Mutex.hxx
== Build copying src/System/Threads/xtime.hxx
== Compiling shared scons/libs/core/src/FileSystem.cxx
In file included from /usr/include/pthread.h:24:0,
 from 
/usr/include/x86_64-linux-gnu/c++/4.8/bits/gthr-default.h:35,
 from /usr/include/x86_64-linux-gnu/c++/4.8/bits/gthr.h:148,
 from /usr/include/c++/4.8/ext/atomicity.h:33,
 from /usr/include/c++/4.8/bits/basic_string.h:39,
 from /usr/include/c++/4.8/string:52,
 from scons/libs/core/include/CLAM/FileSystem.hxx:25,
 from scons/libs/core/src/FileSystem.cxx:22:
scons/libs/core/include/CLAM/xtime.hxx:38:3: error: expected identifier before 
numeric constant
   TIME_UTC=1,
   ^
scons/libs/core/include/CLAM/xtime.hxx:38:3: error: expected '}' before numeric 
constant
scons/libs/core/include/CLAM/xtime.hxx:38:3: error: expected unqualified-id 
before numeric constant
In file included from scons/libs/core/include/CLAM/Lock.hxx:26:0,
 from scons/libs/core/include/CLAM/Mutex.hxx:26,
 from scons/libs/core/include/CLAM/FileSystem.hxx:27,
 from scons/libs/core/src/FileSystem.cxx:22:
scons/libs/core/include/CLAM/xtime.hxx:156:1: error: expected declaration 
before '}' token
 } // end of namespace CLAM
 ^
scons: *** [scons/libs/core/src/FileSystem.os] Error 1
scons: building terminated because of errors.
make[1]: *** [override_dh_auto_build] Error 2
make: *** [build-arch] Error 2
make[1]: Leaving directory `/«PKGBUILDDIR»'
dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2
---End Message---
---BeginMessage---
Source: clam
Source-Version: 1.4.0-5.2

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

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 701...@bugs.debian.org,
and 

Bug#733070: NMU to fix xerces-c issue

2014-02-15 Thread Jay Berkenbilt
As this package is orphaned, I am uploading my NMU to remove the
dependency on libxerces-c2-dev.  I'm attaching two files: my actual
changes and the debdiff.  The debdiff contains additional changes
because the diff.gz includes changes outside the debian directory
including updated config.sub and config.guess.

diff -urN ../anon-proxy-00.05.38+20081230-2.1/configure ./configure
--- ../anon-proxy-00.05.38+20081230-2.1/configure	2008-12-30 15:18:36.0 -0500
+++ ./configure	2014-02-15 18:02:10.991563131 -0500
@@ -12016,6 +12016,9 @@
 	tryxmlincludedir=$tryxmlincludedir $prefix
 fi
 
+saved_LIBS=$LIBS
+LIBS=-lxerces-c $saved_LIBS
+
 { $as_echo $as_me:$LINENO: checking for xerces-c includes 5
 $as_echo_n checking for xerces-c includes...  6; }
 
@@ -12093,6 +12096,8 @@
{ (exit 1); exit 1; }; }
 fi
 
+LIBS=$saved_LIBS
+
 { $as_echo $as_me:$LINENO: checking for libxerces-c 5
 $as_echo_n checking for libxerces-c...  6; }
 saved_LIBS=$LIBS
diff -urN ../anon-proxy-00.05.38+20081230-2.1/configure.in ./configure.in
--- ../anon-proxy-00.05.38+20081230-2.1/configure.in	2008-12-30 15:18:53.0 -0500
+++ ./configure.in	2014-02-15 18:02:10.991563131 -0500
@@ -437,6 +437,11 @@
 	tryxmlincludedir=$tryxmlincludedir $prefix
 fi
 
+dnl Xerces-C 3.x has to link to compile the test program.  This is not
+dnl a general fix as it will only work if --with-xml-libs was not needed.
+saved_LIBS=$LIBS
+LIBS=-lxerces-c $saved_LIBS
+
 AC_MSG_CHECKING([for xerces-c includes])
 
 for xmldir in  $tryxmlincludedir ; do
@@ -465,6 +470,8 @@
 	AC_MSG_ERROR([Xerces-C includes NOT found - please use --with-xml-include])
 fi
 
+LIBS=$saved_LIBS
+
 dnl Check for XML libs
 AC_MSG_CHECKING([for libxerces-c])
 saved_LIBS=$LIBS
diff -urN ../anon-proxy-00.05.38+20081230-2.1/debian/changelog ./debian/changelog
--- ../anon-proxy-00.05.38+20081230-2.1/debian/changelog	2014-02-15 18:01:12.0 -0500
+++ ./debian/changelog	2014-02-15 18:02:10.991563131 -0500
@@ -1,3 +1,10 @@
+anon-proxy (00.05.38+20081230-2.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Update xerces build dependency to libxerces-c-dev. (Closes: #733070)
+
+ -- Jay Berkenbilt q...@debian.org  Sat, 15 Feb 2014 18:09:13 -0500
+
 anon-proxy (00.05.38+20081230-2.1) unstable; urgency=low
 
   [ gregor herrmann ]
diff -urN ../anon-proxy-00.05.38+20081230-2.1/debian/control ./debian/control
--- ../anon-proxy-00.05.38+20081230-2.1/debian/control	2014-02-15 18:01:12.0 -0500
+++ ./debian/control	2014-02-15 18:02:10.991563131 -0500
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: David Spreen netzw...@debian.org
-Build-Depends: debhelper (= 4.1.16), automake1.9, libxerces-c2-dev, libssl-dev (= 0.9.7c-3), po-debconf
+Build-Depends: debhelper (= 4.1.16), automake1.9, libxerces-c-dev, libssl-dev (= 0.9.7c-3), po-debconf
 Homepage: http://anon.inf.tu-dresden.de/
 Standards-Version: 3.8.0.1 
 
diff -urN ../anon-proxy-00.05.38+20081230-2.1/xml/DOM_Output.hpp ./xml/DOM_Output.hpp
--- ../anon-proxy-00.05.38+20081230-2.1/xml/DOM_Output.hpp	2008-07-15 07:20:55.0 -0400
+++ ./xml/DOM_Output.hpp	2014-02-15 18:02:10.991563131 -0500
@@ -48,7 +48,7 @@
 	m_Buff = NULL;
 }
 
-			virtual void writeChars(const XMLByte* const toWrite, const unsigned int count,
+			virtual void writeChars(const XMLByte* const toWrite, const XMLSize_t count,
 			XMLFormatter* const /*formatter*/)
 {
 	const XMLByte* write=toWrite;
diff -u anon-proxy-00.05.38+20081230/config.sub anon-proxy-00.05.38+20081230/config.sub
--- anon-proxy-00.05.38+20081230/config.sub
+++ anon-proxy-00.05.38+20081230/config.sub
@@ -1,38 +1,31 @@
 #! /bin/sh
 # Configuration validation subroutine script.
-#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-#   2011 Free Software Foundation, Inc.
+#   Copyright 1992-2013 Free Software Foundation, Inc.
 
-timestamp='2011-03-23'
+timestamp='2013-08-10'
 
-# This file is (in principle) common to ALL GNU software.
-# The presence of a machine in this file suggests that SOME GNU software
-# can handle that machine.  It does not imply ALL GNU software can.
-#
-# This file is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# This file is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
 #
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; 

Bug#739107: marked as done (python-fitbit: fails to upgrade from 'testing' - trying to overwrite /usr/share/doc-base/python3-fitbitscraper)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:20:13 +
with message-id e1weowr-0001qk...@franck.debian.org
and subject line Bug#739107: fixed in python-fitbit 0.0.3-2
has caused the Debian Bug report #739107,
regarding python-fitbit: fails to upgrade from 'testing' - trying to overwrite 
/usr/share/doc-base/python3-fitbitscraper
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.)


-- 
739107: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739107
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-fitbit
Version: 0.0.3-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Selecting previously unselected package python-fitbit.
  Preparing to unpack .../python-fitbit_0.0.3-1_all.deb ...
  Unpacking python-fitbit (0.0.3-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb (--unpack):
   trying to overwrite '/usr/share/doc-base/python3-fitbitscraper', which is 
also in package python3-fitbitscraper 0.1-1
  Processing triggers for mime-support (3.54) ...
  Errors were encountered while processing:
   /var/cache/apt/archives/python-fitbit_0.0.3-1_all.deb


cheers,

Andreas


python3-fitbitscraper=0.1-1_python-fitbit=0.0.3-1.log.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
Source: python-fitbit
Source-Version: 0.0.3-2

We believe that the bug you reported is fixed in the latest version of
python-fitbit, which is due to be installed in the Debian FTP archive.

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

Debian distribution maintenance software
pp.
Iain R. Learmonth i...@fsfe.org (supplier of updated python-fitbit 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 15 Feb 2014 21:14:13 +
Source: python-fitbit
Binary: python-fitbit
Architecture: source all
Version: 0.0.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Iain R. Learmonth i...@fsfe.org
Description: 
 python-fitbit - FitBit REST API Client Implementation
Closes: 739107
Changes: 
 python-fitbit (0.0.3-2) unstable; urgency=medium
 .
   * Updated for upstream release 0.0.3.
   * Corrected doc-base Document field (Closes: #739107)
Checksums-Sha1: 
 a2c83d7bca2ed647cf09c902184ba43cf065f474 2174 python-fitbit_0.0.3-2.dsc
 d8c541742cf3ffa4606b1a055e7b5783d7627abd 19201 python-fitbit_0.0.3.orig.tar.gz
 cee414ab98217792a176982a0d98b8bf4737b86c 3700 
python-fitbit_0.0.3-2.debian.tar.xz
 73b8734ba20d660b10d48da06fd1ef54726d5ceb 62444 python-fitbit_0.0.3-2_all.deb
Checksums-Sha256: 
 daccfa2385cbbf57e49c0a7b7ed09ca048482ea9351ac147fb50a19531690769 2174 
python-fitbit_0.0.3-2.dsc
 3974883fbaa9b7617e360e7fb0795b8cf6121be6004939587d486c802cd7f5c5 19201 
python-fitbit_0.0.3.orig.tar.gz
 a10df29c2160137d437ea5e0d09801ba6a4b6b1b36e497c78b74bd578269f47a 3700 
python-fitbit_0.0.3-2.debian.tar.xz
 f3848ba53509200929e6819a8a8f18621e2ace2487c5857096966981cb636e79 62444 
python-fitbit_0.0.3-2_all.deb
Files: 
 77baca5950007ae7cd654ede85ecb615 2174 python optional python-fitbit_0.0.3-2.dsc
 5585f8e384d7eee19485de365bdbd44b 19201 python optional 
python-fitbit_0.0.3.orig.tar.gz
 fd11e0af358bda4713e5dfed5ae39322 3700 python optional 
python-fitbit_0.0.3-2.debian.tar.xz
 1f59dfaa15befb1fce36523f35afb7d5 62444 python optional 
python-fitbit_0.0.3-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS//E7AAoJEFeKBJTRxkbRckkQAIC2fc8CjtTLxn3CYc4567yn
4yWkWN0RRNdy4SLIsNVvZgq8Yznaif491GxwmBPngq7q+qg6zRUpR8BxvOTE37Ry
ntGaSTsQdbx+T4ekVmv99wAuNaVALwj5B5Fx4b69k9HoPoinKd4aU3ti9c+t6Jdc
rR5wnWXrFLjJLHz1MKAprLl+W91+dfA2UVz15glkEt800RnJwDaYakFmvhWCclSf
bkeePT3vPlhk/yn2bkXhOAorV/BM4HiT73EWSjzsCd5QgxTTRBQQcIwrGYrgsweE

Bug#733070: marked as done (please build-depend on libxerces-c-dev instead of libxerces-c2-dev)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sat, 15 Feb 2014 23:18:23 +
with message-id e1weov5-vo...@franck.debian.org
and subject line Bug#733070: fixed in anon-proxy 00.05.38+20081230-2.2
has caused the Debian Bug report #733070,
regarding please build-depend on libxerces-c-dev instead of libxerces-c2-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.)


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

In preparation for requesting removal of xerces-c2 from sid (and
jessie), I am asking maintainers of packages that still have build
dependencies on libxerces-c2-dev to instead build depend on
libxerces-c-dev.  In most cases, no changes will be required.  There are
only five packages left in the archive that still depend on
libxerces-c2-dev that have not already been requested for removal.

-- 
Jay Berkenbilt q...@debian.org
---End Message---
---BeginMessage---
Source: anon-proxy
Source-Version: 00.05.38+20081230-2.2

We believe that the bug you reported is fixed in the latest version of
anon-proxy, which is due to be installed in the Debian FTP archive.

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

Debian distribution maintenance software
pp.
Jay Berkenbilt q...@debian.org (supplier of updated anon-proxy 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 18:09:13 -0500
Source: anon-proxy
Binary: anon-proxy
Architecture: source amd64
Version: 00.05.38+20081230-2.2
Distribution: unstable
Urgency: low
Maintainer: David Spreen netzw...@debian.org
Changed-By: Jay Berkenbilt q...@debian.org
Description: 
 anon-proxy - Proxy to surf the web anonymously
Closes: 733070
Changes: 
 anon-proxy (00.05.38+20081230-2.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Update xerces build dependency to libxerces-c-dev. (Closes: #733070)
Checksums-Sha1: 
 8a7b7d88970d2589d01dbeb6a542d904e104bb47 1846 
anon-proxy_00.05.38+20081230-2.2.dsc
 7625655e040c77ced4d4ce950e2711dfda556763 38247 
anon-proxy_00.05.38+20081230-2.2.diff.gz
 142cad9f4bf728d2e33182932b25d096886334d8 120902 
anon-proxy_00.05.38+20081230-2.2_amd64.deb
Checksums-Sha256: 
 dcd96d6b40d206251d0839e73cc28c329d54745db6929a92d18442a9545b4257 1846 
anon-proxy_00.05.38+20081230-2.2.dsc
 6355be7c619c7b3fc4789d030a8358bd86074a804df6dd269d6d15c6fc43f570 38247 
anon-proxy_00.05.38+20081230-2.2.diff.gz
 23d2339ca5fa379af769d6a5c67d7bc3a09b511a08c58fb05e34b487f59a2a4a 120902 
anon-proxy_00.05.38+20081230-2.2_amd64.deb
Files: 
 b0026c32aad5d2604036600b820f6efc 1846 web optional 
anon-proxy_00.05.38+20081230-2.2.dsc
 7cbd14950a42dd8c4b9136f7fba132ac 38247 web optional 
anon-proxy_00.05.38+20081230-2.2.diff.gz
 71b6a157d020c32d1a2e269e79b0a546 120902 web optional 
anon-proxy_00.05.38+20081230-2.2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS//RjAAoJEIp10QmYASx+mY8P/0RR+3b52fko34yO2M5DPO8E
G1jOSucWOo73m4u7JF0ZYWZBOiG3OrAQDR08/0ibET5+6y1JLwkOQ5Wl6bv60/a3
UKeOW042PVzCg0cE/lU+g6QAd9x1QWeeVfqe/tDJhE7hfNGJSyFUkHrsKMv1RtpW
b6YmZXivXakq3HWsi/Y3GgTwGZ0I4l6Vx53jR6axa80SAkHnFeUHsW0v2XI2TYkx
NSihzi2SytEh0El1AnLPQo20VyxH+ghItcKZSaohvgBDzGCwl/JHyXloiVexNO35
Bi265lrGO9irm/APk9tffAcVRU7TbHkGyp2X5Y9Vw4fXlmvt5JBwUbPFwxela9IS
T9t/I3AOcLMyu7IcdZyFvFctflLF5svl9SFTR4YRzKCWz9YQScGi+6GpyuxMtj5E
8LRCQeQWNxtT33M4oAjHPZ0+hpvrGZszBBAk5FRiTgi3cwf/oFz47HYdCievlIk+
o/eh7BjFf/+AKyz/yCjjLd4nRZlurhi6i9GrFIFxkmxhpkZyjVIguVcm1M/5sj66
i3MesDJwp0criEmYrzt619UwZpsMYgTpf7SvkZI4vnwsQu108k84yzyAuXHgGB6K
M/Xgk5OQ4QOXM/BlppsaSUHpXAnkyLzX6tLGIfTQRgpJo60ddaRnigfGAfO8xtco
5cAllZFjsiKDdbV4NF9s
=xRqV
-END PGP SIGNATUREEnd Message---


Bug#737153: OpenCVModules.cmake not installed, causing visp FTBFS

2014-02-15 Thread Nobuhiro Iwamatsu
Hi, all.

Sorry about this problem.
I will fix this today. please wait.

Best regards,
  Nobuhiro

2014-02-15 3:30 GMT+09:00 Fabien Spindler fabien.spind...@inria.fr:
 Le 14/02/14 18:36, Rebecca N. Palmer a écrit :

 libopencv-dev doesn't pull in the Java libraries; I don't know if the
 appropriate fix is that it should, or that the cmake script shouldn't be
 looking for them when building C(++).


 I think that the script OpenCVModules.cmake should not look for
 libopencv_java.

 When I build opencv 2.4.8 from source, libopencv_java is not build.

 The error can be simply reproduced using the following CMakeLists.txt

 project(dummy)
 cmake_minimum_required(version 2.8)
 find_package(OpenCV REQUIRED)

 Hope it helps
 Fabien


 --
 debian-science-maintainers mailing list
 debian-science-maintain...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers



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


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



Bug#739078: xpra: recommends contrib package python-pyopencl

2014-02-15 Thread Dmitry Smirnov
Control: block -1 by 723132

On Sat, 15 Feb 2014 18:41:59 Jonas Smedegaard wrote:
 As subject says, xpra recommends contrib package python-pyopencl.
 
 xpra should either only suggest python-pyopencl, or itself be moved to
 contrib.

Thanks for reporting this. Admittedly I've made a mistake by not checking 
section of python-pyopencl before adding it to Recommends.

But python-pyopencl shouldn't be in contrib in first place. OpenCL is no 
longer in the exclusive area of proprietary drivers. Right now opencl-icd 
also provided by free beignet (along with proprietary providers).
Mesa OpenCL support is almost ready to be added to Debian, see #717500.

Given the above I think python-pyopencl should be moved from contrib to 
main and there is an existing ticket for that -- #723132.

-- 
Regards,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B


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



Processed: Re: Bug#739078: xpra: recommends contrib package python-pyopencl

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 block -1 by 723132
Bug #739078 [xpra] xpra: recommends contrib package python-pyopencl
739078 was not blocked by any bugs.
739078 was not blocking any bugs.
Added blocking bug(s) of 739078: 723132

-- 
739078: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739078
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#739138: cvs: FTBFS: I can't find file `ecrm1095'.

2014-02-15 Thread Daniel Schepler
Source: cvs
Version: 2:1.12.13+real-11
Severity: serious

From my pbuilder build log:

...
make[2]: Entering directory `/tmp/buildd/cvs-1.12.13+real/debian/builddir/doc'
TEXINPUTS=../../../build-aux:$TEXINPUTS \
MAKEINFO='makeinfo  --no-split -I ../../../doc' \
/usr/bin/texi2dvi --pdf --batch  --build-dir=cvs.t2p -o cvs.pdf  \
../../../doc/cvs.texinfo
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian)
 restricted \write18 enabled.
entering extended mode

(/tmp/buildd/cvs-1.12.13+real/doc/cvs.texinfo
(/tmp/buildd/cvs-1.12.13+real/build-aux/texinfo.tex
Loading texinfo [version 2013-02-01.11]: pdf, fonts, markup, glyphs,
page headings, tables, conditionals, indexing, sectioning, toc, environments,
defuns, macros, cross references, insertions, localization, formatting,
and turning on texinfo input format.)
(/tmp/buildd/cvs-1.12.13+real/doc/version.texi) [1{/var/lib/texmf/fonts/map/pdf
tex/updmap/pdftex.map}] [2] [-1] [-2] [-3] [-4] Chapter 1
Cross reference values unknown; you must run TeX again. [1] [2] [3] [4]
Chapter 2 [5] [6] [7] [8] [9] [10]
kpathsea: Running mktextfm ecrm1095
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1095.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1095
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)


kpathsea: Running mktexmf ecrm1095
! I can't find file `ecrm1095'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Transcript written on mfput.log.
grep: ecrm1095.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1095' failed to make ecrm1095.tfm.
kpathsea: Appending font creation commands to missfont.log.

/tmp/buildd/cvs-1.12.13+real/doc/cvs.texinfo:1228: Font @thisecfont=ecrm1095 at
 11.0pt not loadable: Metric (TFM) file not found.
to be read again 
   @thisecfont 
@{-{@ifmonospace @else @ecfont 
@fi @char 123}
l.1228   @{
   ; @var{attrname} = @var{attrval}@} linefeed

kpathsea: Running mktextfm ecrm1095
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1095.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1095
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)


kpathsea: Running mktexmf ecrm1095
! I can't find file `ecrm1095'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Transcript written on mfput.log.
grep: ecrm1095.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1095' failed to make ecrm1095.tfm.
/tmp/buildd/cvs-1.12.13+real/doc/cvs.texinfo:1228: Font @thisecfont=ecrm1095 at
 11.0pt not loadable: Metric (TFM) file not found.
to be read again 
   @thisecfont 
@}-{@ifmonospace @else @ecfont 
@fi @char 125}
l.1228   @{; @var{attrname} = @var{attrval}@}
  linefeed

kpathsea: Running mktextfm ecrm1095
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1095.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1095
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)


kpathsea: Running mktexmf ecrm1095
! I can't find file `ecrm1095'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1095
  
Transcript written on mfput.log.
grep: ecrm1095.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1095' failed to make ecrm1095.tfm.
/tmp/buildd/cvs-1.12.13+real/doc/cvs.texinfo:1264: Font @thisecfont=ecrm1095 at
 11.0pt not loadable: Metric (TFM) file not found.
to be read again 
   @thisecfont 
@{-{@ifmonospace @else @ecfont 
@fi @char 123}
l.1264 @var{watcher}  @var{type} @{
 , @var{watcher}  @var{type} @}

kpathsea: Running mktextfm ecrm1095
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1095.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?

Bug#739139: python-fixtures: FTBFS: python3.4: not found

2014-02-15 Thread Daniel Schepler
Source: python-fixtures
Version: 0.3.14-1
Severity: serious

From my pbuilder build log:

...
byte-compiling 
/tmp/buildd/python-fixtures-0.3.14/debian/python3-fixtures/usr/lb/python3/dist-packages/fixtures/tests/__init__.py
 to __init__.cpython-33.pyc
byte-compiling 
/tmp/buildd/python-fixtures-0.3.14/debian/python3-fixtures/usr/lb/python3/dist-packages/fixtures/callmany.py
 to callmany.cpython-33.pyc
running install_egg_info
Writing 
/tmp/buildd/python-fixtures-0.3.14/debian/python3-fixtures/usr/lib/pythn3/dist-packages/fixtures-0.3.14.egg-info
/bin/sh: 2: python3.4: not found
make[1]: *** [override_dh_auto_install] Error 127
make[1]: Leaving directory `/tmp/buildd/python-fixtures-0.3.14'
make: *** [binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
-- 
Daniel Schepler


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



Bug#734903: marked as done (rpcbind: fails to upgrade from 'wheezy' - trying to overwrite /usr/share/man/man8/rpcinfo.8.gz)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sun, 16 Feb 2014 01:33:55 +
with message-id e1weqcf-0001rc...@franck.debian.org
and subject line Bug#734903: fixed in rpcbind 0.2.1-3
has caused the Debian Bug report #734903,
regarding rpcbind: fails to upgrade from 'wheezy' - trying to overwrite 
/usr/share/man/man8/rpcinfo.8.gz
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.)


-- 
734903: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734903
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: rpcbind
Version: 0.2.1-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'wheezy'.
It installed fine in 'wheezy', then the upgrade to 'jessie' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Selecting previously unselected package rpcbind.
  Unpacking rpcbind (from .../rpcbind_0.2.1-2_amd64.deb) ...
  dpkg: error processing /var/cache/apt/archives/rpcbind_0.2.1-2_amd64.deb 
(--unpack):
   trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in 
package libc-bin 2.13-38
  Errors were encountered while processing:
   /var/cache/apt/archives/rpcbind_0.2.1-2_amd64.deb

The manpage is the only shared file.


cheers,

Andreas


libc-bin=2.13-38_rpcbind=0.2.1-2.log.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
Source: rpcbind
Source-Version: 0.2.1-3

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

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

Debian distribution maintenance software
pp.
Anibal Monsalve Salazar ani...@debian.org (supplier of updated rpcbind 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Feb 2014 11:19:02 +1100
Source: rpcbind
Binary: rpcbind
Architecture: source mipsel
Version: 0.2.1-3
Distribution: unstable
Urgency: medium
Maintainer: Anibal Monsalve Salazar ani...@debian.org
Changed-By: Anibal Monsalve Salazar ani...@debian.org
Description: 
 rpcbind- converts RPC program numbers into universal addresses
Closes: 734903 739053
Changes: 
 rpcbind (0.2.1-3) unstable; urgency=medium
 .
   * Fix fails to upgrade from 'wheezy' - trying to overwrite
 /usr/share/man/man8/rpcinfo.8.gz
 Depends on libc-bin (= 2.16)
 Closes: #734903
   * Fix LSB initscript runlevels
 Patch by Roger Leigh
 Closes: #739053
Checksums-Sha1: 
 fc4d4b34754a31461f68186eea3ecc3171ba1826 1777 rpcbind_0.2.1-3.dsc
 7b9c31e341b36b2be47a3f9cc7dee54c5fa73511 8863 rpcbind_0.2.1-3.debian.tar.bz2
 027437088342322b99d328de7c3e011b8c51cb43 39308 rpcbind_0.2.1-3_mipsel.deb
Checksums-Sha256: 
 276d1191b7d78cd26470ba565a36b67d1789ee45d908381e71854d26b535c52e 1777 
rpcbind_0.2.1-3.dsc
 81fbf0e27ce00c62cdaad899bf3304ec26660010fe70b6cecff30481d90f30ea 8863 
rpcbind_0.2.1-3.debian.tar.bz2
 2e7b0ea7e1eb8cb4becd6fc027b2249d13537a30b668a77cec1f4bc278b36df9 39308 
rpcbind_0.2.1-3_mipsel.deb
Files: 
 ecb65d74d200d9e4ab1b6e5be43d3a4e 1777 net standard rpcbind_0.2.1-3.dsc
 7af32712af1a9d04fd358fed66769dc8 8863 net standard 
rpcbind_0.2.1-3.debian.tar.bz2
 31351758e2e0775c3e3743b4f0fa09aa 39308 net standard rpcbind_0.2.1-3_mipsel.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTAAvDAAoJEHxWrP6UeJfYzWoP/AsFtER8FZndq5bmUfIAoDic
KHumRrIYKxOJOI1JNAoVOC/UoQhdQm/SPdZfdSkGqfOKw3CY0Dl/SO7sNcG0nNp4
qA2NzHwkHoDgjdCdf0s1dHCqM6NoLI4ZfAXmbZ3U8hbJCFikDqXBb03ClQSbAEwB
UO/vTrPES/WRAU7CZoVHcljKOd7WiXA0EDAVQ3OXOwYohoLwNTHPtgraDElQsWY5
x36VwZ+jM9ZjeNdsRfZzlaZAjrsCXAI9OKgI8MmIA6ny7bx+LJYB8Xwif6b6zWCv
ZTa7hLEm98loUAfC1GE4rHJVosWUCXmLOUT3pP5kX0vHRtGJnfJh/NvB/fWAx5Lk
FUlWyFB4zrOULTXKoBH4a5ccZTmhKELnQEuFPdPLF3jglVaI/WS0LeHl5zNtLRs/
oKm9gXVZDjBdfVXGrVBvMePnmPPQfhBSTApyq3+1SXLVKgtt11VsJ5QpE1d0rpJO
dVq2+5ercOY0Og6kYZd/Hb9E5VxJROLLrzUF75QISgwDVAJ8Ft9xjWW1iONwIUKc
TwDRHuGMbuMDi4ypmWQE4OcoXtRbYMf/kMXONBBP61sy3YroYuuHj8UoV3DDOAHq

Bug#739053: marked as done (rpcbind LSB initscript runlevels are incorrect)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sun, 16 Feb 2014 01:33:55 +
with message-id e1weqcf-0001ri...@franck.debian.org
and subject line Bug#739053: fixed in rpcbind 0.2.1-3
has caused the Debian Bug report #739053,
regarding rpcbind LSB initscript runlevels are incorrect
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.)


-- 
739053: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739053
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: rpcbind
Version: 0.2.1-2
Severity: serious
Tags: patch
Justification: Breaks upgrades

Please could you apply the following patch.  We are planning to upgrade
the version of insserv, and testing shows that the new version breaks
on the dependencies declared by rpcbind (which doesn't match the
dependent nfs-common).  This change adjusts the start runlevels to
match nfs-common.

Marking as serious because this will break upgrades if left unfixed.


Thanks,
Roger

--- /etc/init.d/rpcbind.old 2014-02-10 18:55:20.645945248 +
+++ /etc/init.d/rpcbind 2014-02-15 11:23:32.000400663 +
@@ -6,7 +6,7 @@
 # Provides:  rpcbind
 # Required-Start:$network $local_fs
 # Required-Stop: $network $local_fs
-# Default-Start: S
+# Default-Start: 2 3 4 5 S
 # Default-Stop:  0 1 6
 # Short-Description: RPC portmapper replacement
 # Description:   rpcbind is a server that converts RPC (Remote

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

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

Versions of packages rpcbind depends on:
ih  initscripts  2.88dsf-51
ii  insserv  1.16.0-1
ii  libc62.17-97
ii  libtirpc10.2.2-5
ii  libwrap0 7.6.q-25
ii  lsb-base 4.1+Debian12

rpcbind recommends no packages.

rpcbind suggests no packages.

-- Configuration Files:
/etc/init.d/rpcbind changed [not included]

-- no debconf information
---End Message---
---BeginMessage---
Source: rpcbind
Source-Version: 0.2.1-3

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

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

Debian distribution maintenance software
pp.
Anibal Monsalve Salazar ani...@debian.org (supplier of updated rpcbind 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Feb 2014 11:19:02 +1100
Source: rpcbind
Binary: rpcbind
Architecture: source mipsel
Version: 0.2.1-3
Distribution: unstable
Urgency: medium
Maintainer: Anibal Monsalve Salazar ani...@debian.org
Changed-By: Anibal Monsalve Salazar ani...@debian.org
Description: 
 rpcbind- converts RPC program numbers into universal addresses
Closes: 734903 739053
Changes: 
 rpcbind (0.2.1-3) unstable; urgency=medium
 .
   * Fix fails to upgrade from 'wheezy' - trying to overwrite
 /usr/share/man/man8/rpcinfo.8.gz
 Depends on libc-bin (= 2.16)
 Closes: #734903
   * Fix LSB initscript runlevels
 Patch by Roger Leigh
 Closes: #739053
Checksums-Sha1: 
 fc4d4b34754a31461f68186eea3ecc3171ba1826 1777 rpcbind_0.2.1-3.dsc
 7b9c31e341b36b2be47a3f9cc7dee54c5fa73511 8863 rpcbind_0.2.1-3.debian.tar.bz2
 027437088342322b99d328de7c3e011b8c51cb43 39308 rpcbind_0.2.1-3_mipsel.deb
Checksums-Sha256: 
 276d1191b7d78cd26470ba565a36b67d1789ee45d908381e71854d26b535c52e 1777 
rpcbind_0.2.1-3.dsc
 81fbf0e27ce00c62cdaad899bf3304ec26660010fe70b6cecff30481d90f30ea 8863 
rpcbind_0.2.1-3.debian.tar.bz2
 2e7b0ea7e1eb8cb4becd6fc027b2249d13537a30b668a77cec1f4bc278b36df9 39308 
rpcbind_0.2.1-3_mipsel.deb
Files: 
 ecb65d74d200d9e4ab1b6e5be43d3a4e 1777 net standard rpcbind_0.2.1-3.dsc
 7af32712af1a9d04fd358fed66769dc8 8863 net standard 
rpcbind_0.2.1-3.debian.tar.bz2
 31351758e2e0775c3e3743b4f0fa09aa 39308 net standard rpcbind_0.2.1-3_mipsel.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTAAvDAAoJEHxWrP6UeJfYzWoP/AsFtER8FZndq5bmUfIAoDic
KHumRrIYKxOJOI1JNAoVOC/UoQhdQm/SPdZfdSkGqfOKw3CY0Dl/SO7sNcG0nNp4
qA2NzHwkHoDgjdCdf0s1dHCqM6NoLI4ZfAXmbZ3U8hbJCFikDqXBb03ClQSbAEwB

Bug#734903: closed by Anibal Monsalve Salazar ani...@debian.org (Bug#734903: fixed in rpcbind 0.2.1-3)

2014-02-15 Thread Andreas Beckmann
On 2014-02-16 02:36, Debian Bug Tracking System wrote:
  rpcbind (0.2.1-3) unstable; urgency=medium
  .
* Fix fails to upgrade from 'wheezy' - trying to overwrite
  /usr/share/man/man8/rpcinfo.8.gz
  Depends on libc-bin (= 2.16)

I'm not sure if this is sufficient to ensure a certain unpack ordering
in all corner cases.  Using
Breaks+Replaces: libc-bin ( 2.16)
would get you on the safe side.


Andreas


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



Bug#739140: xfce4-notes: Notes fail to save upon exit program

2014-02-15 Thread Riley
Package: xfce4-notes
Version: 1.7.7-3
Severity: grave
Justification: renders package unusable

Dear Maintainer,

I have found that when I quit the xfce4-notes program, my notes are not saved
when I next start it. If I edit the notes directly in ~/.local/share/notes ,
they are displayed at next entrance, however editing the files in this way
(instead of using the GUI) can get annoying, and can make the package almost
unusable.

Thanks for reading



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

Kernel: Linux 3.5.0-10-generic (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xfce4-notes depends on:
ii  libc6   2.17-96
ii  libcairo2   1.12.16-2
ii  libgdk-pixbuf2.0-0  2.28.2-1
ii  libglib2.0-02.36.4-1
ii  libgtk2.0-0 2.24.22-1
ii  libpango-1.0-0  1.36.0-1
ii  libunique-1.0-0 1.1.6-4
ii  libx11-62:1.6.2-1
ii  libxfce4util6   4.10.1-1
ii  libxfcegui4-4   4.10.0-2
ii  libxfconf-0-2   4.10.0-1

xfce4-notes recommends no packages.

xfce4-notes 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: fixed 728743 in 319.82-1, found 728743 in 319.72-1, severity of 737312 is normal ..., tagging 737164 ...

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

 fixed 728743 319.82-1
Bug #728743 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
corrupts the signal block mask (SigBlk) breaking unrelated
Bug #733816 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
khotkeys launches actions with SIGHUP blocked, leading to unclosable xterms
Bug #738525 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
nvidia-kernel-source: process signals masked by nvidia drivers.
Marked as fixed in versions nvidia-graphics-drivers/319.82-1.
Marked as fixed in versions nvidia-graphics-drivers/319.82-1.
Marked as fixed in versions nvidia-graphics-drivers/319.82-1.
 found 728743 319.72-1
Bug #728743 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
corrupts the signal block mask (SigBlk) breaking unrelated
Bug #733816 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
khotkeys launches actions with SIGHUP blocked, leading to unclosable xterms
Bug #738525 {Done: Andreas Beckmann a...@debian.org} [libgl1-nvidia-glx] 
nvidia-kernel-source: process signals masked by nvidia drivers.
Marked as found in versions nvidia-graphics-drivers/319.72-1.
Marked as found in versions nvidia-graphics-drivers/319.72-1.
Marked as found in versions nvidia-graphics-drivers/319.72-1.
 # teach the bts that this is now an invalid bug and can be archived
 severity 737312 normal
Bug #737312 {Done: Andreas Tille ti...@debian.org} [src:subsurface] 
subsurface: switch B-D to libosmgpsmap-1.0-0-dev
Severity set to 'normal' from 'serious'
 notfixed 737312 osm-gps-map/1.0.1-3
Bug #737312 {Done: Andreas Tille ti...@debian.org} [src:subsurface] 
subsurface: switch B-D to libosmgpsmap-1.0-0-dev
No longer marked as fixed in versions osm-gps-map/1.0.1-3.
 tags 737164 + ipv6
Bug #737164 {Done: Andreas Beckmann a...@debian.org} [sendmail] sendmail: 
attempts to bind to wrong interface for CNAME-to-A-only MX when ipv6 available
Added tag(s) ipv6.
 found 738973 2014.02.02-1
Bug #738973 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
Bug #738881 [freedict] [dict-freedict-deu-eng] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Bug #739031 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
There is no source info for the package 'freedict' at version '2014.02.02-1' 
with architecture ''
Unable to make a source version for version '2014.02.02-1'
Marked as found in versions 2014.02.02-1.
Marked as found in versions 2014.02.02-1.
Marked as found in versions 2014.02.02-1.
 found 739117 0.4.3-1
Bug #739117 [gpxviewer] gpxviewer: Depends from python-osmgpsmap which is not 
in Debian any more
Marked as found in versions gpxviewer/0.4.3-1.
 tags 739117 + sid
Bug #739117 [gpxviewer] gpxviewer: Depends from python-osmgpsmap which is not 
in Debian any more
Added tag(s) sid.
 found 739121 0.1.94-1
Bug #739121 [creepy] creepy: Depends from python-osmgpsmap which is not in 
Debian any more
Marked as found in versions creepy/0.1.94-1.
 tags 739121 + sid
Bug #739121 [creepy] creepy: Depends from python-osmgpsmap which is not in 
Debian any more
Added tag(s) sid.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
728743: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728743
733816: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733816
737164: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737164
737312: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737312
738525: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738525
738881: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738881
738973: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738973
739031: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739031
739117: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739117
739121: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739121
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#739143: xindy: FTBFS: I can't find file `ecrm1000'.

2014-02-15 Thread Daniel Schepler
Source: xindy
Version: 2.4-1.2
Severity: serious

From my pbuilder build log:

...
pdflatex -interaction batchmode ./alphabets-doc.tex
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian)
 restricted \write18 enabled.
entering extended mode

kpathsea: Running mktextfm ecrm1000
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm1000.
/usr/share/texlive/texmf-dist/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1000
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)


kpathsea: Running mktexmf ecrm1000
! I can't find file `ecrm1000'.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Please type another input file name
! Emergency stop.
* ...ljfour; mag:=1; nonstopmode; input ecrm1000
  
Transcript written on mfput.log.
grep: ecrm1000.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1000' failed to make ecrm1000.tfm.
kpathsea: Appending font creation commands to missfont.log.

kpathsea: Running mktextfm ecrm2488
/usr/share/texlive/texmf-dist/web2c/mktexnam: Could not map source abbreviation 
 for ecrm2488.
...
Transcript written on larm0900.log.
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
larm0900' failed.
make[3]: *** [alphabets-doc.pdf] Error 1
rm slovak/large-utf8.pl esperanto/utf8.pl french/utf8.pl hungarian/utf8.pl 
german/din5007-utf8.pl english/utf8.pl ukrainian/utf8.pl croatian/utf8.pl 
russian/translit-iso-utf8.pl hausa/utf8.pl latin/utf8.pl vietnamese/utf8.pl 
lithuanian/utf8.pl greek/utf8.pl kurdish/turkish-i-utf8.pl 
spanish/modern-utf8.pl general/utf8.pl finnish/utf8.pl albanian/utf8.pl 
swedish/utf8.pl lower-sorbian/utf8.pl bulgarian/utf8.pl german/duden-utf8.pl 
icelandic/utf8.pl latvian/utf8.pl italian/utf8.pl dutch/ij-as-ij-utf8.pl 
slovenian/utf8.pl russian/utf8.pl czech/utf8.pl greek/polytonic-utf8.pl 
danish/utf8.pl norwegian/utf8.pl hebrew/utf8.pl portuguese/utf8.pl 
german/braille-utf8.pl serbian/utf8.pl macedonian/utf8.pl estonian/utf8.pl 
gypsy/northrussian-utf8.pl upper-sorbian/utf8.pl kurdish/bedirxan-utf8.pl 
polish/utf8.pl slovak/small-utf8.pl greek/translit-utf8.pl 
mongolian/cyrillic-utf8.pl klingon/utf8.pl georgian/utf8.pl 
spanish/traditional-utf8.pl dutch/ij-as-y-utf8.pl belarusian/utf8.pl 
turkish/utf8.pl
make[3]: Leaving directory `/tmp/buildd/xindy-2.4/make-rules/alphabets'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/xindy-2.4/make-rules/alphabets'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/xindy-2.4/make-rules'
make: *** [build-indep-stamp] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
-- 
Daniel Schepler


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



Bug#739032: icedtea-web: FTBFS[kfreebsd-any]: sun.security.util.SecurityConstants not found

2014-02-15 Thread Steven Chamberlain
reassign 739032 src:openjdk-7
fixed 739032 openjdk-7/7u25-2.3.12-4
found 739032 openjdk-7/7u51-2.4.5-2
affects 739032 + icedtea-web
tags 739032 + patch
thanks

Please find a patch for this attached.  It may be appended to
debian/patches/kfreebsd-support-jdk.diff

I think this is still severity 'serious' because it is a regression that
causes icedtea-web to FTBFS;  and I don't think openjdk-7 can migrate to
testing anyway until that is built again.

Thanks,
Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org
--- openjdk/jdk/src/solaris/native/sun/net/portconfig.c	2014-01-28 18:02:26.0 +
+++ openjdk/jdk/src/solaris/native/sun/net/portconfig.c	2014-02-15 02:58:07.102243089 +
@@ -28,7 +28,7 @@
 #include unistd.h
 #include errno.h
 
-#if defined(_ALLBSD_SOURCE)
+#if defined(_ALLBSD_SOURCE) || defined (__FreeBSD_kernel__)
 #include sys/sysctl.h
 #endif
 
@@ -66,7 +66,7 @@
 range-higher = net_getParam(/dev/tcp, tcp_largest_anon_port);
 return 0;
 }
-#elif defined(_ALLBSD_SOURCE)
+#elif defined(_ALLBSD_SOURCE) || defined (__FreeBSD_kernel__)
 {
 int ret;
 size_t size = sizeof(range-lower);
--- openjdk/jdk/src/solaris/classes/sun/net/PortConfig.java	2014-01-28 18:02:26.0 +
+++ openjdk/jdk/src/solaris/classes/sun/net/PortConfig.java	2014-02-15 21:57:57.534279073 +
@@ -55,6 +55,9 @@
 } else if (os.contains(OS X)) {
 defaultLower = 49152;
 defaultUpper = 65535;
+} else if (os.contains(FreeBSD)) {
+defaultLower = 1;
+defaultUpper = 65535;
 } else {
 throw new InternalError(
 sun.net.PortConfig: unknown OS);


Processed: Re: Bug#739032: icedtea-web: FTBFS[kfreebsd-any]: sun.security.util.SecurityConstants not found

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

 reassign 739032 src:openjdk-7
Bug #739032 [icedtea-web] icedtea-web: FTBFS[kfreebsd-any]: 
sun.security.util.SecurityConstants not found
Bug reassigned from package 'icedtea-web' to 'src:openjdk-7'.
No longer marked as found in versions 1.4.2-1.
Ignoring request to alter fixed versions of bug #739032 to the same values 
previously set
 fixed 739032 openjdk-7/7u25-2.3.12-4
Bug #739032 [src:openjdk-7] icedtea-web: FTBFS[kfreebsd-any]: 
sun.security.util.SecurityConstants not found
Marked as fixed in versions openjdk-7/7u25-2.3.12-4.
 found 739032 openjdk-7/7u51-2.4.5-2
Bug #739032 [src:openjdk-7] icedtea-web: FTBFS[kfreebsd-any]: 
sun.security.util.SecurityConstants not found
Marked as found in versions openjdk-7/7u51-2.4.5-2.
 affects 739032 + icedtea-web
Bug #739032 [src:openjdk-7] icedtea-web: FTBFS[kfreebsd-any]: 
sun.security.util.SecurityConstants not found
Added indication that 739032 affects icedtea-web
 tags 739032 + patch
Bug #739032 [src:openjdk-7] icedtea-web: FTBFS[kfreebsd-any]: 
sun.security.util.SecurityConstants not found
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
739032: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739032
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#739144: librpc-xml-perl: FTBFS: Test failure

2014-02-15 Thread Daniel Schepler
Source: librpc-xml-perl
Version: 0.77-1
Severity: serious

From my pbuilder build log:

...
/usr/bin/perl -MExtUtils::MY -e 'MY-fixin(shift)' -- blib/script/make_method
PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 
'blib/lib', 'blib/arch') t/*.t
t/00_load.t . ok 
t/10_data.t . ok   
t/11_base64_fh.t  ok 
t/12_nil.t .. ok 
t/13_no_deep_recursion.t  ok 
t/14_datetime_iso8601.t . ok   
t/15_serialize.t  1/20 
#   Failed test 'Fault-response content is correct'
#   at t/15_serialize.t line 99.
#  got: '?xml version=1.0 
encoding=us-ascii?methodResponsefaultvaluestructmembernamefaultCode/namevalueint1/int/value/membermembernamefaultString/namevaluestringtest/string/value/member/struct/value/fault/methodResponse'
# expected: '?xml version=1.0 
encoding=us-ascii?methodResponsefaultvaluestructmembernamefaultString/namevaluestringtest/string/value/membermembernamefaultCode/namevalueint1/int/value/member/struct/value/fault/methodResponse'
# Looks like you failed 1 test of 20.
t/15_serialize.t  Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/20 subtests 
t/20_xml_parser.t ... ok   
t/21_xml_libxml.t ... ok   
t/25_parser_negative.t .. ok 
t/29_parserfactory.t  ok 
t/30_procedure.t  ok 
t/35_namespaces.t ... ok   
t/40_server.t ... ok 
t/40_server_xmllibxml.t . ok 
t/41_server_hang.t .. ok   
t/50_client.t ... ok 
t/51_client_with_host_header.t .. ok   
t/60_net_server.t ... ok 
t/70_compression_detect.t ... ok   
t/90_rt50013_parser_bugs.t .. ok   
t/90_rt54183_sigpipe.t .. ok   
t/90_rt54494_blessed_refs.t . ok   
t/90_rt58065_allow_nil.t  ok   
t/90_rt58323_push_parser.t .. ok   

Test Summary Report
---
t/15_serialize.t  (Wstat: 256 Tests: 20 Failed: 1)
  Failed test:  8
  Non-zero exit status: 1
Files=25, Tests=1104, 46 wallclock secs ( 0.16 usr  0.02 sys +  4.17 cusr  0.23 
csys =  4.58 CPU)
Result: FAIL
Failed 1/25 test programs. 1/1104 subtests failed.
make[1]: *** [test_dynamic] Error 255
make[1]: Leaving directory `/tmp/buildd/librpc-xml-perl-0.77'
dh_auto_test: make -j1 test returned exit code 2
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Processed: bug 739144 is forwarded to https://rt.cpan.org/Public/Bug/Display.html?id=86187, tagging 739144

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

 forwarded 739144 https://rt.cpan.org/Public/Bug/Display.html?id=86187
Bug #739144 [src:librpc-xml-perl] librpc-xml-perl: FTBFS: Test failure
Set Bug forwarded-to-address to 
'https://rt.cpan.org/Public/Bug/Display.html?id=86187'.
 tags 739144 + confirmed upstream fixed-upstream
Bug #739144 [src:librpc-xml-perl] librpc-xml-perl: FTBFS: Test failure
Added tag(s) upstream, confirmed, and fixed-upstream.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
739144: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739144
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 728245 in 1.10.3-1, affects 738881, user debian...@lists.debian.org, usertagging 738881 ...

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

 found 728245 1.10.3-1
Bug #728245 [icinga-cgi] icinga-cgi: fails to install: subprocess installed 
post-installation script returned error exit status 1
Marked as found in versions icinga/1.10.3-1.
 affects 738881 + dict-freedict-afr-deu dict-freedict-tur-eng
Bug #738881 [freedict] [dict-freedict-deu-eng] invoke-rc.d: unknown initscript, 
/etc/init.d/dictd not found.
Bug #738973 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
Bug #739031 [freedict] invoke-rc.d: unknown initscript, /etc/init.d/dictd not 
found.
Added indication that 738881 affects dict-freedict-afr-deu and 
dict-freedict-tur-eng
Added indication that 738973 affects dict-freedict-afr-deu and 
dict-freedict-tur-eng
Added indication that 739031 affects dict-freedict-afr-deu and 
dict-freedict-tur-eng
 user debian...@lists.debian.org
Setting user to debian...@lists.debian.org (was a...@debian.org).
 usertags 738881 piuparts
There were no usertags set.
Usertags are now: piuparts.
 affects 738712 + kid3
Bug #738712 [kid3-core,kid3-cli] kid3-core, kid3-cli: fails to upgrade from 
'testing' - trying to overwrite /usr/share/kid3/translations/*
Added indication that 738712 affects kid3
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
728245: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728245
738712: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738712
738881: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738881
738973: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738973
739031: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739031
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#739145: xul-ext-sieve: directory vs. symlink conflict: /usr/share/xul-ext/sieve/chrome/chromeFiles/content/libs/CodeMirror/lib

2014-02-15 Thread Andreas Beckmann
Package: xul-ext-sieve
Version: 0.2.3d-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package installs files over
an existing symlink shipped or created by another package.

Installing something over existing symlinks is considered bad practice.
See e.g. http://lists.debian.org/87ehlevcrf@windlord.stanford.edu

It may break in subtle ways and dpkg cannot detect this as a problem.
* Your package might silently overwrite files installed at the symlink
  destination by other packages.
* If the package shipping the symlink decides to make the link point
  somewhere else (or turn it into a real directory), the files owned
  by your package will be lost somewhere in the filesystem.
* Depending on installation order the problematic path will be created
  either as a symlink or a directory: the package installed first will
  win and all others have lost.
  Note that dpkg intentionally does not replace directories with
  symlinks and vice versa, see in particular the end of point 4 in
  
http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-unpackphase
  (Note: Adding Pre-Depends is *not* a solution.)

This was observed during an upgrade from jessie to sid.

From the attached log (usually somewhere in the middle...):

0m41.7s ERROR: FAIL: silently overwrites files via directory symlinks:
  
/usr/share/xul-ext/sieve/chrome/chromeFiles/content/libs/CodeMirror/lib/codemirror.css
 (xul-ext-sieve) != /usr/share/javascript/codemirror/codemirror.css 
(libjs-codemirror)
  
/usr/share/xul-ext/sieve/chrome/chromeFiles/content/libs/CodeMirror/lib/codemirror.js
 (xul-ext-sieve) != /usr/share/javascript/codemirror/codemirror.js 
(libjs-codemirror)
  
/usr/share/xul-ext/sieve/chrome/chromeFiles/content/libs/CodeMirror/theme/eclipse.css
 (xul-ext-sieve) != /usr/share/javascript/codemirror/theme/eclipse.css 
(libjs-codemirror)

0m44.0s ERROR: FAIL: debsums reports modifications inside the chroot:
  /usr/share/javascript/codemirror/codemirror.css
  /usr/share/javascript/codemirror/codemirror.js


cheers,

Andreas


xul-ext-sieve_0.2.3d-1.log.gz
Description: GNU Zip compressed data


Bug#739144: marked as done (librpc-xml-perl: FTBFS: Test failure)

2014-02-15 Thread Debian Bug Tracking System
Your message dated Sun, 16 Feb 2014 03:49:40 +
with message-id e1wesjc-0003lw...@franck.debian.org
and subject line Bug#739144: fixed in librpc-xml-perl 0.78-1
has caused the Debian Bug report #739144,
regarding librpc-xml-perl: FTBFS: Test failure
to be marked as done.

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

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


-- 
739144: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739144
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: librpc-xml-perl
Version: 0.77-1
Severity: serious

From my pbuilder build log:

...
/usr/bin/perl -MExtUtils::MY -e 'MY-fixin(shift)' -- blib/script/make_method
PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 
'blib/lib', 'blib/arch') t/*.t
t/00_load.t . ok 
t/10_data.t . ok   
t/11_base64_fh.t  ok 
t/12_nil.t .. ok 
t/13_no_deep_recursion.t  ok 
t/14_datetime_iso8601.t . ok   
t/15_serialize.t  1/20 
#   Failed test 'Fault-response content is correct'
#   at t/15_serialize.t line 99.
#  got: '?xml version=1.0 
encoding=us-ascii?methodResponsefaultvaluestructmembernamefaultCode/namevalueint1/int/value/membermembernamefaultString/namevaluestringtest/string/value/member/struct/value/fault/methodResponse'
# expected: '?xml version=1.0 
encoding=us-ascii?methodResponsefaultvaluestructmembernamefaultString/namevaluestringtest/string/value/membermembernamefaultCode/namevalueint1/int/value/member/struct/value/fault/methodResponse'
# Looks like you failed 1 test of 20.
t/15_serialize.t  Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/20 subtests 
t/20_xml_parser.t ... ok   
t/21_xml_libxml.t ... ok   
t/25_parser_negative.t .. ok 
t/29_parserfactory.t  ok 
t/30_procedure.t  ok 
t/35_namespaces.t ... ok   
t/40_server.t ... ok 
t/40_server_xmllibxml.t . ok 
t/41_server_hang.t .. ok   
t/50_client.t ... ok 
t/51_client_with_host_header.t .. ok   
t/60_net_server.t ... ok 
t/70_compression_detect.t ... ok   
t/90_rt50013_parser_bugs.t .. ok   
t/90_rt54183_sigpipe.t .. ok   
t/90_rt54494_blessed_refs.t . ok   
t/90_rt58065_allow_nil.t  ok   
t/90_rt58323_push_parser.t .. ok   

Test Summary Report
---
t/15_serialize.t  (Wstat: 256 Tests: 20 Failed: 1)
  Failed test:  8
  Non-zero exit status: 1
Files=25, Tests=1104, 46 wallclock secs ( 0.16 usr  0.02 sys +  4.17 cusr  0.23 
csys =  4.58 CPU)
Result: FAIL
Failed 1/25 test programs. 1/1104 subtests failed.
make[1]: *** [test_dynamic] Error 255
make[1]: Leaving directory `/tmp/buildd/librpc-xml-perl-0.77'
dh_auto_test: make -j1 test returned exit code 2
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler
---End Message---
---BeginMessage---
Source: librpc-xml-perl
Source-Version: 0.78-1

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

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 739...@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 librpc-xml-perl 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Feb 2014 04:32:01 +0100
Source: librpc-xml-perl
Binary: librpc-xml-perl
Architecture: source all
Version: 0.78-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 librpc-xml-perl - Perl implementation of the XML-RPC protocol
Closes: 739144
Changes: 
 librpc-xml-perl (0.78-1) unstable; urgency=medium
 .
   * New upstream release.
 Fixes FTBFS: Test failure (Closes: #739144)
   * Drop fix-spelling-error-in-manpage.patch, merged upstream.
   * Update years of copyright.
   * Update (build) dependencies.
   * Declare compliance with Debian Policy 

Processed: RE: fatrat: FTBFS: config.hpp:46:2: error: #error you must define either BOOST_ASIO_SEPARATE_COMPILATION or BOOST_ASIO_DYN_LINK in your project in order for asio's declarations to be correc

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

 Tags 713663 +patch
Bug #713663 [src:fatrat] fatrat: FTBFS: config.hpp:46:2: error: #error you must 
define either BOOST_ASIO_SEPARATE_COMPILATION or BOOST_ASIO_DYN_LINK in your 
project in order for asio's declarations to be correct. If you're linking 
dynamically against libtorrent, define BOOST_ASIO_DYN_LINK otherwise 
BOOST_ASIO_SEPARATE_COMPILATION. You can also use pkg-config or boost build, to 
automatically apply these defines
Added tag(s) patch.
 Thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
713663: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=713663
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#713663: fatrat: FTBFS: config.hpp:46:2: error: #error you must define either BOOST_ASIO_SEPARATE_COMPILATION or BOOST_ASIO_DYN_LINK in your project in order for asio's declarations to be correct.

2014-02-15 Thread peter green

Tags 713663 +patch
Thanks

I read the error message and noticed that the debian fatrat package 
appears to be dynamically linked. So per the error message I defined 
BOOST_ASIO_DYN_LINK. I also had to fix a load of other errors. The 
attatched patch makes the package build, I have not tested it beyond 
that and it is probablly a good idea to get it checked over by someone 
who actually understands the code.


I have uploaded to raspbian, I have no intent to NMU in Debian
diff -Nru fatrat-1.1.3/debian/changelog fatrat-1.1.3/debian/changelog
--- fatrat-1.1.3/debian/changelog   2012-05-19 21:25:41.0 +
+++ fatrat-1.1.3/debian/changelog   2014-02-16 03:03:02.0 +
@@ -1,3 +1,11 @@
+fatrat (1.1.3-5+rpi1) jessie-staging; urgency=medium
+
+  * Define BOOST_ASIO_DYN_LINK to fix build failure. (Closes: 713663)
+  * Fix various other build failures that are presumablly
+caused by libtorrent API changes.
+
+ -- Peter Michael Green plugw...@raspbian.org  Sun, 16 Feb 2014 00:59:42 
+
+
 fatrat (1.1.3-5) unstable; urgency=low
 
   * fix_ftbfs_gcc47.patch: fix ftbfs also on kfreebsd. Thanks to
diff -Nru fatrat-1.1.3/debian/patches/define-BOOST_ASIO_DYN_LINK 
fatrat-1.1.3/debian/patches/define-BOOST_ASIO_DYN_LINK
--- fatrat-1.1.3/debian/patches/define-BOOST_ASIO_DYN_LINK  1970-01-01 
00:00:00.0 +
+++ fatrat-1.1.3/debian/patches/define-BOOST_ASIO_DYN_LINK  2014-02-16 
03:09:52.0 +
@@ -0,0 +1,73 @@
+Description: Define BOOST_ASIO_DYN_LINK to fix FTBFS.
+Author: Peter Michael Green plugw...@raspbian.org
+
+Index: fatrat-1.1.3/src/tools/CreateTorrentDlg.h
+===
+--- fatrat-1.1.3.orig/src/tools/CreateTorrentDlg.h 2014-02-16 
01:02:40.0 +
 fatrat-1.1.3/src/tools/CreateTorrentDlg.h  2014-02-16 01:02:40.0 
+
+@@ -32,6 +32,7 @@
+ #include QPair
+ #include QThread
+ #include ui_CreateTorrentDlg.h
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/create_torrent.hpp
+ 
+ class HasherThread;
+Index: fatrat-1.1.3/src/engines/TorrentDownload.h
+===
+--- fatrat-1.1.3.orig/src/engines/TorrentDownload.h2014-02-16 
01:06:03.0 +
 fatrat-1.1.3/src/engines/TorrentDownload.h 2014-02-16 01:08:38.0 
+
+@@ -42,6 +42,7 @@
+ #include QTemporaryFile
+ #include QRegExp
+ #include vector
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/session.hpp
+ #include libtorrent/torrent_handle.hpp
+ #include Proxy.h
+Index: fatrat-1.1.3/src/engines/TorrentIPFilter.h
+===
+--- fatrat-1.1.3.orig/src/engines/TorrentIPFilter.h2010-09-06 
09:43:46.0 +
 fatrat-1.1.3/src/engines/TorrentIPFilter.h 2014-02-16 02:11:29.0 
+
+@@ -28,6 +28,7 @@
+ #ifndef TORRENTIPFILTER_H
+ #define TORRENTIPFILTER_H
+ #include QString
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/ip_filter.hpp
+ 
+ bool loadIPFilter(QString textFile, libtorrent::ip_filter* filter);
+Index: fatrat-1.1.3/src/engines/TorrentPiecesModel.h
+===
+--- fatrat-1.1.3.orig/src/engines/TorrentPiecesModel.h 2014-02-16 
02:19:36.0 +
 fatrat-1.1.3/src/engines/TorrentPiecesModel.h  2014-02-16 
02:19:54.0 +
+@@ -31,6 +31,7 @@
+ #include QItemDelegate
+ #include vector
+ #include QStringList
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/session.hpp
+ 
+ class TorrentDownload;
+Index: fatrat-1.1.3/src/engines/TorrentProgressWidget.h
+===
+--- fatrat-1.1.3.orig/src/engines/TorrentProgressWidget.h  2010-09-06 
09:43:46.0 +
 fatrat-1.1.3/src/engines/TorrentProgressWidget.h   2014-02-16 
02:21:00.0 +
+@@ -32,6 +32,7 @@
+ #include QPaintEvent
+ #include cmath
+ #include cstring
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/bitfield.hpp
+ 
+ class TorrentProgressWidget : public QWidget
+--- fatrat-1.1.3.orig/src/engines/TorrentFilesModel.h
 fatrat-1.1.3/src/engines/TorrentFilesModel.h
+@@ -33,6 +33,7 @@ respects for all of the code used other
+ #include QStringList
+ #include QItemDelegate
+ #include vector
++#define BOOST_ASIO_DYN_LINK
+ #include libtorrent/session.hpp
+ #include libtorrent/bitfield.hpp
+ 
diff -Nru fatrat-1.1.3/debian/patches/series fatrat-1.1.3/debian/patches/series
--- fatrat-1.1.3/debian/patches/series  2012-05-19 21:25:41.0 +
+++ fatrat-1.1.3/debian/patches/series  2014-02-16 03:06:18.0 +
@@ -1,3 +1,5 @@
 define_boost_fs_v2.patch
 fix_ftbfs_gold_linker.patch
 fix_ftbfs_gcc47.patch
+define-BOOST_ASIO_DYN_LINK
+various-build-fixes.patch
diff -Nru fatrat-1.1.3/debian/patches/various-build-fixes.patch 
fatrat-1.1.3/debian/patches/various-build-fixes.patch
--- fatrat-1.1.3/debian/patches/various-build-fixes.patch   

Processed: Upping the severity

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 serious
Bug #559783 [centerim] centerim embeds libgadu, libyahoo2, libmsn, others?
Severity set to 'serious' from 'important'

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


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



Processed: Re: Bug#731861: transition: miniupnc

2014-02-15 Thread Debian Bug Tracking System
Processing control commands:

 unblock 731861 by 737366
Bug #731861 [release.debian.org] transition: miniupnc
731861 was blocked by: 737366
731861 was not blocking any bugs.
Removed blocking bug(s) of 731861: 737366

-- 
731861: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731861
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#659810: udev-discover: uninstallable on kfreebsd-*

2014-02-15 Thread Hideki Yamane
Hi,


 It's obviously that !linux doesn't use udev so set linux-any is proper 
 fix for this FTBFS, IMO. (and it's enough 2 years since it was reported ;)
 
 Could you update it, please?


-- 
Regards,

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


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