Bug#844922: Node-string-decoder

2016-11-22 Thread Ross Gammon

Hi,

This node module was originally packaged as it was a dependency of 
something (I can't remember).


If there is nothing depending on it, we should probably remove it from 
the archive. The string-decoder function from the core nodejs should be 
used instead (patching the module that needs it if required). 
Node-string-decoder is mainly used when a nodejs project wants to stick 
to an old version of this function.


Regards,

Ross



Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Control: clone 845414 -1
Control: reassign -1 mklibs-copy 0.1.42
Control: retitle -1 mklibs-copy: add support for RUNPATH (for newer binutils)
Control: severity -1 important
Control: tags -1 patch pending
Control: block 845414 by -1

Cyril Brulebois  (2016-11-23):
> As expected, libdebconf.so didn't change too much: nm -D and objdump -x
> don't show any differences before/after. But binaries depending on it do
> change; let's look at /usr/lib/cdebconf/debconf for example (still from the
> cdebconf package):
> | (sid-amd64-devel)kibi@wodi:~/debian-installer/packages$ diff -u 
> /tmp/debconf.objdump.{ok,ko}
> | --- /tmp/debconf.objdump.ok 2016-11-23 08:09:37.715596978 +0100
> | +++ /tmp/debconf.objdump.ko 2016-11-23 08:09:42.735672870 +0100
> | @@ -29,7 +29,7 @@
> |NEEDED   libpthread.so.0
> |NEEDED   libdebconf.so
> |NEEDED   libc.so.6
> | -  RPATH/usr/lib/cdebconf
> | +  RUNPATH  /usr/lib/cdebconf
> |INIT 0x0f58
> |FINI 0x1d94
> |INIT_ARRAY   0x00202da8
> 
> Let's see if I can do something with mklibs to account for this change.

It seems it's sufficient to teach mklibs-copy that it can handle RPATH and
RUNPATH in the same way. I've successfully tested a patch that implements
this change, mixing both old and new binaries.

I've managed to build netboot and netboot-gtk images (fetching udebs from
testing to avoid the X11 transition, but pulling cdebconf udebs from sid),
and everything seems to work as intended: build time is OK, and run time
shows cdebconf starting properly (text or gtk).

I think I'll upload mklibs with that patch soon, and I'll probably close
the cdebconf bug report only when that mklibs update reaches testing. With
a little chance, the X11 transition won't last too long, and daily builds
might confirm things are looking good everywhere.

Patch attached for reference.


KiBi.
From 184905b0e534d68400834c1bc4d0d3808c5ab650 Mon Sep 17 00:00:00 2001
From: Cyril Brulebois 
Date: Wed, 23 Nov 2016 08:25:29 +0100
Subject: [PATCH] Add support for DT_RUNPATH in addition to DT_RPATH.

Main reasons to do so include:
 - according to the elf.h header, the latter is deprecated.
 - new versions of binutils generate DT_RUNPATH entries instead of
   DT_RPATH ones, as detailed in cdebconf's #845414.
---
 debian/changelog| 10 ++
 src/mklibs-readelf/elf.cpp  |  1 +
 src/mklibs-readelf/main.cpp |  1 +
 3 files changed, 12 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b90315d..8af9465 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+mklibs (0.1.43) UNRELEASED; urgency=medium
+
+  * Add support for DT_RUNPATH in addition to DT_RPATH. Main reasons to
+do so include:
+ - according to the elf.h header, the latter is deprecated.
+ - new versions of binutils generate DT_RUNPATH entries instead of
+   DT_RPATH ones, as detailed in cdebconf's #845414.
+
+ -- Cyril Brulebois   Wed, 23 Nov 2016 08:21:57 +0100
+
 mklibs (0.1.42) unstable; urgency=high
 
   * mklibs-readelf: Initialize section_DYNAMIC and section_DYNSYM to
diff --git a/src/mklibs-readelf/elf.cpp b/src/mklibs-readelf/elf.cpp
index b8baa9f..0e4c0f3 100644
--- a/src/mklibs-readelf/elf.cpp
+++ b/src/mklibs-readelf/elf.cpp
@@ -419,6 +419,7 @@ dynamic_data<_class, _data>::dynamic_data (Dyn *dyn) throw ()
 case DT_NEEDED:
 case DT_SONAME:
 case DT_RPATH:
+case DT_RUNPATH:
   this->is_string = true;
   break;
 default:
diff --git a/src/mklibs-readelf/main.cpp b/src/mklibs-readelf/main.cpp
index 2444c39..5eace3b 100644
--- a/src/mklibs-readelf/main.cpp
+++ b/src/mklibs-readelf/main.cpp
@@ -147,6 +147,7 @@ static void process (command cmd, const char *filename)
   break;
 case COMMAND_PRINT_RPATH:
   process_dynamics (file, DT_RPATH);
+  process_dynamics (file, DT_RUNPATH);
   break;
 case COMMAND_PRINT_SONAME:
   process_dynamics (file, DT_SONAME);
-- 
2.10.2



signature.asc
Description: Digital signature


Processed: Re: Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> clone 845414 -1
Bug #845414 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Bug 845414 cloned as bug 845418
> reassign -1 mklibs-copy 0.1.42
Bug #845418 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Bug reassigned from package 'src:cdebconf' to 'mklibs-copy'.
No longer marked as found in versions cdebconf/0.219.
Ignoring request to alter fixed versions of bug #845418 to the same values 
previously set
Bug #845418 [mklibs-copy] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Marked as found in versions mklibs/0.1.42.
> retitle -1 mklibs-copy: add support for RUNPATH (for newer binutils)
Bug #845418 [mklibs-copy] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Changed Bug title to 'mklibs-copy: add support for RUNPATH (for newer 
binutils)' from 'cdebconf: makes debian-installer FTBFS due to libdebconf.so 
issues (binutils)'.
> severity -1 important
Bug #845418 [mklibs-copy] mklibs-copy: add support for RUNPATH (for newer 
binutils)
Severity set to 'important' from 'grave'
> tags -1 patch pending
Bug #845418 [mklibs-copy] mklibs-copy: add support for RUNPATH (for newer 
binutils)
Added tag(s) patch and pending.
> block 845414 by -1
Bug #845414 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
845414 was not blocked by any bugs.
845414 was not blocking any bugs.
Added blocking bug(s) of 845414: 845418

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



Bug#845416: libstdc++-arm-none-eabi-newlib: Please update to 5.4.1

2016-11-22 Thread David Tulloh
Package: libstdc++-arm-none-eabi-newlib
Version: 15:4.9.3+svn227297-1+8
Severity: grave
Justification: renders package unusable

Dear Maintainer,

gcc-arm-none-eabi is a v5.4.1 for both Testing and Unstable.

Please update to match.


Current packages mean that c++ compilation will not work on Testing:

$ arm-none-eabi-g++ --version
arm-none-eabi-g++ (15:5.4.1+svn241155-1) 5.4.1 20160919
$ echo | arm-none-eabi-g++ -Wp,-v -x c++ - -fsyntax-only
ignoring nonexistent directory
"/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/include/c++/5.4.1"
ignoring nonexistent directory
"/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/include/c++/5.4.1/arm-none-eabi"
ignoring nonexistent directory
"/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/include/c++/5.4.1/backward"
ignoring nonexistent directory
"/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/sys-include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/lib/gcc/arm-none-eabi/5.4.1/include
 /usr/lib/gcc/arm-none-eabi/5.4.1/include-fixed
 /usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/include
End of search list.


David


-- System Information:
Debian Release: 8.6
  APT prefers stable
  APT policy: (800, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'oldstable-updates'), (500, 'oldstable'), (400, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.4.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libstdc++-arm-none-eabi-newlib depends on:
ii  libnewlib-arm-none-eabi  2.1.0+git20140818.1a8323b-2
ii  libnewlib-dev2.1.0+git20140818.1a8323b-2

Versions of packages libstdc++-arm-none-eabi-newlib recommends:
ii  binutils-arm-none-eabi  2.25-5+5+b1
ii  gcc-arm-none-eabi   15:5.4.1+svn241155-1



Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Cyril Brulebois  (2016-11-23):
> | mklibs-copy -L ./tmp/netboot/tree/usr/lib -L 
> ./tmp/netboot/tree/usr/lib/x86_64-linux-gnu \
> | -L ./tmp/netboot/udeblibs -v -d ./tmp/netboot/tree/lib 
> --root=./tmp/netboot/tree \
> | -L ./tmp/netboot/tree/usr/lib/cdebconf/frontend \
> | -ltext.so -lnewt.so \
> | `find ./tmp/netboot -type f -a \( -perm /0111 -o -name '*.so' -o -name 
> '*.so.*' \) | \
> |  grep -v udeblibs | grep -v 'usr/lib/xorg/modules/.*\.so'`
> | INFO: Using /lib64/ld-linux-x86-64.so.2 as dynamic linker
> | INFO: library reduction pass 1
> | File not found:libdebconf.so
> | Makefile:485: recipe for target 'stamps/tree-netboot-stamp' failed
> 
> This happened for daily builds, and is reproducible on sid devel chroots,
> on various architectures.
> 
> Based on a hunch, I investigated a few things around binutils: downgrading
> it to try a debian-installer build, with or without cdebconf udebs rebuilt
> against the said binutils. Results:
> 
> cdebconf 0.219 (rebuilt with 2.27.51.20161108-1) => debian-installer builds 
> fine, with old & new binutils.
> cdebconf 0.219 (rebuilt with 2.27.51.20161118-2) => debian-installer FTBFS, 
> with old & new binutils.
> 
> I'll try and investigate a bit more, maybe some other packages are going
> to be affected by this, but cdebconf is special considering it has
> plugins; also, binutils had commits touching the linker…

As expected, libdebconf.so didn't change too much: nm -D and objdump -x
don't show any differences before/after. But binaries depending on it do
change; let's look at /usr/lib/cdebconf/debconf for example (still from the
cdebconf package):
| (sid-amd64-devel)kibi@wodi:~/debian-installer/packages$ diff -u 
/tmp/debconf.objdump.{ok,ko}
| --- /tmp/debconf.objdump.ok   2016-11-23 08:09:37.715596978 +0100
| +++ /tmp/debconf.objdump.ko   2016-11-23 08:09:42.735672870 +0100
| @@ -29,7 +29,7 @@
|NEEDED   libpthread.so.0
|NEEDED   libdebconf.so
|NEEDED   libc.so.6
| -  RPATH/usr/lib/cdebconf
| +  RUNPATH  /usr/lib/cdebconf
|INIT 0x0f58
|FINI 0x1d94
|INIT_ARRAY   0x00202da8

Let's see if I can do something with mklibs to account for this change.


KiBi.


signature.asc
Description: Digital signature


Bug#842815: Re-opening: Please support HDF5 1.10

2016-11-22 Thread Andreas Tille
Hi Bernd,

On Wed, Nov 23, 2016 at 06:54:21AM +0100, Bernd Rinn wrote:
> the migration of JHDF5 to HDF5 1.10 is ongoing and mostly depend on me
> having a block of time I can spend on it. Your analysis of the work that
> needs to be done is right from what I can see. The plan is to switch to
> using the JNI library from the HDF group wherever possible (it may still
> be necessary to have a small JNI library though as some calls appear to
> be missing).

Thanks for your feedback.
 
> I will keep you updated.

This would be very helpful.  Just to let you know:  If you want to have
JHDF5 distributed with the next stable Debian release the deadline for a
fix would be about Christmas since there is a freeze at 5.1.2017 and the
package needs 10 days from beeing uploaded to make it into the pool
called "testing" where all release candidates are residing.

Kind regards and thanks for your cooperation

  Andreas.

-- 
http://fam-tille.de



Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Source: cdebconf
Version: 0.219
Severity: grave
Justification: renders package unusable

This update has to stay away from testing since it generates the following
issue during the build:
| # HACK ALERT: X.Org modules are excluded from the scan as mklibs
| # is unable to find symbols provided by the /usr/bin/Xorg binary
| mklibs-copy -L ./tmp/netboot/tree/usr/lib -L 
./tmp/netboot/tree/usr/lib/x86_64-linux-gnu \
|   -L ./tmp/netboot/udeblibs -v -d ./tmp/netboot/tree/lib 
--root=./tmp/netboot/tree \
|   -L ./tmp/netboot/tree/usr/lib/cdebconf/frontend \
|   -ltext.so -lnewt.so \
|   `find ./tmp/netboot -type f -a \( -perm /0111 -o -name '*.so' -o -name 
'*.so.*' \) | \
|grep -v udeblibs | grep -v 'usr/lib/xorg/modules/.*\.so'`
| INFO: Using /lib64/ld-linux-x86-64.so.2 as dynamic linker
| INFO: library reduction pass 1
| File not found:libdebconf.so
| Makefile:485: recipe for target 'stamps/tree-netboot-stamp' failed

This happened for daily builds, and is reproducible on sid devel chroots,
on various architectures.

Based on a hunch, I investigated a few things around binutils: downgrading
it to try a debian-installer build, with or without cdebconf udebs rebuilt
against the said binutils. Results:

cdebconf 0.219 (rebuilt with 2.27.51.20161108-1) => debian-installer builds 
fine, with old & new binutils.
cdebconf 0.219 (rebuilt with 2.27.51.20161118-2) => debian-installer FTBFS, 
with old & new binutils.

I'll try and investigate a bit more, maybe some other packages are going
to be affected by this, but cdebconf is special considering it has
plugins; also, binutils had commits touching the linker…


On not entirely unrelated notes:
 - cdebconf will FTBFS on buildds due to this x11-common bug: #845405
   (seen with jenkins jobs going red as noticed on IRC)
 - d-i will FTBFS for a while on x86 due to the X11 transition.


KiBi.



Bug#773747: marked as done (pgpdump: CVE-2016-4021: endless loop parsing specially crafted input)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 06:33:53 +
with message-id 
and subject line Bug#773747: fixed in pgpdump 0.31-0.1
has caused the Debian Bug report #773747,
regarding pgpdump: CVE-2016-4021: endless loop parsing specially crafted input
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.)


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

Package: pgpdump
Version: 0.28-1
Usertags: afl

pgpdump hangs when trying to dump the attached crafted file.

strace tells me it's repeatedly trying to read past EOF:

read(0, "", 8192)   = 0
read(0, "", 8192)   = 0
read(0, "", 8192)   = 0
read(0, "", 8192)   = 0
read(0, "", 8192)   = 0
[...ad infinitum...]

This bug was found using American fuzzy lop:
https://packages.debian.org/experimental/afl

-- System Information:
Debian Release: 8.0
 APT prefers unstable
 APT policy: (990, 'unstable'), (500, 'experimental')
Architecture: i386 (x86_64)
Foreign Architectures: amd64

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

Versions of packages pgpdump depends on:
ii  libbz2-1.0  1.0.6-7+b2
ii  libc6   2.19-13
ii  zlib1g  1:1.2.8.dfsg-2+b1

--
Jakub Wilk
--- End Message ---
--- Begin Message ---
Source: pgpdump
Source-Version: 0.31-0.1

We believe that the bug you reported is fixed in the latest version of
pgpdump, 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 773...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Daniel Kahn Gillmor  (supplier of updated pgpdump 
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: Wed, 23 Nov 2016 01:23:35 -0500
Source: pgpdump
Binary: pgpdump
Architecture: source
Version: 0.31-0.1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas 
Changed-By: Daniel Kahn Gillmor 
Description:
 pgpdump- PGP packet visualizer
Closes: 773747 845390
Changes:
 pgpdump (0.31-0.1) unstable; urgency=medium
 .
   [ Daniel Kahn Gillmor ]
   * Non-maintainer upload (Closes: #845390, #773747)
   * use https URLs for Vcs-*
   * wrap-and-sort -ast
   * use dh_autoreconf
   * move to dh 10
   * imported patches from Peter Pentchev, already upstreamed
   * make debian/test work correctly
   * set up autopkgtest
 .
   [ Peter Pentchev ]
   * Bump Standards-Version to 3.9.8 with no changes.
   * Switch to HTTPS for the copyright format spec URL, too.
   * Break the BSD-3-clause license into a separate section.
   * Drop the dirs file, the upstream build system creates them.
   * Enable all the hardening build options.
   * Switch to the 3.0 (quilt) source format.
   * Add Multi-Arch: foreign to the binary package.
   * Add an upstream metadata file.
Checksums-Sha1:
 e8338d32439ddbdfe83fb8c854f383bcb405766d 2068 pgpdump_0.31-0.1.dsc
 cbf4023556257818efbefd91a13e3b57b56af17f 64012 pgpdump_0.31.orig.tar.gz
 14fa6e10f08fc6c79f443f5bb885f0b9ade4ca33 6028 pgpdump_0.31-0.1.debian.tar.xz
Checksums-Sha256:
 4347417df739ef3636820a3e08edd487127c51929c0b855d3fb198a0b3895746 2068 
pgpdump_0.31-0.1.dsc
 7abf04a530c902cfb1f1a81c6b5fb88bd2c12b5f3c37dceb1245bfe28f2a7c0b 64012 
pgpdump_0.31.orig.tar.gz
 bc613d133f844a6cebb4e077b232d33602842418b0cc60ce6c489e4a63d3b319 6028 
pgpdump_0.31-0.1.debian.tar.xz
Files:
 0b283303b984b8bee9180d27ff7838a4 2068 utils optional pgpdump_0.31-0.1.dsc
 7defa0e9d7a12d254107d775c317430a 64012 utils optional pgpdump_0.31.orig.tar.gz
 af50db070d1ed7902724d069d712f51d 6028 utils optional 
pgpdump_0.31-0.1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQKqBAEBCgCUFiEE7bLnT1b88rZyl7c1JOz/Wv9oNwoFAlg1N5VfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEVE
QjJFNzRGNTZGQ0YyQjY3Mjk3QjczNTI0RUNGRjVBRkY2ODM3MEEWHGRrZ0BmaWZ0
aGhvcnNlbWFuLm5ldAAKCRAk7P9a/2g3CqdDD/4+XbAY6MdsHhgw3gURfCi4L1iW

Bug#845413: nftables linked against libxtables12 but depends on libxtables11

2016-11-22 Thread Håvard Moen
Package: nftables
Version: 0.6+snapshot20161117-1
Severity: serious
Justification: Policy 3.5

nftables depends on libxtables11, but it's linked against libxtable

# ldd /usr/sbin/nft
linux-vdso.so.1 (0x7ffc53dd9000)
libmnl.so.0 => /lib/x86_64-linux-gnu/libmnl.so.0 (0x7fe8d3243000)
libnftnl.so.4 => /usr/lib/x86_64-linux-gnu/libnftnl.so.4 
(0x7fe8d3015000)
libxtables.so.12 => not found
libreadline.so.7 => /lib/x86_64-linux-gnu/libreadline.so.7 
(0x7fe8d2dc8000)
libgmp.so.10 => /usr/lib/x86_64-linux-gnu/libgmp.so.10 
(0x7fe8d2b45000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fe8d27a5000)
libjansson.so.4 => /usr/lib/x86_64-linux-gnu/libjansson.so.4 
(0x7fe8d2598000)
libtinfo.so.5 => /lib/x86_64-linux-gnu/libtinfo.so.5 
(0x7fe8d236e000)
/lib64/ld-linux-x86-64.so.2 (0x55d7fb50a000)

which causes it not to be able to run

# nft
nft: error while loading shared libraries: libxtables.so.12: cannot open shared 
object file: No such file or directory

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=nb_NO.utf8, LC_CTYPE=nb_NO.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages nftables depends on:
ii  dpkg 1.18.15
ii  init-system-helpers  1.46
ii  libc62.24-5
ii  libgmp10 2:6.1.1+dfsg-1
ii  libmnl0  1.0.4-2
ii  libnftnl41.0.6+snapshot20161117-1
ii  libreadline7 7.0-1
ii  libxtables11 1.6.0-4

nftables recommends no packages.

nftables suggests no packages.

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

-- no debconf information



Bug#845412: installation-guide: FTBFS in German pages after r70343

2016-11-22 Thread Cyril Brulebois
Source: installation-guide
Severity: serious
Justification: FTBFS

Hi,

The installation guide can't be compiled from svn, see error messages
below. If my svn foo isn't too crappy, I've tracked it down to this
revision, which was supposed to add support for mips64el:
| 
| r70343 | holgerw | 2016-11-22 22:45:31 +0100 (Tue, 22 Nov 2016) | 2 lines
| 
| Update german d-i manual back to 100%
| 
| 

(Holger x-d-cc'd accordingly.)

For reference, when building amd64 for German:
| (sid-amd64-devel)kibi@wodi:~/debian-installer/manual$ ./build/buildone.sh 
amd64 de
| Info: creating temporary profiled .xml file...
| warning: failed to load external entity 
"/home/kibi/debian-installer/manual/de/hardware/supported/mips64el.xml"
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:211: 
parser error : Failure to process entity supported-mips64el.xml
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:211: 
parser error : Entity 'supported-mips64el.xml' not defined
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:482: 
parser error : chunk is not well balanced
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:15: parser error 
: Failure to process entity hardware-supported.xml
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:15: parser error 
: Entity 'hardware-supported.xml' not defined
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:21: parser error 
: chunk is not well balanced
| 
| ^
| build.tmp/install.de.xml:30: parser error : Failure to process entity 
hardware.xml
| 
|   ^
| build.tmp/install.de.xml:30: parser error : Entity 'hardware.xml' not defined
| 
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:4: element 
sect2: validity error : ID usb-boot already defined
|   
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:267: element 
sect2: validity error : ID boot-tftp already defined
|   Mit TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:489: element 
footnote: validity error : ID gtk-miniiso already defined
| mini ISO-Image
|^
| /home/kibi/debian-installer/manual/de/boot-installer/ia64.xml:332: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
|^
| /home/kibi/debian-installer/manual/de/boot-installer/mips.xml:5: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
|^
| /home/kibi/debian-installer/manual/de/boot-installer/mipsel.xml:4: element 
sect2: validity error : ID boot-tftp already defined
|   Per TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/powerpc.xml:142: element 
sect2: validity error : ID usb-boot already defined
|   
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/powerpc.xml:203: element 
sect2: validity error : ID boot-tftp already defined
|   Per TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/sparc.xml:4: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
| ^
| unable to parse build.tmp/install.de.xml


KiBi.



Bug#842815: Re-opening: Please support HDF5 1.10

2016-11-22 Thread Bernd Rinn
Hi Andreas,

the migration of JHDF5 to HDF5 1.10 is ongoing and mostly depend on me
having a block of time I can spend on it. Your analysis of the work that
needs to be done is right from what I can see. The plan is to switch to
using the JNI library from the HDF group wherever possible (it may still
be necessary to have a small JNI library though as some calls appear to
be missing).

I will keep you updated.

Kind regards,

Bernd

On 11/22/2016 03:31 PM, Andreas Tille wrote:
> Hi Bernd,
> 
> I'm hereby forwarding the main parts of the discussion of the bug report
> which might contain hints what to do to make jhdf5 compliant with hdf5
> version 1.10.
> 
> It would be nice if you could give us a hint if you were able to fix this.
> 
> Kind regards
> 
>   Andreas.
> 
> On Tue, Nov 15, 2016 at 12:37:20AM +0100, Gilles Filippini wrote:
> Thank you for this upload. Have you tested the build against hdf5-1.10
> in experimental?

 Hmmm, sorry, no - I just made sure that the *sid* pbuilder environment
 is instaling hdf5-1.10.
>>>
>>> Ah. The fact that HDF5 1.8.16 builds libhdf5-10 might be confusing. HDF5
>>> 1.10 builds libhdf5-100 and is still in experimental.
>>>
 If this is not sufficient please reopen ...
 and please give some helping hint if the package might not build
 properly.  Otherwise I have no idea what to do - patches are very
 welcome.
>>>
>>> There are at least 3 majors changes brought by HDF5 1.10:
>>> 1- The widely used hid_t datatype is now uint64_t (instead of int)
>>> 2- The java wrapper library is now part of the HDF5 source tree
>>> 3- HDF5Exception is now a checked exception.
>>>
>>> (2) and (3) might be worked out with a new upload of hdf5, to ship the
>>> java wrapper library packages, patched to define HDF5Exception as an
>>> unchecked exception. I'd rather wait after the transition.
>>>
>>> (1) Involves patching libsis-jhdf5-java.
>>
>> I've spent some time trying to figure it out, and I'm afraid this is a
>> huge task I can't afford working on.
>>
>>> The best option would be a new upstream release. Do you know their
>>> schedule wrt HDF5 1.10?
>>
>> If there is a risk that libsis-jhdf5-java won't be ready for stretch,
>> then we could easily avoid the fastqc removal by disabling the fast5
>> file format support. It should be easy enough for anyone to convert
>> fast5 files to fastq using e.g. poretools.
>> What do you think?



smime.p7s
Description: S/MIME Cryptographic Signature


Processed: retitle 845243 to imagemagick: CVE-2016-9559: null pointer passed as argument 2, which is declared to never be null

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 845243 imagemagick: CVE-2016-9559: null pointer passed as argument 2, 
> which is declared to never be null
Bug #845243 [src:imagemagick] null pointer passed as argument 2, which is 
declared to never be null
Changed Bug title to 'imagemagick: CVE-2016-9559: null pointer passed as 
argument 2, which is declared to never be null' from 'null pointer passed as 
argument 2, which is declared to never be null'.
> thanks
Stopping processing here.

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



Processed: retitle 845242 to imagemagick: CVE-2016-9556: Heap buffer overflow in heap-buffer-overflow in IsPixelGray

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 845242 imagemagick: CVE-2016-9556: Heap buffer overflow in 
> heap-buffer-overflow in IsPixelGray
Bug #845242 [src:imagemagick] Heap buffer overflow in heap-buffer-overflow in 
IsPixelGray
Changed Bug title to 'imagemagick: CVE-2016-9556: Heap buffer overflow in 
heap-buffer-overflow in IsPixelGray' from 'Heap buffer overflow in 
heap-buffer-overflow in IsPixelGray'.
> thanks
Stopping processing here.

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



Processed: Re: Bug#844910: devscripts: FTBFS: Tests failures

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> owner -1 !
Bug #844910 [src:devscripts] devscripts: FTBFS: Tests failures
Owner recorded as James McCoy .

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



Bug#844910: devscripts: FTBFS: Tests failures

2016-11-22 Thread James McCoy
Control: owner -1 !

On Sat, Nov 19, 2016 at 08:01:03AM +0100, Lucas Nussbaum wrote:
> Relevant part (hopefully):
> > test_dscextractChangelog
> > test_debchange
> > test_list_unreleased
> > test_debuild2
> > ASSERT:standard output of debuild --no-conf --no-lintian 
> > --preserve-envvar=PATH --preserve-envvar=PERL5LIB 
> > --preserve-envvar=DEBFULLNAME --preserve-envvar=DEBEMAIL 
> > --preserve-envvar=GNUPGHOME -k'uscan test key (no secret) 
> > ' matches 
> > /<>/test/package_lifecycle/debuild.txt\n expected:<0> but 
> > was:<1>
> > 20d19
> > <  dpkg-genbuildinfo
> > test_debdiff

I'll have a fix for this up soon.  I've covered it as part of my
refactoring of debuild to remove dpkg-buildpackag emulation (#789581).

Cheers,
-- 
James
GPG Key: 4096R/91BF BF4D 6956 BD5D F7B7  2D23 DFE6 91AE 331B A3DB



Bug#806046: marked as done (horgand: FTBFS when built with dpkg-buildpackage -A (No such file or directory))

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 05:18:35 +
with message-id 
and subject line Bug#806046: fixed in horgand 1.14-7
has caused the Debian Bug report #806046,
regarding horgand: FTBFS when built with dpkg-buildpackage -A (No such file or 
directory)
to be marked as done.

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

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


-- 
806046: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=806046
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:horgand
Version: 1.14-5
User: sanv...@debian.org
Usertags: binary-indep
Severity: important

Dear maintainer:

I tried to build this package with "dpkg-buildpackage -A"
(i.e. only architecture-independent packages), and it failed:


[...]
 fakeroot debian/rules binary-indep
dh binary-indep --with autoreconf
   dh_testroot -i
   dh_prep -i
   dh_installdirs -i
   dh_auto_install -i
make -j1 install DESTDIR=/<>/debian/tmp 
AM_UPDATE_INFO_DIR=no
make[1]: Entering directory '/<>'
Making install in src
make[2]: Entering directory '/<>/src'
make[3]: Entering directory '/<>/src'
 /bin/mkdir -p '/<>/debian/tmp/usr/lib/horgand'
  /usr/bin/install -c horgand '/<>/debian/tmp/usr/lib/horgand'
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/<>/src'
make[2]: Leaving directory '/<>/src'
Making install in data
make[2]: Entering directory '/<>/data'
make[3]: Entering directory '/<>/data'
make[3]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/<>/debian/tmp/usr/share/horgand'
 /usr/bin/install -c -m 644 Default.horeb Rhythm_List.txt 130_Houseloop_2.wav 
AcousticBass.wav crackle_loop01.wav egg_loop01.wav FenderBass.wav 
FretlessBass.wav frog_loop01.wav funkyfeet1.wav 
'/<>/debian/tmp/usr/share/horgand'
make[3]: Leaving directory '/<>/data'
make[2]: Leaving directory '/<>/data'
Making install in man
make[2]: Entering directory '/<>/man'
make[3]: Entering directory '/<>/man'
make[3]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/<>/debian/tmp/usr/share/man/man1'
 /usr/bin/install -c -m 644 horgand.1 
'/<>/debian/tmp/usr/share/man/man1'
make[3]: Leaving directory '/<>/man'
make[2]: Leaving directory '/<>/man'
make[2]: Entering directory '/<>'
make[3]: Entering directory '/<>'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/<>'
make[2]: Leaving directory '/<>'
make[1]: Leaving directory '/<>'
   debian/rules override_dh_install
make[1]: Entering directory '/<>'
dh_install
cp debian/horgand.wrapper /<>/debian/horgand/usr/bin/horgand
cp: cannot create regular file 
'/<>/debian/horgand/usr/bin/horgand': No such file or directory
debian/rules:10: recipe for target 'override_dh_install' failed
make[1]: *** [override_dh_install] Error 1
make[1]: Leaving directory '/<>'
debian/rules:4: recipe for target 'binary-indep' failed
make: *** [binary-indep] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary-indep gave error exit 
status 2


Sorry not to have a fix, as I am reporting many bugs similar to
this one, but I can give some general hints:

* If all the arch-independent packages are dummy transitional packages
released with jessie, the easy fix is to drop them now.
 
* If not, debian/rules should be modified so that the binary-indep
target works in all cases, even when binary-arch is not used (this is
what the "Architecture: all" autobuilder does). For that:

* If you are using debhelper, you might want to use options -a and -i
for dh_* commands so that they do not act on packages they do not
have to act.

* Also, if you are using dh, the (independently) optional targets
override_dh_foo-arch and override_dh_foo-indep (for several values
of "foo") may be useful to write a debian/rules which behaves exactly
as desired.


After checking that both "dpkg-buildpackage -A" and "dpkg-buildpackage -B"
work properly, this package will be suitable to be uploaded in
source-only form if you wish (you might want to try it).

Thanks.
--- End Message ---
--- Begin Message ---
Source: horgand
Source-Version: 1.14-7

We believe that the bug you reported is fixed in the latest version of
horgand, 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 

Bug#806046: marked as pending

2016-11-22 Thread Free Ekanayaka
tag 806046 pending
thanks

Hello,

Bug #806046 reported by you has been fixed in the Git repository. You can
see the changelog below, and you can check the diff of the fix at:

http://git.debian.org/?p=pkg-multimedia/horgand.git;a=commitdiff;h=bb151de

---
commit bb151dec481c9f01aec894a2a38c348a3faca498
Author: Free Ekanayaka 
Date:   Wed Nov 23 05:05:13 2016 +

Update changelog for 1.14-7 release

diff --git a/debian/changelog b/debian/changelog
index 9d8d846..7dc34eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+horgand (1.14-7) unstable; urgency=medium
+
+  * Update my mail in Uploaders
+  * Override dh_install only when creating arch-dependent
+packages (Closes: #806046)
+
+ -- Free Ekanayaka   Wed, 23 Nov 2016 05:04:58 +
+
 horgand (1.14-6) unstable; urgency=medium
 
   * Team upload.



Processed: Bug#806046 marked as pending

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 806046 pending
Bug #806046 [src:horgand] horgand: FTBFS when built with dpkg-buildpackage -A 
(No such file or directory)
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#844934: marked as done (obsub: FTBFS: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 2855: ordinal not in range(128))

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 05:03:23 +
with message-id 
and subject line Bug#844934: fixed in obsub 0.2-2
has caused the Debian Bug report #844934,
regarding obsub: FTBFS: UnicodeDecodeError: 'ascii' codec can't decode byte 
0xc3 in position 2855: ordinal not in range(128)
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.)


-- 
844934: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844934
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: obsub
Version: 0.2-1
Severity: serious
Tags: stretch sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20161118 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part (hopefully):
>  fakeroot debian/rules clean
> dh clean --with python2,python3 --buildsystem=pybuild
>dh_testdir -O--buildsystem=pybuild
>dh_auto_clean -O--buildsystem=pybuild
> I: pybuild base:184: python2.7 setup.py clean 
> running clean
> removing '/<>/.pybuild/pythonX.Y_2.7/build' (and everything 
> under it)
> 'build/bdist.linux-x86_64' does not exist -- can't clean it
> 'build/scripts-2.7' does not exist -- can't clean it
> I: pybuild base:184: python3.5 setup.py clean 
> Traceback (most recent call last):
>   File "setup.py", line 10, in 
> long_description = open('README.rst').read()
>   File "/usr/lib/python3.5/encodings/ascii.py", line 26, in decode
> return codecs.ascii_decode(input, self.errors)[0]
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 2855: 
> ordinal not in range(128)
> E: pybuild pybuild:276: clean: plugin distutils failed with: exit code=1: 
> python3.5 setup.py clean 
> dh_auto_clean: pybuild --clean --test-nose -i python{version} -p 3.5 returned 
> exit code 13
> debian/rules:6: recipe for target 'clean' failed
> make: *** [clean] Error 25

The full build log is available from:
   http://aws-logs.debian.net/2016/11/18/obsub_0.2-1_unstable.log

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

About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---
--- Begin Message ---
Source: obsub
Source-Version: 0.2-2

We believe that the bug you reported is fixed in the latest version of
obsub, 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 844...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Free Ekanayaka  (supplier of updated obsub 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, 23 Nov 2016 04:43:58 +
Source: obsub
Binary: python-obsub python3-obsub
Architecture: source all
Version: 0.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Free Ekanayaka 
Description:
 python-obsub - Python module that implements the observer pattern via a 
decorato
 python3-obsub - Test fixtures providing fake versions of various system 
resources
Closes: 844934
Changes:
 obsub (0.2-2) unstable; urgency=medium
 .
   * Add setup-read-bytes patch to read README.rst as bytes and
 then convert using UTF-8 encoding (Closes: #844934).
Checksums-Sha1:
 48daa970b22564af69614a511940e8cbf56432d7 2173 obsub_0.2-2.dsc
 f8963022d705f5de2b5f63dd462ba285a7bfef1b 2568 obsub_0.2-2.debian.tar.xz
 3f20a34364c11b7a78e41ac290282348fee452d7 5381 obsub_0.2-2_amd64.buildinfo
 1ff91659e0aa0e786bc1cb8f04707d920c21d08f 8182 python-obsub_0.2-2_all.deb
 ecf68ed088dadc19eb3c5cf3b724af7fbc24142a 8256 python3-obsub_0.2-2_all.deb
Checksums-Sha256:
 a2bcbb88d36d0cb62b180e89398bb66db25d8804a3df91ed54ed019be97516ef 2173 
obsub_0.2-2.dsc
 17880c5cf006f9305ad9bfb2213751b731a5f473e8dc24db6518fe2f5cf1a585 2568 
obsub_0.2-2.debian.tar.xz
 a23cbd32c9b7e797dbf5b594529c43bb18bbdfaea66c7aa80aa1fe369e062802 5381 
obsub_0.2-2_amd64.buildinfo
 

Bug#844934: marked as pending

2016-11-22 Thread Free Ekanayaka
tag 844934 pending
thanks

Hello,

Bug #844934 reported by you has been fixed in the Git repository. You can
see the changelog below, and you can check the diff of the fix at:


http://git.debian.org/?p=python-modules/packages/obsub.git;a=commitdiff;h=224b46e

---
commit 224b46e0dda4addb26cfa7ced21691c871756daa
Author: Free Ekanayaka 
Date:   Wed Nov 23 04:44:08 2016 +

Update changelog for 0.2-2 release

diff --git a/debian/changelog b/debian/changelog
index e176659..5e848c0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+obsub (0.2-2) unstable; urgency=medium
+
+  * Add setup-read-bytes patch to read README.rst as bytes and
+then convert using UTF-8 encoding (Closes: #844934).
+
+ -- Free Ekanayaka   Wed, 23 Nov 2016 04:43:58 +
+
 obsub (0.2-1) unstable; urgency=medium
 
   * Initial release (Closes: #844436)



Processed: Bug#844934 marked as pending

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 844934 pending
Bug #844934 [src:obsub] obsub: FTBFS: UnicodeDecodeError: 'ascii' codec can't 
decode byte 0xc3 in position 2855: ordinal not in range(128)
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#845398: x11-common: Can't configure

2016-11-22 Thread Tianon Gravi
On Wed, 23 Nov 2016 01:53:45 +0100 Samuel Thibault  wrote:
> I guess what was meant was rather
>
> db_unregister x11-common/xwrapper/allowed_users
> db_unregister x11-common/xwrapper/actual_allowed_users

I tested this locally just to see if I could get past the configure
failure, and the fix will probably need to go one step further with
either "|| :" / "|| true" or an explicit "if ! db_unregister ...; then
# do something about it; fi"

> $ sudo DEBCONF_DEBUG=developer dpkg --configure x11-commonSetting up 
> x11-common (1:7.7+17) ...
> debconf (developer): frontend started
> debconf (developer): frontend running, package name is x11-common
> debconf (developer): starting /var/lib/dpkg/info/x11-common.postinst 
> configure 1:7.7+16
> debconf (developer): <-- UNREGISTER x11-common/xwrapper/allowed_users
> debconf (developer): --> 10 x11-common/xwrapper/allowed_users doesn't exist
> dpkg: error processing package x11-common (--configure):
> subprocess installed post-installation script returned error exit status 10
> Errors were encountered while processing:
>  x11-common

After changing to the following, I was successful in completing the
configure of x11-common:

> db_unregister x11-common/xwrapper/allowed_users || :
> db_unregister x11-common/xwrapper/actual_allowed_users || :

♥,
- Tianon
  4096R / B42F 6819 007F 00F8 8E36  4FD4 036A 9C25 BF35 7DD4



Bug#828241: atheme-services: FTBFS with openssl 1.1.0

2016-11-22 Thread Antoine Beaupré
Control: fixed 828241 7.2.6-1
On 2016-11-10 05:03:17, Adrian Bunk wrote:
> On Mon, Aug 01, 2016 at 07:18:38PM -0400, Antoine Beaupré wrote:
>> On 2016-06-26 06:21:03, Kurt Roeckx wrote:
>> > OpenSSL 1.1.0 is about to released.  During a rebuild of all packages using
>> > OpenSSL this package fail to build.  A log of that build can be found at:
>> > https://breakpoint.cc/openssl-1.1-rebuild-2016-05-29/Attempted/atheme-services_7.0.7-2_amd64-20160529-1405
>> >
>> > On https://wiki.openssl.org/index.php/1.1_API_Changes you can see various 
>> > of the
>> > reasons why it might fail.  There are also updated man pages at
>> > https://www.openssl.org/docs/manmaster/ that should contain useful 
>> > information.
>> >
>> > There is a libssl-dev package available in experimental that contains a 
>> > recent
>> > snapshot, I suggest you try building against that to see if everything 
>> > works.
>> >
>> > If you have problems making things work, feel free to contact us.
>> 
>> Hi!
>> 
>> I have just uploaded 7.2.6 to sid. Hopefully I didn't mess *that* up but
>> since it is a more recent, I wonder if this bug will just be fixed on
>> its own. Are rebuilds done regularly?
>> 
>> I do not have time right now to investigate this further, but let me
>> know if I do need to run a rebuild on my own.
>
> 7.2.6-1 fails to build in unstable with OpenSSL 1.1.0:
>
> pbkdf2.c: In function 'PKCS5_PBKDF2_HMAC':
> pbkdf2.c:47:11: error: storage size of 'hctx' isn't known
>   HMAC_CTX hctx;
>^~~~
> pbkdf2.c:51:2: error: implicit declaration of function 'HMAC_CTX_init' 
> [-Werror=implicit-function-declaration]
>   HMAC_CTX_init();
>   ^
> pbkdf2.c:87:2: error: implicit declaration of function 
> 'HMAC_CTX_cleanup' [-Werror=implicit-function-declaration]
>   HMAC_CTX_cleanup();
>   ^~~~

For the record, upstream released two patches that fix the issues and
that I have uploaded to unstable as part of a new upstream release as
well.

I have tested that the package still compiles correctly under OpenSSL
1.0, so I believe this bug is *also* fixed in stretch, because:

 1. if 7.2.7 doesn't migrate down to stretch because OpenSSL 1.1 doesn't
make it, the stretch version (7.2.6) still builds correctly with
OpenSSL 1.0, fixing the bug there

 2. if 7.2.7 migrates down to stretch it will compile correctly against
1.0 *or* 1.1, fixing the bug as well

So I am marking this as fixed in 7.2.6-1 even though it is technically
not directly fixed there, to make sure that 7.2.7-1 migrates correctly.

Otherwise atheme would be removed from stretch, and I don't know how
else to keep that from happening.

Let me know if this is the right approach.

A.
-- 
Je viens d'un pays où engagé veut dire que tu t'es trouvé une job.
- Patrice Desbiens



Processed: Re: Bug#828241: atheme-services: FTBFS with openssl 1.1.0

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> fixed 828241 7.2.6-1
Bug #828241 {Done: Antoine Beaupré } [src:atheme-services] 
atheme-services: FTBFS with openssl 1.1.0
Marked as fixed in versions atheme-services/7.2.6-1.

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



Processed: Re: x11-common: configure fails at "db_purge" with exit status 20 "Incorrect number of arguments"

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 845398 845405
Bug #845398 [x11-common] x11-common: Can't configure
Bug #845405 [x11-common] x11-common: configure fails at "db_purge" with exit 
status 20 "Incorrect number of arguments"
Severity set to 'grave' from 'normal'
Merged 845398 845405
> thanks
Stopping processing here.

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



Bug#844324: marked as done (bup: bup join produces invalid tar output)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:11:32 -0600
with message-id <87fumi4yyz@trouble.defaultvalue.org>
and subject line Re: Bug#844324: bup: bup join produces invalid tar output
has caused the Debian Bug report #844324,
regarding bup: bup join produces invalid tar output
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.)


-- 
844324: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844324
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bup
Version: 0.25-1
Severity: serious

Dear Maintainer,

Here's a transcript of a session to illustrate the problem:

  renn:/tmp$ mkdir test
  renn:/tmp$ echo xxx>test/xxx
  renn:/tmp$ bup -d test.bup init
  Initialized empty Git repository in /tmp/test.bup/
  renn:/tmp$ bup -d test.bup index /tmp/test
  Indexing: 2, done.
  renn:/tmp$ bup -d test.bup save -n t1 /tmp/test
  Reading index: 2, done.
  Saving: 100.00% (4/4k, 2/2 files), done.
  bloom: creating from 1 file (8 objects).
  renn:/tmp$ bup -d test.bup ls
  t1/
  renn:/tmp$ bup -d test.bup ls t1
  2016-11-14-132249@  latest@
  renn:/tmp$ bup -d test.bup join t1 | tar tf -
  tar: This does not look like a tar archive
  tar: Exiting with failure status due to previous errors

The command `bup -d test.bup join t1` should send a tar file to stdout;
what is being sent looks a bit like one, but obviously isn't quite.

I have marked this as "serious" because I believe this is the only way
to directly restore a remote backup.

-- System Information:
Debian Release: 8.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/16 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages bup depends on:
ii  git  1:2.1.4-2.1+deb8u2
ii  libc62.19-18+deb8u6
ii  par2 0.6.11-1
ii  python   2.7.9-1
ii  python-pylibacl  0.5.2-1
ii  python-pyxattr   0.5.3-1
ii  python2.72.7.9-2+deb8u1
pn  python:any   

Versions of packages bup recommends:
ii  bup-doc 0.25-1
ii  python-fuse 2:0.2.1-10
ii  python-tornado  4.2.0-1~bpo8+1

bup suggests no packages.

-- no debconf information

--
John
--- End Message ---
--- Begin Message ---

John Kozak  writes:

> The command `bup -d test.bup join t1` should send a tar file to stdout;

Hmm, bup doesn't yet have support for tar output, though I do have an
experimental branch supporting "bup export-tar".  And while remote
restore is certainly high on the to-do list, it's not implemented yet,
either for saves from a remote to the local filesystem, or the reverse.

Further, "bup split " and "bup join" are currently, completely
incompatible with "bup save" and "bup restore".  They're doing two
different things.  If you want join to produce a tar file, then you'll
have to save that tar file via split.  See the EXAMPLES in the split and
join manpages.

Finally, join doesn't currently understand VFS save names.  It accepts
git references, not VFS paths.

Hope this helps.
-- 
Rob Browning
rlb @defaultvalue.org and @debian.org
GPG as of 2011-07-10 E6A9 DA3C C9FD 1FF8 C676 D2C4 C0F0 39E9 ED1B 597A
GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4--- End Message ---


Bug#845398: x11-common: Can't configure

2016-11-22 Thread Michael Biebl
Package: x11-common
Version: 1:7.7+17
Followup-For: Bug #845398


Attached is a log file of running x11-common.postinst with set -x



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages x11-common depends on:
ii  lsb-base  9.20161101

x11-common recommends no packages.

x11-common suggests no packages.

-- Configuration Files:
/etc/X11/Xsession.d/20x11-common_process-args changed [not included]

-- debconf information:
  x11-common/xwrapper/allowed_users: Console Users Only
  x11-common/xwrapper/actual_allowed_users: console
Setting up x11-common (1:7.7+17) ...
+ '[' -f /usr/share/debconf/confmodule ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/x11-common.postinst 
configure 1:7.7+16
+ '[' -f /usr/share/debconf/confmodule ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ db_purge x11-common/xwrapper/allowed_users
+ _db_cmd 'PURGE x11-common/xwrapper/allowed_users'
+ _db_internal_IFS='
'
+ IFS=' '
+ printf '%s\n' 'PURGE x11-common/xwrapper/allowed_users'
+ IFS=' 
'
+ IFS='
'
+ read -r _db_internal_line
+ RET='20 Incorrect number of arguments'
+ case ${_db_internal_line%%[   ]*} in
+ return 20
dpkg: error processing package x11-common (--configure):
 subprocess installed post-installation script returned error exit status 20
dpkg: dependency problems prevent configuration of xserver-common:
 xserver-common depends on x11-common; however:
  Package x11-common is not configured yet.

dpkg: error processing package xserver-common (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xvfb:
 xvfb depends on xserver-common (>= 2:1.19.0-1); however:
  Package xserver-common is not configured yet.

dpkg: error processing package xvfb (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xfonts-utils:
 xfonts-utils depends on x11-common; however:
  Package x11-common is not configured yet.

dpkg: error processing package xfonts-utils (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xserver-xephyr:
 xserver-xephyr depends on xserver-common (>= 2:1.19.0-1); however:
  Package xserver-common is not configured yet.

dpkg: error processing package xserver-xephyr (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xwayland:
 xwayland depends on xserver-common (>= 2:1.19.0-1); however:
  Package xserver-common is not configured yet.

dpkg: error processing package xwayland (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xorg:
 xorg depends on xfonts-utils; however:
  Package xfonts-utils is not configured yet.

dpkg: error processing package xorg (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 x11-common
 xserver-common
 xvfb
 xfonts-utils
 xserver-xephyr
 xwayland
 xorg


Processed: Re: Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 normal
Bug #845401 [debian-installer] debian-installer: auto=true not working
Severity set to 'normal' from 'grave'
> tag -1 - d-i
Bug #845401 [debian-installer] debian-installer: auto=true not working
Removed tag(s) d-i.

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



Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Cyril Brulebois
Control: severity -1 normal
Control: tag -1 - d-i

Andrey Yarkov  (2016-11-23):
> Package: debian-installer
> Severity: grave
> Tags: d-i
> Justification: renders package unusable

Sorry, but I'm going to disagree here…

> Dear Maintainer,
> 
> I added the following to kernel parameters on Jessie-8.6.0 official
> installation DVD-1
> 
> auto=true url=http://my.ip.addr.ess/preseed.cfg
> 
> but I got asked keyboard or locale related questions anyway.
> 
> Could it be that the delaying functionality got lost?

I think that's documented in the installation guide:

“B.4.1. Localization

Setting localization values will only work if you are using initrd
preseeding. With all other methods the preconfiguration file will only
be loaded after these questions have been asked.”

See: https://www.debian.org/releases/stable/amd64/apbs04.html.en

Leaving this open for the time being, but I think it should be closed as
not a bug.


KiBi.


signature.asc
Description: Digital signature


Processed: reassign 330695 to libldap-2.4-2, found 330695 in openldap2/2.1.30-8

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 330695 libldap-2.4-2 2.4.39-1
Bug #330695 {Done: Ryan Tandy } [libldap-2.4-2] libldap2: 
/etc/ldap/ldap.conf breaks multiarch and on soname change
Bug #507225 {Done: Ryan Tandy } [libldap-2.4-2] libldap-2.4-2: 
/etc/ldap/ldap.conf went missing during install
Ignoring request to reassign bug #330695 to the same package
Ignoring request to reassign bug #507225 to the same package
Bug #330695 {Done: Ryan Tandy } [libldap-2.4-2] libldap2: 
/etc/ldap/ldap.conf breaks multiarch and on soname change
Bug #507225 {Done: Ryan Tandy } [libldap-2.4-2] libldap-2.4-2: 
/etc/ldap/ldap.conf went missing during install
Marked as found in versions openldap/2.4.39-1; no longer marked as found in 
versions libldap2/2.1.30-8 and libldap-2.4-2/2.4.39-1.
Marked as found in versions openldap/2.4.39-1; no longer marked as found in 
versions libldap2/2.1.30-8 and libldap-2.4-2/2.4.39-1.
> found 330695 openldap2/2.1.30-8
Bug #330695 {Done: Ryan Tandy } [libldap-2.4-2] libldap2: 
/etc/ldap/ldap.conf breaks multiarch and on soname change
Bug #507225 {Done: Ryan Tandy } [libldap-2.4-2] libldap-2.4-2: 
/etc/ldap/ldap.conf went missing during install
Marked as found in versions openldap2/2.1.30-8.
Marked as found in versions openldap2/2.1.30-8.
> thanks
Stopping processing here.

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



Bug#784070: Newly-created arrays don't auto-assemble - related to hostname change?

2016-11-22 Thread NeilBrown
On Tue, Nov 22 2016, Andy Smith wrote:

> Hi Neil,
>
> On Tue, Nov 22, 2016 at 09:56:28AM +1100, NeilBrown wrote:
>> Thanks.  Sorry this is taking a lot of back-and-forth...
>
> No worries. This is very interesting to me and I'd also like to know
> what is going wrong even if I have a work-around.

Thanks.
I tried this on a scratch Debian VM I had lying around, and found I
could exactly reproduce your symptoms.
I found that, unlike on the first Debian system I looked at, there is a
line in  /lib/udev/rules.d/64-md-raid-assembly.rules 

  # Disable incremental assembly to fix Debian bug #784070
  GOTO="md_inc_end"

Remove that and the problem goes away.  Arrgg...

I wish people maintainers would *ask* upstream when they don't
understand, rather than just breaking things.

NeilBrown


signature.asc
Description: PGP signature


Bug#844944: [Letsencrypt-devel] Bug#844944: python-acme: FTBFS: dh_auto_test: pybuild --test -i python{version} -p 2.7 returned exit code 13

2016-11-22 Thread Harlan Lieberman-Berg
tag 844944 +upstream
forwarded 844944 https://github.com/certbot/certbot/issues/3817
thanks

This looks related to the openssl version bump.  Sending upstream for
them to take a look.

Sincerely,
-- 
Harlan Lieberman-Berg
~hlieberman



Processed: Re: [Letsencrypt-devel] Bug#844944: python-acme: FTBFS: dh_auto_test: pybuild --test -i python{version} -p 2.7 returned exit code 13

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 844944 +upstream
Bug #844944 [src:python-acme] python-acme: FTBFS: dh_auto_test: pybuild --test 
-i python{version} -p 2.7 returned exit code 13
Added tag(s) upstream.
> forwarded 844944 https://github.com/certbot/certbot/issues/3817
Bug #844944 [src:python-acme] python-acme: FTBFS: dh_auto_test: pybuild --test 
-i python{version} -p 2.7 returned exit code 13
Set Bug forwarded-to-address to 
'https://github.com/certbot/certbot/issues/3817'.
> thanks
Stopping processing here.

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



Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Andrey Yarkov
Package: debian-installer
Severity: grave
Tags: d-i
Justification: renders package unusable

Dear Maintainer,

I added the following to kernel parameters on Jessie-8.6.0 official 
installation DVD-1

auto=true url=http://my.ip.addr.ess/preseed.cfg

but I got asked keyboard or locale related questions anyway.

Could it be that the delaying functionality got lost?

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

Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#845398: x11-common: Can't configure

2016-11-22 Thread Samuel Thibault
Package: x11-common
Version: 1:7.7+17
Severity: grave
Justification: renders package unusable

Hello,

x11-common can't be installed any more now that x11-common.postinst has
set -e:

Setting up x11-common (1:7.7+17) ...
dpkg: error processing package x11-common (--configure):
 subprocess installed post-installation script returned error exit status 20
Errors were encountered while processing:
 x11-common
E: Sub-process /usr/bin/dpkg returned an error code (1)

This is because postinst calls

db_purge x11-common/xwrapper/allowed_users
db_purge x11-common/xwrapper/actual_allowed_users

According to debconf-devel(7), the PURGE command doesn't take any
parameter, it is not meant to remove just one entry.

I guess what was meant was rather

db_unregister x11-common/xwrapper/allowed_users
db_unregister x11-common/xwrapper/actual_allowed_users

to remove those old entries.

Samuel

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'buildd-unstable'), (500, 'unstable'), (500, 'stable'), 
(500, 'oldstable'), (1, 'experimental-debug'), (1, 'buildd-experimental'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages x11-common depends on:
ii  lsb-base  9.20161101

x11-common recommends no packages.

x11-common suggests no packages.

-- debconf information:
  x11-common/xwrapper/actual_allowed_users: anybody
* x11-common/xwrapper/allowed_users: Anybody

-- 
Samuel
 je viens d'inventer mutt version magritte :D
 ?
 dans mutt
 tape "cceci" return



Bug#845385: Privilege escalation via removal

2016-11-22 Thread paul . szabo
Dear Emmanuel,

> Do you think running something like "chmod -R 640 /etc/tomcat8" right
> before the chown is an appropriate solution to this issue?

Might protect against "static" things, but vulnerable to a race.

Your postrm script might want to kill all tomcat8 processes, also.
That might be a "good thing": deluser or delgroup might not "work"
with left-over, running processes; and might protect against a race.

But really... why do you care about leaving some "dangling" useless
object, owned by some long-gone UID or GID?

Cheers, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia



Bug#828590: marked as done (uwsgi: FTBFS with openssl 1.1.0)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 00:35:54 +
with message-id 
and subject line Bug#828590: fixed in uwsgi 2.0.14+20161117-1
has caused the Debian Bug report #828590,
regarding uwsgi: FTBFS with openssl 1.1.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.)


-- 
828590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=828590
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: uwsgi
Version: 2.0.12-7
Severity: important
Control: block 827061 by -1

Hi,

OpenSSL 1.1.0 is about to released.  During a rebuild of all packages using
OpenSSL this package fail to build.  A log of that build can be found at:
https://breakpoint.cc/openssl-1.1-rebuild-2016-05-29/Attempted/uwsgi_2.0.12-7_amd64-20160529-1548

On https://wiki.openssl.org/index.php/1.1_API_Changes you can see various of the
reasons why it might fail.  There are also updated man pages at
https://www.openssl.org/docs/manmaster/ that should contain useful information.

There is a libssl-dev package available in experimental that contains a recent
snapshot, I suggest you try building against that to see if everything works.

If you have problems making things work, feel free to contact us.


Kurt
--- End Message ---
--- Begin Message ---
Source: uwsgi
Source-Version: 2.0.14+20161117-1

We believe that the bug you reported is fixed in the latest version of
uwsgi, 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 828...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jonas Smedegaard  (supplier of updated uwsgi 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, 23 Nov 2016 00:16:41 +0100
Source: uwsgi
Binary: uwsgi uwsgi-dbg uwsgi-src uwsgi-core uwsgi-emperor uwsgi-plugins-all 
uwsgi-infrastructure-plugins uwsgi-app-integration-plugins 
uwsgi-mongodb-plugins uwsgi-plugin-alarm-curl uwsgi-plugin-alarm-xmpp 
uwsgi-plugin-curl-cron uwsgi-plugin-emperor-pg uwsgi-plugin-glusterfs 
uwsgi-plugin-rados uwsgi-plugin-rbthreads uwsgi-plugin-fiber uwsgi-plugin-geoip 
uwsgi-plugin-graylog2 uwsgi-plugin-gevent-python uwsgi-plugin-greenlet-python 
uwsgi-plugin-asyncio-python uwsgi-plugin-asyncio-python3 
uwsgi-plugin-tornado-python uwsgi-plugin-gccgo uwsgi-plugin-jvm-openjdk-8 
uwsgi-plugin-jwsgi-openjdk-8 uwsgi-plugin-ring-openjdk-8 
uwsgi-plugin-servlet-openjdk-8 uwsgi-plugin-ldap uwsgi-plugin-lua5.1 
uwsgi-plugin-lua5.2 uwsgi-plugin-luajit uwsgi-plugin-mono uwsgi-plugin-psgi 
uwsgi-plugin-python uwsgi-plugin-python3 uwsgi-plugin-rack-ruby2.3 
uwsgi-plugin-router-access uwsgi-plugin-sqlite3 uwsgi-plugin-v8 
uwsgi-plugin-php uwsgi-plugin-xslt libapache2-mod-proxy-uwsgi
 libapache2-mod-proxy-uwsgi-dbg libapache2-mod-uwsgi libapache2-mod-uwsgi-dbg 
libapache2-mod-ruwsgi libapache2-mod-ruwsgi-dbg python-uwsgidecorators 
python3-uwsgidecorators
 uwsgi-extra
Architecture: source amd64 all
Version: 2.0.14+20161117-1
Distribution: unstable
Urgency: medium
Maintainer: uWSGI packaging team 
Changed-By: Jonas Smedegaard 
Description:
 libapache2-mod-proxy-uwsgi - uwsgi proxy module for Apache2 (mod_uwsgi)
 libapache2-mod-proxy-uwsgi-dbg - debugging symbols for Apache2 mod_proxy_uwsgi
 libapache2-mod-ruwsgi - uwsgi module for Apache2 (mod_Ruwsgi)
 libapache2-mod-ruwsgi-dbg - debugging symbols for Apache2 mod_Ruwsgi
 libapache2-mod-uwsgi - uwsgi module for Apache2 (mod_uwsgi)
 libapache2-mod-uwsgi-dbg - debugging symbols for Apache2 mod_uwsgi
 python-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python 2)
 python3-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python 3)
 uwsgi  - fast, self-healing application container server
 uwsgi-app-integration-plugins - plugins for integration of uWSGI and 
application
 uwsgi-core - fast, self-healing application container server (core)
 uwsgi-dbg  - debugging symbols for uWSGI server and it's plugins
 uwsgi-emperor - fast, self-healing application container server (emperor 
scripts)
 uwsgi-extra - fast, self-healing application container server (extra files)
 

Bug#839760: patch?

2016-11-22 Thread Clint Adams
Looks like Ilias and Emilio found 
https://github.com/tych0/xcffib/commit/9b6a190e6d46b11b4565322626c702caecff9d8b



Processed: pending

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 828312 + pending
Bug #828312 [src:git-crypt] git-crypt: FTBFS with openssl 1.1.0
Added tag(s) pending.
> thanks
Stopping processing here.

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



Processed: Re: Processed: Merge all bugs with the bug fixed in 1.6.0+snapshot20161117-4

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfixed 845333 iptables/1.6.0+snapshot20161117-3
Bug #845333 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: trying to overwrite '.../libxtables.so.12.0.0', which is also in 
package libxtables11
Bug #845278 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: can't be installed
Bug #845313 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12 conflicts with libxtables11
Bug #845347 {Done: Antti Järvinen } [libxtables12] 
libxtables12: Conflicting file with libxtables11
Bug #845367 {Done: Arturo Borrero Gonzalez } [libxtables12] 
trying to overwrite '/usr/lib/x86_64-linux-gnu/libxtables.so.12.0.0', which is 
also in package libxtables11:amd64
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-3.
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-3.
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-3.
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-3.
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-3.
> thanks
Stopping processing here.

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



Bug#845058: [Pkg-fonts-devel] Bug#845058: fonts-noto: Installing the package freezes all graphical applications.

2016-11-22 Thread Jonas Smedegaard
Quoting Jonas Smedegaard (2016-11-20 11:06:26)
> Quoting Valentin Lorentz (2016-11-19 23:58:44)
> > Installing fonts-noto on my computer leads to *all* of my graphic 
> > applications to enter an infinite loop, using all my CPU cores, and 
> > blocking aptitude. This persists until I stop aptitude and remove 
> > fonts-noto.
> [...]
> > Running strace on one of the affected processes (mousepad) shows it is 
> > in a loop reading 
> > /usr/share/fonts/opentype/noto/NotoSansCJK-DemiLight.ttc.
> 
> fonts-noto-cjk is a separate package than the main fonts-noto fonts, and 
> is extremely big - more than 100MB.
> 
> Could you please try two things:
> 
>  * Give it more time (or tell how much time you gave it already)
>  * Install all but -cjk parts - e.g. using this command:
> aptitude install fonts-noto fonts-noto-cjk-

Could you please look into the above, Valentian.

I now reassigned this bug to fonts-noto-cjk, as that is more likely to 
be the cause of this than fonts-noto.

 - Jonas

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

 [x] quote me freely  [ ] ask before reusing  [ ] keep private



Bug#844855: gcc-5: FTBFS: conftest.c:136: undefined reference to `setproctitle'

2016-11-22 Thread Santiago Vila
On Wed, Nov 23, 2016 at 12:26:18AM +0100, Matthias Klose wrote:

> > What would be the right package for a bug in one of GCC Makefiles, then?
> > 
> > What if Lucas was able to reproduce this in two different machines and
> > the failure and the error message was the same? Would you discard
> > "filesystem corruption" as the "most likely reason" in such case?
> > 
> > [ Or maybe you are claiming that GCC Makefiles are 100% bug-free and
> >   absolutely perfect and any evidence in contrary *must* be an error?
> >   I really hope that's not what you meant here. ]
> 
> what have Makefile errors to do with GCC ICEs?  The gcc driver starts the
> compiler again and tries to reproduce it.  Nothing to do with Makefiles.

A buggy Makefile was just an example of bug which does not always happen.

Just because a bug does not always happen does not mean it is not a bug.

But you closed this one as if the error that was reported could only
happen in a parallel universe, not in this one. Is there any particular
reason why GCC may not have a bug which does not always happen?

Thanks.



Bug#845393: Privilege escalation via upgrade

2016-11-22 Thread Paul Szabo
Package: tomcat8
Version: 8.0.14-1+deb8u4
Severity: critical
Tags: security

Having installed tomcat8, the directory /etc/tomcat8/Catalina is set
writable by group tomcat8, as per the postinst script. Then the tomcat8
user, in the situation envisaged in DSA-3670 and DSA-3720, see also
  http://seclists.org/fulldisclosure/2016/Oct/4
could use something like commands
  mv -i /etc/tomcat8/Catalina/localhost /etc/tomcat8/Catalina/localhost-OLD
  ln -s /etc/shadow /etc/tomcat8/Catalina/localhost
to create a symlink:
  # ls -l /etc/tomcat8/Catalina/localhost
  lrwxrwxrwx 1 tomcat8 tomcat8 11 Nov 23 10:19 /etc/tomcat8/Catalina/localhost 
-> /etc/shadow
Then when the tomcat8 package is upgraded (e.g. for the next DSA),
the postinst script runs
  chmod 775 /etc/tomcat8/Catalina /etc/tomcat8/Catalina/localhost
and that will make the /etc/shadow file world-readable (and
group-writable). Other useful attacks might be to make the objects:
  /root/.Xauthority
  /etc/ssh/ssh_host_dsa_key
world-readable; or make something (already owned by group tomcat8)
group-writable (some "policy" setting maybe?).

Cheers, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia



Bug#842428: debsecan: error 403 forbidden since 10/27/2016

2016-11-22 Thread Francois-Hayg Astourian
Hi pabs,

Is there any plan to fix this in wheezy? Is there an alternative URL we
can use, which does not return 403? This has been broken a few weeks now
and we'd love to use it for an internal project, but the timing of our
engineer starting on the project has lined up with the package being broken.

We're happy to fork and point it at a healthy URL, if you can provide one.

Thanks very much for maintaining the package, it's very useful!

Best,
Hayg
On Sat, 29 Oct 2016 05:00:40 +0200 jeromecc  wrote:
> Package: debsecan
> Version: 0.4.16+nmu1
> Severity: grave
> Justification: renders package unusable
> 
> Dear Maintainer,
> 
> I get these error reports in my incoming email:
> error: while downloading 
> http://secure-testing.debian.net/debian-secure-testing/project/debsecan/release/1/wheezy:
> HTTP Error 403: Forbidden
> 
> several times a day since 10/27/2016.
> 
> I don't get any security reports anymore.
> 
> Thanks for maintaining this useful package.
> 
> -- System Information:
> Debian Release: 7.11
>   APT prefers oldstable
>   APT policy: (500, 'oldstable')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 3.18.43-guest-7-e34a08f-x86_64 (SMP w/1 CPU core)
> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> 
> Versions of packages debsecan depends on:
> ii  debconf [debconf-2.0]  1.5.49
> ii  python 2.7.3-4+deb7u1
> ii  python-apt 0.8.8.2
> 
> Versions of packages debsecan recommends:
> ii  cron3.0pl1-124
> ii  postfix [mail-transport-agent]  2.9.6-2
> 
> debsecan suggests no packages.
> 
> -- debconf information:
>   debsecan/source:
>   debsecan/mailto: root
>   debsecan/report: true
>   debsecan/suite: GENERIC
> 
> 


0xC0409FFF.asc
Description: application/pgp-keys


signature.asc
Description: OpenPGP digital signature


Bug#845385: Privilege escalation via removal

2016-11-22 Thread Emmanuel Bourg
Hi Paul,

Thank you very much for reporting this issue. I confirm this happens
when purging the package only. The offending chown was first introduced
in the tomcat6 package 6 years ago [1] as part of the fix for #567548.
The same issue is also found in the tomcat7 package.

Do you think running something like "chmod -R 640 /etc/tomcat8" right
before the chown is an appropriate solution to this issue?

Emmanuel Bourg

[1] https://anonscm.debian.org/cgit/pkg-java/tomcat6.git/commit/?id=f67781f



Processed: reassign 845058 to fonts-noto-cjk

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 845058 fonts-noto-cjk
Bug #845058 [fonts-noto] fonts-noto: Installing the package freezes all 
graphical applications.
Bug reassigned from package 'fonts-noto' to 'fonts-noto-cjk'.
No longer marked as found in versions fonts-noto/20160724-3.
Ignoring request to alter fixed versions of bug #845058 to the same values 
previously set
> thanks
Stopping processing here.

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



Processed: Merge duplicates

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 817289 831257
Bug #817289 [src:aewm++] aewm++: Removal of dh_desktop
Bug #831257 [src:aewm++] aewm++: FTBFS: make: dh_desktop: Command not found
Merged 817289 831257
> thanks
Stopping processing here.

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



Bug#844855: gcc-5: FTBFS: conftest.c:136: undefined reference to `setproctitle'

2016-11-22 Thread Matthias Klose
On 21.11.2016 13:09, Santiago Vila wrote:
> On Sat, 19 Nov 2016, Matthias Klose wrote:
> 
>>> It's unlikely a hardware problem because the build was made in a
>>> virtual machine and the build was tried twice. This is written
>>> in the bug report itself.
>>>
>>> This is a lot more likely to be a bug which happens randomly,
>>> for example, a bug in the Makefile.
>>>
>>> Such bugs *do* exist, just see
>>>
>>> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=841096
>>>
>>> for a very simple example.
>>>
>>>
>>> In this case, there is absolutely zero evidence that it's a hardware
>>> problem and not a bug which happens randomly.
>>>
>>> Do you always close bugs which happen randomly just because you can't
>>> reproduce them yourself, or can you acknowledge the fact that not all
>>> packages either always build or always fail?
>>>
>>> (I can give a lot more examples of packages which fail to build
>>> randomly if you are interested).
>>
>> it might not be "hardware" problem, but with all this "virtual overhead" a
>> corruption with some file system or something else.  Yes, I intend to close 
>> such
>> bug reports,
> 
> It's completely ok to close a report which happens because of hardware
> problems. However, that's not the kind of randomness I was talking
> about.
> 
> I refer, for example, to randomness which happens when some Makefile
> expect the output of "find" to be in a certain order.
> 
> [ Please read the link I posted before ]
> 
> There is no canonical order for the output of "find", so different
> filesystem ordering does not mean the system is misconfigured or that
> there is corruption in the filesystem.
> 
>> because GCC itself retries to build these files, and apparently it
>> succeeded to build it (or else you wouldn't see this message).  That might 
>> be a
>> real bug, but then GCC is the wrong package to file a bug report for.
> 
> What would be the right package for a bug in one of GCC Makefiles, then?
> 
> What if Lucas was able to reproduce this in two different machines and
> the failure and the error message was the same? Would you discard
> "filesystem corruption" as the "most likely reason" in such case?
> 
> [ Or maybe you are claiming that GCC Makefiles are 100% bug-free and
>   absolutely perfect and any evidence in contrary *must* be an error?
>   I really hope that's not what you meant here. ]

what have Makefile errors to do with GCC ICEs?  The gcc driver starts the
compiler again and tries to reproduce it.  Nothing to do with Makefiles.



Bug#845146: marked as done (pike8.0: build-depends on heimdal-dev, which is to be removed from testing)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 23:21:13 +
with message-id 
and subject line Bug#845146: fixed in pike8.0 8.0.358-1
has caused the Debian Bug report #845146,
regarding pike8.0: build-depends on heimdal-dev, which is to be removed from 
testing
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.)


-- 
845146: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845146
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pike8.0
Version: 8.0.276-1
Severity: serious
Control: block 837728 with -1

Hi,

Your package build-depends on heimdal-dev, but heimdal is going to be
removed from testing (and possibly from the archive). See bugs
#837728 and #834654 for the reasoning.

You should stop build-depending on heimdal-dev. Possibly switching to
MIT Kerberos is an option.

Cheers,
Emilio

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (700, 'experimental'), (650, 'testing'), (500, 
'unstable-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf

Kernel: Linux 4.7.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Source: pike8.0
Source-Version: 8.0.358-1

We believe that the bug you reported is fixed in the latest version of
pike8.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 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Magnus Holmgren  (supplier of updated pike8.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: Tue, 22 Nov 2016 23:14:34 +0100
Source: pike8.0
Binary: pike8.0-core pike8.0 pike8.0-dev pike8.0-manual pike8.0-reference 
pike8.0-doc pike8.0-full pike8.0-mysql pike8.0-pg pike8.0-odbc pike8.0-svg 
pike8.0-image pike8.0-sdl pike8.0-gdbm pike8.0-gtk pike8.0-gl pike8.0-sane 
pike8.0-pcre pike8.0-bzip2 pike8.0-fuse pike8.0-sqlite pike8.0-dnssd 
pike8.0-kerberos
Architecture: source amd64 all
Version: 8.0.358-1
Distribution: unstable
Urgency: low
Maintainer: Magnus Holmgren 
Changed-By: Magnus Holmgren 
Description:
 pike8.0- Recommended metapackage for Pike 8.0
 pike8.0-bzip2 - Bzip2 module for Pike
 pike8.0-core - Powerful interpreted programming language
 pike8.0-dev - Development files for Pike 8.0
 pike8.0-dnssd - DNS Service Discovery (DNS-SD) for Pike
 pike8.0-doc - Pike 8.0 documentation
 pike8.0-full - Metapackage for Pike 8.0
 pike8.0-fuse - Filesystem in USErspace support for Pike
 pike8.0-gdbm - Gdbm module for Pike
 pike8.0-gl - Mesa modules for Pike
 pike8.0-gtk - GTK+ 2.0 module for Pike
 pike8.0-image - Image modules for Pike
 pike8.0-kerberos - Kerberos and GSSAPI modules for Pike
 pike8.0-manual - transitional package for merging into pike8.0-doc
 pike8.0-mysql - MySQL modules for Pike
 pike8.0-odbc - ODBC modules for Pike
 pike8.0-pcre - PCRE module for Pike
 pike8.0-pg - PostgreSQL modules for Pike
 pike8.0-reference - Pike 8.0 reference
 pike8.0-sane - SANE module for Pike
 pike8.0-sdl - SDL module for Pike
 pike8.0-sqlite - SQLite module for Pike
 pike8.0-svg - SVG format support for Pike
Closes: 845146
Changes:
 pike8.0 (8.0.358-1) unstable; urgency=low
 .
   * New upstream stable release.
   * Drop autodoc.patch; fully incorporated upstream.
   * Build-Depend on default-libmysqlclient-dev instead of
 libmysqlclient-dev.
   * Switch to Debhelper compat level 9.
   * Build against libkrb5-dev instead of heimdal-dev (Closes: #845146).
   * dont_disable_debug_symbols.patch (new): Leave debug symbol and
 optimization flags alone when building GL and GTK2 modules.
Checksums-Sha1:
 4db0ef416a38ef39ba55547e82e3bc49c34ee3cd 3815 pike8.0_8.0.358-1.dsc
 2fda0f79dd2bca743717d6ed32b5831bf85dd9d3 18653344 pike8.0_8.0.358.orig.tar.gz
 f5af58e2f115d12f13bf9e7dc098c99fa9b8a7c5 37084 pike8.0_8.0.358-1.debian.tar.xz
 13ee30590bf9c03bd267f8012647d5851556a8a6 24172 
pike8.0-bzip2-dbgsym_8.0.358-1_amd64.deb
 

Bug#845182: marked as done (yaskkserv: systemd support are broken)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 01:18:47 +0200
with message-id <20161122231847.3kxhwjbyey4p7...@bunk.spdns.de>
and subject line systemd support is fixed in yaskkserv 1.1.0-2
has caused the Debian Bug report #845182,
regarding yaskkserv: systemd support are broken
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.)


-- 
845182: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845182
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: yaskkserv
Version: 1.1.0-1
Severity: grave

Dear Maintainer,

1. This version provide "yaskkserv.service", but missing Build-Depends
   "libsystemd-dev", need /usr/include/systemd/sd-daemon.h

   Thus this daemon does not provide the feature of systemd socket activation.

2. The "yaskkerv.service" provided this version depends
   "yaskkserv.socket". But "yaskkserv.socket" was not privided.

3. In systemd Unit file, we can't use shell expression.
   If you parse shell expression, use /bin/sh as follows:

  ExecStart=/bin/sh -c ". /etc/default/yaskkserv; exec 
/usr/sbin/$YASKKSERV_BIN --no-daemonize $DAEMON_OPTS $DIC_LIST"

Git format-patch attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (90, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages yaskkserv depends on:
ii  libc62.24-5
ii  libgcc1  1:6.2.1-4
ii  libgnutls-openssl27  3.5.6-7
ii  libgnutls30  3.5.6-7
ii  libstdc++6   6.2.1-4
ii  lsb-base 9.20161101
ii  skkdic   20160507-1

Versions of packages yaskkserv recommends:
ii  skkdic-extra  20160507-1

yaskkserv suggests no packages.

-- Configuration Files:
/etc/default/yaskkserv changed:
YASKKSERV_BIN="yaskkserv_hairy"
SIMPLE_OPTS="--log-level=1 --max-connection=512 --port=1178"
NORMAL_OPTS="${SIMPLE_OPTS}"
HAIRY_OPTS="${NORMAL_OPTS} --server-completion-midasi-length=2048 
--server-completion-midasi-string-size=262144 --server-completion-test=1 
--google-japanese-input=notfound --google-japanese-input-timeout=1"
DAEMON_OPTS="${HAIRY_OPTS}"
LOCAL_DICS="\
/usr/local/share/skkdic/SKK-JISYO.chibutsu \
/usr/local/share/skkdic/SKK-JISYO.tanudic4 \
/usr/local/share/skkdic/SKK-JISYO.matsucon \
/usr/local/share/skkdic/SKK-JISYO.hatenakey
"
PKG_DICS="/etc/alternatives/SKK-JISYO \
SKK-JISYO.jinmei \
SKK-JISYO.geo \
SKK-JISYO.propernoun \
SKK-JISYO.not_wrong
"
DICS="${PKG_DICS} ${LOCAL_DICS}"
for DIC in ${DICS}
do
DICBN=`basename $DIC`
DIC_LIST="${DIC_LIST} /usr/share/yaskkserv/${DICBN}.yaskkserv"
done


-- no debconf information
From 6d87ebab1a1c18db30e81d3e62233b124fa376de Mon Sep 17 00:00:00 2001
From: Youhei SASAKI 
Date: Mon, 21 Nov 2016 16:00:43 +0900
Subject: [PATCH] Fix systemd support

Signed-off-by: Youhei SASAKI 
---
 debian/control   | 2 +-
 debian/rules | 2 +-
 debian/yaskkserv.install | 1 +
 debian/yaskkserv.service | 3 +--
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index cb683ec..af2722d 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: extra
 Maintainer: KURASHIKI Satoru 
 Uploaders: Tatsuya Kinoshita 
 Homepage: http://umiushi.org/~wac/yaskkserv/
-Build-Depends: debhelper (>= 9), libgnutls28-dev
+Build-Depends: debhelper (>= 9.20160709~), libgnutls28-dev, libsystemd-dev
 Standards-Version: 3.9.8
 Vcs-Git: https://anonscm.debian.org/git/collab-maint/yaskkserv.git
 Vcs-Browser: https://anonscm.debian.org/git/collab-maint/yaskkserv.git
diff --git a/debian/rules b/debian/rules
index e5c6cc1..fb0dfb1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,7 +9,7 @@ export DEB_LDFLAGS_MAINT_APPEND = -defs
 export DH_VERBOSE=1
 
 %:
-   dh $@
+   dh $@ --with systemd
 
 override_dh_auto_configure:
./configure --prefix=$(CURDIR)/debian/yaskkserv/usr --compiler=g++ 
--enable-google-japanese-input --enable-google-suggest
diff --git a/debian/yaskkserv.install b/debian/yaskkserv.install
index b8d1e0a..1654449 100644
--- a/debian/yaskkserv.install
+++ b/debian/yaskkserv.install
@@ -1 +1,2 @@
 debian/update-skkdic-yaskkserv usr/sbin
+debian/yaskkserv.socketlib/systemd/system/
diff --git a/debian/yaskkserv.service b/debian/yaskkserv.service
index 543284e..41b19a4 100644
--- 

Processed: Powerpc is not a stretch release architecture

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 810985 important
Bug #810985 [yap] yap: FTBFS on powerpc: dlopen of .../pl-tai.so failed with 
error libplstream.so: cannot open shared object file: No such file or directory
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

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



Bug#845388: wordpress: FTBFS randomly (does not follow Policy 4.6)

2016-11-22 Thread Santiago Vila
Package: src:wordpress
Version: 4.6.1+dfsg-1
Severity: serious
Tags: patch

Dear maintainer:

I tried to build this package in stretch with "dpkg-buildpackage -A"
(which is what the "Arch: all" autobuilder would do to build it)
but it failed:


[...]
 debian/rules build-indep
dh build-indep --with linktree
   dh_testdir -i
   dh_update_autotools_config -i
   dh_auto_configure -i
   debian/rules override_dh_auto_build
make[1]: Entering directory '/<>/wordpress-4.6.1+dfsg'
for i in $(find debian/languages/ -name *.po); do \
msgfmt $i -o ${i%%.po}.mo; \
done
debian/languages/gl_ES.po:50: 'msgid' and 'msgstr' entries do not both end with 
'\n'
debian/languages/gl_ES.po:689: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 3 fatal errors
debian/languages/pt_BR.po:4774: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 2 fatal errors
debian/languages/admin-de_DE.po:3105: 'msgid' and 'msgstr' entries do not both 
end with '\n'
debian/languages/admin-de_DE.po:3421: 'msgid' and 'msgstr' entries do not both 
end with '\n'
msgfmt: found 2 fatal errors
debian/languages/ar.po:258: 'msgid' and 'msgstr' entries do not both end with 
'\n'
debian/languages/ar.po:990: 'msgid' and 'msgstr[3]' entries do not both end 
with '\n'
debian/languages/ar.po:4091: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 4 fatal errors
debian/languages/de_DE.po:628: 'msgid' and 'msgstr' entries do not both end 
with '\n'
debian/languages/de_DE.po:3812: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 2 fatal errors
debian/languages/he_IL.po:3791: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 2 fatal errors
debian/languages/admin-gl_ES.po:375: 'msgid' and 'msgstr' entries do not both 
begin with '\n'
msgfmt: found 2 fatal errors
debian/languages/twentyfourteen/sq.po:231: end-of-line within string
debian/languages/twentyfourteen/sq.po:230: missing 'msgstr' section
debian/languages/twentyfourteen/sq.po:231:5: syntax error
debian/languages/twentyfourteen/sq.po:232: end-of-line within string
msgfmt: found 4 fatal errors
debian/languages/sk_SK.po:507: 'msgid' and 'msgstr' entries do not both begin 
with '\n'
msgfmt: found 2 fatal errors
debian/rules:16: recipe for target 'override_dh_auto_build' failed
make[1]: *** [override_dh_auto_build] Error 1
make[1]: Leaving directory '/<>/wordpress-4.6.1+dfsg'
debian/rules:13: recipe for target 'build-indep' failed
make: *** [build-indep] Error 2
dpkg-buildpackage: error: debian/rules build-indep gave error exit status 2


The "override_dh_auto_build" target has a "find" command which creates
a list of po files to be processed.

There is not a canonical order for the output of "find", it depends on
filesystem ordering and it may be anything.

As a result, sometimes the last po file to be processed will be ok,
and the build as a whole will be successful, and sometimes the last
po file to be processed will have an error, and the build as a whole
will fail.

This is really a violation of Policy 4.6, "Error trapping in makefiles".

Quote:

  Every time you put more than one shell command (this includes using a
  loop) in a makefile command you must make sure that errors are
  trapped. For simple compound commands, such as changing directory and
  then running a program, using && rather than semicolon as a command
  separator is sufficient. For more complex commands including most
  loops and conditionals you should include a separate set -e command at
  the start of every makefile command that's actually one of these
  miniature shell scripts. 

The (trivial) patch below will probably fix the Policy violation, but
you will also need to fix the broken po files, otherwise we will just
switch from a package which FTBFS randomly to a package which always
FTBFS.

While we are at it: Even if this package is Arch:all, please consider
uploading it in source-only form so that we get official build logs
here:

https://buildd.debian.org/status/package.php?p=wordpress

Thanks.

--- a/debian/rules
+++ b/debian/rules
@@ -13,7 +13,7 @@ WP_CONTENT = debian/wordpress/var/lib/wordpress/wp-content
dh $@ --with linktree
 
 override_dh_auto_build:
-   for i in $$(find debian/languages/ -name *.po); do \
+   set -e; for i in $$(find debian/languages/ -name *.po); do \
msgfmt $$i -o $${i%%.po}.mo; \
 done
pod2man --utf8 --center wp-setup debian/wp-setup debian/wp-setup.1



Processed: Re: xserver-xorg-video-omap: Compatibility with xserver 1.19

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 serious
Bug #845331 [xserver-xorg-video-omap] xserver-xorg-video-omap: Compatibility 
with xserver 1.19
Severity set to 'serious' from 'normal'

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



Processed: Re: [Pkg-tigervnc-devel] Bug#843543: tigervnc: FTBFS with xserver 1.19

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 serious
Bug #843543 [src:tigervnc] tigervnc: FTBFS with xserver 1.19
Severity set to 'serious' from 'important'

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



Bug#845386: openbox-kde-session package is unusable

2016-11-22 Thread Andriy Grytsenko
Package: openbox-kde-session
Version: 3.6.1-3
Severity: grave

After installing package openbox-kde-session one would expect to have a
GUI session available. Although it isn't. It fails on running the file
that executes session:

root@ag:/# openbox-kde-session 
/usr/bin/openbox-kde-session: 20: exec: startkde: not found

The fix is pretty simple: package plasma-workspace which contains the
mentioned startkde binary should be added to the Depends line.



Bug#845377: gdc-6: libdl trouble again

2016-11-22 Thread Matthias Klose
Control: severity -1 important

On 22.11.2016 22:21, Peter De Wachter wrote:
> Package: gdc-6
> Version: 6.2.1-4
> Severity: serious
> Justification: breaks other packages (ii-esu, tatan, dub)
> 
> Hi,
> 
> This upload has a bug very similar to #835255. The same test program
> again fails to link:
> 
> import std.datetime;
> void main () { }
> 
> $ gdc -o date date.d
> /usr/lib/gcc/x86_64-linux-gnu/6/libgphobos.a(lt4-curl.o): In function 
> `_D3std3net4curl7CurlAPI7loadAPIFZPv':
> /build/gcc-6-N3r4h3/gcc-6-6.2.1/build/x86_64-linux-gnu/libphobos/src/../../../../src/libphobos/src/std/net/curl.d:3630:
>  warning: Using 'dlopen' in statically linked applications requires at 
> runtime the shared libraries from the glibc version used for linking
> /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlopen.o): 
> In function `dlopen':
> (.text+0x5): undefined reference to `__dlopen'
> /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlclose.o): 
> In function `dlclose':
> (.text+0x1): undefined reference to `__dlclose'
> /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlsym.o): 
> In function `dlsym':
> (.text+0x5): undefined reference to `__dlsym'
> collect2: error: ld returned 1 exit status

known. Please pass -shared-libphobos for now. Still planning to make this the
default.



Processed: Re: Bug#845377: gdc-6: libdl trouble again

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 important
Bug #845377 [gdc-6] gdc-6: libdl trouble again
Severity set to 'important' from 'serious'

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



Bug#845385: Privilege escalation via removal

2016-11-22 Thread Paul Szabo
Package: tomcat8
Version: 8.0.14-1+deb8u4
Severity: critical
Tags: security

Having installed tomcat8, the directory /etc/tomcat8/Catalina is set
writable by group tomcat8, as per the postinst script. Then the tomcat8
user, in the situation envisaged in DSA-3670 and DSA-3720, see also
  http://seclists.org/fulldisclosure/2016/Oct/4
could use something like commands
  touch /etc/tomcat8/Catalina/attack
  chmod 2747 /etc/tomcat8/Catalina/attack
to create a file:
  # ls -l /etc/tomcat8/Catalina/attack
  -rwxr-Srwx 1 tomcat8 tomcat8 0 Nov 23 09:00 /etc/tomcat8/Catalina/attack
Then if the tomcat8 package is removed (purged?), the postrm script runs
  chown -Rhf root:root /etc/tomcat8/
and that will leave the file world-writable, setgid root:
  # ls -l /etc/tomcat8/Catalina/attack
  -rwxr-Srwx 1 root root 0 Nov 23 09:00 /etc/tomcat8/Catalina/attack
allowing "group root" access to the world.

Cheers, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia



Bug#843053: marked as done (frog does not start)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:13 +
with message-id 
and subject line Bug#843053: fixed in libfolia 1.5-1
has caused the Debian Bug report #843053,
regarding frog does not start
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.)


-- 
843053: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=843053
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: frog
Version: 0.13.5-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

After installing the frog package, and executing frog on the command-line, I'm
greeted with the following error:

frog: symbol lookup error: /usr/lib/libfrog.so.1: undefined symbol: 
_ZNK5folia24AbstractStructureElement3strERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE

and the program exits.


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

Kernel: Linux 4.7.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages frog depends on:
ii  libc62.24-5
ii  libfolia41.4-1
ii  libfrog1 0.13.5-1
ii  libgcc1  1:6.2.0-10
ii  libgomp1 6.2.0-10
ii  libicu57 57.1-4
ii  libmbt1  3.2.16-1
ii  libstdc++6   6.2.0-10
ii  libticcutils2v5  0.14-1
ii  libtimbl46.4.8-1
ii  libucto2 0.9.3-1
ii  libxml2  2.9.4+dfsg1-2

Versions of packages frog recommends:
ii  ucto  0.9.3-1

frog suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: libfolia
Source-Version: 1.5-1

We believe that the bug you reported is fixed in the latest version of
libfolia, 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 843...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Maarten van Gompel  (supplier of updated libfolia 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: Mon, 14 Nov 2016 18:28:00 +0100
Source: libfolia
Binary: libfolia-dev libfolia5
Architecture: source amd64
Version: 1.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 

Changed-By: Maarten van Gompel 
Description:
 libfolia-dev - Implementation of the FoLiA document format (C++ headers)
 libfolia5  - Implementation of the FoLiA document format
Closes: 843053
Changes:
 libfolia (1.5-1) unstable; urgency=medium
 .
   * New upstream
   * Library version is now libfolia5 (so.5) (Closes: #843053)
   * Added reference to implemented FoLiA version in package descriptions
Checksums-Sha1:
 f63934df514a95c69b757d81345ec279c58cafc5 2098 libfolia_1.5-1.dsc
 ce4b716d298e8d8fd9554f427b92c4be67318130 490694 libfolia_1.5.orig.tar.gz
 7da28065d785a21eedaadfa128227b03ee2a68a5 4144 libfolia_1.5-1.debian.tar.xz
 d8343334ce95d1d49dbc373fce4629efabca5ad7 38858 libfolia-dev_1.5-1_amd64.deb
 9cb103849ddfaf04fee7b614b6789609088cec36 1795134 
libfolia5-dbgsym_1.5-1_amd64.deb
 4bfe0de12885b713e16d0cd0c8d18d189fecb9b2 381136 libfolia5_1.5-1_amd64.deb
 1ce2b9f561574a740e397cd11870a26e124c4cd7 5179 libfolia_1.5-1_amd64.buildinfo
Checksums-Sha256:
 3a22c901a68eed898ff9a7be6d8370a22de0cd4946807bd403fd82f1e1f73b1a 2098 
libfolia_1.5-1.dsc
 e74f2d4d1cec958b946e47e97a1ecbb250338736ed12d90da40e6a7630a9df24 490694 
libfolia_1.5.orig.tar.gz
 74ba1f2fa163d61db40183db1e5666f8c6da2d241418b8e36e2d65e266f274f9 4144 
libfolia_1.5-1.debian.tar.xz
 5bd2e4e76d9f8db60953aabd81e42ec85e921b361a2cce7e1002463179225e26 38858 
libfolia-dev_1.5-1_amd64.deb
 1079656ec3cd45df0347c90648dc30ad68a18ea793da15a07cf86b17aee073fb 1795134 
libfolia5-dbgsym_1.5-1_amd64.deb
 9a753d2d19867d48460f6840a3ebe0678e8f7ffb0ae4410a2df1a3ee0a552e19 381136 
libfolia5_1.5-1_amd64.deb
 f727ec265908c442d3195f1a9cb9f06b6a5e520a68889b400f9cd2a390fe3e7c 5179 
libfolia_1.5-1_amd64.buildinfo
Files:
 6565b31ef4235ac6629c4adb1b840f7c 2098 science 

Bug#507225: marked as done (libldap-2.4-2: /etc/ldap/ldap.conf went missing during install)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:21 +
with message-id 
and subject line Bug#330695: fixed in openldap 2.4.44+dfsg-1
has caused the Debian Bug report #330695,
regarding libldap-2.4-2: /etc/ldap/ldap.conf went missing during install
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.)


-- 
330695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330695
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libldap-2.4-2
Version: 2.4.11-1
Severity: grave
Justification: renders package unusable


After installation, it was noticed that /etc/ldap/ldap.conf was missing.

dpkg -L libldap-2.4-2 did not display the file, however, dpkg -c on the
original .deb does show it present.

dpkg -i fixed it.

This was a fresh install done via a slightly older business card install.

I first installed just a base system, even deselecting the desktop task.

I have a set of personal .debs that I use for specifying dependencies during
installation that I prefer to use.

It was noticed that autofs-ldap's /etc/ldap/schema/autofs.schema was
successfully installed.

I was just reviewing /var/log/dpkg.log and noticed that the initial
installation installed both libldap-2.4-2 AND libldap2.  Later, when I purge
unwanted packages via dselect, apparently libldap2 was removed, which appears
to have caused /etc/ldap/ldap.conf to disappear.

This seems like a problematic configuration to allow.

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

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

Versions of packages libldap-2.4-2 depends on:
ii  libc62.7-16  GNU C Library: Shared libraries
ii  libgnutls26  2.4.2-3 the GNU TLS library - runtime libr
ii  libsasl2-2   2.1.22.dfsg1-23 Cyrus SASL - authentication abstra

libldap-2.4-2 recommends no packages.

libldap-2.4-2 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: openldap
Source-Version: 2.4.44+dfsg-1

We believe that the bug you reported is fixed in the latest version of
openldap, 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 330...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Tandy  (supplier of updated openldap 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: Mon, 14 Nov 2016 18:59:30 -0800
Source: openldap
Binary: slapd slapd-smbk5pwd ldap-utils libldap-2.4-2 libldap-common 
libldap-2.4-2-dbg libldap2-dev slapd-dbg
Architecture: source amd64 all
Version: 2.4.44+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenLDAP Maintainers 

Changed-By: Ryan Tandy 
Description:
 ldap-utils - OpenLDAP utilities
 libldap-2.4-2 - OpenLDAP libraries
 libldap-2.4-2-dbg - Debugging information for OpenLDAP libraries
 libldap-common - OpenLDAP common files for libraries
 libldap2-dev - OpenLDAP development libraries
 slapd  - OpenLDAP server (slapd)
 slapd-dbg  - Debugging information for the OpenLDAP server (slapd)
 slapd-smbk5pwd - Keeps Samba passwords in sync within slapd.
Closes: 330695 702414 815364 815571 833179 836885
Changes:
 openldap (2.4.44+dfsg-1) unstable; urgency=medium
 .
   [ Ryan Tandy ]
   * New upstream release.
 - Fixed ppolicy not unlocking policy entry after initialization failure
   (ITS#7537) (Closes: #702414)
   * Drop ITS8240-remove-obsolete-assert.patch, included upstream.
   * Update debian/schema/ppolicy.schema to add the pwdMaxRecordedFailure
 attribute.
   * Update libldap-2.4-2.symbols with new ldap_build_*_req symbols.
   * Mark the build target in debian/rules as phony, since the upstream source
 includes a build/ directory.
   * Correct the list of files to be cleaned for the pw-sha2 contrib module.
   * Fix a typo (slpad -> slapd) in the Catalan debconf translation.
   * Disable OpenSLP support 

Bug#330695: marked as done (libldap2: /etc/ldap/ldap.conf breaks multiarch and on soname change)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:21 +
with message-id 
and subject line Bug#330695: fixed in openldap 2.4.44+dfsg-1
has caused the Debian Bug report #330695,
regarding libldap2: /etc/ldap/ldap.conf breaks multiarch and on soname change
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.)


-- 
330695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330695
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libldap2
Version: 2.1.30-8
Severity: normal

Hi,

when trying to use libldap2 under biarch/multiarch I get the following error:

Unpacking libldap2 (from .../libldap2_2.1.30-8_i386.deb) ...
dpkg: error processing 
/data/deb-amd64/debian/pool/main/o/openldap2/libldap2_2.1.30-8_i386.deb 
(--unpack):
 trying to overwrite `/etc/ldap/ldap.conf', which is also in package lib64ldap2

While multiarch is still experimental the same problem will appear if there is
a soname change. libldap3 would have to conflict with libldap2 which would be
rarther bad for obvious reasons.

A clean way to handle this would be a ldap2-common package that handles the
conffile.

MfG
Goswin

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-rc5+skas3+acl
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libldap2 depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgnutls11 1.0.16-13.1  GNU TLS library - runtime library
ii  libsasl22.1.19-1.5   Authentication abstraction library

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: openldap
Source-Version: 2.4.44+dfsg-1

We believe that the bug you reported is fixed in the latest version of
openldap, 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 330...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Tandy  (supplier of updated openldap 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: Mon, 14 Nov 2016 18:59:30 -0800
Source: openldap
Binary: slapd slapd-smbk5pwd ldap-utils libldap-2.4-2 libldap-common 
libldap-2.4-2-dbg libldap2-dev slapd-dbg
Architecture: source amd64 all
Version: 2.4.44+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenLDAP Maintainers 

Changed-By: Ryan Tandy 
Description:
 ldap-utils - OpenLDAP utilities
 libldap-2.4-2 - OpenLDAP libraries
 libldap-2.4-2-dbg - Debugging information for OpenLDAP libraries
 libldap-common - OpenLDAP common files for libraries
 libldap2-dev - OpenLDAP development libraries
 slapd  - OpenLDAP server (slapd)
 slapd-dbg  - Debugging information for the OpenLDAP server (slapd)
 slapd-smbk5pwd - Keeps Samba passwords in sync within slapd.
Closes: 330695 702414 815364 815571 833179 836885
Changes:
 openldap (2.4.44+dfsg-1) unstable; urgency=medium
 .
   [ Ryan Tandy ]
   * New upstream release.
 - Fixed ppolicy not unlocking policy entry after initialization failure
   (ITS#7537) (Closes: #702414)
   * Drop ITS8240-remove-obsolete-assert.patch, included upstream.
   * Update debian/schema/ppolicy.schema to add the pwdMaxRecordedFailure
 attribute.
   * Update libldap-2.4-2.symbols with new ldap_build_*_req symbols.
   * Mark the build target in debian/rules as phony, since the upstream source
 includes a build/ directory.
   * Correct the list of files to be cleaned for the pw-sha2 contrib module.
   * Fix a typo (slpad -> slapd) in the Catalan debconf translation.
   * Disable OpenSLP support and remove libslp-dev from Build-Depends.
 (Closes: #815364)
   * Ensure /var/run/slapd exists when starting slapd, even if the pid file is
 somewhere else. Thanks to Dave Beach for the report. (Closes: #815571)
   * Create the pidfile directory when starting slapd, but not when running the
 init script in other modes.
   * Remove support for enabling the obsolete LDAPv2 protocol via debconf.
   * debian/copyright: Update the OpenLDAP copyright and license.
   * debian/control: Update VCS 

Bug#836885: marked as done (please stop building against Heimdal)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:21 +
with message-id 
and subject line Bug#836885: fixed in openldap 2.4.44+dfsg-1
has caused the Debian Bug report #836885,
regarding please stop building against Heimdal
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.)


-- 
836885: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836885
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: openldap
Severity: important

FYI: Because of the state of upstream Heimdal, we as maintainers are preparing 
to
ask for it to be removed from stretch. For background, see 
http://bugs.debian.org/834654

Please consider removing the dependency on heimdal-multidev in OpenLDAP. 

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

Kernel: Linux 4.6.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Source: openldap
Source-Version: 2.4.44+dfsg-1

We believe that the bug you reported is fixed in the latest version of
openldap, 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 836...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Tandy  (supplier of updated openldap 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: Mon, 14 Nov 2016 18:59:30 -0800
Source: openldap
Binary: slapd slapd-smbk5pwd ldap-utils libldap-2.4-2 libldap-common 
libldap-2.4-2-dbg libldap2-dev slapd-dbg
Architecture: source amd64 all
Version: 2.4.44+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenLDAP Maintainers 

Changed-By: Ryan Tandy 
Description:
 ldap-utils - OpenLDAP utilities
 libldap-2.4-2 - OpenLDAP libraries
 libldap-2.4-2-dbg - Debugging information for OpenLDAP libraries
 libldap-common - OpenLDAP common files for libraries
 libldap2-dev - OpenLDAP development libraries
 slapd  - OpenLDAP server (slapd)
 slapd-dbg  - Debugging information for the OpenLDAP server (slapd)
 slapd-smbk5pwd - Keeps Samba passwords in sync within slapd.
Closes: 330695 702414 815364 815571 833179 836885
Changes:
 openldap (2.4.44+dfsg-1) unstable; urgency=medium
 .
   [ Ryan Tandy ]
   * New upstream release.
 - Fixed ppolicy not unlocking policy entry after initialization failure
   (ITS#7537) (Closes: #702414)
   * Drop ITS8240-remove-obsolete-assert.patch, included upstream.
   * Update debian/schema/ppolicy.schema to add the pwdMaxRecordedFailure
 attribute.
   * Update libldap-2.4-2.symbols with new ldap_build_*_req symbols.
   * Mark the build target in debian/rules as phony, since the upstream source
 includes a build/ directory.
   * Correct the list of files to be cleaned for the pw-sha2 contrib module.
   * Fix a typo (slpad -> slapd) in the Catalan debconf translation.
   * Disable OpenSLP support and remove libslp-dev from Build-Depends.
 (Closes: #815364)
   * Ensure /var/run/slapd exists when starting slapd, even if the pid file is
 somewhere else. Thanks to Dave Beach for the report. (Closes: #815571)
   * Create the pidfile directory when starting slapd, but not when running the
 init script in other modes.
   * Remove support for enabling the obsolete LDAPv2 protocol via debconf.
   * debian/copyright: Update the OpenLDAP copyright and license.
   * debian/control: Update VCS URIs to the modern canonical form.
   * Override Lintian errors about schema files derived from RFC documents.
 Copyrightable content has been removed from these files; however, the
 copyright notices have been retained to preserve attribution.
   * On upgrade, if the cn=config database contains the ppolicy schema, add the
 new pwdMaxRecordedFailure attribute to it.
   * Add debian/patches/set-maintainer-name to omit the builder's username and
 working directory from version strings and thereby make the build
 reproducible. Thanks to Daniel Shahaf 

Bug#845033: marked as done (apache2-dev: please provide separate package dh-apache2)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:11 +
with message-id 
and subject line Bug#845033: fixed in apache2 2.4.23-8
has caused the Debian Bug report #845033,
regarding apache2-dev: please provide separate package dh-apache2
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.)


-- 
845033: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845033
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: apache2-dev
Version: 2.4.23-7
Severity: important
Tags: stretch sid
Control: affects -1 src:cgit
Control: tags 844817 confirmed
Control: block 844817 by -1

Dear Maintainer,

apache2-dev was changed to depend on libssl1.0-dev | libssl-dev (<< 1.1)
recently (#844160), which has caused a FTBFS in cgit that depends on
libssl-dev without a version constraint.

I would rather not constrain cgit’s build-depends to OpenSSL 1.0,
since it needs apache2-dev only to install an apache2 config file
using dh_apache2. Could you provide a separate package dh-apache2?

Please let me know whether I should provide an according patch to
solve the issue in time for stretch, preferably ahead of the forced
10-day migration period in December.

Regards,
Peter
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.4.23-8

We believe that the bug you reported is fixed in the latest version of
apache2, 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 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch  (supplier of updated apache2 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, 20 Nov 2016 00:33:13 +0100
Source: apache2
Binary: apache2 apache2-data apache2-bin apache2-utils apache2-suexec-pristine 
apache2-suexec-custom apache2-doc apache2-dev apache2-ssl-dev apache2-dbg
Architecture: source amd64 all
Version: 2.4.23-8
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch 
Description:
 apache2- Apache HTTP Server
 apache2-bin - Apache HTTP Server (modules and other binary files)
 apache2-data - Apache HTTP Server (common files)
 apache2-dbg - Apache debugging symbols
 apache2-dev - Apache HTTP Server (development headers)
 apache2-doc - Apache HTTP Server (on-site documentation)
 apache2-ssl-dev - Apache HTTP Server (mod_ssl development headers)
 apache2-suexec-custom - Apache HTTP Server configurable suexec program for 
mod_suexec
 apache2-suexec-pristine - Apache HTTP Server standard suexec program for 
mod_suexec
 apache2-utils - Apache HTTP Server (utility programs for web servers)
Closes: 845033
Changes:
 apache2 (2.4.23-8) unstable; urgency=medium
 .
   * Move the mod_ssl_openssl.h header and the dependency on libssl-dev to a
 new package apache2-ssl-dev.  Packages that interface with openssl
 state from mod_ssl must build-depend on this new package.
 This will help to disentangle the build-deps in the openssl transition.
 Closes: #845033
Checksums-Sha1:
 c51eeae31557d9f6aac0a30ebc93e686402cf49b 2832 apache2_2.4.23-8.dsc
 633ac345606a7ea304ea81dc3e8a46ab1d91346e 353040 apache2_2.4.23-8.debian.tar.xz
 4b12a92907be9ff8e6a444b9a905a39b19f9e87b 1150380 apache2-bin_2.4.23-8_amd64.deb
 4893104d7f60208762284b26ecb8dff83e582b98 162048 apache2-data_2.4.23-8_all.deb
 acd9b499895daf9905f74828602c467733724eef 2417376 apache2-dbg_2.4.23-8_amd64.deb
 34b0a6d9c435ae8109ad6614e48a7e04f1561bde 306014 apache2-dev_2.4.23-8_amd64.deb
 1e39ffe1656c14cae332c7db114cf90b64941c9b 3753644 apache2-doc_2.4.23-8_all.deb
 9025318b88fdaf16e1de5f978b6918b04dc5890d 2258 
apache2-ssl-dev_2.4.23-8_amd64.deb
 fb4c1fcf113d89462dc5cd51608f3f880781f5bf 149404 
apache2-suexec-custom_2.4.23-8_amd64.deb
 654c8e071fb4e88fbbd4974a610b2fdb12ca43aa 147908 
apache2-suexec-pristine_2.4.23-8_amd64.deb
 f554fdc24d7f4ee42029b07ebeb315a00723bd11 211492 
apache2-utils_2.4.23-8_amd64.deb
 bea7f03d8eed14d3fe988ee9b150405e3b9e4d44 8691 apache2_2.4.23-8_amd64.buildinfo
 ef6de1fc98540e92779fe5313c77ccf3ff7773dc 229588 apache2_2.4.23-8_amd64.deb
Checksums-Sha256:
 

Bug#844817: marked as done (cgit: FTBFS: build-dependency not installable: libssl-dev)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 22:00:11 +
with message-id 
and subject line Bug#845033: fixed in apache2 2.4.23-8
has caused the Debian Bug report #845033,
regarding cgit: FTBFS: build-dependency not installable: libssl-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.)


-- 
845033: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845033
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: cgit
Version: 1.0+git2.8.3-3
Severity: serious
Tags: stretch sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20161118 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part (hopefully):
> +--+
> | Install package build dependencies  
>  |
> +--+
> 
> 
> Setup apt archive
> -
> 
> Merged Build-Depends: asciidoc, debhelper (>= 9), dh-apache2, docbook-xsl, 
> liblua5.1-0-dev, libssl-dev, libxml2-utils, pkg-config, strace, tidy, unzip, 
> xmlto
> Filtered Build-Depends: asciidoc, debhelper (>= 9), dh-apache2, docbook-xsl, 
> liblua5.1-0-dev, libssl-dev, libxml2-utils, pkg-config, strace, tidy, unzip, 
> xmlto
> dpkg-deb: building package 'sbuild-build-depends-cgit-dummy' in 
> '/<>/resolver-uyK3Mx/apt_archive/sbuild-build-depends-cgit-dummy.deb'.
> dpkg-scanpackages: warning: Packages in archive but missing from override 
> file:
> dpkg-scanpackages: warning:   sbuild-build-depends-cgit-dummy
> dpkg-scanpackages: info: Wrote 1 entries to output Packages file.
> Ign:1 copy:/<>/resolver-uyK3Mx/apt_archive ./ InRelease
> Get:2 copy:/<>/resolver-uyK3Mx/apt_archive ./ Release [957 B]
> Ign:3 copy:/<>/resolver-uyK3Mx/apt_archive ./ Release.gpg
> Get:4 copy:/<>/resolver-uyK3Mx/apt_archive ./ Sources [427 B]
> Get:5 copy:/<>/resolver-uyK3Mx/apt_archive ./ Packages [508 B]
> Fetched 1892 B in 0s (187 kB/s)
> Reading package lists...
> W: No sandbox user '_apt' on the system, can not drop privileges
> Reading package lists...
> 
> Install cgit build dependencies (apt-based resolver)
> 
> 
> Installing build dependencies
> Reading package lists...
> Building dependency tree...
> Reading state information...
> Some packages could not be installed. This may mean that you have
> requested an impossible situation or if you are using the unstable
> distribution that some required packages have not yet been created
> or been moved out of Incoming.
> The following information may help to resolve the situation:
> 
> The following packages have unmet dependencies:
>  sbuild-build-depends-cgit-dummy : Depends: libssl-dev but it is not going to 
> be installed
> E: Unable to correct problems, you have held broken packages.
> apt-get failed.

The full build log is available from:
   http://aws-logs.debian.net/2016/11/18/cgit_1.0+git2.8.3-3_unstable.log

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

About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.4.23-8

We believe that the bug you reported is fixed in the latest version of
apache2, 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 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch  (supplier of updated apache2 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, 20 Nov 2016 00:33:13 +0100
Source: apache2
Binary: apache2 apache2-data apache2-bin apache2-utils apache2-suexec-pristine 
apache2-suexec-custom apache2-doc apache2-dev apache2-ssl-dev apache2-dbg
Architecture: source amd64 all
Version: 2.4.23-8
Distribution: unstable

Bug#746005: Still FTBFS with lilypond 2.19-50

2016-11-22 Thread Antonio Ospite
On Mon, 21 Nov 2016 14:11:37 +0100
"Dr. Tobias Quathamer"  wrote:

> Hi Antonio,
> 
> thanks a lot for your work on this! I've read the thread and it seems 
> that there's a small possibility to get lilypond back into Debian. At 
> least the build proceeds much further with your patches.
> 
> Unfortunately, the build still fails (with current upstream 2.19.51). 
> I'd like to try again with your latest set of patches, which you've just 
> mentioned on lilypond-devel. Could you provide them on your webpage?
>

Yes, some of the changes were incomplete.

The updated patchset is here:
https://ao2.it/tmp/lilypond-guile2/patches_2016-11-22/

The patches are to be applied on top of release/2.19.51-1.

Note that in order to have useful results when using guile-2.0 lilypond
has to be run in a UTF-8 locale.

That holds true for the make commands too, so make sure the locale is
set up appropriately when you build the debian package.

I know that depending on the locale is not ideal, in the log run
lilypond should be made more locale independent, but we have to live
with this limitation for now.

Thanks,
   Antonio

-- 
Antonio Ospite
https://ao2.it
https://twitter.com/ao2it

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?



Bug#812025: marked as done (vdr-plugin-vcd: FTBFS with GCC 6: flexible array member...)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 13:52:37 -0800
with message-id <20161122215237.gl21...@jirafa.cyrius.com>
and subject line Re: Bug#812025: vdr-plugin-vcd: FTBFS with GCC 6: flexible 
array member...
has caused the Debian Bug report #812025,
regarding vdr-plugin-vcd: FTBFS with GCC 6: flexible array member...
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.)


-- 
812025: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812025
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vdr-plugin-vcd
Version: 0.9-25
Severity: important
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-6

This package fails to build with GCC 6.  GCC 6 has not been released
yet, but it's expected that GCC 6 will become the default compiler for
stretch.

Note that only the first error is reported; there might be more.  You
can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
you can set CC=gcc-6 CXX=g++-6 explicitly.

You may be able to find out more about this issue at
https://gcc.gnu.org/gcc-6/changes.html

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> make[2]: Entering directory '/<>'
> g++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fPIC 
> -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -c -DPLUGIN_NAME_I18N='"vcd"' 
> -D_GNU_SOURCE -I/usr/include/vdr/include vcd.c
> In file included from vcd.c:27:0:
> functions.h:170:23: error: flexible array member 'psd_vcd:: struct>::play_item' not at end of 'union psd_vcd'
>   __u16  play_item[];
>^
> 
> functions.h:173:13: note: next member '__u8 psd_vcd:: struct>::header' declared here
>   __u8   header;
>  ^~
> 
> functions.h:158:7: note: in the definition of 'union psd_vcd'
>  union psd_vcd {
>^~~
> 
> vcd.c: In member function 'virtual const char* cPluginVcd::Description()':
> vcd.c:73:56: warning: ignoring return value of 'int asprintf(char**, const 
> char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
>   asprintf(, "%s (%s)", DESCRIPTION, option_vcd);
> ^
> 
> vcd.c: In member function 'virtual const char* cPluginVcd::MainMenuEntry()':
> vcd.c:121:65: warning: ignoring return value of 'int asprintf(char**, const 
> char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
>  asprintf(, "%s (%s)", tr(MAINMENUENTRY), option_vcd);
>  ^
> 
> Makefile:61: recipe for target 'vcd.o' failed
> make[2]: *** [vcd.o] Error 1

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise
--- End Message ---
--- Begin Message ---
* Adrian Bunk  [2016-11-22 22:35]:
> Can you confirm that vdr-plugin-vcd builds for you now?
> 
> This could have been a bug in the pre-release gcc that is now fixed.

I don't have a build environment right now so I'll just close it.

Thanks for checking.

-- 
Martin Michlmayr
HPE Linux, Hewlett Packard Enterprise--- End Message ---


Processed (with 1 error): reassign 841144 to linux/4.7.5-1, severity of 841144 is important

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 841144 linux/4.7.5-1
Unknown command or malformed arguments to command.
> severity 841144 important
Bug #841144 [base] base: kernel BUG at linux-4.7.5/fs/ocfs2/alloc.c:1514!
Severity set to 'important' from 'grave'
> thanks
Stopping processing here.

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



Bug#845379: node-fuzzaldrin-plus: FTBFS: Npm module "grunt-contrib-coffee" not found.

2016-11-22 Thread Chris Lamb
Source: node-fuzzaldrin-plus
Version: 0.3.1+git.20161008.da2cb58+dfsg-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Dear Maintainer,

node-fuzzaldrin-plus fails to build from source in unstable/amd64:

  […]
 debian/rules override_dh_auto_clean
  make[1]: Entering directory '«BUILDDIR»'
  dh_auto_clean
  grunt clean
  >> Local Npm module "grunt-contrib-coffee" not found. Is it 
installed?
  >> Local Npm module "grunt-shell" not found. Is it installed?
  >> Local Npm module "grunt-browserify" not found. Is it installed?
  >> Local Npm module "grunt-contrib-uglify" not found. Is it 
installed?
  
  Running "clean" task
  
  Done.
  rm -rf dist-browser
  make[1]: Leaving directory '«BUILDDIR»'
 dh_clean
   debian/rules build
  dh build
 dh_testdir
 dh_update_autotools_config
 dh_auto_configure
 debian/rules override_dh_auto_build
  make[1]: Entering directory '«BUILDDIR»'
  dh_auto_build
  grunt
  >> Local Npm module "grunt-contrib-coffee" not found. Is it 
installed?
  >> Local Npm module "grunt-shell" not found. Is it installed?
  >> Local Npm module "grunt-browserify" not found. Is it installed?
  >> Local Npm module "grunt-contrib-uglify" not found. Is it 
installed?
  Warning: Task "coffee" not found. Use --force to continue.
  
  Aborted due to warnings.
  debian/rules:11: recipe for target 'override_dh_auto_build' failed
  make[1]: *** [override_dh_auto_build] Error 3
  make[1]: Leaving directory '«BUILDDIR»'
  debian/rules:8: recipe for target 'build' failed
  make: *** [build] Error 2

  […]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


node-fuzzaldrin-plus.0.3.1+git.20161008.da2cb58+dfsg-1.unstable.amd64.log.txt.gz
Description: Binary data


Bug#845377: gdc-6: libdl trouble again

2016-11-22 Thread Peter De Wachter
Package: gdc-6
Version: 6.2.1-4
Severity: serious
Justification: breaks other packages (ii-esu, tatan, dub)

Hi,

This upload has a bug very similar to #835255. The same test program
again fails to link:

import std.datetime;
void main () { }

$ gdc -o date date.d
/usr/lib/gcc/x86_64-linux-gnu/6/libgphobos.a(lt4-curl.o): In function 
`_D3std3net4curl7CurlAPI7loadAPIFZPv':
/build/gcc-6-N3r4h3/gcc-6-6.2.1/build/x86_64-linux-gnu/libphobos/src/../../../../src/libphobos/src/std/net/curl.d:3630:
 warning: Using 'dlopen' in statically linked applications requires at runtime 
the shared libraries from the glibc version used for linking
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlopen.o): In 
function `dlopen':
(.text+0x5): undefined reference to `__dlopen'
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlclose.o): 
In function `dlclose':
(.text+0x1): undefined reference to `__dlclose'
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libdl.a(dlsym.o): In 
function `dlsym':
(.text+0x5): undefined reference to `__dlsym'
collect2: error: ld returned 1 exit status




-- System Information:
Debian Release: stretch/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (500, 'testing'), 
(500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=nl_BE.UTF-8, LC_CTYPE=nl_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gdc-6 depends on:
ii  g++-6 6.2.1-4
ii  gcc-6-base6.2.1-4
ii  libc6 2.24-5
ii  libgmp10  2:6.1.1+dfsg-1
ii  libgphobos-6-dev  6.2.1-4
ii  libisl15  0.17.1-1
ii  libmpc3   1.0.3-1
ii  libmpfr4  3.1.5-1
ii  zlib1g1:1.2.8.dfsg-2+b3

gdc-6 recommends no packages.

gdc-6 suggests no packages.

-- no debconf information



Bug#845364: marked as done (lives: removal of libschroedinger)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 21:05:03 +
with message-id 
and subject line Bug#845364: fixed in lives 2.8.1-1
has caused the Debian Bug report #845364,
regarding lives: removal of libschroedinger
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.)


-- 
845364: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845364
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:lives
Version: 2.8.0-1
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -30,7 +30,6 @@ Build-Depends:
  libogg-dev,
  libpulse-dev,
  libraw1394-dev [linux-any],
- libschroedinger-dev,
  libsdl1.2-dev,
  libswscale-dev,
  libtheora-dev,

--- End Message ---
--- Begin Message ---
Source: lives
Source-Version: 2.8.1-1

We believe that the bug you reported is fixed in the latest version of
lives, 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 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated lives 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: Tue, 22 Nov 2016 21:30:46 +0100
Source: lives
Binary: libweed-dev libweed0 lives lives-data lives-plugins
Architecture: source
Version: 2.8.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libweed-dev - Development library for inclusion of plugins into LiVES
 libweed0   - Runtime library for inclusion of plugins into LiVES
 lives  - Video Editing system allowing users to edit and create video
 lives-data - Data files for LiVES
 lives-plugins - LiVES plugins pack
Closes: 756565 798043 810146 843605 845364
Changes:
 lives (2.8.1-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
 - Do not generate empty audio files when encoding. (Closes: #810146)
 - No longer create world-writeable directories. (Closes: #798043)
 - Fix use of temporary files in smogrify. (Closes: #756565)
   * debian/control:
 - Remove Harry Rickards from Uploaders. Thanks for maintaing lives, Harry.
   (Closes: #843605)
 - Disable libschroedinger. Thanks to Andreas Cadhalpun. (Closes: #845364)
Checksums-Sha1:
 14b3c07ef9005827d745590942d1591acb59bae8 2652 lives_2.8.1-1.dsc
 124cf14da3a8d0843e1af7dddb4ce6727b58635f 3888441 lives_2.8.1.orig.tar.bz2
 70a63a1e0e4d34e81affc24d08ad296a9798126e 18600 lives_2.8.1-1.debian.tar.xz
Checksums-Sha256:
 a39a74a8ff5845d2eb45aad6b4990b4a5756d7343a92d76f7dff1b917f6837e7 2652 
lives_2.8.1-1.dsc
 fcfec5c802a732b2856bff5a3dbe2d157caff663f7d24d78c5e05548941a6024 3888441 
lives_2.8.1.orig.tar.bz2
 6b466609389d61b5413508684d25acc04bf7a9c9d066326dee3631821c51b1d9 18600 
lives_2.8.1-1.debian.tar.xz
Files:
 12623c64d71a5e4343be0d3fb98a1daa 2652 video optional lives_2.8.1-1.dsc
 5ead5834902b3b6962a72627e584ae87 3888441 video optional 
lives_2.8.1.orig.tar.bz2
 7f0aee4b00b60c87e4f279d938745fb3 18600 video optional 
lives_2.8.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlg0q6wACgkQafL8UW6n
GZNPqA//SiW5YlrNFjOZsiXf37gBEqb+rqInx1vLT+UawM7ygF95m2a/UCFPufzh
MVqH+ridYO2DRXvpaAdMLnLkprQaCs8u9+oGbHkEkZCtr2HQkEttzJF4eYIsJkc/
uAEHpeo3R94/r8S/ssfcIoES7ZhIOAX5zivOrfIzP4L2iDFrFUgEclG8yM7i23XV
9YZj2wTvcRm9oRYqmpRdEL3TI3Yh59HftD0zUmisqP4GMlP9rLMD5OiLVyzOL8UD
nBYe1dDheTFqIEi0W512HD3w8JsraPWGtrm5O3DMsiaCZdQ1j1yMgJV7TKKKZlz2
yQh8QICHDsFRhvA4lQrq/H8FV13tU+uOmF5sY7zDMMN7PPY9OioKEsaJ5I122wDm
Jqd+UOLsbAY6vEdy6TFd23rxqyZ7wnSrKne/AtnzmcddjM2A9vPtPHYXQileO/mx

Bug#845365: marked as done (mplayer: removal of libschroedinger)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Tue, 22 Nov 2016 21:05:11 +
with message-id 
and subject line Bug#845365: fixed in mplayer 2:1.3.0-5
has caused the Debian Bug report #845365,
regarding mplayer: removal of libschroedinger
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.)


-- 
845365: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845365
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:mplayer
Version: 2:1.3.0-4
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

libschroedinger was disabled already anyway due to:
Checking for libschroedinger ... no (ffmpeg (static) is required by 
libschroedinger, sorry)

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -57,7 +57,6 @@ Build-Depends:
  libpostproc-dev (>= 7:3.0~),
  libpulse-dev,
  librtmp-dev,
- libschroedinger-dev,
  libsdl1.2-dev,
  libsmbclient-dev [!hurd-any],
  libspeex-dev,

--- End Message ---
--- Begin Message ---
Source: mplayer
Source-Version: 2:1.3.0-5

We believe that the bug you reported is fixed in the latest version of
mplayer, 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 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated mplayer 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: Tue, 22 Nov 2016 21:44:35 +0100
Source: mplayer
Binary: mplayer-gui mencoder mplayer mplayer-doc
Architecture: source
Version: 2:1.3.0-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 mencoder   - MPlayer's Movie Encoder
 mplayer- movie player for Unix-like systems
 mplayer-doc - documentation for MPlayer
 mplayer-gui - movie player for Unix-like systems (GUI variant)
Closes: 845365
Changes:
 mplayer (2:1.3.0-5) unstable; urgency=medium
 .
   * Team upload.
   * debian/control:
 - Remove libschroedinger. Thanks to Andreas Cadhalpun.
   (Closes: #845365)
 - Update liblircclient-dev to liblirc-dev.
Checksums-Sha1:
 b03d47ae2799989273962c39d8f70ac22b5afb4e 3356 mplayer_1.3.0-5.dsc
 105473ec8847a89d807e620eee9c36428f49c9b8 35920 mplayer_1.3.0-5.debian.tar.xz
Checksums-Sha256:
 0dd49030b874fc5bb6756804937f35334efff37f565c73a62a58486f5e313721 3356 
mplayer_1.3.0-5.dsc
 596762ce5adc9d0f995ad2c0286d4f432f421ddb79255d0ba61e37ec3a663110 35920 
mplayer_1.3.0-5.debian.tar.xz
Files:
 4cee233c43dc0b61e4cd6be832e45889 3356 video optional mplayer_1.3.0-5.dsc
 a3f8e1b5340bc595c921d64a24426800 35920 video optional 
mplayer_1.3.0-5.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlg0r1YACgkQafL8UW6n
GZM+wRAAgWZqsfEAbEvEAb+V5FQC8YXfg+8kB6B06U1ev4Ydr9hr0DLAeMzrYS32
oGbA5PHLCQsT0COqIPrhzUwa17gDLvqc7zXVwGcTwWzwNbfVN3bk/ipSUM6U8l1B
GPRCPnCxElUtquXIKTp3LD3lqv6jcE/eGopaE+JAAPBA/0RNw8bRbN+L93BtEG21
XnYBMUfsKaqC0WlVDTwXZe1+5eQCAUnRl+bLjeN951cyfOL4hzbaiSDgkseqJnkl
+gxvN2Yuii+MP91nrD+GSQWLpkKyNbHAin5QRjBz948aJTAtfZQwD0yOkf8LKpNO
ozsiryqImvzyE/JAMsq3fonQ1gmAY3DOBXkFyN/QwpRFH+tbSgQa+qadSeNeO2uM
/WIRAAE8fZcoC/SoJ82pek8XfskyJAKBYDqYLdts1FQgB6qZMxwmrUnfh4gr9rRJ
+UknZ3YaDjsnVHgqa6U/sJSCBF/95RanZKU0XDpIZ/hrpvu+6ejHF8vLLtWU6dGM
hQrPZu7Go+1fD50Zg14nY7JZGjThvO1bKVaEDJiG1gQDW3/ajltX9NQyKf7Gc9HI
r3ogR3dRjxuJoeAei44hXetfuy1f1FPKyWkInd9Irw3X0nln9mKIlZpRxe9SZqBY
zkduXFPwcSr580nqohYpRO8A/fogXC+JCsF6rgCpretoCx2J4a4=
=yyGu
-END PGP SIGNATURE End Message ---


Bug#845309: Merge all bugs with the bug fixed in 1.6.0+snapshot20161117-4

2016-11-22 Thread Simon McVittie
Control: unmerge 845309
Control: reopen 845309
Control: severity 845309 important

On Tue, 22 Nov 2016 at 22:03:09 +0200, Adrian Bunk wrote:
> forcemerge 845278 845347 845367 845333 845309 845313 

Slightly too many bugs there - #845309 is a different (and
non-RC) issue, which has not been fixed.

S



Processed: Re: Merge all bugs with the bug fixed in 1.6.0+snapshot20161117-4

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> unmerge 845309
Bug #845309 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: dpkg does not generate versioned dependencies on iptables 
libraries
Bug #845278 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: can't be installed
Bug #845313 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12 conflicts with libxtables11
Bug #845333 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: trying to overwrite '.../libxtables.so.12.0.0', which is also in 
package libxtables11
Bug #845347 {Done: Antti Järvinen } [libxtables12] 
libxtables12: Conflicting file with libxtables11
Bug #845367 {Done: Arturo Borrero Gonzalez } [libxtables12] 
trying to overwrite '/usr/lib/x86_64-linux-gnu/libxtables.so.12.0.0', which is 
also in package libxtables11:amd64
Disconnected #845309 from all other report(s).
> reopen 845309
Bug #845309 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: dpkg does not generate versioned dependencies on iptables 
libraries
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions iptables/1.6.0+snapshot20161117-4 and 
iptables/1.6.0+snapshot20161117-3.
> severity 845309 important
Bug #845309 [libxtables12] libxtables12: dpkg does not generate versioned 
dependencies on iptables libraries
Severity set to 'important' from 'grave'

-- 
845278: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845278
845309: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845309
845313: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845313
845333: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845333
845347: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845347
845367: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845367
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#844018: Discussing my patch with Kurt Roeckx

2016-11-22 Thread Adrian Bunk
IRC discussion with Kurt Roeckx:

23:14 < bunk> Q_: If you come up with a better patch than mine in #844018, 
  please post to that bug. I know that my patch is not pretty, but 
  I did not find any better short-term solution.
23:14 -zwiebelbot:#debian-release- Debian#844018: libcurl3: Building with 
  OpenSSL 1.1 breaks packages using both OpenSSL 1.0 and curl - 
  https://bugs.debian.org/844018
23:29 < Q_> bunk: I really have no better solution. I don't think building a 
libcurl against 1.0 and one against 1.1 makes sense, nor am I sure 
it solves anything.


cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



Bug#845375: gst-plugins-good1.0: heap corruption vulnerability in the gstreamer decoder for the FLIC file format

2016-11-22 Thread Salvatore Bonaccorso
Source: gst-plugins-good1.0
Version: 1.4.4-2
Severity: grave
Tags: security upstream patch
Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=774834

Hi

See
https://scarybeastsecurity.blogspot.ch/2016/11/0day-exploit-advancing-exploitation.html
(there is no CVE assigned yet).

Upstream bug: https://bugzilla.gnome.org/show_bug.cgi?id=774834

Regards,
Salvatore



Bug#845365: marked as pending

2016-11-22 Thread Sebastian Ramacher
tag 845365 pending
thanks

Hello,

Bug #845365 reported by you has been fixed in the Git repository. You can
see the changelog below, and you can check the diff of the fix at:

http://git.debian.org/?p=pkg-multimedia/mplayer.git;a=commitdiff;h=8994d89

---
commit 8994d89a03102d7a232bce18f5fc97762bbbc9f5
Author: Sebastian Ramacher 
Date:   Tue Nov 22 21:47:07 2016 +0100

Finalize changelog

diff --git a/debian/changelog b/debian/changelog
index 046f304..68b46c7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+mplayer (2:1.3.0-5) unstable; urgency=medium
+
+  * Team upload.
+  * debian/control:
+- Remove libschroedinger. Thanks to Andreas Cadhalpun.
+  (Closes: #845365)
+- Update liblircclient-dev to liblirc-dev.
+
+ -- Sebastian Ramacher   Tue, 22 Nov 2016 21:44:35 +0100
+
 mplayer (2:1.3.0-4) unstable; urgency=medium
 
   * Team upload.



Processed: Bug#845365 marked as pending

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 845365 pending
Bug #845365 [src:mplayer] mplayer: removal of libschroedinger
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#844449: bluefish: Bluefish immediately crashed

2016-11-22 Thread Daniel Leidert
severity 89 important
tags 89 + moreinfo
thanks

Am Dienstag, den 15.11.2016, 21:37 +0100 schrieb Peter Schütt:
> 
> Bluefish crash very often immediately.

Can you please install the debugging symbols and run bluefish from
within a gdb session and attach any backtrace you get to this report?
You'll find a more detailed explanation at [1]. The information you
provided is not sufficient enough. Further I'm downgrading severity as
I have no information, that many or most bluefish users are affected.

[1] https://wiki.debian.org/HowToGetABacktrace

Regards, Daniel

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


Processed: Re: Bug#844449: bluefish: Bluefish immediately crashed

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 89 important
Bug #89 [bluefish] bluefish: Bluefish immediately crashed
Severity set to 'important' from 'grave'
> tags 89 + moreinfo
Bug #89 [bluefish] bluefish: Bluefish immediately crashed
Added tag(s) moreinfo.
> thanks
Stopping processing here.

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



Bug#812025: vdr-plugin-vcd: FTBFS with GCC 6: flexible array member...

2016-11-22 Thread Adrian Bunk
On Tue, Jan 19, 2016 at 08:37:37PM -0800, Martin Michlmayr wrote:
> Package: vdr-plugin-vcd
> Version: 0.9-25
> Severity: important
> User: debian-...@lists.debian.org
> Usertags: ftbfs-gcc-6
> 
> This package fails to build with GCC 6.  GCC 6 has not been released
> yet, but it's expected that GCC 6 will become the default compiler for
> stretch.
> 
> Note that only the first error is reported; there might be more.  You
> can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
> you can set CC=gcc-6 CXX=g++-6 explicitly.
> 
> You may be able to find out more about this issue at
> https://gcc.gnu.org/gcc-6/changes.html
> 
> > sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
> ...
> > make[2]: Entering directory '/<>'
> > g++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fPIC 
> > -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -c -DPLUGIN_NAME_I18N='"vcd"' 
> > -D_GNU_SOURCE -I/usr/include/vdr/include vcd.c
> > In file included from vcd.c:27:0:
> > functions.h:170:23: error: flexible array member 'psd_vcd:: > struct>::play_item' not at end of 'union psd_vcd'
> >   __u16  play_item[];
> >^
> > 
> > functions.h:173:13: note: next member '__u8 psd_vcd:: > struct>::header' declared here
> >   __u8   header;
> >  ^~
>...

Builds for me in unstable, and the code looks correct:

union psd_vcd {
  __u8  header;
  struct {
 __u8   header;
 __u8   number_of_items;
 __u16  list_id;
 __u16  previous_list_offset;
 __u16  next_list_offset;
 __u16  return_list_offset;
 __u16  playing_time;
 __u8   play_item_wait_time;
 __u8   auto_pause_wait_time;
 __u16  play_item[];  <-- line 170
  } play;
  struct {
 __u8   header;
 __u8   selection_list_flags;
 __u8   nos;
 __u8   bsn;
 __u16  list_id;
 __u16  previous_list_offset;
 __u16  next_list_offset;
 __u16  return_list_offset;
 __u16  default_list_offset;
 __u16  timeout_list_offset;
 __u8   timeout_wait_time;
 __u8   loop_count;
 __u16  play_item;
 __u16  selection_offset[];
  } selection;
};


Can you confirm that vdr-plugin-vcd builds for you now?

This could have been a bug in the pre-release gcc that is now fixed.

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



Bug#845364: marked as pending

2016-11-22 Thread Sebastian Ramacher
tag 845364 pending
thanks

Hello,

Bug #845364 reported by you has been fixed in the Git repository. You can
see the changelog below, and you can check the diff of the fix at:

http://git.debian.org/?p=pkg-multimedia/lives.git;a=commitdiff;h=554633a

---
commit 554633a3d11204f466f00520e063ecf7038a54cb
Author: Sebastian Ramacher 
Date:   Tue Nov 22 21:28:53 2016 +0100

Update changelog

diff --git a/debian/changelog b/debian/changelog
index 53ae29c..96b9d61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,10 @@ lives (2.8.1-1) UNRELEASED; urgency=medium
 - Do not generate empty audio files when encoding. (Closes: #810146)
 - No longer create world-writeable directories. (Closes: #798043)
 - Fix use of temporary files in smogrify. (Closes: #756565)
+  * debian/control:
+- Remove Harry Rickards from Uploaders. Thanks for maintaing lives, Harry.
+  (Closes: #843605)
+- Disable libschroedinger. Thanks to Andreas Cadhalpun. (Closes: #845364)
 
  -- Sebastian Ramacher   Tue, 22 Nov 2016 21:17:47 +0100
 



Processed: Bug#845364 marked as pending

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 845364 pending
Bug #845364 [src:lives] lives: removal of libschroedinger
Added tag(s) pending.
> thanks
Stopping processing here.

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



Processed: Merge all bugs with the bug fixed in 1.6.0+snapshot20161117-4

2016-11-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 845278 845347 845367 845333 845309 845313
Bug #845278 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: can't be installed
Bug #845367 [libxtables12] trying to overwrite 
'/usr/lib/x86_64-linux-gnu/libxtables.so.12.0.0', which is also in package 
libxtables11:amd64
Marked Bug as done
Marked as fixed in versions iptables/1.6.0+snapshot20161117-3 and 
iptables/1.6.0+snapshot20161117-4.
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions iptables/1.6.0+snapshot20161117-3 and 
iptables/1.6.0+snapshot20161117-2.
Added tag(s) patch.
Bug #845347 {Done: Antti Järvinen } [libxtables12] 
libxtables12: Conflicting file with libxtables11
Severity set to 'grave' from 'normal'
Marked as fixed in versions iptables/1.6.0+snapshot20161117-3 and 
iptables/1.6.0+snapshot20161117-4.
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions libxtables12 and iptables/1.6.0+snapshot20161117-2.
Added tag(s) patch.
Bug #845313 [libxtables12] libxtables12 conflicts with libxtables11
Severity set to 'grave' from 'normal'
Marked Bug as done
Marked as fixed in versions iptables/1.6.0+snapshot20161117-4 and 
iptables/1.6.0+snapshot20161117-3.
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions iptables/1.6.0+snapshot20161117-3 and libxtables12.
Added tag(s) patch.
Bug #845278 {Done: Arturo Borrero Gonzalez } [libxtables12] 
libxtables12: can't be installed
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions libxtables12 and iptables/1.6.0+snapshot20161117-3.
Added tag(s) patch.
Bug #845333 [libxtables12] libxtables12: trying to overwrite 
'.../libxtables.so.12.0.0', which is also in package libxtables11
Severity set to 'grave' from 'serious'
Marked Bug as done
Marked as fixed in versions iptables/1.6.0+snapshot20161117-3 and 
iptables/1.6.0+snapshot20161117-4.
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions libxtables12 and iptables/1.6.0+snapshot20161117-2.
Added tag(s) patch.
Bug #845309 [libxtables12] libxtables12: dpkg does not generate versioned 
dependencies on iptables libraries
Severity set to 'grave' from 'important'
Marked Bug as done
Marked as fixed in versions iptables/1.6.0+snapshot20161117-3 and 
iptables/1.6.0+snapshot20161117-4.
There is no source info for the package 'libxtables12' at version 
'libxtables12' with architecture ''
Unable to make a source version for version 'libxtables12'
Marked as found in versions iptables/1.6.0+snapshot20161117-3 and libxtables12.
Merged 845278 845309 845313 845333 845347 845367
> thanks
Stopping processing here.

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



Processed: Re: Bug#815725: trilinos: FTBFS on non-amd64

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 serious
Bug #815725 [src:trilinos] trilinos: FTBFS on non-amd64 64-bit architectures
Severity set to 'serious' from 'important'

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



Bug#845367: trying to overwrite '/usr/lib/x86_64-linux-gnu/libxtables.so.12.0.0', which is also in package libxtables11:amd64

2016-11-22 Thread Thilo Six
Package: libxtables12
Version: libxtables12
Severity: grave
Justification: renders package unusable

Dear Maintainer,


dpkg: dependency problems prevent configuration of iptables:
 iptables depends on libxtables12 (= 1.6.0+snapshot20161117-3); however:
  Package libxtables12:amd64 is not installed.

dpkg: error processing package iptables (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 iptables
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following package was automatically installed and is no longer required:
   libadns1 (1.5.0~rc1-1)
Use 'apt autoremove' to remove it.
The following additional packages will be installed:
   libxtables12 (1.6.0+snapshot20161117-3)
The following NEW packages will be installed:
   libxtables12 (1.6.0+snapshot20161117-3)
0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
1 not fully installed or removed.
Need to get 0 B/75,2 kB of archives.
After this operation, 134 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 195851 files and directories currently installed.)
Preparing to unpack .../libxtables12_1.6.0+snapshot20161117-3_amd64.deb ...
Unpacking libxtables12:amd64 (1.6.0+snapshot20161117-3) ...
dpkg: error processing archive
/var/cache/apt/archives/libxtables12_1.6.0+snapshot20161117-3_amd64.deb 
(--unpack):
 trying to overwrite '/usr/lib/x86_64-linux-gnu/libxtables.so.12.0.0', which is
also in package libxtables11:amd64 1.6.0+snapshot20161117-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libxtables12_1.6.0+snapshot20161117-3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 4.8.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to
C.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libxtables12 depends on:
ii  libc6  2.24-6

libxtables12 recommends no packages.

libxtables12 suggests no packages.



Bug#840397: stretch should not ship with readline6

2016-11-22 Thread Sven Joachim
On 2016-10-11 11:18 +0200, Matthias Klose wrote:

> Package: src:readline6
> Version: 6.3-9
> Severity: serious
> Tags: sid stretch
>
> The package is replaced by the readline (7.0) source package and should not 
> ship
> with stretch.

It seems the only packages declaring a relation with libreadline6 in
stretch are postgresql-client-common (#845356) and cupt (#845358).
Those are Recommends and Suggests however, so it's probably fine if you
file a removal bug now.

Removing readline6 from unstable is going to take more effort with more
than a dozen packages still depending on libreadline6.

Cheers,
   Sven



Bug#841582: Pyparsing error in sphinxcontrib-doxylink

2016-11-22 Thread Ghislain Vaillant

CC-ing this reply to the Debian bug report.

Thanks Paul for the patch. I applied it (fixed a missing import for 
ungroup), used your name for the commit authorship and acknowledged

your contribution to the packaging changelog.

I will also forward the patch upstream.

Many thanks for your contribution.

Cheers,
Ghis


On 16/11/16 23:09, Paul McGuire wrote:

Ghislain –



While googling for pyparsing mentions, I found this Debian bug report:



https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844368



I’m sorry that this recent version of pyparsing (2.1.10) causes some
compatibility problems. The change which caused you problems had to do
with the fixing of a bug in the MultipleMatch classes ZeroOrMore and
OneOrMore (although my CHANGES file only mentions ZeroOrMore).



The problem is that expressions that would return potentially multiple
words were only returning the first element when used with a results
name. This was a bug that was introduced in May, version 2.1.6 or so I
think. Apparently, you developed your grammar to work with this bug, and
expected the ‘qualifier’ result to return just a single string. After
fixing the bug, the OneOrMore expression properly returns this value as
a list, even though there is only one value.



I downloaded your module and did some quick tests, and adding the second
line below in parsing.py will fix your problem (I’m assuming that, if
multiple qualifier words are present, you will want all of them reported).



qualifier = OneOrMore(oneOf('const unsigned typename struct enum'))

qualifier = ungroup(qualifier.addParseAction(' '.join))



Again, I’m sorry for this mixup, I hope pyparsing continues to be useful
for you.



Regards,

-- Paul McGuire






Avast logo   

This email has been checked for viruses by Avast antivirus software.
www.avast.com 






Bug#845037: libschroedinger-1.0-0: is this package fit for stretch?

2016-11-22 Thread Andreas Cadhalpun
On 22.11.2016 10:55, Sebastian Dröge wrote:
> On Mon, 2016-11-21 at 23:46 +0100, Andreas Cadhalpun wrote:
>> I will take care of ffmpeg myself and I assume you will take care of
>> gst-plugins-bad1.0.
> 
> Yeah, will do in the next days! Some other things to handle first

That's fine. I'll also wait with fixing ffmpeg for the next upstream
bugfix release that is expected soon.

I've now filed bugs #845361 - #845366 about the other packages.
(vlc got already fixed before I had the chance to file a bug.)

Best regards,
Andreas



Bug#845362: libquicktime: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:libquicktime
Version: 2:1.2.4-8
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -25,7 +25,6 @@ Build-Depends:
  libpng-dev,
  libpopt-dev,
  libraw1394-dev [linux-any],
- libschroedinger-dev,
  libsdl1.2-dev,
  libswscale-dev (>= 6:10~),
  libvorbis-dev,



Processed: liquidsoap: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was blocked by: 845362 845361
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845363

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



Bug#845364: lives: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:lives
Version: 2.8.0-1
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -30,7 +30,6 @@ Build-Depends:
  libogg-dev,
  libpulse-dev,
  libraw1394-dev [linux-any],
- libschroedinger-dev,
  libsdl1.2-dev,
  libswscale-dev,
  libtheora-dev,



Processed: ocaml-schroedinger: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was blocked by: 845361 845364 845363 845362 845365
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845366

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



Processed: mplayer: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was blocked by: 845363 845362 845361 845364
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845365

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



Bug#845366: ocaml-schroedinger: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:ocaml-schroedinger
Version: 0.1.0-3
Severity: serious
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Since this package is not useful without libschroedinger, the plan is
to remove it along with that library. This is just an advance notice.

Best regards,
Andreas



Processed: lives: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was blocked by: 845363 845361 845362
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845364

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



Bug#845365: mplayer: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:mplayer
Version: 2:1.3.0-4
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

libschroedinger was disabled already anyway due to:
Checking for libschroedinger ... no (ffmpeg (static) is required by 
libschroedinger, sorry)

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -57,7 +57,6 @@ Build-Depends:
  libpostproc-dev (>= 7:3.0~),
  libpulse-dev,
  librtmp-dev,
- libschroedinger-dev,
  libsdl1.2-dev,
  libsmbclient-dev [!hurd-any],
  libspeex-dev,



Processed: libquicktime: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was blocked by: 845361
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845362

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



Bug#845363: liquidsoap: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:liquidsoap
Version: 1.1.1-7.1
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on
libschroedinger-ocaml-dev and the liquidsoap-plugin-schroedinger package,
which is sufficient to achieve this.

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -42,7 +42,6 @@ Build-Depends:
  libportaudio-ocaml-dev (>= 0.2.0),
  libpulse-ocaml-dev (>= 0.1.2),
  libsamplerate-ocaml-dev (>= 0.1.2),
- libschroedinger-ocaml-dev (>= 0.1.0-3),
  libsdl-ocaml-dev,
  libshine-ocaml-dev,
  libsoundtouch-ocaml-dev (>= 0.1.7),
@@ -142,7 +141,6 @@ Depends:
  liquidsoap-plugin-portaudio,
  liquidsoap-plugin-pulseaudio,
  liquidsoap-plugin-samplerate,
- liquidsoap-plugin-schroedinger,
  liquidsoap-plugin-sdl,
  liquidsoap-plugin-shine,
  liquidsoap-plugin-soundtouch,
@@ -497,7 +495,7 @@ Description: audio streaming language -- Ogg plugin
  .
  This package provides support for Ogg stream decoding and encoding in
  Liquidsoap. This plugin is only useful when used with one of vorbis,
- speex, flac, theora or schroedinger plugin.
+ speex, flac or theora plugin.
 
 Package: liquidsoap-plugin-opus
 Architecture: any
@@ -587,24 +585,6 @@ Description: audio streaming language -- Samplerate plugin
  This package provides support for audio samplerate conversion using
  libsamplerate in Liquidsoap.
 
-Package: liquidsoap-plugin-schroedinger
-Architecture: any
-Depends:
- liquidsoap (= ${binary:Version}),
- ${misc:Depends},
- ${ocaml:Depends},
- ${shlibs:Depends}
-Description: audio streaming language -- Schroedinger plugin
- Liquidsoap is a powerful tool for building complex audio streaming systems,
- typically targeting internet radios (e.g. icecast streams).
- .
- It consists of a simple script language, in which you can create, combine and
- transform audio sources. Its design makes liquidsoap flexible and easily
- extensible.
- .
- This package provides support ogg/dirac video decoding and encoding using
- libschroedinger in Liquidsoap.
-
 Package: liquidsoap-plugin-sdl
 Architecture: any
 Depends:
--- a/debian/liquidsoap-plugin-schroedinger.install
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib/liquidsoap/*/plugins/schroedinger.cm*
--- a/debian/rules
+++ b/debian/rules
@@ -9,7 +9,7 @@ DEB_PYTHON2_MODULE_PACKAGES := liguidsoap
 DEFAULT_FONT := /usr/share/fonts/truetype/ttf-liberation/LiberationSans-Regular.ttf
 
 DEB_CONFIGURE_EXTRA_FLAGS := \
-  --enable-ogg-dynamic-plugin --enable-schroedinger-dynamic-plugin --enable-flac-dynamic-plugin \
+  --enable-ogg-dynamic-plugin --enable-flac-dynamic-plugin \
   --enable-speex-dynamic-plugin --enable-vorbis-dynamic-plugin --enable-theora-dynamic-plugin \
   --enable-sdl-dynamic-plugin --enable-gavl-dynamic-plugin --enable-mad-dynamic-plugin \
   --enable-faad-dynamic-plugin --enable-xmlplaylist-dynamic-plugin --enable-lastfm-dynamic-plugin \
@@ -41,7 +41,7 @@ else
 -Nliquidsoap-plugin-ladspa -Nliquidsoap-plugin-lastfm -Nliquidsoap-plugin-mad \
 -Nliquidsoap-plugin-ogg -Nliquidsoap-plugin-oss -Nliquidsoap-plugin-portaudio \
 -Nliquidsoap-plugin-pulseaudio -Nliquidsoap-plugin-samplerate \
--Nliquidsoap-plugin-schroedinger -Nliquidsoap-plugin-soundtouch -Nliquidsoap-plugin-speex \
+-Nliquidsoap-plugin-soundtouch -Nliquidsoap-plugin-speex \
 -Nliquidsoap-plugin-taglib -Nliquidsoap-plugin-theora -Nliquidsoap-plugin-voaacenc \
 -Nliquidsoap-plugin-vorbis -Nliquidsoap-plugin-xmlplaylist -Nliquidsoap-plugin-lame \
 -Nliquidsoap-plugin-dssi -Nliquidsoap-plugin-lo -Nliquidsoap-plugin-camlimages \



Processed: gmerlin-avdecoder: removal of libschroedinger

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> block 845037 by -1
Bug #845037 [libschroedinger-1.0-0] libschroedinger-1.0-0: is this package fit 
for stretch?
845037 was not blocked by any bugs.
845037 was not blocking any bugs.
Added blocking bug(s) of 845037: 845361

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



Bug#845361: gmerlin-avdecoder: removal of libschroedinger

2016-11-22 Thread Andreas Cadhalpun
Package: src:gmerlin-avdecoder
Version: 1.2.0~dfsg-7
Severity: serious
Tags: patch
Control: block 845037 by -1

Dear Maintainer,

libschroedinger contains various possibly security relevant bugs and is
no longer maintained upstream. Therefore it has been decided to remove
it from Debian. (see bug #845037)

Before it can be removed, all reverse dependencies have to stop using it.

Attached is a patch dropping the build-dependency on libschroedinger-dev,
which is sufficient to achieve this.

Best regards,
Andreas
--- a/debian/control
+++ b/debian/control
@@ -36,7 +36,6 @@ Build-Depends:
  libmpeg2-4-dev,
  libpng-dev,
  libpostproc-dev,
- libschroedinger-dev,
  libsmbclient-dev,
  libspeex-dev,
  libswscale-dev,



  1   2   >