Bug#802650: miniupnpc: CVE-2015-6031: Buffer overflow vulnerability in XML parser functionality

2015-10-25 Thread Salvatore Bonaccorso
Hi Thomas, and Thomas,

On Fri, Oct 23, 2015 at 12:18:57AM +0200, miniupnp wrote:
> Doesn't the following patch apply ?
> 
> https://github.com/miniupnp/miniupnp/commit/79cca974a4c2ab1199786732a67ff6d898051b78
> 
> I think it applies properly on all release since at least 1.5, maybe even 
> before.

I now uploaded the attached debdiffs to security-master to be released
in a DSA. I can prepare -- if needed -- as well a NMU for sid, but
just applying the patch. I guess though it would be better to go just
for a new upstream version there.

Regards,
Salvatore
diff -u miniupnpc-1.5/debian/changelog miniupnpc-1.5/debian/changelog
--- miniupnpc-1.5/debian/changelog
+++ miniupnpc-1.5/debian/changelog
@@ -1,3 +1,11 @@
+miniupnpc (1.5-2+deb7u1) wheezy-security; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * CVE-2015-6031: Buffer overflow vulnerability in XML parser functionality
+(Closes: #802650)
+
+ -- Salvatore Bonaccorso   Sun, 25 Oct 2015 07:35:29 +0100
+
 miniupnpc (1.5-2) unstable; urgency=low
 
   * libminiupnpc-dev now depends on libminiupnpc5 (Closes: #617774).
only in patch2:
unchanged:
--- miniupnpc-1.5.orig/igd_desc_parse.c
+++ miniupnpc-1.5/igd_desc_parse.c
@@ -15,7 +15,9 @@
 void IGDstartelt(void * d, const char * name, int l)
 {
struct IGDdatas * datas = (struct IGDdatas *)d;
-   memcpy( datas->cureltname, name, l);
+   if(l >= MINIUPNPC_URL_MAXSIZE)
+   l = MINIUPNPC_URL_MAXSIZE-1;
+   memcpy(datas->cureltname, name, l);
datas->cureltname[l] = '\0';
datas->level++;
if( (l==7) && !memcmp(name, "service", l) ) {
diff -Nru miniupnpc-1.9.20140610/debian/changelog 
miniupnpc-1.9.20140610/debian/changelog
--- miniupnpc-1.9.20140610/debian/changelog 2014-07-13 16:43:51.0 
+0200
+++ miniupnpc-1.9.20140610/debian/changelog 2015-10-25 07:54:43.0 
+0100
@@ -1,3 +1,12 @@
+miniupnpc (1.9.20140610-2+deb8u1) jessie-security; urgency=high
+
+  * Non-maintainer upload by the Security Team.
+  * Add CVE-2015-6031.patch patch.
+CVE-2015-6031: Buffer overflow vulnerability in XML parser
+functionality. (Closes: #802650)
+
+ -- Salvatore Bonaccorso   Sun, 25 Oct 2015 07:49:17 +0100
+
 miniupnpc (1.9.20140610-2) unstable; urgency=medium
 
   * Uploading to unstable.
diff -Nru miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch 
miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch
--- miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch   1970-01-01 
01:00:00.0 +0100
+++ miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch   2015-10-25 
07:54:43.0 +0100
@@ -0,0 +1,21 @@
+Description: igd_desc_parse.c: fix buffer overflow (CVE-2015-6031)
+Origin: upstream, 
https://github.com/miniupnp/miniupnp/commit/79cca974a4c2ab1199786732a67ff6d898051b78
+Bug-Debian: https://bugs.debian.org/802650
+Forwarded: no
+Author: Thomas Bernard 
+Last-Update: 2015-10-25
+Applied-Upstream: 1.9.20150917
+---
+--- a/igd_desc_parse.c
 b/igd_desc_parse.c
+@@ -15,7 +15,9 @@
+ void IGDstartelt(void * d, const char * name, int l)
+ {
+   struct IGDdatas * datas = (struct IGDdatas *)d;
+-  memcpy( datas->cureltname, name, l);
++  if(l >= MINIUPNPC_URL_MAXSIZE)
++  l = MINIUPNPC_URL_MAXSIZE-1;
++  memcpy(datas->cureltname, name, l);
+   datas->cureltname[l] = '\0';
+   datas->level++;
+   if( (l==7) && !memcmp(name, "service", l) ) {
diff -Nru miniupnpc-1.9.20140610/debian/patches/series 
miniupnpc-1.9.20140610/debian/patches/series
--- miniupnpc-1.9.20140610/debian/patches/series2014-07-13 
16:43:51.0 +0200
+++ miniupnpc-1.9.20140610/debian/patches/series2015-10-25 
07:54:43.0 +0100
@@ -1 +1,2 @@
 correct-typo-in-manpage.patch
+CVE-2015-6031.patch


signature.asc
Description: PGP signature


Bug#802801: python-coverage: FTBFS: calling function returned 100.0, not a test

2015-10-25 Thread Dmitry Shachnev
Hi Ben,

On Sun, 25 Oct 2015 15:50:38 +1100, Ben Finney wrote:
> I don't get that failure at all. We are both using Debian Sid chroot,
> on “amd64” architecture. I updated the build chroot less than an hour
> ago; perhaps something has changed between your attempt and mine?

I am still getting the same failure with just updated pbuilder chroot.

Also, the same failure occurs on Reproducible Builds server:
.

Anyway, I see you filed #802916 today. Maybe it's some randomness that makes
the tests fail with different errors?

--
Dmitry Shachnev

signature.asc
Description: OpenPGP digital signature


Bug#802063: cssutils: FTBFS: Failure: error (octal escape value \777 outside of range 0-0o377 at position 90

2015-10-25 Thread Andreas Metzler
On 2015-10-17 "Chris West (Faux)"  wrote:
> Source: cssutils
> Version: 1.0-2
> Severity: serious
> Justification: fails to build from source
> Tags: sid stretch
> User: reproducible-bui...@lists.alioth.debian.org
> Usertags: ftbfs
> X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

> Dear Maintainer,

> The package fails to build:
[...]

FWIW 1.0-3 (in experimental) does not fail to build .

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



Bug#802618: Bug #802618

2015-10-25 Thread Andreas Metzler
On 2015-10-22 mario_lu...@tiscali.it wrote:
>  Hello everyone.
> Sorry if I write not with reportbug.
> I have the same problem of Andreas Metzler but unlike him i do not
> have systemd installed.
> I tried to force the installation of libpam-systemd but the
> situation has not changed.

Hello,

What exactly does "tried to force the installation of libpam-systemd"
mean? Which commands did you run, what was the exact result?

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



Processed: Bug#802810 marked as pending

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 802810 pending
Bug #802810 [src:ncurses] ncurses: FTBFS on powerpc: 
/usr/bin/ld:resulting.map:814: syntax error in VERSION script
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#802810: marked as pending

2015-10-25 Thread Sven Joachim
tag 802810 pending
thanks

Hello,

Bug #802810 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=collab-maint/ncurses.git;a=commitdiff;h=e54c7ec

---
commit e54c7ec59f43f7be21fc6fdc7a87fd4ee10b4d92
Author: Sven Joachim 
Date:   Sun Oct 25 09:28:05 2015 +0100

Close bug #802810

Fixed in the latest upstream patchlevel.

http://lists.gnu.org/archive/html/bug-ncurses/2015-10/threads.html#00017
https://bugzilla.suse.com/show_bug.cgi?id=946048

diff --git a/debian/changelog b/debian/changelog
index 9114b2a..49da9eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,9 @@
 ncurses (6.0+20151024-1) UNRELEASED; urgency=low
 
   * New upstream patchlevel.
+- Improve configure check for setting WILDCARD_SYMS variable; on ppc64
+  the variable is in the Data section rather than Text (patch by Michel
+  Normand, Closes: #802810).
 
  -- Sven Joachim   Sun, 25 Oct 2015 09:19:49 +0100
 



Processed (with 1 error): your mail

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 802886 https://bugreports.qt.io/browse/QTBUG-48321
Bug #802886 [vlc] vlc: QT Interface wont full screen or renders only a small 
portion of the video
Bug #802922 [vlc] vlc: only top half of video shown when playing DVD's under 
kwin/xfce
Set Bug forwarded-to-address to 'https://bugreports.qt.io/browse/QTBUG-48321'.
Set Bug forwarded-to-address to 'https://bugreports.qt.io/browse/QTBUG-48321'.
> reassign 802886 libqt5widgets5
Bug #802886 [vlc] vlc: QT Interface wont full screen or renders only a small 
portion of the video
Bug #802922 [vlc] vlc: only top half of video shown when playing DVD's under 
kwin/xfce
Bug reassigned from package 'vlc' to 'libqt5widgets5'.
Bug reassigned from package 'vlc' to 'libqt5widgets5'.
No longer marked as found in versions vlc/2.2.1-4.
No longer marked as found in versions vlc/2.2.1-4.
Ignoring request to alter fixed versions of bug #802886 to the same values 
previously set
Ignoring request to alter fixed versions of bug #802922 to the same values 
previously set
> found 802886 5.5.0+dfsg-6
Bug #802886 [libqt5widgets5] vlc: QT Interface wont full screen or renders only 
a small portion of the video
Bug #802922 [libqt5widgets5] vlc: only top half of video shown when playing 
DVD's under kwin/xfce
Marked as found in versions qtbase-opensource-src/5.5.0+dfsg-6.
Marked as found in versions qtbase-opensource-src/5.5.0+dfsg-6.
> tags 798661 + upstream
Bug #798661 [libqt5widgets5] libqt5widgets5: regression in 5.5 breaks vlc video 
playback
Bug #801442 [libqt5widgets5] vlc: plane 0 not alingned, diabling direct 
rendering
Added tag(s) upstream.
Added tag(s) upstream.
> severity 798661 grave
Bug #798661 [libqt5widgets5] libqt5widgets5: regression in 5.5 breaks vlc video 
playback
Bug #801442 [libqt5widgets5] vlc: plane 0 not alingned, diabling direct 
rendering
Severity set to 'grave' from 'normal'
Severity set to 'grave' from 'normal'
> merge 802886 798661
Bug #802886 [libqt5widgets5] vlc: QT Interface wont full screen or renders only 
a small portion of the video
Bug #802922 [libqt5widgets5] vlc: only top half of video shown when playing 
DVD's under kwin/xfce
Unable to merge bugs because:
affects of #798661 is 'vlc' not ''
affects of #801442 is 'vlc' not ''
Failed to merge 802886: Did not alter merged bugs.

> thanks
Stopping processing here.

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



Bug#800322: marked as done (X32 enabled kernel and "Build of vmhgfs.ko failed for: 4.2.0-1-amd64 (x86_64)")

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 09:39:55 +
with message-id 
and subject line Bug#800322: fixed in open-vm-tools 2:10.0.0-3000743-1
has caused the Debian Bug report #800322,
regarding X32 enabled kernel and "Build of vmhgfs.ko failed for: 4.2.0-1-amd64 
(x86_64)"
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.)


-- 
800322: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800322
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: open-vm-tools
Version: 2:9.4.6-1770165-8
Severity: normal

*

I'm working with a machine configured for an X32 port. It was not
really by choice; a Debian maintainer broke us on the platform, so we
had to add it to the testing repertoire. The machine requires we boot
with `syscall.x32=y` (https://wiki.debian.org/X32Port). A recent
"apt-get dist-upgrade" resulted in:

...
Processing triggers for systemd (226-3) ...
Setting up linux-image-4.2.0-1-amd64 (4.2.1-1) ...
/etc/kernel/postinst.d/dkms:
Error!  Build of vmhgfs.ko failed for: 4.2.0-1-amd64 (x86_64)
Consult the make.log in the build directory
/var/lib/dkms/open-vm-tools/9.10.2/build/ for more information.
/etc/kernel/postinst.d/initramfs-tools:
update-initramfs: Generating /boot/initrd.img-4.2.0-1-amd64
/etc/kernel/postinst.d/zz-update-grub:
Generating grub configuration file ...
...

**

Attached is make.log (located in
/var/lib/dkms/open-vm-tools/9.10.2/build/make.log). Here are the first
set of errors:

# cat /var/lib/dkms/open-vm-tools/9.10.2/build/make.log
DKMS make.log for open-vm-tools-9.10.2 for kernel 4.2.0-1-amd64 (x86_64)
Sun Sep 27 15:00:23 EDT 2015
make: Entering directory '/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs'
Using kernel build system.
Building vmhgfs without VMCI module symbols.
make -C /lib/modules/4.2.0-1-amd64/build/include/.. SUBDIRS=$PWD
SRCROOT=$PWD/. \
  MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/9.10.2/build modules
make[1]: Entering directory '/usr/src/linux-headers-4.2.0-1-amd64'
Makefile:10: *** mixed implicit and normal rules: deprecated syntax
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/message.o
In file included from
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubs.h:103:0,
 from
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/message.c:59:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubsSal.h:63:8:
warning: "_SAL_VERSION" is not defined [-Wundef]
 #elif  _SAL_VERSION == 10
^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubsSal.h:111:8:
warning: "_SAL_VERSION" is not defined [-Wundef]
 #elif  _SAL_VERSION == 10
^
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/dir.o
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/rpcout.o
In file included from
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubs.h:103:0,
 from
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/rpcout.c:47:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubsSal.h:63:8:
warning: "_SAL_VERSION" is not defined [-Wundef]
 #elif  _SAL_VERSION == 10
^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/./shared/kernelStubsSal.h:111:8:
warning: "_SAL_VERSION" is not defined [-Wundef]
 #elif  _SAL_VERSION == 10
^
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/filesystem.o
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/cpName.o
  CC [M]  /var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.o
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:59:4: warning:
initialization from incompatible pointer type
.follow_link   = HgfsFollowlink,
^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:59:4: warning:
(near initialization for ‘HgfsLinkInodeOperations.follow_link’)
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:61:4: warning:
initialization from incompatible pointer type
.put_link  = HgfsPutlink,
^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:61:4: warning:
(near initialization for ‘HgfsLinkInodeOperations.put_link’)
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c: In function
‘HgfsFollowlink’:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:127:10: error:
implicit declaration of function ‘nd_set_link’
[-Werror=implicit-function-declaration]
  nd_set_link(nd, fileName);
  ^
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c: In function
‘HgfsPutlink’:
/var/lib/dkms/open-vm-tools/9.10.2/build/vmhgfs/link.c:238:4: error:

Bug#790252: marked as done (libpgf: FTBFS with gcc-5 (symbols))

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 09:39:33 +
with message-id 
and subject line Bug#790252: fixed in libpgf 6.14.12-3.1
has caused the Debian Bug report #790252,
regarding libpgf: FTBFS with gcc-5 (symbols)
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.)


-- 
790252: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790252
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libpgf
Version: 6.14.12-3
Severity: normal

>From my pbuilder build log, using a setup preferring glibc and gcc-defaults
from experimental:

...
   dh_compress
   dh_fixperms
   debian/rules override_dh_strip
make[1]: Entering directory '/tmp/buildd/libpgf-6.14.12'
dh_strip --dbg-package=libpgf6-dbg
make[1]: Leaving directory '/tmp/buildd/libpgf-6.14.12'
   dh_makeshlibs
dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libpgf6/DEBIAN/symbols doesn't match 
completely debian/libpgf6.symbols
--- debian/libpgf6.symbols (libpgf6_6.14.12-3+bpb5_amd64)
+++ dpkg-gensymbols52pMZ6   2015-06-21 06:59:46.044477073 +
@@ -126,7 +126,7 @@
  _ZTS14CPGFFileStream@Base 6.12.24+ds1
  _ZTS16CPGFMemoryStream@Base 6.12.24+ds1
  _ZTS9CPGFImage@Base 6.12.24+ds1
- _ZTV10CPGFStream@Base 6.12.24+ds1
+#MISSING: 6.14.12-3+bpb5# _ZTV10CPGFStream@Base 6.12.24+ds1
  _ZTV14CPGFFileStream@Base 6.12.24+ds1
  _ZTV16CPGFMemoryStream@Base 6.12.24+ds1
  _ZTV9CPGFImage@Base 6.12.24+ds1
dh_makeshlibs: failing due to earlier errors
debian/rules:8: recipe for target 'binary' failed
make: *** [binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
-- 
Daniel Schepler
--- End Message ---
--- Begin Message ---
Source: libpgf
Source-Version: 6.14.12-3.1

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

Debian distribution maintenance software
pp.
YunQiang Su  (supplier of updated libpgf 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, 20 Oct 2015 17:08:03 +0800
Source: libpgf
Binary: libpgf-dev libpgf6 libpgf6-dbg
Architecture: source amd64
Version: 6.14.12-3.1
Distribution: unstable
Urgency: medium
Maintainer: David Paleino 
Changed-By: YunQiang Su 
Description:
 libpgf-dev - Progressive Graphics File (PGF) library - development files
 libpgf6- Progressive Graphics File (PGF) library - runtime files
 libpgf6-dbg - Progressive Graphics File (PGF) library - debugging symbols
Closes: 790252
Changes:
 libpgf (6.14.12-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update symbol file to fix ftbfs (Closes: #790252).
Checksums-Sha1:
 26fdb668ebc448fdbf82dc5e7272fb2aa54bb4a1 1616 libpgf_6.14.12-3.1.dsc
 cfca5644a239c8c2a869a054050db1c6681b0bfe 28164 libpgf_6.14.12-3.1.debian.tar.xz
 78df71f9c06d7acbbe7d443806af7b179db55804 49146 libpgf-dev_6.14.12-3.1_amd64.deb
 dae5f3e2f4dc7937c6fc4a74f577b92462203ac8 100130 
libpgf6-dbg_6.14.12-3.1_amd64.deb
 8c67be1da34cfa27b84a15a75bd596254098ed2f 37184 libpgf6_6.14.12-3.1_amd64.deb
Checksums-Sha256:
 2209ca0ba3ec8a5133eeb9427dcfb49899484db9096b0adad2cc0adc2ff59f7d 1616 
libpgf_6.14.12-3.1.dsc
 f358d93c3eeb7e3468ea259fd4c800a09218b2e79c74bc3c4f142508f12009e3 28164 
libpgf_6.14.12-3.1.debian.tar.xz
 96eab5edd11a86ac5838afaec2fb5d40f1d165148ae82f52dc01ebe05dc0a362 49146 
libpgf-dev_6.14.12-3.1_amd64.deb
 9672688f665e083795cadc97d3cff03c2f7b364a0cbf01f8bbdc91e6d2c22f96 100130 
libpgf6-dbg_6.14.12-3.1_amd64.deb
 dc0a122fbf58e6df1fa3ead95d4d3657b19f6aed160b5326785633948ef2102c 37184 
libpgf6_6.14.12-3.1_amd64.deb
Files:
 43e21c5c9bebda94da858844414cbe39 1616 libs optional libpgf_6.14.12-3.1.dsc
 da76c6bc1c365d3eeb24a2401b99d0f4 28164 libs optional 
libpgf_6.14.12-3.1.debian.tar.xz
 5a85656b57f9c164247a0111981f976f 49146 libdevel optional 
libpgf-dev_6.14.12-3.1_amd64.deb
 7f89ca9fe7a3743b2dc58e1d567849c4 100130 debug extra 
libpgf6-dbg_6.14.12-3.1_amd64.deb
 3f3e21d746a05c91a5678e2a9e59705b 37184 libs 

Processed: block 796345 with 802939

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 796345 with 802939
Bug #796345 [release.debian.org] transition: perl 5.22
796345 was blocked by: 788073 787493 799118 787453 787450 787446 787912 790532 
787468 787499 796923
796345 was blocking: 798309 801659 801660 801661 801662 801663
Added blocking bug(s) of 796345: 802939
> thanks
Stopping processing here.

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



Bug#802650: miniupnpc: CVE-2015-6031: Buffer overflow vulnerability in XML parser functionality

2015-10-25 Thread Salvatore Bonaccorso
Hi Thomas,

Attached is debdiff for a proposed NMU to unstable as well (not yet
uploaded to delayed queue). Do you plan to do the upload? Otherwise I
can do the NMU.

Regards,
Salvatore
diff -Nru miniupnpc-1.9.20140610/debian/changelog 
miniupnpc-1.9.20140610/debian/changelog
--- miniupnpc-1.9.20140610/debian/changelog 2014-07-13 16:43:51.0 
+0200
+++ miniupnpc-1.9.20140610/debian/changelog 2015-10-25 13:41:58.0 
+0100
@@ -1,3 +1,12 @@
+miniupnpc (1.9.20140610-2.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Add CVE-2015-6031.patch patch.
+CVE-2015-6031: Buffer overflow vulnerability in XML parser
+functionality. (Closes: #802650)
+
+ -- Salvatore Bonaccorso   Sun, 25 Oct 2015 13:41:21 +0100
+
 miniupnpc (1.9.20140610-2) unstable; urgency=medium
 
   * Uploading to unstable.
diff -Nru miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch 
miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch
--- miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch   1970-01-01 
01:00:00.0 +0100
+++ miniupnpc-1.9.20140610/debian/patches/CVE-2015-6031.patch   2015-10-25 
13:41:58.0 +0100
@@ -0,0 +1,21 @@
+Description: igd_desc_parse.c: fix buffer overflow (CVE-2015-6031)
+Origin: upstream, 
https://github.com/miniupnp/miniupnp/commit/79cca974a4c2ab1199786732a67ff6d898051b78
+Bug-Debian: https://bugs.debian.org/802650
+Forwarded: no
+Author: Thomas Bernard 
+Last-Update: 2015-10-25
+Applied-Upstream: 1.9.20150917
+---
+--- a/igd_desc_parse.c
 b/igd_desc_parse.c
+@@ -15,7 +15,9 @@
+ void IGDstartelt(void * d, const char * name, int l)
+ {
+   struct IGDdatas * datas = (struct IGDdatas *)d;
+-  memcpy( datas->cureltname, name, l);
++  if(l >= MINIUPNPC_URL_MAXSIZE)
++  l = MINIUPNPC_URL_MAXSIZE-1;
++  memcpy(datas->cureltname, name, l);
+   datas->cureltname[l] = '\0';
+   datas->level++;
+   if( (l==7) && !memcmp(name, "service", l) ) {
diff -Nru miniupnpc-1.9.20140610/debian/patches/series 
miniupnpc-1.9.20140610/debian/patches/series
--- miniupnpc-1.9.20140610/debian/patches/series2014-07-13 
16:43:51.0 +0200
+++ miniupnpc-1.9.20140610/debian/patches/series2015-10-25 
13:41:58.0 +0100
@@ -1 +1,2 @@
 correct-typo-in-manpage.patch
+CVE-2015-6031.patch


Bug#790951: marked as done (restarts gmond at bad time during dist-upgrade)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 13:47:05 +
with message-id 
and subject line Bug#790951: fixed in ganglia-modules-linux 1.3.6-1+deb8u1
has caused the Debian Bug report #790951,
regarding restarts gmond at bad time during dist-upgrade
to be marked as done.

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

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


-- 
790951: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790951
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ganglia-modules-linux
Version: 1.3.6-1
Severity: serious

During dist-upgrade, ganglia-modules-linux postinst configure is called
before the ganglia-monitor postinst configure

During ganglia-modules-linux postinst configure it calls the init script
restart method, starting the daemon before ganglia-monitor postinst
configure is executed.

The ganglia-monitor postinst configure fails with an error because the
daemon is already running and the dh_installinit generated code doesn't
mask the error.
--- End Message ---
--- Begin Message ---
Source: ganglia-modules-linux
Source-Version: 1.3.6-1+deb8u1

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

Debian distribution maintenance software
pp.
Daniel Pocock  (supplier of updated ganglia-modules-linux 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 04 Jul 2015 17:38:20 +0200
Source: ganglia-modules-linux
Binary: ganglia-modules-linux
Architecture: source amd64
Version: 1.3.6-1+deb8u1
Distribution: stable
Urgency: medium
Maintainer: Debian Monitoring Maintainers 

Changed-By: Daniel Pocock 
Description:
 ganglia-modules-linux - Ganglia extra modules for Linux (IO, filesystems, 
multicpu)
Closes: 790951
Changes:
 ganglia-modules-linux (1.3.6-1+deb8u1) stable; urgency=medium
 .
   * Only restart service if already running. (Closes: #790951)
Checksums-Sha1:
 99f2cfed1d849b9605570abb538934bdda33ae04 2188 
ganglia-modules-linux_1.3.6-1+deb8u1.dsc
 a3299d3000f9bd9cca9e6aa561e0bbfd1cccdac1 3904 
ganglia-modules-linux_1.3.6-1+deb8u1.debian.tar.xz
 759c4f3aa0b61f5ee2b81edf22328f1720733cb7 28818 
ganglia-modules-linux_1.3.6-1+deb8u1_amd64.deb
Checksums-Sha256:
 870b07728d283a6ff508df220cf62f3184ecb09572463542d7a7feeb655015cb 2188 
ganglia-modules-linux_1.3.6-1+deb8u1.dsc
 bb685664f328bff61b0687122b6812b14684ce2fce0fd7ad052637e1f7ba1883 3904 
ganglia-modules-linux_1.3.6-1+deb8u1.debian.tar.xz
 03f3367d8f58f09f927f67335cda70a5af510eef4ba374b50788d0931442912c 28818 
ganglia-modules-linux_1.3.6-1+deb8u1_amd64.deb
Files:
 1d68000367a8863ba366b95ac502abb1 2188 admin extra 
ganglia-modules-linux_1.3.6-1+deb8u1.dsc
 a33c0eb19c2339043e6c182bba839903 3904 admin extra 
ganglia-modules-linux_1.3.6-1+deb8u1.debian.tar.xz
 bd2a6a95524e752eb5d3fb6aad7e4c1b 28818 admin extra 
ganglia-modules-linux_1.3.6-1+deb8u1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVl/8MAAoJEOm1uwJp1aqDTdEP/AiPvDn23J7MxsAvJ8yJlTFL
e8kXusxSeIHKzy7E684drJvkHF7+mbEgOVk/rQXfYXRWj18BEr+jUd7VmvS2xhbD
ZcP/B6cVamAtUnyU17xNze2gvD8k1Xk4gQaP+JYwRoo6vBPD38M8fjdQQkU0iKfu
AlT6Co9mQ+kcsZvvYypUETdnM5Pei/WvgAlJQ5iuhOiBuVjxTxsHMCJsrX9ZOVTi
yl4h94qgSA9cA/CwKAZNu5pKY/Z9o/z6vn8Of3hKxxfljDxGRQD9akjcivGiA1Zw
54CJtoWkR8s02obQ0FgfenjveEbpF9z8tA4hRmhMeDwWNvD+s76Ai38pUxmgkHFm
7M3Wedcoh919LHRo+pIoLohJcgTjHVCSeoFrxBWiiDhRSbxHPKUk2g6fzsizEd7e
ROWU1NYEp3BMJGpXwiHsYeJi0onworMzqCQqB3gFVTtFYGixEiWLtTMV3VcxndHa
LeqpT4jskMFAS2fH83V77aaP2Qcisx4uey9FpBr7p4SIuxLefKGG9W9d5fxu3MGp
6exq1R+803ZPS1ll0kUA6V7DMo6JatEUuohNPFgYE4JnC3JmcsDBUz9LRUqlDTUc
AZT8Tfq/vk++3dj7LbmgAM/uRWv3Ux3vCynDInKlkKXMJZmIv2D4GrbUsaFiViXZ
h22+00sqz6f1hRx2a8AO
=dIQt
-END PGP SIGNATURE End Message ---


Bug#802564: marked as done (mysql-5.5: Multiple security fixes from the October 2015 CPU)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 13:47:06 +
with message-id 
and subject line Bug#802564: fixed in mysql-5.5 5.5.46-0+deb8u1
has caused the Debian Bug report #802564,
regarding mysql-5.5: Multiple security fixes from the October 2015 CPU
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.)


-- 
802564: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802564
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mysql-5.5
Version: 5.5.23-2
Severity: grave
Tags: security upstream fixed-upstream

Hi,

As usual for this time of the year: there is a new Oracle Patch update
including updates for MySQL, see:

http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html#AppendixMSQL

Regards,
Salvatore

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
--- End Message ---
--- Begin Message ---
Source: mysql-5.5
Source-Version: 5.5.46-0+deb8u1

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

Debian distribution maintenance software
pp.
Salvatore Bonaccorso  (supplier of updated mysql-5.5 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: Fri, 23 Oct 2015 13:35:23 +0200
Source: mysql-5.5
Binary: libmysqlclient18 libmysqld-pic libmysqld-dev libmysqlclient-dev 
mysql-common mysql-client-5.5 mysql-server-core-5.5 mysql-server-5.5 
mysql-server mysql-client mysql-testsuite mysql-testsuite-5.5 mysql-source-5.5
Architecture: all source
Version: 5.5.46-0+deb8u1
Distribution: jessie-security
Urgency: high
Maintainer: Debian MySQL Maintainers 
Changed-By: Salvatore Bonaccorso 
Closes: 802564
Description: 
 libmysqlclient-dev - MySQL database development files
 libmysqlclient18 - MySQL database client library
 libmysqld-dev - MySQL embedded database development files
 libmysqld-pic - PIC version of MySQL embedded server development files
 mysql-client - MySQL database client (metapackage depending on the latest 
versio
 mysql-client-5.5 - MySQL database client binaries
 mysql-common - MySQL database common files, e.g. /etc/mysql/my.cnf
 mysql-server - MySQL database server (metapackage depending on the latest 
versio
 mysql-server-5.5 - MySQL database server binaries and system database setup
 mysql-server-core-5.5 - MySQL database server binaries
 mysql-source-5.5 - MySQL source
 mysql-testsuite - MySQL testsuite
 mysql-testsuite-5.5 - MySQL testsuite
Changes:
 mysql-5.5 (5.5.46-0+deb8u1) jessie-security; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Imported Upstream version 5.5.46 to fix security issues:
 - http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html
 - CVE-2015-4792 CVE-2015-4802 CVE-2015-4815 CVE-2015-4816 CVE-2015-4819
   CVE-2015-4826 CVE-2015-4830 CVE-2015-4836 CVE-2015-4858 CVE-2015-4861
   CVE-2015-4870 CVE-2015-4879 CVE-2015-4913
 (Closes: #802564)
   * Add fix-test-suite-failure-caused-by-arbitrary-date-in-the-future.patch.
 Fix test suite failure caused by arbitrary date in the future.
 Thanks to Marc Deslauriers 
Checksums-Sha1: 
 2f1205a399bffbe23a116e868955533a97ddf6e9 3093 mysql-5.5_5.5.46-0+deb8u1.dsc
 d0ad18d3cd624902c92679f0150c62b06e6a569d 21838374 mysql-5.5_5.5.46.orig.tar.gz
 70a76fe22036a74c0d9f3302594c21b8ea685130 232308 
mysql-5.5_5.5.46-0+deb8u1.debian.tar.xz
 ac6a2b7e9611e0a48e1cae9ca33e5d7689f57cd7 85474 
mysql-common_5.5.46-0+deb8u1_all.deb
 01c00e719cb081baaef658f9568cea0b3f7cfb46 83702 
mysql-server_5.5.46-0+deb8u1_all.deb
 3064b4009655c8750561d1559463e2b4d135f19a 83574 
mysql-client_5.5.46-0+deb8u1_all.deb
 bb3851040ccf823b4b65870bd1b1bb021d6c6bf1 83548 

Bug#802564: marked as done (mysql-5.5: Multiple security fixes from the October 2015 CPU)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 13:48:40 +
with message-id 
and subject line Bug#802564: fixed in mysql-5.5 5.5.46-0+deb7u1
has caused the Debian Bug report #802564,
regarding mysql-5.5: Multiple security fixes from the October 2015 CPU
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.)


-- 
802564: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802564
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mysql-5.5
Version: 5.5.23-2
Severity: grave
Tags: security upstream fixed-upstream

Hi,

As usual for this time of the year: there is a new Oracle Patch update
including updates for MySQL, see:

http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html#AppendixMSQL

Regards,
Salvatore

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
--- End Message ---
--- Begin Message ---
Source: mysql-5.5
Source-Version: 5.5.46-0+deb7u1

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

Debian distribution maintenance software
pp.
Salvatore Bonaccorso  (supplier of updated mysql-5.5 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: Fri, 23 Oct 2015 18:30:49 +0200
Source: mysql-5.5
Binary: libmysqlclient18 libmysqld-pic libmysqld-dev libmysqlclient-dev 
mysql-common mysql-client-5.5 mysql-server-core-5.5 mysql-server-5.5 
mysql-server mysql-client mysql-testsuite-5.5 mysql-source-5.5
Architecture: all source
Version: 5.5.46-0+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Debian MySQL Maintainers 
Changed-By: Salvatore Bonaccorso 
Closes: 802564
Description: 
 libmysqlclient-dev - MySQL database development files
 libmysqlclient18 - MySQL database client library
 libmysqld-dev - MySQL embedded database development files
 libmysqld-pic - PIC version of MySQL embedded server development files
 mysql-client - MySQL database client (metapackage depending on the latest 
versio
 mysql-client-5.5 - MySQL database client binaries
 mysql-common - MySQL database common files, e.g. /etc/mysql/my.cnf
 mysql-server - MySQL database server (metapackage depending on the latest 
versio
 mysql-server-5.5 - MySQL database server binaries and system database setup
 mysql-server-core-5.5 - MySQL database server binaries
 mysql-source-5.5 - MySQL source
 mysql-testsuite-5.5 - MySQL testsuite
Changes:
 mysql-5.5 (5.5.46-0+deb7u1) wheezy-security; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Imported Upstream version 5.5.46 to fix security issues:
 - http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html
 - CVE-2015-4792 CVE-2015-4802 CVE-2015-4815 CVE-2015-4816 CVE-2015-4819
   CVE-2015-4826 CVE-2015-4830 CVE-2015-4836 CVE-2015-4858 CVE-2015-4861
   CVE-2015-4870 CVE-2015-4879 CVE-2015-4913
 (Closes: #802564)
   * Add fix-test-suite-failure-caused-by-arbitrary-date-in-the-future.patch.
 Fix test suite failure caused by arbitrary date in the future.
 Thanks to Marc Deslauriers 
   * Add revert-to-_sync_lock_test_and_set.patch.
 Fixes FTBFS on arm and powerpw by reverting to __sync_lock_test_and_set.
 The gcc version in wheezy is too old to have __atomic_*.
 Thanks to Marc Deslauriers  for the patch.
Checksums-Sha1: 
 34910a993908575751f9cccd1e0ef943009c29a2 3038 mysql-5.5_5.5.46-0+deb7u1.dsc
 246fd16a5d1e656c891df44d25071bd0a6997e35 379250 
mysql-5.5_5.5.46-0+deb7u1.debian.tar.gz
 404f9e51a92773f880a6817bfc0497222464425a 84764 
mysql-common_5.5.46-0+deb7u1_all.deb
 be4eac4addae50cc0e07627c849fcd60739bd786 83010 
mysql-server_5.5.46-0+deb7u1_all.deb
 

Bug#799140: marked as done (wordpress: CVE-2015-5714 CVE-2015-5715)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 13:48:13 +
with message-id 
and subject line Bug#799140: fixed in wordpress 4.1+dfsg-1+deb8u5
has caused the Debian Bug report #799140,
regarding wordpress: CVE-2015-5714 CVE-2015-5715
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.)


-- 
799140: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799140
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: wordpress
Version: 4.3+dfsg-1
Severity: grave
Tags: security upstream fixed-upstream

Hi

See https://wordpress.org/news/2015/09/wordpress-4-3-1/ for details. I
have not checked older versions in jessie and wheezy. Are they
affected? If so can you update the BTS version information as needed?

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Source: wordpress
Source-Version: 4.1+dfsg-1+deb8u5

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated wordpress 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, 21 Sep 2015 21:37:40 +1000
Source: wordpress
Binary: wordpress wordpress-l10n wordpress-theme-twentyfifteen 
wordpress-theme-twentyfourteen wordpress-theme-twentythirteen
Architecture: source all
Version: 4.1+dfsg-1+deb8u5
Distribution: jessie-security
Urgency: medium
Maintainer: Craig Small 
Changed-By: Craig Small 
Description:
 wordpress  - weblog manager
 wordpress-l10n - weblog manager - language files
 wordpress-theme-twentyfifteen - weblog manager - twentytfifteen theme files
 wordpress-theme-twentyfourteen - weblog manager - twentyfourteen theme files
 wordpress-theme-twentythirteen - weblog manager - twentythirteen theme files
Closes: 799140
Changes:
 wordpress (4.1+dfsg-1+deb8u5) jessie-security; urgency=medium
 .
   * Backport of 4.3.1 security fixes Closes: #799140
   * Changeset 34137 XSS in user list table
   * Changeset 34144 unclosed HTML elements CVE-2015-5714
   * Changeset 34151 unsticky private posts CVE-2015-5715
Checksums-Sha1:
 0cf085c043a7aa6d469ab46daa4a13a70ead59d2 2533 wordpress_4.1+dfsg-1+deb8u5.dsc
 3d396436682c840f3914d530939e8140ead723dd 6116740 
wordpress_4.1+dfsg-1+deb8u5.debian.tar.xz
 09c1bbd8ba3f3c4b80727e383468167875dd3eb6 3169428 
wordpress_4.1+dfsg-1+deb8u5_all.deb
 19f1d1f7703d79b32665eea864f46466b2843bb0 4239444 
wordpress-l10n_4.1+dfsg-1+deb8u5_all.deb
 ab85a3d2b163b90c0f8b0e08dc0578980ae1213e 501376 
wordpress-theme-twentyfifteen_4.1+dfsg-1+deb8u5_all.deb
 a6497df5cae3ab2128077a747b98b9d5e6dfa229 800584 
wordpress-theme-twentyfourteen_4.1+dfsg-1+deb8u5_all.deb
 3941c22e1cda4a7238834a81e288170c2072a9d7 320174 
wordpress-theme-twentythirteen_4.1+dfsg-1+deb8u5_all.deb
Checksums-Sha256:
 5866b4042ef40c4150036d8985a2b59250bc20247091ac4e85ca16e329dc8cda 2533 
wordpress_4.1+dfsg-1+deb8u5.dsc
 67aa898f0278de2e1b81116843ef753edac7cb168d7cbdb550f4e61cc6b75460 6116740 
wordpress_4.1+dfsg-1+deb8u5.debian.tar.xz
 e6a195aefca765382c45e64f0c064d15fb4ca17279691d9820cee63b1935dde9 3169428 
wordpress_4.1+dfsg-1+deb8u5_all.deb
 f4314539ab24404d95c06dff147b3586b07e8f7491a1e6075fc800af5c41b7d9 4239444 
wordpress-l10n_4.1+dfsg-1+deb8u5_all.deb
 2732e7c55b27c7010e052dc68ead3a031044e002b91c291078b3d99d6f0cc75d 501376 
wordpress-theme-twentyfifteen_4.1+dfsg-1+deb8u5_all.deb
 8cf6f57c9d4b5f305a3e17fb6d39d6481197238e8c3eb6bd5ca96922d4c8ab2e 800584 
wordpress-theme-twentyfourteen_4.1+dfsg-1+deb8u5_all.deb
 85eb2db15628af2cff4816b89958b1db101dad530b7d2db464f8f69062a1b5f0 320174 
wordpress-theme-twentythirteen_4.1+dfsg-1+deb8u5_all.deb
Files:
 430ff2746e4e2e53495dfa5b860b0280 2533 web optional 
wordpress_4.1+dfsg-1+deb8u5.dsc
 75fe03a706745752d341911df8aabfca 6116740 web optional 
wordpress_4.1+dfsg-1+deb8u5.debian.tar.xz
 c7ba58634b4dad522eba2b6c8012 3169428 web optional 
wordpress_4.1+dfsg-1+deb8u5_all.deb
 99386484d8b5d8b321e08e38c822a1e5 4239444 localization optional 
wordpress-l10n_4.1+dfsg-1+deb8u5_all.deb
 

Processed: tagging 802533

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 802533 + confirmed
Bug #802533 [hitch] hitch: creates /nonexistent/
Added tag(s) confirmed.
> thanks
Stopping processing here.

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



Bug#802939: libparse-keyword-perl: FTBFS with perl 5.22: test failures

2015-10-25 Thread Dominic Hargreaves
Source: libparse-keyword-perl
Version: 0.08-1
Severity: serious
Justification: upcoming transition
User: debian-p...@lists.debian.org
Usertags: perl-5.22-transition
Tags: sid stretch upstream patch
Forwarded: https://github.com/doy/parse-keyword/issues/9

This package FTBFS with perl 5.22, in experimental:

#   Failed test at t/error.t line 62.
#  got: 'Global symbol "$baz" requires explicit package name (did you 
forget to declare "my $baz"?) at t/error.pl line 9.
# Execution of t/error.pl aborted due to compilation errors.
# '
# expected: 'Global symbol "$baz" requires explicit package name at 
t/error.pl line 9.
# Execution of t/error.pl aborted due to compilation errors.
# '
# Looks like you failed 1 test of 21.
t/error.t . 

(This late test result follows a perl 5.22 fix for build-dep
libdata-alias-perl.)

Cheers,
Dominic.



Processed: your mail

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> affects 802886 vlc
Bug #802886 [libqt5widgets5] vlc: QT Interface wont full screen or renders only 
a small portion of the video
Bug #802922 [libqt5widgets5] vlc: only top half of video shown when playing 
DVD's under kwin/xfce
Added indication that 802886 affects vlc
Added indication that 802922 affects vlc
> merge 802886 798661
Bug #802886 [libqt5widgets5] vlc: QT Interface wont full screen or renders only 
a small portion of the video
Bug #802922 [libqt5widgets5] vlc: only top half of video shown when playing 
DVD's under kwin/xfce
Bug #798661 [libqt5widgets5] libqt5widgets5: regression in 5.5 breaks vlc video 
playback
Bug #801442 [libqt5widgets5] vlc: plane 0 not alingned, diabling direct 
rendering
Bug #802922 [libqt5widgets5] vlc: only top half of video shown when playing 
DVD's under kwin/xfce
Merged 798661 801442 802886 802922
> thanks
Stopping processing here.

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



Bug#802945: golang-go: Install fails with golang-golang-x-tools 1:0.0~git20150716.0.87156cb+dfsg1-4 installed

2015-10-25 Thread Hilko Bengen
Package: golang-go
Version: 2:1.5.1-1
Severity: grave

When I tried upgrading today, I got:

,
| Preconfiguring packages ...
| (Reading database ... 750549 files and directories currently installed.)
| Preparing to unpack .../golang-go_2%3a1.5.1-1_amd64.deb ...
| Unpacking golang-go (2:1.5.1-1) over (2:1.4.3-3) ...
| dpkg: error processing archive 
/var/cache/apt/archives/golang-go_2%3a1.5.1-1_amd64.deb (--unpack):
|  trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in 
package golang-golang-x-tools 1:0.0~git20150716.0.87156cb+dfsg1-4
| dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
`

Since vet and cover are shipped with the main distribution now, they
should no longer be shipped with golang-golang-x-tools and golang-go
should conflict with versions of golang-golang-x-tools that still
contain them.

The attached patches should fix this.

Cheers,
-Hilko
>From 89eb32084e10c733439c947876a205e79279aaf3 Mon Sep 17 00:00:00 2001
From: Hilko Bengen 
Date: Sun, 25 Oct 2015 14:21:25 +0100
Subject: [PATCH] Add Conflicts for golang-golang-x-tools that still contain
 vet, cover

---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index dd82625..36244d1 100644
--- a/debian/control
+++ b/debian/control
@@ -35,6 +35,7 @@ Replaces: golang-go-darwin-386,
   golang-go-netbsd-amd64,
   golang-go-windows-386,
   golang-go-windows-amd64
+Conflicts: golang-golang-x-tools (<< 1:0.0~git20150716.0.87156cb+dfsg1-5~)
 Recommends: g++, gcc, libc6-dev, pkg-config
 Suggests: bzr, ca-certificates, git, golang-golang-x-tools, mercurial, subversion
 Description: Go programming language compiler, linker, compiled stdlib
-- 
2.6.1

>From 1d7a492f00c7f9fe04e19b6917efd2158cb3b946 Mon Sep 17 00:00:00 2001
From: Hilko Bengen 
Date: Sun, 25 Oct 2015 14:17:54 +0100
Subject: [PATCH] Do not ship vet and cover binaries

---
 debian/rules | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/rules b/debian/rules
index b1c1840..091bd64 100755
--- a/debian/rules
+++ b/debian/rules
@@ -65,6 +65,10 @@ override_dh_auto_install:
 	ln -s /usr/share/javascript/jquery/jquery.min.js $(CURDIR)/debian/tmp/usr/share/gocode/src/golang.org/x/tools/godoc/static/jquery.js
 	-rm $(CURDIR)/debian/tmp/usr/share/gocode/src/golang.org/x/tools/cmd/present/static/jquery-ui.js && \
 	ln -s /usr/share/javascript/jquery-ui/jquery-ui.min.js $(CURDIR)/debian/tmp/usr/share/gocode/src/golang.org/x/tools/cmd/present/static/jquery-ui.js
+	# Don't ship vet and cover as they have been moved to the main
+	# repository.
+	-rm $(CURDIR)/debian/tmp//usr/lib/go/pkg/tool/*/cover
+	-rm $(CURDIR)/debian/tmp//usr/lib/go/pkg/tool/*/vet
 
 %:
 	dh $@ --buildsystem=golang --with=golang
-- 
2.6.1



Processed: Re: Bug#802922: vlc: only top half of video shown when playing DVD's under kwin/xfce

2015-10-25 Thread Debian Bug Tracking System
Processing control commands:

> forcemerge 802886 -1
Bug #802886 [vlc] vlc: QT Interface wont full screen or renders only a small 
portion of the video
Bug #802922 [vlc] vlc: only top half of video shown when playing DVD's under 
kwin/xfce
Severity set to 'grave' from 'normal'
Added tag(s) upstream.
Merged 802886 802922

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



Bug#802908: requires python3-gi to run

2015-10-25 Thread Andrew Shadura
On 24/10/15 23:59, Modestas Vainius wrote:
> caffeine uses modules from python3-gi and needs them to run (see below):
> 
> Traceback (most recent call last):
>   File "/usr/bin/caffeine", line 25, in 
> from gi.repository import GObject, Gtk, GLib

Thanks Modestas, I'll check it and fix it!

-- 
Cheers,
  Andrew



Bug#802155: versiontools: diff for NMU version 1.9.1-1.1

2015-10-25 Thread Neil Williams
Control: tags 802155 + patch
Control: tags 802155 + pending

Dear maintainer,

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

Regards.
diff -Nru versiontools-1.9.1/debian/changelog versiontools-1.9.1/debian/changelog
--- versiontools-1.9.1/debian/changelog	2014-04-08 12:28:53.0 +0100
+++ versiontools-1.9.1/debian/changelog	2015-10-25 11:58:55.0 +
@@ -1,3 +1,12 @@
+versiontools (1.9.1-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Update not_found test to check for critical elements
+within the exception string instead of the entire string.
+(Closes: #802155)
+
+ -- Neil Williams   Sun, 25 Oct 2015 11:58:53 +
+
 versiontools (1.9.1-1) unstable; urgency=medium
 
   * Initial version. (Closes: #743921)
diff -Nru versiontools-1.9.1/debian/patches/check_contents.diff versiontools-1.9.1/debian/patches/check_contents.diff
--- versiontools-1.9.1/debian/patches/check_contents.diff	1970-01-01 01:00:00.0 +0100
+++ versiontools-1.9.1/debian/patches/check_contents.diff	2015-10-25 11:57:00.0 +
@@ -0,0 +1,23 @@
+Description: Check contents of message, not entire string
+ .
+ versiontools (1.9.1-1.1) UNRELEASED; urgency=medium
+ .
+   * Non-maintainer upload.
+   * Update not_found test to check for critical elements
+ within the exception string instead of the entire string.
+ (Closes: #802155)
+Author: Neil Williams 
+Bug-Debian: https://bugs.debian.org/802155
+
+---
+
+--- versiontools-1.9.1.orig/versiontools/tests.py
 versiontools-1.9.1/versiontools/tests.py
+@@ -148,6 +148,4 @@ class HandleVersionTests(TestCase):
+ except Exception:
+ e = sys.exc_info()[1]
+ self.assertTrue(isinstance(e, DistutilsSetupError))
+-self.assertEqual(str(e), "Unable to access '__nonexisting__' in "
+-  "'versiontools': 'module' object has "
+-  "no attribute '__nonexisting__'")
++self.assertIn("Unable to access '__nonexisting__'", str(e))
diff -Nru versiontools-1.9.1/debian/patches/series versiontools-1.9.1/debian/patches/series
--- versiontools-1.9.1/debian/patches/series	2014-04-08 12:15:45.0 +0100
+++ versiontools-1.9.1/debian/patches/series	2015-10-25 11:56:37.0 +
@@ -1 +1,2 @@
 fix-python-3.3-test.patch
+check_contents.diff


Processed: versiontools: diff for NMU version 1.9.1-1.1

2015-10-25 Thread Debian Bug Tracking System
Processing control commands:

> tags 802155 + patch
Bug #802155 [src:versiontools] versiontools: FTBFS: FAIL: test_not_found 
(versiontools.tests.HandleVersionTests)
Added tag(s) patch.
> tags 802155 + pending
Bug #802155 [src:versiontools] versiontools: FTBFS: FAIL: test_not_found 
(versiontools.tests.HandleVersionTests)
Added tag(s) pending.

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



Bug#803004: package needs additional build dependencies for running the tests

2015-10-25 Thread Matthias Klose

Package: src:openslide-python
Version: 1.1.0-1
Severity: serious
Tags: sid stretch patch

apparently pybuild now runs the tests, and fails because of missing build 
dependencies.


patch at
http://launchpadlibrarian.net/222821607/openslide-python_1.1.0-1_1.1.0-1ubuntu1.diff.gz



Processed: limit source to php-codecoverage, tagging 796408

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> limit source php-codecoverage
Limiting to bugs with field 'source' containing at least one of 
'php-codecoverage'
Limit currently set to 'source':'php-codecoverage'

> tags 796408 + pending
Bug #796408 [src:php-codecoverage] php-codecoverage: FTBFS: 
PHP_CodeCoverage_Exception: No code coverage driver available
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#803012: tar ftbfs everywhere (test suite errors)

2015-10-25 Thread Matthias Klose

Package: src:tar
Version: 1.28-2
Severity: serious
Tags: sid stretch

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

 19: recursive extraction from --files-from  FAILED (T-dir00.at:30)
 20: trailing slash in --files-from  FAILED (T-dir01.at:30)

are failing everywhere.

Also, please consider

 - configuring with --disable-silent-rules to give the
   build log checker a chance for an analysis

 - Use a parallel build to speed up the build.

Disappointed that such an issue isn't noticed for 28 days ...



Bug#802862: marked as done (libgnatcoll: FTBFS: unit "gnatcoll.refcount.sync_counters" cannot belong to several projects)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 21:35:43 +
with message-id 
and subject line Bug#802862: fixed in libgnatcoll 1.6gpl2014-9
has caused the Debian Bug report #802862,
regarding libgnatcoll: FTBFS: unit "gnatcoll.refcount.sync_counters" cannot 
belong to several projects
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.)


-- 
802862: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802862
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libgnatcoll
Version: 1.6gpl2014-8
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

   debian/rules override_dh_ada_library
make[1]: Entering directory '/libgnatcoll-1.6gpl2014'
dh_ada_library src/gnatcoll.gpr src/gnatcoll_python.gpr src/gnatcoll_iconv.gpr 
src/gnatcoll_sqlite.gpr src/gnatcoll_readline.gpr src/gnatcoll_gmp.gpr 
src/gnatcoll_gtk.gpr
gnatcoll_python.gpr:4:09: unit "gnatcoll.arg_lists" cannot belong to several 
projects
gnatcoll_python.gpr:4:09:   project "gnatcoll_python", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-arg_lists.ads"
gnatcoll_python.gpr:4:09:   project "gnatcoll", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-arg_lists.ads"
gnatcoll_python.gpr:4:09: unit "gnatcoll.boyer_moore" cannot belong to several 
projects
gnatcoll_python.gpr:4:09:   project "gnatcoll_python", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-boyer_moore.ads"
gnatcoll_python.gpr:4:09:   project "gnatcoll", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-boyer_moore.ads"
gnatcoll_python.gpr:4:09: unit "gnatcoll.traces" cannot belong to several 
projects
gnatcoll_python.gpr:4:09:   project "gnatcoll_python", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-traces.ads"
gnatcoll_python.gpr:4:09:   project "gnatcoll", 
"/libgnatcoll-1.6gpl2014/src/gnatcoll-traces.ads"

...

raised PROJECTS.PARSE_ERROR : "src/gnatcoll_python.gpr"
debian/rules:158: recipe for target 'override_dh_ada_library' failed
make[1]: *** [override_dh_ada_library] Error 1
make[1]: Leaving directory '/libgnatcoll-1.6gpl2014'

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/libgnatcoll.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: libgnatcoll
Source-Version: 1.6gpl2014-9

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

Debian distribution maintenance software
pp.
Nicolas Boulenguez  (supplier of updated libgnatcoll 
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: Sun, 25 Oct 2015 19:34:08 +0100
Source: libgnatcoll
Binary: libgnatcoll1.6-dev libgnatcoll-doc libgnatcoll1.6 libgnatcoll-dbg 
libgnatcoll-python1.6-dev libgnatcoll-python1.6 libgnatcoll-python-dbg 
libgnatcoll-iconv1.6-dev libgnatcoll-iconv1.6 libgnatcoll-iconv-dbg 
libgnatcoll-sqlite1.6-dev libgnatcoll-sqlite1.6 libgnatcoll-sqlite-dbg 
libgnatcoll-sqlite-bin libgnatcoll-readline1.6-dev libgnatcoll-readline1.6 
libgnatcoll-readline-dbg libgnatcoll-gmp1.6-dev libgnatcoll-gmp1.6 
libgnatcoll-gmp-dbg libgnatcoll-gtk1.6-dev libgnatcoll-gtk1.6 
libgnatcoll-gtk-dbg
Architecture: all source
Version: 1.6gpl2014-9
Distribution: unstable
Urgency: medium
Maintainer: Nicolas Boulenguez 
Changed-By: Nicolas Boulenguez 
Closes: 802862
Description: 
 libgnatcoll1.6-dev - GNATColl, general purpose Ada library
 libgnatcoll1.6 - GNATColl, general purpose Ada library (runtime)
 libgnatcoll-dbg - GNATColl, general purpose Ada library (debugging symbols)
 libgnatcoll-doc - GNATColl, general purpose Ada library (documentation)
 libgnatcoll-gmp1.6-dev - GNATColl, general purpose Ada library (GMP)
 libgnatcoll-gmp1.6 - GNATColl, general purpose Ada library (GMP runtime)
 libgnatcoll-gmp-dbg - GNATColl, general purpose Ada library (GMP debugging 

Bug#803003: ess: Maintainer field points to moderated mailing list

2015-10-25 Thread Hilko Bengen
Package: ess
Severity: grave

Dear maintainers,

After reporting a bug earlier today, I got the automated reply from
mailing list software as shown below. Apparently, the mailing list does
not accept messages "from those role accounts in Debian used to send
automated mails regarding the package". To me, this is a violation of
Debian Policy section 3.3 "The maintainer of a package".

Please fix this.

Thanks,
-Hilko

--- Begin Message ---
Your mail to 'ESS-Debian' with the subject

Bug#802953: ess: install/ess may interact with console, fail
emacs24 upgrade

Is being held until the list moderator can review it for approval.

The reason it is being held:

Post by non-member to a members-only list

Either the message will get posted to the list, or you will receive
notification of the moderator's decision.  If you would like to cancel
this posting, please visit the following URL:


https://stat.ethz.ch/mailman/confirm/ess-debian/8b64ea31eee9b2413a7a8a6c4da50d2d24949fca


--- End Message ---


Bug#796408: marked as done (php-codecoverage: FTBFS: PHP_CodeCoverage_Exception: No code coverage driver available)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 26 Oct 2015 03:52:31 +
with message-id 
and subject line Bug#796408: fixed in php-codecoverage 2.2.4+dfsg-1
has caused the Debian Bug report #796408,
regarding php-codecoverage: FTBFS: PHP_CodeCoverage_Exception: No code coverage 
driver available
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.)


-- 
796408: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=796408
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: php-codecoverage
Version: 2.1.7+dfsg-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

php-codecoverage fails to build from source in unstable/amd64:

  [..]

  25) PHP_CodeCoverageTest::testMerge
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  26) PHP_CodeCoverageTest::testMerge2
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  27) PHP_CodeCoverageTest::testGetLinesToBeIgnored
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  28) PHP_CodeCoverageTest::testGetLinesToBeIgnored2
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  29) PHP_CodeCoverageTest::testGetLinesToBeIgnored3
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  30) PHP_CodeCoverageTest::testGetLinesToBeIgnoredOneLineAnnotations
  PHP_CodeCoverage_Exception: No code coverage driver available
  
  /tmp/buildd/php-codecoverage-2.1.7+dfsg/tests/PHP/CodeCoverageTest.php:34
  
  FAILURES!
  Tests: 51, Assertions: 39, Errors: 30.
  debian/rules:25: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 2
  make[1]: Leaving directory '/tmp/buildd/php-codecoverage-2.1.7+dfsg'
  debian/rules:3: recipe for target 'binary' failed
  make: *** [binary] Error 2
  dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
  status 2

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/php-codecoverage_2.1.7+dfsg-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
I: using fakeroot in build.
I: pbuilder: network access will be disabled during build
I: Current time: Fri Aug 21 06:20:56 GMT+12 2015
I: pbuilder-time-stamp: 1440181256
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /run/shm filesystem
I: mounting /dev/pts filesystem
I: Mounting /dev/shm
I: Mounting /sys
I: policy-rc.d already exists
I: Installing the build-deps
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team 
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: cssmin, debhelper (>= 9.20131213~), libjs-bootstrap, libjs-jquery, 
libjs-twitter-bootstrap, node-uglify, php-token-stream, php5-xdebug, phpab, 
phpunit, phpunit-environment (>= 1.2.1-2~), phpunit-version, pkg-php-tools (>= 
1.7~)
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in 
'/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 20247 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on cssmin; however:
  Package cssmin is not installed.
 pbuilder-satisfydepends-dummy depends on libjs-bootstrap; however:
  Package 

Bug#802858: marked as done (activemq: FTBFS: Missing: jakarta-regexp:jakarta-regexp:jar:debian)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 26 Oct 2015 04:49:12 +
with message-id 
and subject line Bug#802858: fixed in activemq 5.6.0+dfsg1-5
has caused the Debian Bug report #802858,
regarding activemq: FTBFS: Missing: jakarta-regexp:jakarta-regexp:jar:debian
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.)


-- 
802858: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802858
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: activemq
Version: 5.6.0+dfsg1-4+deb8u1
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

[INFO] Building ActiveMQ :: Core
[INFO]task-segment: [install]
[INFO] 
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) jakarta-regexp:jakarta-regexp:jar:debian

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=jakarta-regexp 
-DartifactId=jakarta-regexp -Dversion=debian -Dpackaging=jar 
-Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
  mvn deploy:deploy-file -DgroupId=jakarta-regexp 
-DartifactId=jakarta-regexp -Dversion=debian -Dpackaging=jar 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.apache.activemq:activemq-core:bundle:5.6.0
2) jakarta-regexp:jakarta-regexp:jar:debian

--
1 required artifact is missing.

for artifact: 
  org.apache.activemq:activemq-core:bundle:5.6.0

from the specified remote repositories:
  com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external),
  apache.snapshots 
(https://repository.apache.org/content/repositories/snapshots/),
  central (https://repo1.maven.org/maven2),
  fusesource-snapshots 
(http://repo.fusesource.com/nexus/content/groups/public-snapshots)



NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.


Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/activemq.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: activemq
Source-Version: 5.6.0+dfsg1-5

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

Debian distribution maintenance software
pp.
tony mancill  (supplier of updated activemq 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, 25 Oct 2015 11:44:36 -0700
Source: activemq
Binary: libactivemq-java libactivemq-java-doc activemq
Architecture: source all
Version: 5.6.0+dfsg1-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: tony mancill 
Description:
 activemq   - Java message broker - server
 libactivemq-java - Java message broker core libraries
 libactivemq-java-doc - Java message broker core libraries - documentation
Closes: 800764 800977 802858
Changes:
 activemq (5.6.0+dfsg1-5) unstable; urgency=medium
 .
   * Team upload.
   * Add missing build-dep on libregexp-java. (Closes: #802858)
   * Use libcommons-net-java (>= 3).  (Closes: #800764)
   * Use libhttpclient-java instead of libcommons-httpclient-java.
 (Closes: #800977)
Checksums-Sha1:
 4a4fca570d74ce25bc06503fc9e6f8995e47c32d 3370 activemq_5.6.0+dfsg1-5.dsc
 92cf40da94e13602fdbde1e64e1a383cc3f3ff22 20136 
activemq_5.6.0+dfsg1-5.debian.tar.xz
 5ad6b774d01442f8b79009dbb62fbf5f1c3fe295 49166 

Bug#792177: libjson-c-dev: causes creation of unowned /usr/lib//libjson-c.so.2 -> libjson-c.so symlink

2015-10-25 Thread Sven Joachim
On 2015-10-25 21:25 +0100, Michael Biebl wrote:

> On Sun, 12 Jul 2015 14:40:16 +0200 Andreas Beckmann  wrote:
>
>> Patch attached.
>> 
>> It's probably ok to ask for a jessie-ignore tag unless you can show that
>> this dangling link causes an actual problem.
>
> The patch looks incorrect to me, btw.
> The *.so.* files belong into /lib, the .so symlink into /usr/lib.
>
> So the current libjson-c package looks fine (and it's done this way in
> lot's of other packages).

Yes, only the symlinks in libjson0-dev seem to be problematic.

> Btw, can you still reproduce the issue? If so, what are the steps to
> reproduce them?

Install libjson0-dev.  When I do this in a throwaway chroot, I get
(on i386):

,
| # ls -l /usr/lib/i386-linux-gnu/libjson*.so*
| lrwxrwxrwx 1 root root 38 Apr 17  2014 /usr/lib/i386-linux-gnu/libjson-c.so 
-> /lib/i386-linux-gnu/libjson-c.so.2.0.0
| lrwxrwxrwx 1 root root 10 Oct 25 21:28 /usr/lib/i386-linux-gnu/libjson-c.so.2 
-> libjson.so
| lrwxrwxrwx 1 root root 12 Apr 17  2014 /usr/lib/i386-linux-gnu/libjson.so -> 
libjson-c.so
| # dpkg -S /usr/lib/i386-linux-gnu/libjson*.so*
| libjson-c-dev:i386: /usr/lib/i386-linux-gnu/libjson-c.so
| dpkg-query: no path found matching pattern 
/usr/lib/i386-linux-gnu/libjson-c.so.2
| libjson0-dev:i386: /usr/lib/i386-linux-gnu/libjson.so
`

This is bug #249122 in ldconfig, if I'm not mistaken.

Cheers,
   Sven



Bug#802757: djangorestframework-gis: FTBFS with djangorestframework 3.2.2-1

2015-10-25 Thread Brian May
Brian May  writes:

> AssertionError: Tuples differ: (6.381496, 53.384067) !=
> (6.381495826183805, 53.3840669...

Reported this upstream
https://github.com/djangonauts/django-rest-framework-gis/issues/83
-- 
Brian May 



Bug#803013: systemd should not destroy application created cgroups

2015-10-25 Thread Paul Szabo
Package: systemd
Version: 215-17+deb8u2
Severity: critical
Tags: patch
Justification: breaks unrelated software

If you use cgroups, then systemd will on occasions destroy your
settings. To reproduce:
 - Set up cgroups e.g. adding TaskIDs to /sys/fs/cgroup/cpu/DIR/tasks
   files. (I use cgrulesengd from package cgroup-tools, but any other
   use of cgroups is equally affected.)
 - Then when you use systemd commands:
 systemctl daemon-reload
 systemctl start anacron
   you will see your cgroups (your tasks files) becoming empty.
   Command daemon-reload seems to happen within "apt-get dist-upgrade"
   sequences, and "start anacron" happens nightly. (Some other systemd
   commands may also affect.)

I propose the attached patch to avoid the issue. This patch seems to work
well for me.

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


-- Package-specific info:

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

Kernel: Linux 3.16.7-ckt11-pk07.12-amd64 (SMP w/8 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages systemd depends on:
ii  acl 2.2.52-2
ii  adduser 3.113+nmu3
ii  initscripts 2.88dsf-59
ii  libacl1 2.2.52-2
ii  libaudit1   1:2.4-1+b1
ii  libblkid1   2.25.2-6
ii  libc6   2.19-18+deb8u1
ii  libcap2 1:2.24-8
ii  libcap2-bin 1:2.24-8
ii  libcryptsetup4  2:1.6.6-5
ii  libgcrypt20 1.6.3-2
ii  libkmod218-3
ii  liblzma55.1.1alpha+20120614-2+b3
ii  libpam0g1.1.8-3.1
ii  libselinux1 2.3-2
ii  libsystemd0 215-17+deb8u2
ii  mount   2.25.2-6
ii  sysv-rc 2.88dsf-59
ii  udev215-17+deb8u2
ii  util-linux  2.25.2-6

Versions of packages systemd recommends:
ii  dbus1.8.20-0+deb8u1
ii  libpam-systemd  215-17+deb8u2

Versions of packages systemd suggests:
pn  systemd-ui  

-- no debconf information
diff -r -U12 a/src/shared/cgroup-util.c b/src/shared/cgroup-util.c
--- a/src/shared/cgroup-util.c	2015-10-25 07:16:24.0 +1100
+++ b/src/shared/cgroup-util.c	2015-10-26 06:03:25.0 +1100
@@ -281,24 +281,34 @@
 
 int cg_migrate(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self) {
 bool done = false;
 _cleanup_set_free_ Set *s = NULL;
 int r, ret = 0;
 pid_t my_pid;
 
 assert(cfrom);
 assert(pfrom);
 assert(cto);
 assert(pto);
 
+/*
+ * PSz 25 Oct 2015
+ * An empty "to" path is surely wrong (do not annoy cgroups that not ours)
+ */
+if (!strlen(pto)) {
+/* log_warning("Debug: cg_migrate skip from (%s)%s to (%s)%s", cfrom, pfrom, cto, pto); */
+return ret;
+}
+/* log_warning("Debug: cg_migrate do from (%s)%s to (%s)%s", cfrom, pfrom, cto, pto); */
+
 s = set_new(trivial_hash_func, trivial_compare_func);
 if (!s)
 return -ENOMEM;
 
 my_pid = getpid();
 
 do {
 _cleanup_fclose_ FILE *f = NULL;
 pid_t pid = 0;
 done = true;
 
 r = cg_enumerate_processes(cfrom, pfrom, );


Bug#792177: libjson-c-dev: causes creation of unowned /usr/lib//libjson-c.so.2 -> libjson-c.so symlink

2015-10-25 Thread Michael Biebl
Am 25.10.2015 um 23:27 schrieb Michael Biebl:
> Am 25.10.2015 um 22:39 schrieb Sven Joachim:
>> On 2015-10-25 21:25 +0100, Michael Biebl wrote:
>>
>>> On Sun, 12 Jul 2015 14:40:16 +0200 Andreas Beckmann  wrote:
>>>
 Patch attached.

 It's probably ok to ask for a jessie-ignore tag unless you can show that
 this dangling link causes an actual problem.
>>>
>>> The patch looks incorrect to me, btw.
>>> The *.so.* files belong into /lib, the .so symlink into /usr/lib.
>>>
>>> So the current libjson-c package looks fine (and it's done this way in
>>> lot's of other packages).
>>
>> Yes, only the symlinks in libjson0-dev seem to be problematic.
> 
> Well, the original bug report is about libjson-c-dev, not libjson0-dev.
> 
> 
>>> Btw, can you still reproduce the issue? If so, what are the steps to
>>> reproduce them?
>>
>> Install libjson0-dev.  When I do this in a throwaway chroot, I get
>> (on i386):
> 
> I can reproduce this particular problem with libjson0-dev. But as said,
> Andreas filed this bug against libjson-c-dev, not libjson0-dev.
> If I only install libjson-c-dev, I don't get those unowned symlinks.  
> 
> 
>> ,
>> | # ls -l /usr/lib/i386-linux-gnu/libjson*.so*
>> | lrwxrwxrwx 1 root root 38 Apr 17  2014 
>> /usr/lib/i386-linux-gnu/libjson-c.so -> 
>> /lib/i386-linux-gnu/libjson-c.so.2.0.0
>> | lrwxrwxrwx 1 root root 10 Oct 25 21:28 
>> /usr/lib/i386-linux-gnu/libjson-c.so.2 -> libjson.so
>> | lrwxrwxrwx 1 root root 12 Apr 17  2014 /usr/lib/i386-linux-gnu/libjson.so 
>> -> libjson-c.so
>> | # dpkg -S /usr/lib/i386-linux-gnu/libjson*.so*
>> | libjson-c-dev:i386: /usr/lib/i386-linux-gnu/libjson-c.so
>> | dpkg-query: no path found matching pattern 
>> /usr/lib/i386-linux-gnu/libjson-c.so.2
>> | libjson0-dev:i386: /usr/lib/i386-linux-gnu/libjson.so
>> `
> 
> 
>> This is bug #249122 in ldconfig, if I'm not mistaken.
> 
> My point is that the libjson-c-dev package is fine as is. It shouldn't
> be butchered to workaround a bug in ldconfig which is caused by the
> existence of libjson0-dev.
> 
> A better fix is a/ to fix ldconfig and/or b/ fix the remaining rdeps of
> libjson0-dev [1] and drop the libjson0(-dev) compat packages.
> Everything else is just a workaround

btw, I don't see why this particular bug i RC? Unowned files by itself
are not a reason for RC bugs.


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



signature.asc
Description: OpenPGP digital signature


Bug#803009: dwgsim: Binary is not included in package

2015-10-25 Thread Kevin Murray
Package: dwgsim
Version: 0.1.11-1
Severity: grave
Justification: renders package unusable

Hi all,

I somehow managed not to add the debian/dwgsim.install file to git. Due to the
upstream makefile not having an install rule, this lead to a Debian package
with no binary. I have fixed this in git.

Mea culpa, Sorry!

Cheers,
Kevin

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

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

-- no debconf information



Processed: tagging 802285, tagging 802049

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 802285 = pending
Bug #802285 [src:mercator] mercator: C++11 compiling problems
Added tag(s) pending; removed tag(s) confirmed.
> tags 802049 = pending
Bug #802049 [cyphesis-cpp] cyphesis-cpp: FTBFS in sid: needs -std=c++11
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Bug#792177: libjson-c-dev: causes creation of unowned /usr/lib//libjson-c.so.2 -> libjson-c.so symlink

2015-10-25 Thread Michael Biebl
Am 25.10.2015 um 22:39 schrieb Sven Joachim:
> On 2015-10-25 21:25 +0100, Michael Biebl wrote:
> 
>> On Sun, 12 Jul 2015 14:40:16 +0200 Andreas Beckmann  wrote:
>>
>>> Patch attached.
>>>
>>> It's probably ok to ask for a jessie-ignore tag unless you can show that
>>> this dangling link causes an actual problem.
>>
>> The patch looks incorrect to me, btw.
>> The *.so.* files belong into /lib, the .so symlink into /usr/lib.
>>
>> So the current libjson-c package looks fine (and it's done this way in
>> lot's of other packages).
> 
> Yes, only the symlinks in libjson0-dev seem to be problematic.

Well, the original bug report is about libjson-c-dev, not libjson0-dev.


>> Btw, can you still reproduce the issue? If so, what are the steps to
>> reproduce them?
> 
> Install libjson0-dev.  When I do this in a throwaway chroot, I get
> (on i386):

I can reproduce this particular problem with libjson0-dev. But as said,
Andreas filed this bug against libjson-c-dev, not libjson0-dev.
If I only install libjson-c-dev, I don't get those unowned symlinks.


> ,
> | # ls -l /usr/lib/i386-linux-gnu/libjson*.so*
> | lrwxrwxrwx 1 root root 38 Apr 17  2014 /usr/lib/i386-linux-gnu/libjson-c.so 
> -> /lib/i386-linux-gnu/libjson-c.so.2.0.0
> | lrwxrwxrwx 1 root root 10 Oct 25 21:28 
> /usr/lib/i386-linux-gnu/libjson-c.so.2 -> libjson.so
> | lrwxrwxrwx 1 root root 12 Apr 17  2014 /usr/lib/i386-linux-gnu/libjson.so 
> -> libjson-c.so
> | # dpkg -S /usr/lib/i386-linux-gnu/libjson*.so*
> | libjson-c-dev:i386: /usr/lib/i386-linux-gnu/libjson-c.so
> | dpkg-query: no path found matching pattern 
> /usr/lib/i386-linux-gnu/libjson-c.so.2
> | libjson0-dev:i386: /usr/lib/i386-linux-gnu/libjson.so
> `


> This is bug #249122 in ldconfig, if I'm not mistaken.

My point is that the libjson-c-dev package is fine as is. It shouldn't
be butchered to workaround a bug in ldconfig which is caused by the
existence of libjson0-dev.

A better fix is a/ to fix ldconfig and/or b/ fix the remaining rdeps of
libjson0-dev [1] and drop the libjson0(-dev) compat packages.
Everything else is just a workaround


Michael

[1]
# Broken Depends:
u1db: libu1db-dev [amd64 arm64 armel armhf i386 kfreebsd-amd64
kfreebsd-i386 mips mips64el mipsel powerpc ppc64el s390x]

# Broken Build-Depends:
grive: libjson0-dev
hubicfuse: libjson0-dev
libu2f-host: libjson0-dev
libu2f-server: libjson0-dev
libxr: libjson0-dev (>= 0.9)
mypaint: libjson0-dev
rt-app: libjson0-dev



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



signature.asc
Description: OpenPGP digital signature


Bug#771341: segfaults in sqlite3_value_type while using from Python

2015-10-25 Thread Marc F. Clemente

On 10/24/2015 12:12 PM, László Böszörményi (GCS) wrote:

On Mon, Mar 16, 2015 at 3:10 PM, Marc F. Clemente  wrote:

One is an Intel i7.  Four others are xen virtual machines running on an Intel 
Xeon.

  On which computers do you get the segfaults? Can you try recent
SQLite3 package uploads, especially 3.9.1?


When I look at my logs, I have not had any segfaults since I wrote that 
email on 16 March 2015.  I completely forgot about this bug.


Currently running 3.8.11.1-1.


Do you have a minimal installation maybe where the crash happens?


Not any more.

Marc



Processed (with 1 error): merge

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> merge 795825 794711
Bug #795825 [libpjproject-dev] asterisk: FTBFS on amd64 arm64 ppc64el: 
/usr/bin/ld: cannot find -lSDL2 (and others)
Unable to merge bugs because:
affects of #794711 is 'asterisk' not ''
Failed to merge 795825: Did not alter merged bugs.

> --
Stopping processing here.

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



Processed: Re: Bug#802737: pdns-tools: fails to upgrade from 'testing' - trying to overwrite /usr/share/man/man8/dnsscope.8.gz

2015-10-25 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #802737 [pdns-tools] pdns-tools: fails to upgrade from 'testing' - trying 
to overwrite /usr/share/man/man8/dnsscope.8.gz
Added tag(s) confirmed.

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



Bug#794724: NMU diff

2015-10-25 Thread Adam Borowski
Forgot to attach the diff, it's:

diff -Nru crtmpserver-1.0~dfsg/debian/changelog 
crtmpserver-1.0~dfsg/debian/changelog
--- crtmpserver-1.0~dfsg/debian/changelog   2013-06-23 18:47:08.0 
+0200
+++ crtmpserver-1.0~dfsg/debian/changelog   2015-10-25 13:14:35.0 
+0100
@@ -1,3 +1,10 @@
+crtmpserver (1.0~dfsg-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Don't hard-code dependencies (Closes: #794724).
+
+ -- Adam Borowski   Sun, 25 Oct 2015 13:14:05 +0100
+
 crtmpserver (1.0~dfsg-5) unstable; urgency=low

   * Update the kfreebsd platform specific header to unbreak compilation,
diff -Nru crtmpserver-1.0~dfsg/debian/control 
crtmpserver-1.0~dfsg/debian/control
--- crtmpserver-1.0~dfsg/debian/control 2013-06-22 17:34:26.0 +0200
+++ crtmpserver-1.0~dfsg/debian/control 2015-10-25 13:13:20.0 +0100
@@ -45,8 +45,6 @@
 Replaces: crtmpserver (<< 0.0~dfsg+svn611.1-1)
 Breaks: crtmpserver (<< 0.0~dfsg+svn611.1-1)
 Depends:
- liblua5.1-0,
- libtinyxml2.6.2,
  openssl,
  ${misc:Depends},
  ${shlibs:Depends}



Bug#799990: Bug#794214: org.apache.batik.dom.svg.SVGDOMImplementation

2015-10-25 Thread Erich Schubert
Hello,
Sorry, I'm still very much overworked.
Packaging the next version requires some effort because the build
system was switched from ant to maven for the new version; furthermore
I don't keep the gpg key on my usual work machines but I have to power
up an older desktop instead.

So I figured the auto-removal is okay, requalification through testing
will not be hard.
As is, people should just get the .jar from the upstream download site instead.

I'm not sure why the autoremoval date was bounced. I have filed
#802959 to ask for removal from testing to speed up batik.

Regards,
Erich

On Sat, Oct 24, 2015 at 2:19 PM, Mathieu Malaterre  wrote:
> On Sat, Oct 24, 2015 at 2:06 PM, Samuel Thibault  wrote:
>> Hello,
>>
>> Erich Schubert, le Mon 17 Aug 2015 10:28:27 +0200, a écrit :
>>> I will take care of uploading a new ELKI package (probably end of the
>>> month, or beginning of september).
>>> It will have a version number of at least "0.7.0~20150817-1", which is
>>> > 0.6.5, so above breaks is okay.
>>> I assume that libfop-java 1:2.0+dfsg-1 in experimental is expecting
>>> the new Batik version.
>>
>> Ping?
>>
>> This is preventing the batik migration, and thus the fop and jaxe
>> migrations too, at least.
>
> I was sure elki would get removed today ? See my post:
>
> https://lists.debian.org/debian-java/2015/09/msg00092.html
>
> Someone must have change the auto-removal date :(



Bug#797989: marked as done (fastjet: ABI transition needed for libstdc++ v5)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:34 +
with message-id 
and subject line Bug#797989: fixed in fastjet 3.0.6+dfsg-1.1
has caused the Debian Bug report #797989,
regarding fastjet: ABI transition needed for libstdc++ v5
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.)


-- 
797989: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797989
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: fastjet
Version: 3.0.6+dfsg-1
Severity: serious
Justification: causes rivet to FTBFS
Tags: sid stretch confirmed
User: debian-...@lists.debian.org
Usertags: libstdc++-cxx11
Control: block -1 by 791283

Background[1]: libstdc++6 introduces a new ABI to conform to the
C++11 standard, but keeps the old ABI to not break existing binaries.
Packages which are built with g++-5 from experimental (not the one
from testing/unstable) are using the new ABI.  Libraries built from
this source package export some of the new __cxx11 or B5cxx11 symbols,
dropping other symbols.  If these symbols are part of the API of
the library, then this rebuild with g++-5 will trigger a transition
for the library.

In the case of fastjet, the rivet source package FTBFS when built
against a version of yaml-cpp that starts *its* transition,
so I can confirm that a transition is definitely needed.
The transition normally consists of renaming the
affected library packages, adding a v5 suffix (libfastjet0v5, etc.).
The SONAME should not be changed when doing this.

If an upgrade to a new upstream SONAME is already planned, and that
SONAME has never been available in Debian compiled with g++-4, then an
alternative way to carry out the transition would be to bump the
SONAME. However, the libstdc++ transition has been going on for a
month already, and anything that makes it take longer is bad for Debian,
so introducing new upstream code is not desired at this stage.

These follow-up transitions for libstdc++ are not going through exactly
the normal transition procedure, because many entangled transitions are
going on at the same time, and the usual ordered transition procedure
does not scale that far. When all the C++ libraries on which this library
depends have started their transitions in unstable if required, this
library should do the same, closing this bug; the release team will deal
with binNMUs as needed.

Looking at the build-dependencies of fastjet, siscone needs a
library transition first; in fastjet, please add versioned Build-Depends
on the version of siscone where #791283 has been fixed.

The package might be NMU'd if there is no maintainer response. The
release team have declared a 2 day NMU delay[2] for packages involved
in the libstdc++ transition, in order to get unstable back to a usable
state in a finite time.

Regards,
S

[1] https://wiki.debian.org/GCC5#libstdc.2B-.2B-_ABI_transition
[2] https://lists.debian.org/debian-devel-announce/2015/08/msg0.html
--- End Message ---
--- Begin Message ---
Source: fastjet
Source-Version: 3.0.6+dfsg-1.1

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated fastjet 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: Mon, 19 Oct 2015 23:02:48 +0200
Source: fastjet
Binary: libfastjet0v5 libfastjet-dev libfastjettools0 libfastjettools-dev 
libfastjet-fortran0 libfastjet-fortran-dev libfastjetplugins0 
libfastjetplugins-dev fastjet-doc fastjet-examples root-macro-fastjet
Architecture: source all amd64
Version: 3.0.6+dfsg-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 fastjet-doc - Documentation of FastJet
 fastjet-examples - Example source files of FastJet
 libfastjet-dev - Development files of FastJet
 libfastjet-fortran-dev - Fortran bindings of FastJet - development files
 libfastjet-fortran0 - Fortran 

Bug#789773: marked as done (fusionforge-shell: modifies conffiles (policy 10.7.3): /etc/pam.d/sshd)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:47 +
with message-id 
and subject line Bug#789773: fixed in fusionforge 6.0.3+20151023-1
has caused the Debian Bug report #789773,
regarding fusionforge-shell: modifies conffiles (policy 10.7.3): /etc/pam.d/sshd
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.)


-- 
789773: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789773
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fusionforge-shell
Version: 6.0.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package modifies conffiles.
And this is not even a conffile shipped by your package.
This is forbidden by the policy, see
https://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: "[...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time)."

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: "[...] must not ask unnecessary questions
(particularly during upgrades) [...]"

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also https://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

2m49.1s ERROR: FAIL: debsums reports modifications inside the chroot:
  /etc/pam.d/sshd


cheers,

Andreas


fusionforge-shell_6.0.1-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: fusionforge
Source-Version: 6.0.3+20151023-1

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

Debian distribution maintenance software
pp.
Sylvain Beucler  (supplier of updated fusionforge package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 23 Oct 2015 17:04:00 +0200
Source: fusionforge
Binary: fusionforge fusionforge-common fusionforge-db-local 
fusionforge-db-remote fusionforge-web fusionforge-web-vhosts fusionforge-shell 
fusionforge-scm fusionforge-mta-postfix fusionforge-mta-exim4 fusionforge-lists 
gforge-common gforge-db-postgresql gforge-db-remote gforge-web-apache2 
gforge-shell-postgresql gforge-mta-postfix gforge-mta-exim4 
gforge-lists-mailman fusionforge-plugin-scmgit fusionforge-plugin-scmsvn 
fusionforge-plugin-scmarch fusionforge-plugin-scmdarcs fusionforge-plugin-scmhg 
fusionforge-plugin-moinmoin fusionforge-plugin-admssw 
fusionforge-plugin-authcas fusionforge-plugin-authhttpd 
fusionforge-plugin-authldap fusionforge-plugin-blocks 
fusionforge-plugin-compactpreview fusionforge-plugin-contribtracker 
fusionforge-plugin-doaprdf fusionforge-plugin-extsubproj 
fusionforge-plugin-foafprofiles fusionforge-plugin-globalsearch 
fusionforge-plugin-gravatar fusionforge-plugin-headermenu 
fusionforge-plugin-hudson fusionforge-plugin-message
 fusionforge-plugin-projectlabels fusionforge-plugin-projects-hierarchy 
fusionforge-plugin-scmhook fusionforge-plugin-sysauthldap 
fusionforge-plugin-taskboard
 fusionforge-plugin-webanalytics
Architecture: source all
Version: 6.0.3+20151023-1
Distribution: unstable
Urgency: medium
Maintainer: Roland Mas 
Changed-By: 

Bug#801843: marked as done (fusionforge-plugin-scm{giti, svn}: package removed, processes still running: xinetd)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:47 +
with message-id 
and subject line Bug#801843: fixed in fusionforge 6.0.3+20151023-1
has caused the Debian Bug report #801843,
regarding fusionforge-plugin-scm{giti, svn}: package removed, processes still 
running: xinetd
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.)


-- 
801843: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801843
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fusionforge-plugin-scmgit,fusionforge-plugin-scmsvn
Version: 6.0.3-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left processes
running after the package has been removed and/or purged.

This is very probably due to not using invoke-rc.d
as mandated by policy 9.3.3.2.

In https://lists.debian.org/debian-devel/2009/08/msg00182.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

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

1m42.8s ERROR: FAIL: Processes are running inside chroot:
  COMMAND  PID USER   FD   TYPE DEVICE SIZE/OFF   NODE NAME
  xinetd  6292 root  cwdDIR   0,20  460 3378999138 
/tmp/piupartss/tmpwjdP5B
  xinetd  6292 root  rtdDIR   0,20  460 3378999138 
/tmp/piupartss/tmpwjdP5B
  xinetd  6292 root  memREG   0,2043592 3379009778 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libnss_nis-2.19.so
  xinetd  6292 root  memREG   0,2031632 3379009766 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libnss_compat-2.19.so
  xinetd  6292 root  memREG   0,2047712 3379009772 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libnss_files-2.19.so
  xinetd  6292 root  memREG   0,20  1729984 3379009770 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libc-2.19.so
  xinetd  6292 root  memREG   0,2035176 3379009767 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libcrypt-2.19.so
  xinetd  6292 root  memREG   0,20  1051056 3379009781 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libm-2.19.so
  xinetd  6292 root  memREG   0,2089104 3379009768 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/libnsl-2.19.so
  xinetd  6292 root  memREG   0,20   140928 3379009775 
/tmp/piupartss/tmpwjdP5B/lib/x86_64-linux-gnu/ld-2.19.so
  xinetd  6292 root0r   CHR1,3  0t0 3379007767 
/tmp/piupartss/tmpwjdP5B/dev/null
  xinetd  6292 root1r   CHR1,3  0t0 3379007767 
/tmp/piupartss/tmpwjdP5B/dev/null
  xinetd  6292 root2r   CHR1,3  0t0 3379007767 
/tmp/piupartss/tmpwjdP5B/dev/null


cheers,

Andreas


fusionforge-plugin-scmgit_6.0.3-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: fusionforge
Source-Version: 6.0.3+20151023-1

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

Debian distribution maintenance software
pp.
Sylvain Beucler  (supplier of updated fusionforge package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 23 Oct 2015 17:04:00 +0200
Source: fusionforge
Binary: fusionforge fusionforge-common fusionforge-db-local 
fusionforge-db-remote fusionforge-web fusionforge-web-vhosts fusionforge-shell 
fusionforge-scm fusionforge-mta-postfix fusionforge-mta-exim4 fusionforge-lists 
gforge-common gforge-db-postgresql gforge-db-remote gforge-web-apache2 
gforge-shell-postgresql gforge-mta-postfix gforge-mta-exim4 
gforge-lists-mailman fusionforge-plugin-scmgit fusionforge-plugin-scmsvn 
fusionforge-plugin-scmarch fusionforge-plugin-scmdarcs fusionforge-plugin-scmhg 
fusionforge-plugin-moinmoin fusionforge-plugin-admssw 
fusionforge-plugin-authcas fusionforge-plugin-authhttpd 
fusionforge-plugin-authldap fusionforge-plugin-blocks 
fusionforge-plugin-compactpreview fusionforge-plugin-contribtracker 
fusionforge-plugin-doaprdf fusionforge-plugin-extsubproj 
fusionforge-plugin-foafprofiles fusionforge-plugin-globalsearch 
fusionforge-plugin-gravatar fusionforge-plugin-headermenu 

Bug#799039: marked as done (dcmqrscp : index.dat data corruption)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:29 +
with message-id 
and subject line Bug#799039: fixed in dcmtk 3.6.1~20150629-2
has caused the Debian Bug report #799039,
regarding dcmqrscp : index.dat data corruption
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.)


-- 
799039: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799039
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: dcmtk
Version: 3.6.1~20150629-1
Severity: grave
Justification: causes non-serious data loss

As describe in the previous bug report:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=715011#50

One cannot simply upgrade dcmtk package without grave data loss
(index.dat binary format is not compatible), which should result as
-best case- index.dat corruption, or dcmqrscp to segfault and not
start.

This correspond to the following upstream commit:
c8423ab1fcf0273061462697b8eca56f894984c7

This should be clearly indicated during package upgrades. Marking as
grave as I believe the DICOM file themselves are still kept as-is, so
this is IMHO not a critical `causes serious data loss`. Upstream may
have a finer understanding of the loss.
--- End Message ---
--- Begin Message ---
Source: dcmtk
Source-Version: 3.6.1~20150629-2

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated dcmtk 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: Fri, 23 Oct 2015 23:29:57 +0200
Source: dcmtk
Binary: dcmtk libdcmtk4v5 libdcmtk-dev dcmtk-www dcmtk-doc libdcmtk4v5-dbg
Architecture: source all amd64
Version: 3.6.1~20150629-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Andreas Tille 
Description:
 dcmtk  - OFFIS DICOM toolkit command line utilities
 dcmtk-doc  - OFFIS DICOM toolkit documentation
 dcmtk-www  - OFFIS DICOM toolkit worklist www server application
 libdcmtk-dev - OFFIS DICOM toolkit development libraries and headers
 libdcmtk4v5 - OFFIS DICOM toolkit runtime libraries
 libdcmtk4v5-dbg - OFFIS DICOM toolkit library debugging symbols
Closes: 799039 800481 801735
Changes:
 dcmtk (3.6.1~20150629-2) unstable; urgency=medium
 .
   * debian/copyright: DEP5
   * unversioned -dev package
 Closes: #800481
   * Inform users about non-backward compatible changes in dcmtk database
 when using dcmqrscp
 Closes: #799039
   * suppress lintian warnings no-symbols-control-file
   * create empty dir /var/lib/dcmtk/db in package
 Closes: #801735
Checksums-Sha1:
 a62c1cd9ec76fdd7f518c945be204297b8c3b64e 2483 dcmtk_3.6.1~20150629-2.dsc
 f98046d42251ce1a88a4c010c7615aeb22e08ff8 31896 
dcmtk_3.6.1~20150629-2.debian.tar.xz
 4c1f1f75cfbcb7df05e96bb0123820e6e52a4acf 8735570 
dcmtk-doc_3.6.1~20150629-2_all.deb
 804ec64e0061b9ea4c64ad1d67a58f305e00d5be 51914 
dcmtk-www_3.6.1~20150629-2_amd64.deb
 84225b6c078f476b2c5b0fb5a1962fccd66304e8 884192 
dcmtk_3.6.1~20150629-2_amd64.deb
 2b3396d32e9595638449ff6a759531b8556bb17e 717824 
libdcmtk-dev_3.6.1~20150629-2_amd64.deb
 240b6ed2bb5a2d86b4d6e6b6490023460a5e5774 29216200 
libdcmtk4v5-dbg_3.6.1~20150629-2_amd64.deb
 d72eab62db2dd5f1730f98e33d01cbedf6814f82 3938594 
libdcmtk4v5_3.6.1~20150629-2_amd64.deb
Checksums-Sha256:
 8541416915fc3d9e7d83ca9aac933d01fb2d3b88e1b5ffae04c22047f65c3f01 2483 
dcmtk_3.6.1~20150629-2.dsc
 72a9d4a3f166e4cb0eb4742ca37cee76de48fe097990ef7a3099663eca7d45d5 31896 
dcmtk_3.6.1~20150629-2.debian.tar.xz
 6f3193ab4942681581ab3cb4bb4651953d982b49918c24a1ab89de60afe2f257 8735570 
dcmtk-doc_3.6.1~20150629-2_all.deb
 606ee7382ffdbcc20c3e566f8bddc2826c37da7ff84476dbe33e6c9b5fa1d5a3 51914 
dcmtk-www_3.6.1~20150629-2_amd64.deb
 819a4c6effbb384199bf5ca61f5ee281b89d44af80dea339819229f0b21c9829 884192 
dcmtk_3.6.1~20150629-2_amd64.deb
 3d430cc17992ad4ad335fe3d272d146600567cf969384186a33e9c8c9dc60c34 717824 
libdcmtk-dev_3.6.1~20150629-2_amd64.deb
 

Bug#789772: marked as done (fusionforge-mta-exim4: modifies conffiles (policy 10.7.3): /etc/exim4/exim4.conf.template /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:47 +
with message-id 
and subject line Bug#789772: fixed in fusionforge 6.0.3+20151023-1
has caused the Debian Bug report #789772,
regarding fusionforge-mta-exim4: modifies conffiles (policy 10.7.3): 
/etc/exim4/exim4.conf.template 
/etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs
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.)


-- 
789772: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789772
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fusionforge-mta-exim4
Version: 6.0.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package modifies conffiles.
And these are not even conffiles shipped by your package.
This is forbidden by the policy, see
https://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: "[...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time)."

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: "[...] must not ask unnecessary questions
(particularly during upgrades) [...]"

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also https://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

0m52.1s ERROR: FAIL: debsums reports modifications inside the chroot:
  /etc/exim4/exim4.conf.template
  /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs


cheers,

Andreas


fusionforge-mta-exim4_6.0.1-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: fusionforge
Source-Version: 6.0.3+20151023-1

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

Debian distribution maintenance software
pp.
Sylvain Beucler  (supplier of updated fusionforge package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 23 Oct 2015 17:04:00 +0200
Source: fusionforge
Binary: fusionforge fusionforge-common fusionforge-db-local 
fusionforge-db-remote fusionforge-web fusionforge-web-vhosts fusionforge-shell 
fusionforge-scm fusionforge-mta-postfix fusionforge-mta-exim4 fusionforge-lists 
gforge-common gforge-db-postgresql gforge-db-remote gforge-web-apache2 
gforge-shell-postgresql gforge-mta-postfix gforge-mta-exim4 
gforge-lists-mailman fusionforge-plugin-scmgit fusionforge-plugin-scmsvn 
fusionforge-plugin-scmarch fusionforge-plugin-scmdarcs fusionforge-plugin-scmhg 
fusionforge-plugin-moinmoin fusionforge-plugin-admssw 
fusionforge-plugin-authcas fusionforge-plugin-authhttpd 
fusionforge-plugin-authldap fusionforge-plugin-blocks 
fusionforge-plugin-compactpreview fusionforge-plugin-contribtracker 
fusionforge-plugin-doaprdf fusionforge-plugin-extsubproj 
fusionforge-plugin-foafprofiles fusionforge-plugin-globalsearch 
fusionforge-plugin-gravatar fusionforge-plugin-headermenu 
fusionforge-plugin-hudson fusionforge-plugin-message
 fusionforge-plugin-projectlabels fusionforge-plugin-projects-hierarchy 
fusionforge-plugin-scmhook fusionforge-plugin-sysauthldap 
fusionforge-plugin-taskboard
 

Bug#801142: marked as done (fusionforge-plugin-scmcvs: fails to install: post-installation script returned error exit status 127)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:00:47 +
with message-id 
and subject line Bug#801142: fixed in fusionforge 6.0.3+20151023-1
has caused the Debian Bug report #801142,
regarding fusionforge-plugin-scmcvs: fails to install: post-installation script 
returned error exit status 127
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.)


-- 
801142: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801142
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fusionforge-plugin-scmcvs
Version: 6.0.2+20150918-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install. As
per definition of the release team this makes the package too buggy for
a release, thus the severity.

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

  Selecting previously unselected package fusionforge-plugin-scmcvs.
  (Reading database ... 
(Reading database ... 15546 files and directories currently installed.)
  Preparing to unpack .../fusionforge-plugin-scmcvs_6.0.2+20150918-1_all.deb ...
  Unpacking fusionforge-plugin-scmcvs (6.0.2+20150918-1) ...
  Setting up fusionforge-plugin-scmcvs (6.0.2+20150918-1) ...
  Running /usr/share/fusionforge/plugins/scmcvs/bin/install.sh configure
  Modifying inetd for cvs server
  CVS usual config is changed for gforge one
  invoke-rc.d: policy-rc.d denied execution of start.
  dpkg: error processing package fusionforge-plugin-scmcvs (--configure):
   subprocess installed post-installation script returned error exit status 127
  Errors were encountered while processing:
   fusionforge-plugin-scmcvs
  E: Sub-process /usr/bin/dpkg returned an error code (1)


adding set -x to the postinst script and running it again (and
interactively thsi time) results in


# LC_ALL=C  dpkg --configure --pending
Setting up fusionforge-plugin-scmcvs (6.0.2+20150918-1) ...
+ forge_get_config source_path
+ pluginctl=/usr/share/fusionforge/post-install.d/common/plugin.sh
+ /usr/share/fusionforge/post-install.d/common/plugin.sh scmcvs configure
Running /usr/share/fusionforge/plugins/scmcvs/bin/install.sh configure
Modifying inetd for cvs server
CVS usual config is changed for gforge one
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
Configuring service: 
-

There are multiple entries in /etc/inetd.conf for the 'cvspserver' service.

Please confirm that you agree to disable these entries.

Disable inetd entries? y   


invoke-rc.d: policy-rc.d denied execution of force-reload.
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based 
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 
76.)
debconf: falling back to frontend: Readline
invoke-rc.d: policy-rc.d denied execution of start.
dpkg: error processing package fusionforge-plugin-scmcvs (--configure):
 subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
 fusionforge-plugin-scmcvs


(answering "n" does not change the outcome)


(most of the other fusionforge packages now pass the piuparts tests)


cheers,

Andreas


fusionforge-plugin-scmcvs_6.0.2+20150918-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: fusionforge
Source-Version: 

Processed: closing 802880

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> close 802880
Bug #802880 {Done: Gianfranco Costamagna } 
[src:qtcreator] package is uninstallable due to Qt 5.5 transition
Bug 802880 is already marked as done; not doing anything.
> thanks
Stopping processing here.

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



Bug#802939: marked as done (libparse-keyword-perl: FTBFS with perl 5.22: test failures)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:49:25 +
with message-id 
and subject line Bug#802939: fixed in libparse-keyword-perl 0.08-2
has caused the Debian Bug report #802939,
regarding libparse-keyword-perl: FTBFS with perl 5.22: test failures
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.)


-- 
802939: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802939
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libparse-keyword-perl
Version: 0.08-1
Severity: serious
Justification: upcoming transition
User: debian-p...@lists.debian.org
Usertags: perl-5.22-transition
Tags: sid stretch upstream patch
Forwarded: https://github.com/doy/parse-keyword/issues/9

This package FTBFS with perl 5.22, in experimental:

#   Failed test at t/error.t line 62.
#  got: 'Global symbol "$baz" requires explicit package name (did you 
forget to declare "my $baz"?) at t/error.pl line 9.
# Execution of t/error.pl aborted due to compilation errors.
# '
# expected: 'Global symbol "$baz" requires explicit package name at 
t/error.pl line 9.
# Execution of t/error.pl aborted due to compilation errors.
# '
# Looks like you failed 1 test of 21.
t/error.t . 

(This late test result follows a perl 5.22 fix for build-dep
libdata-alias-perl.)

Cheers,
Dominic.
--- End Message ---
--- Begin Message ---
Source: libparse-keyword-perl
Source-Version: 0.08-2

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

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

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

Debian distribution maintenance software
pp.
Jonas Smedegaard  (supplier of updated libparse-keyword-perl 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 25 Oct 2015 17:29:15 +0100
Source: libparse-keyword-perl
Binary: libparse-keyword-perl
Architecture: source amd64
Version: 0.08-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group 
Changed-By: Jonas Smedegaard 
Description:
 libparse-keyword-perl - write syntax extensions in perl (with only limited use)
Closes: 802939
Changes:
 libparse-keyword-perl (0.08-2) unstable; urgency=medium
 .
   [ gregor herrmann ]
   * Add patch to adjust test to diagnostic messages in newer perl.
 Closes: #802939. Thanks to Dominic Hargreaves.
 .
   [ Jonas Smedegaard ]
   * Update copyright info:
 + Use License-Grant and License-Reference fields.
   Thanks to Ben Finney.
   * Add lintian override regarding license in License-Reference field.
 See bug#786450.
   * Bump debhelper compatibility level to 9.
   * Add lintian override regarding debhelper 9.
   * Modernize git-buildpackage config: Avoid git- prefix.
Checksums-Sha1:
 133c3bfbae01ee7e41890e67621bf4d884453ad5 2275 libparse-keyword-perl_0.08-2.dsc
 00df4130f368af420c3558703fc561cf21150c50 4448 
libparse-keyword-perl_0.08-2.debian.tar.xz
 fe4fd00f8aa2f0bedc59ee45be91e48f00d4c21b 20348 
libparse-keyword-perl_0.08-2_amd64.deb
Checksums-Sha256:
 faa5ddbef167f75f35d5c7e238f878bddba51b3f2084e3c517e0c1f2c8453841 2275 
libparse-keyword-perl_0.08-2.dsc
 95491b58f1bd1e6d3f7b86dcb97f940caae548164221ee3e46162180b923c893 4448 
libparse-keyword-perl_0.08-2.debian.tar.xz
 6536a2d66dc5624e70b09f700c14430d9d7c3007851b4b6a076251b9f08bb343 20348 
libparse-keyword-perl_0.08-2_amd64.deb
Files:
 1d6e75b60a098d434aceed834ff4a6e4 2275 oldlibs optional 
libparse-keyword-perl_0.08-2.dsc
 4c8d874cade18716543d6c1579af4aad 4448 oldlibs optional 
libparse-keyword-perl_0.08-2.debian.tar.xz
 6c98b45af5df405492cbb5ba9f2d1108 20348 oldlibs optional 
libparse-keyword-perl_0.08-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJWLRM+AAoJECx8MUbBoAEhWicP+wWRF6g2gnIzp2jZuOPvOfdf
x+MWsl+BlXsFblRKU64KfBQo6zDsycbuMDrCsLhoASB6v97Fy1IlxsfaOZqsUJug
YsOiPUrvrJ+iMb8+Xa2vQ7xVVtOVqYBhZ30nn2XfFf2fZKzDFPHLxUhMGAen0bWV
u0hFr13ji7UV4cVkYpQ4yGPQU1JCcBawN39nZ4LkX1qGQAlEKAxN4O1JCEpb0rAc
iT8ziDvmSkWg4OGhbQwMhBd3XgStmyrHFeKY4N09xs0XPIEj1DVAI8FTlL98vSCR

Bug#797613: marked as done (libosl: transition needed for g++-5 ABIs)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:01:15 +
with message-id 
and subject line Bug#797613: fixed in libosl 0.6.0-3.3
has caused the Debian Bug report #797613,
regarding libosl: transition needed for g++-5 ABIs
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.)


-- 
797613: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797613
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libosl
Version: 0.6.0-3.2
Severity: serious
Justification: breaks reverse-dependencies
Tags: patch

Background[1]: libstdc++6 introduces a new ABI to conform to the
C++11 standard, but keeps the old ABI to not break existing binaries.
Packages which are built with g++-5 from experimental (not the one
from testing/unstable) are using the new ABI.  Libraries built from
this source package export some of the new __cxx11 or B5cxx11 symbols,
dropping other symbols.  If these symbols are part of the API of
the library, then this rebuild with g++-5 will trigger a transition
for the library.

In the case of libosl, std::string appears in header files that
get installed, so it seems very likely that a transition is needed.
The transition consists of renaming the library package
containing libosl.so.1 from "libosl1" to "libosl1v5".
A patch is available in Ubuntu,
.

These follow-up transitions for libstdc++ are not going through exactly
the normal transition procedure, because many entangled transitions are
going on at the same time, and the usual ordered transition procedure
does not scale that far. When all the libraries on which libosl depends
have started their transitions if required, libosl should do the same,
closing this bug; the release team will deal with binNMUs as needed.

In the case of libosl, libcppunit-dev and Boost have already started
their transitions, so libosl seems to be ready to start too.

The package is likely to be NMU'd in the near future, with a patch very
similar to the one in Ubuntu. The release team have declared a 2 day NMU
delay[2] for packages involved in the libstdc++ transition, in order to
get unstable back to a usable state in a finite time.

S

[1] https://wiki.debian.org/GCC5#libstdc.2B-.2B-_ABI_transition
[2] https://lists.debian.org/debian-devel-announce/2015/08/msg0.html
--- End Message ---
--- Begin Message ---
Source: libosl
Source-Version: 0.6.0-3.3

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated libosl 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: Mon, 19 Oct 2015 23:43:57 +0200
Source: libosl
Binary: libosl1v5 libosl-dev libosl1v5-dbg libosl-doc
Architecture: source amd64 all
Version: 0.6.0-3.3
Distribution: unstable
Urgency: medium
Maintainer: Daigo Moriwaki 
Changed-By: Sebastian Ramacher 
Description:
 libosl-dev - library for Shogi playing programs
 libosl-doc - library for Shogi playing programs
 libosl1v5  - library for Shogi playing programs
 libosl1v5-dbg - library for Shogi playing programs
Closes: 797613
Changes:
 libosl (0.6.0-3.3) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Steve Langasek ]
   * Rename library packages for g++5 ABI transition. (Closes: #797613)
Checksums-Sha1:
 96890fcc57d8177b78d4b01408e6867393212c08 2123 libosl_0.6.0-3.3.dsc
 1a68d695d217e2bd5d93fbee626c2354231cd319 5968 libosl_0.6.0-3.3.debian.tar.xz
 fca1b30bcc91f23510dbba61e02745e49052b93c 2811672 libosl-dev_0.6.0-3.3_amd64.deb
 87867fe7d52f24947ae9fe6a40c39dbc7b1e8939 6059006 libosl-doc_0.6.0-3.3_all.deb
 b5b43168aae409799fc380912d012540f66451a7 15716358 
libosl1v5-dbg_0.6.0-3.3_amd64.deb
 496ce6bf3b906f81541146926f404886e65db299 2075664 libosl1v5_0.6.0-3.3_amd64.deb
Checksums-Sha256:
 f5c5ea0db8fc5ea2c005c6733d110b6544d05d1b80790332680d29de5ec773f7 2123 
libosl_0.6.0-3.3.dsc
 

Processed: The FTBFS with GCC 5 fixed itself - opening a separate bug for the libsoprano-dev dependency

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 777833 -1
Bug #777833 [src:digikam] digikam: ftbfs with GCC-5
Bug 777833 cloned as bug 802966
> retitle -1 digikam: FTBFS due to missing dependency on libsoprano-dev
Bug #802966 [src:digikam] digikam: ftbfs with GCC-5
Changed Bug title to 'digikam: FTBFS due to missing dependency on 
libsoprano-dev' from 'digikam: ftbfs with GCC-5'
> --
Stopping processing here.

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



Bug#802952: marked as done (notmuch-emacs: install/notmuch-emacs may interact with console, fail emacs24 upgrade)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:20:12 +
with message-id 
and subject line Bug#802952: fixed in notmuch 0.21~rc3-2
has caused the Debian Bug report #802952,
regarding notmuch-emacs: install/notmuch-emacs may interact with console, fail 
emacs24 upgrade
to be marked as done.

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

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


-- 
802952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: notmuch-emacs
Version: 0.20.2-2
Severity: grave
Tags: patch

While upgrading emacs24 from 24.5+1-2 to 24.5+1-3 today, the
installation paused and I got the the following prompt:

,
| Install notmuch-emacs for emacs24
| install/notmuch: Handling install for emacsen flavor emacs24
| install/notmuch: byte-compiling for emacs24
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? 
`

Pressing n caused the installation to fail:

,
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? n
| not overwritten
| ERROR: install script from notmuch-emacs package failed
| dpkg: error while cleaning up:
|  subprocess installed post-installation script returned error exit status 1
`

/usr/lib/emacsen-common/packages/install/notmuch-emacs wants to gzip its
install log which leads to the above prompt if the gzipped version
already exists, a violation of Debian Policy 3.9.1. "Prompting in
maintainer scripts".

Adding a simple "-f" when invoking gzip fixes this.

Cheers,
-Hilko

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

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

Versions of packages notmuch-emacs depends on:
ih  emacs24 24.5+1-2
ii  emacsen-common  2.0.8
ii  notmuch 0.20.2-2

notmuch-emacs recommends no packages.

notmuch-emacs suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: notmuch
Source-Version: 0.21~rc3-2

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

Debian distribution maintenance software
pp.
David Bremner  (supplier of updated notmuch 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: Sun, 25 Oct 2015 13:42:57 -0300
Source: notmuch
Binary: notmuch libnotmuch4 libnotmuch-dev python-notmuch python3-notmuch 
ruby-notmuch notmuch-emacs notmuch-vim notmuch-mutt notmuch-dbg
Architecture: source
Version: 0.21~rc3-2
Distribution: experimental
Urgency: medium
Maintainer: Carl Worth 
Changed-By: David Bremner 
Description:
 libnotmuch-dev - thread-based email index, search and tagging (development)
 libnotmuch4 - thread-based email index, search and tagging (runtime)
 notmuch- thread-based email index, search and tagging
 notmuch-dbg - thread-based email index, search and tagging - debugging symbols
 notmuch-emacs - thread-based email index, search and tagging (emacs interface)
 notmuch-mutt - thread-based email index, search and tagging (Mutt interface)
 notmuch-vim - thread-based email index, search and tagging (vim interface)
 python-notmuch - python interface to the notmuch mail search and index library
 python3-notmuch - Python 3 interface to the notmuch mail search and index 
library
 ruby-notmuch - Ruby interface to the notmuch mail search and index library
Closes: 795243 802952
Changes:
 notmuch (0.21~rc3-2) experimental; urgency=medium
 .
   * Bug fix: "reply-to encrypted messages in tree view fails to quote
 and defaults to unencrypted message", thanks to Vagrant Cascadian
 (Closes: #795243).
   * Bug fix: "install/notmuch-emacs may interact with console, fail
 emacs24 upgrade", thanks to Hilko Bengen (Closes: #802952).
Checksums-Sha1:
 6395d3aa6cfccc7ff3918c1a9e5478ea0d71b48e 2662 

Bug#802618: Bug #802618

2015-10-25 Thread mario_luppi

 Hello Andreas.
I have done:
# sudo aptitude download libpam-systemd
# sudo dpkg -i --force-all-libpam systemd_227-2_amd64.deb
restarting the PC and launch startx.
The result is that i found myself running X with xmonad but,
without a mouse and keyboard to make any input.
I try to enable NumLock, CapsLock, ScolLock to test it but,
does not turn any LED on.

.mario


Connetti gratis il mondo con la nuova indoona:  hai la chat, le 
chiamate, le video chiamate e persino le chiamate di gruppo.

E chiami gratis anche i numeri fissi e mobili nel mondo!
Scarica subito l’app Vai su https://www.indoona.com/



Bug#777833: marked as done (digikam: ftbfs with GCC-5)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 18:33:13 +0100
with message-id <10126197.k9f5RjqPRK@johansson>
and subject line digikam: no longer ftbfs with GCC-5
has caused the Debian Bug report #777833,
regarding digikam: ftbfs with GCC-5
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.)


-- 
777833: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777833
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:digikam
Version: 4:4.4.0-1.1
Severity: normal
Tags: sid stretch
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-5

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

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

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc5-20150205/digikam_4.4.0-1.1_unstable_gcc5.log
The last lines of the build log are at the end of this report.

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

  apt-get -t experimental install g++ 

Common build failures are C11 as the default C mode, new warnings
resulting in build failures with -Werror turned on, or new/dropped
symbols in Debian symbols files.  For other C/C++ related build failures
see the porting guide at http://gcc.gnu.org/gcc-5/porting_to.html

[...]
--  MySQL Server found... YES
--  MySQL install_db tool found.. YES
--  libtiff library found YES
--  libpng library found. YES
--  libjasper library found.. YES
--  liblcms library found YES
--  Boost Graph library found YES
--  libkipi library found YES
--  libkexiv2 library found.. YES
--  libkdcraw library found.. YES
--  libkface library found... YES
--  libkgeomap library found. YES
--  libpgf library found. YES (optional)
--  Eigen3 library found. YES (optional)
--  libgphoto2 and libusb libraries found YES (optional)
--  libgphoto2 2.5 library found. YES (optional)
--  libkdepimlibs library found.. NO  (optional)
-- 
--  digiKam will be compiled without KDE address book support.
-- 
--  Baloo libraries found YES (optional)
--  Liblqr-1 found... YES (optional)
--  Liblensfun found. YES (optional)
--  Libsqlite v2 found... YES (optional)
--  Doxygen found YES (optional)
--  digiKam can be compiled.. YES
-- 
--
-- 
CMake Error at /usr/share/kde4/apps/cmake/modules/MacroEnsureVersion.cmake:76 
(MATH):
  math cannot parse the expression: "c++ (Debian 5-20150205-15*1 + c++
  (Debian 5-20150205-10*100 + c++ (Debian 5-20150205-10": syntax error,
  unexpected exp_PLUS, expecting exp_OPENPARENT or exp_NUMBER (2)
Call Stack (most recent call first):
  /usr/share/kde4/apps/cmake/modules/MacroEnsureVersion.cmake:95 
(NORMALIZE_VERSION)
  core/CMakeLists.txt:571 (MACRO_ENSURE_VERSION)


-- Looking for dgettext
-- Looking for dgettext - found
-- Found Gettext: built in libc
-- Configuring incomplete, errors occurred!
See also "/«PKGBUILDDIR»/obj-x86_64-linux-gnu/CMakeFiles/CMakeOutput.log".
See also "/«PKGBUILDDIR»/obj-x86_64-linux-gnu/CMakeFiles/CMakeError.log".
dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_BUILD_TYPE=Debian 
-DCMAKE_INSTALL_RPATH=/usr/lib/digikam -DDIGIKAMSC_COMPILE_DOC=on 
-DDIGIKAMSC_COMPILE_PO=on -DENABLE_LCMS2=ON -DKDE4_BUILD_TESTS=OFF 
-DDIGIKAMSC_USE_PRIVATE_KDEGRAPHICS=OFF returned exit code 1
make[1]: *** [override_dh_auto_configure] Error 2
debian/rules:19: recipe for target 'override_dh_auto_configure' failed
make[1]: Leaving directory '/«PKGBUILDDIR»'
make: *** [build-arch] Error 2
debian/rules:16: recipe for target 'build-arch' failed
dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2
--- End Message ---
--- Begin Message ---
Since the bug that this report was 

Processed: owner 802061

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 802061 tmanc...@debian.org
Bug #802061 [src:bookkeeper] bookkeeper: FTBFS: Missing: 
org.jboss.netty:netty:jar:debian
Owner recorded as tmanc...@debian.org.
> thanks
Stopping processing here.

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



Processed: tagging 802858

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 802858 + pending
Bug #802858 [src:activemq] activemq: FTBFS: Missing: 
jakarta-regexp:jakarta-regexp:jar:debian
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#792177: libjson-c-dev: causes creation of unowned /usr/lib//libjson-c.so.2 -> libjson-c.so symlink

2015-10-25 Thread Michael Biebl
On Sun, 12 Jul 2015 14:40:16 +0200 Andreas Beckmann  wrote:
> Package: libjson-c-dev
> Version: 0.11-4
> Severity: serious
> Tags: patch
> User: debian...@lists.debian.org
> Usertags: piuparts
> 
> Hi,
> 
> during a test with piuparts I noticed your package causes creation of
> unowned symlinks (via ldconfig) in /usr/lib/:
> 
>

I can't seem to reproduce the problem here.
When I install libjson-c-dev, I have a symlink
/usr/lib/x86_64-linux-gnu/libjson-c.so which correctly points to
/lib/x86_64-linux-gnu/libjson-c.so.2.0.0

That looks all fine to me.


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



signature.asc
Description: OpenPGP digital signature


Bug#792177: libjson-c-dev: causes creation of unowned /usr/lib//libjson-c.so.2 -> libjson-c.so symlink

2015-10-25 Thread Michael Biebl
On Sun, 12 Jul 2015 14:40:16 +0200 Andreas Beckmann  wrote:

> Patch attached.
> 
> It's probably ok to ask for a jessie-ignore tag unless you can show that
> this dangling link causes an actual problem.

The patch looks incorrect to me, btw.
The *.so.* files belong into /lib, the .so symlink into /usr/lib.

So the current libjson-c package looks fine (and it's done this way in
lot's of other packages).

Btw, can you still reproduce the issue? If so, what are the steps to
reproduce them?


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



signature.asc
Description: OpenPGP digital signature


Bug#802976: Should this package be removed?

2015-10-25 Thread Moritz Mühlenhoff
On Sun, Oct 25, 2015 at 07:51:20PM +0100, Thibaut Girka wrote:
> On Sun, Oct 25, 2015 at 07:41:29PM +0100, Moritz Muehlenhoff wrote:
> > Package: bluemindo
> > Severity: serious
> > 
> > - Dead upstream (the current 0.3 release is from 2009)
> 
> A new major version is on the way and should be released soon.

Sounds good. Is there a rough timeline for that?

Cheers,
Moritz



Bug#785849: [Pkg-telepathy-maintainers] Bug#785849: libnice: Please update to GStreamer 1.x

2015-10-25 Thread Moritz Mühlenhoff
On Thu, May 21, 2015 at 12:46:27AM +0200, Emilio Pozuelo Monfort wrote:
> Control: tags -1 upstream fixed-upstream
> 
> On 20/05/15 15:03, sl...@debian.org wrote:
> > your package libnice currently still depends on GStreamer 0.10.
> 
> We already build gstreamer1.0-nice for gst 1.0, hence tagging as 
> fixed-upstream.
> 
> In order to fix this, we need to drop gstreamer0.10-nice. To do that, we first
> need to drop src:farstream (see #785836).

FWIW, src:farstream was removed from the archive yesterday.

Cheers,
Moritz



Bug#802993: Should this package be removed?

2015-10-25 Thread Moritz Muehlenhoff
Package: g2ipmsg
Severity: serious

- Dead upstream (last release from 2008)
- Unmaintained (last maintainer upload in 2009)
- Virtually unused in popcon
- Depends on legacy libs (gstreamer 0.10)

Cheers,
Moritz



Bug#802994: hyphy built using optimizations for the local machine

2015-10-25 Thread Matthias Klose

Package: src:hyphy
Version: 2.2.6+dfsg-1
Severity: serious
Tags: sid stretch

just that everything is built with -march=corei7-avx locally. Any arch specific 
flags should be removed.




Bug#802995: Should this package be removed?

2015-10-25 Thread Moritz Muehlenhoff
Package: alarm-clock
Severity: serious

alarm-clock hasn't seen a maintainer upload since 2009, seems
dead upstream and depends on legacy libs scheduled for removal
from the archive (gstreamer 0.10).

Cheers,
Moritz



Processed: severity of 785924 is serious

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 785924 serious
Bug #785924 [src:wxwidgets3.0] wxwidgets3.0: Please update to GStreamer 1.x
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

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



Bug#802997: Should this package be removed?

2015-10-25 Thread Moritz Muehlenhoff
Source: numm
Severity: serious

- Dead upstream and relies on legacy libs scheduled for removal
  (gstreamer 0.10)
- Virtually unused in popcon

Cheers,
Moritz



Bug#802999: generated swig file not ready for Python 3.5

2015-10-25 Thread Matthias Klose

Package: src:hyphy
Version: 2.2.6+dfsg-1
Severity: serious
Tags: sid stretch

the generated swig file (how to generate this?) is not ready for Python 3.5. 
Hand-patched for now.


Patch at
http://launchpadlibrarian.net/222817150/hyphy_2.2.6%2Bdfsg-1_2.2.6%2Bdfsg-1ubuntu1.diff.gz



Bug#802954: gnu-smalltalk-el: Prevents upgrade of emacs24

2015-10-25 Thread Hilko Bengen
Package: gnu-smalltalk-el
Version: 3.2.5-1
Severity: grave
Tags: patch

Dear maintainer,

while upgrading emacs24 from 24.5+1-2 to 24.5+1-3 today, the postinstall
script failed with the following output:

,
| [...]
| Install gnu-smalltalk-el for emacs24
| install/gnu-smalltalk-el: Handling install for emacsen flavor emacs24
| cp: cannot create symbolic link ‘./gst-mode.el’ to 
‘../../../emacs/site-lisp/gnu-smalltalk-el/gst-mode.el’: File exists
| cp: cannot create symbolic link ‘./smalltalk-mode.el’ to 
‘../../../emacs/site-lisp/gnu-smalltalk-el/smalltalk-mode.el’: File exists
| ERROR: install script from gnu-smalltalk-el package failed
| dpkg: error while cleaning up:
|  subprocess installed post-installation script returned error exit status 1
`

The cause of the error lies in line 28 of 
/usr/lib/emacsen-common/packages/install/gnu-smalltalk-el:

Replacing

cp -s ../../../emacs/site-lisp/${PACKAGE}/*.el .

with

cp -sf ../../../emacs/site-lisp/${PACKAGE}/*.el .

fixed the issue.

Cheers,
-Hilko

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

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

Versions of packages gnu-smalltalk-el depends on:
ii  emacs  46.1
ih  emacs24 [emacsen]  24.5+1-2
ii  emacsen-common 2.0.8

gnu-smalltalk-el recommends no packages.

gnu-smalltalk-el suggests no packages.

-- no debconf information



Bug#802953: ess: install/ess may interact with console, fail emacs24 upgrade

2015-10-25 Thread Hilko Bengen
Package: ess
Version: 15.09-1
Severity: grave
Tags: patch

While upgrading emacs24 from 24.5+1-2 to 24.5+1-3 today, the
installation paused and I got the the following prompt:

,
| Install ess for emacs24
| install/notmuch: Handling install for emacsen flavor emacs24
| install/notmuch: byte-compiling for emacs24
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? 
`

Pressing n caused the installation to fail:

,
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? n
| not overwritten
| ERROR: install script from ess package failed
| dpkg: error while cleaning up:
|  subprocess installed post-installation script returned error exit status 1
`

/usr/lib/emacsen-common/packages/install/ess wants to gzip its
install log which leads to the above prompt if the gzipped version
already exists, a violation of Debian Policy 3.9.1. "Prompting in
maintainer scripts".

Adding a simple "-f" when invoking gzip fixes this.

Cheers,
-Hilko

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

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

Versions of packages ess depends on:
ii  dpkg1.18.3
ii  emacsen-common  2.0.8
ii  install-info6.0.0.dfsg.1-3

Versions of packages ess recommends:
ii  r-base-core  3.2.2-1

Versions of packages ess suggests:
pn  jags   
pn  julia  
pn  pspp   
pn  xlispstat  

-- no debconf information



Bug#802950: norwegian: FTBFS when awk is mawk

2015-10-25 Thread Robert Luberda
Source: norwegian
Version: 2.0.10-7
Severity: serious
Justification: FTBFS

When awk points to mawk:
  > LC_ALL=C update-alternatives --config awk
  
  There are 3 choices for the alternative awk (providing /usr/bin/awk).
  
SelectionPath   Priority   Status
  
0/usr/bin/gawk   10auto mode
1/usr/bin/gawk   10manual mode
  * 2/usr/bin/mawk   5 manual mode
3/usr/bin/original-awk   0 manual mode

then norwegian build fails with:

  cat munch2.tmp \
| tr -d ' ' \
| ispell -e -d ./nb.munch.hash \
| sed -e 's/^[-\"a-z...A-Z...]\+ //' -e
  's/./-/g' \
| awk --source '{i=0; while (i munch3.tmp
  awk: awk: not an option: --source
  not an option: --source


`--source' seems to be supported by GNU awk only.

Regards,
robert


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

Kernel: Linux 4.2.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)



Bug#802952: notmuch-emacs: install/notmuch-emacs may interact with console, fail emacs24 upgrade

2015-10-25 Thread Hilko Bengen
Package: notmuch-emacs
Version: 0.20.2-2
Severity: grave
Tags: patch

While upgrading emacs24 from 24.5+1-2 to 24.5+1-3 today, the
installation paused and I got the the following prompt:

,
| Install notmuch-emacs for emacs24
| install/notmuch: Handling install for emacsen flavor emacs24
| install/notmuch: byte-compiling for emacs24
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? 
`

Pressing n caused the installation to fail:

,
| gzip: Install.log.gz already exists; do you wish to overwrite (y or n)? n
| not overwritten
| ERROR: install script from notmuch-emacs package failed
| dpkg: error while cleaning up:
|  subprocess installed post-installation script returned error exit status 1
`

/usr/lib/emacsen-common/packages/install/notmuch-emacs wants to gzip its
install log which leads to the above prompt if the gzipped version
already exists, a violation of Debian Policy 3.9.1. "Prompting in
maintainer scripts".

Adding a simple "-f" when invoking gzip fixes this.

Cheers,
-Hilko

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

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

Versions of packages notmuch-emacs depends on:
ih  emacs24 24.5+1-2
ii  emacsen-common  2.0.8
ii  notmuch 0.20.2-2

notmuch-emacs recommends no packages.

notmuch-emacs suggests no packages.

-- no debconf information



Bug#771341: marked as done (segfaults in sqlite3_value_type while using from Python)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 17:25:39 +0100
with message-id 

and subject line fixed segfaults in sqlite3_value_type
has caused the Debian Bug report #771341,
regarding segfaults in  sqlite3_value_type while using from Python
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.)


-- 
771341: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771341
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libsqlite3-0
Version: 3.7.13-1+deb7u1
Severity: serious

Originally detected I believe on sid installation, but forgot to capture the
version, I will try to replicate/report later.  But very consistent with wheezy
(from which I am reporting now).

Triggered by the backport fail2ban 0.9.1-1~nd70+1 (available from
http://neuro.debian.net/debian-devel/ wheezy/main amd64 Packages  apt repo) it
gets to

#0  sqlite3_value_type (pVal=0x0) at sqlite3.c:63805
#1  0x7570ee2e in sqlite3_column_type (pStmt=0x114eec8, i=) at sqlite3.c:64447
#2  0x7599b3d4 in _pysqlite_fetch_one_row (self=0x11e3540) at 
/home/jmm/py/python2.7-2.7.3/Modules/_sqlite/cursor.c:363
#3  0x7599d71d in pysqlite_cursor_iternext (self=0x11e3540) at 
/home/jmm/py/python2.7-2.7.3/Modules/_sqlite/cursor.c:939
#4  0x0046d967 in listextend (self=0x107cb28, b=) at ../Objects/listobject.c:872
#5  0x00471932 in list_init (self=0x107cb28, args=(,), kw=0x0) at ../Objects/listobject.c:2458
#6  0x004b2092 in type_call (type=0x86dde0, args=(,), kwds=0x0) at ../Objects/typeobject.c:737
#7  0x004291af in PyObject_Call (func=, 
arg=(,), kw=0x0) at 
../Objects/abstract.c:2529
#8  0x0052977e in do_call (func=, 
pp_stack=0x752a0490, na=1, nk=0) at ../Python/ceval.c:4239
#9  0x00528b3b in call_function (pp_stack=0x752a0490, oparg=1) at 
../Python/ceval.c:4044
#10 0x00523733 in PyEval_EvalFrameEx (f=
Frame 0x10f0ba0, for file 
/usr/lib/python2.7/dist-packages/fail2ban/server/database.py, line 467, in 
getBansMerged 
(self=, 
_Thread__block=<_Condition(_Verbose__verbose=False, 
_Condition__lock=, acquire=, _Condition__waiters=[], 
release=) at 
remote 0x1070290>, _Thread__name='Thread-5', _Thread__daemonic=False, 
_actions=, sleeptime=1, _Thread__start
 ed=<_Event(_Verbose__verbose=F...(truncated), throwflag=0) at 
../Python/ceval.c:2666
#11 0x00526121 in PyEval_EvalCodeEx (co=0xf18670, globals=
{'locale': , 'commitandrollback': , 'MyTime': , 'Fail2BanDb': , 'shutil': , 'wraps': , '__package__': 'fail2ban.server', 'json': , 'sqlite3': , 'FailTicket': 
, '__doc__': None, '__license__': 'GPL', 
'__builtins__': {'bytearray': , 'IndexError': , 'all': , 'help': <_Helper at remote 
0xb25fb0>, 'vars': , 'SyntaxError': , 'unicode': , 'UnicodeDecodeError': , 'memoryview': , 'isinstance': 
, 'copyright': 
<_Printer(_Printer__data='Copyright (c) 2001-2012 Python Software 
Foundation.\nAll Rights Reserved.\n\nCopyright (c
 ) 2000 BeOpen.com.\nAll Rights...(truncated), locals=0x0, args=0x11556b8, 
argcount=1, kws=
0x11556c0, kwcount=2, defs=0xf28c08, defcount=3, closure=0x0) at 
../Python/ceval.c:3253
#12 0x00528f36 in fast_function (func=, 
pp_stack=0x752a0950, n=5, na=1, nk=2) at ../Python/ceval.c:4117
#13 0x00528b1f in call_function (pp_stack=0x752a0950, oparg=512) at 
../Python/ceval.c:4042
#14 0x00523733 in PyEval_EvalFrameEx (f=
Frame 0x1155520, for file 
/usr/lib/python2.7/dist-packages/fail2ban/server/actions.py, line 274, in 
 (jail=, _Thread__block=<_Condition(_Verbose__verbose=False, 
_Condition__lock=, acquire=, _Condition__waiters=[], 
release=) at 
remote 0x1070290>, _Thread__name='Thread-5', _Thread__daemonic=False, 
_actions=, sleeptime=1, _Thread__started=<_Event(_Verbose__verbose=False, 
_Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, 
_Condition__lock=, acquire=, _Con...(truncated), throwflag=0) at 

Bug#802949: FTBFS on mipsel during qtbase-5-5-1 transition

2015-10-25 Thread Lisandro Damián Nicanor Pérez Meyer
Source: gammaray
Version: gammaray
Severity: serious

Hi! While rebuilding gammaray fro the qtbase 5.5.1 private headers' transition
your package failed to build from source on mipsel.

The build was trying twice, both times failing during the tests.


Kinds regards, Lisandro.

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

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

-- no debconf information



Bug#802799: [Pkg-fonts-devel] Bug#802799: fonts-droid: non-free file "DroidNaskhUI-Regular.ttf"

2015-10-25 Thread Vasudev Kamath
Hi,

Dmitry Smirnov  writes:

> Source: fonts-android
> Version: 1:4.4.4r2-7
> Severity: serious
>
> File "DroidNaskhUI-Regular.ttf" contains the following metadata:
>
> 
>Digitized data copyright © 2006, 2012 Google Corporation.
>
> NOTIFICATION OF LICENSE AGREEMENT
> 
> This typeface is the property of Monotype Imaging Inc. and its use by you
> is covered under the terms of a license agreement. You have obtained this
> typeface software either directly from Monotype Imaging or together with
> software distributed by one of the licencees of Monotype Imaging.
> 
> This software is a valuable asset of Monotype Imaging. Unless you have
> entered into a specific license agreement granting you additional rights,
> your use of this software is limited to use on up to five (5) workstation
> for your own publishing use.
> You may not copy or distribute this software.
> 
> If you have any questions concerning your rights you should review the
> license agreement you received with the software or contact Monotype
> Imaging for a copy of the license agreement.
> 
> General information:
> www.fonts.com
> 
> For license terms and usage rights, please visit our web site at:
> www.monotypeimaging.com/html/type/license.html
> 
>
> Please investigate.

The upstream for fonts-droid has dropped all Droid fonts in the newer
version including the above font. Only fonts remaining are
DroidSansFallback variants. I have not yet packaged the new version, as
there are reverse dependencies on fonts-droid and packaging newer
version will break them depending on their usage of fonts-droid.

Cheers,


signature.asc
Description: PGP signature


Bug#794724: NMU

2015-10-25 Thread Adam Borowski
Hi!
I've uploaded (with Thijs Kinkhorst) a NMU for this bug to DELAYED/3.
No changes other than the removal of hardcoded library dependencies.

Please shout if there's some reason you'd like to abort this NMU.

-- 
⢎⣉⠂⠠⠤⡀⣄⠤⡀⠠⡅⠀⠤⡧⠄⡄⠀⡄⠀⠀⠀⠠⡅⠀⡠⠤⠄⠀⠀⠀⢴⠍⠀⡠⠤⡀⣄⠤⡀⠀⠀⠀⠤⡧⠄⣇⠤⡀⡠⠤⡀⠀⠀⠀⡄⠀⡄⡠⠤⡀⠠⠤⡀⡇⡠⠄⠀⠀⠀
⠢⠤⠃⠪⠭⠇⠇⠀⠇⠀⠣⠀⠀⠣⠄⠨⠭⠃⠣⠀⠬⠭⠂⠀⠀⠀⠸⠀⠀⠣⠤⠃⠇⠀⠀⠣⠄⠇⠀⠇⠫⠭⠁⠀⠀⠀⠣⠣⠃⠫⠭⠁⠪⠭⠇⠏⠢⠄⠀⠄⠀
(https://github.com/kilobyte/braillefont for this hack)



Bug#798773: marked as done (postinst script handles comments in config file incorrectly)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 16:22:27 +
with message-id 
and subject line Bug#798773: fixed in pdns 3.4.6-3
has caused the Debian Bug report #798773,
regarding postinst script handles comments in config file incorrectly
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.)


-- 
798773: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798773
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: pdns-server
Version: 3.4.1-4+deb8u3

Hi,

The postinst script tries to find any “include=…” lines in pdns.conf in
order to find the pdns config directory.  However, the script fails to
ignore comments in the configuration file, so “#include=…” lines (or
basically any lines containing “include”) will match as well.  This can
cause error messages from ucfr such as

Setting up pdns-server (3.4.1-4+deb8u3) ...
ucfr: *** ERROR: Need exactly two arguments, got 3

[ … ucfr usage output follows … ]

dpkg: error processing package pdns-server (--configure):
 subprocess installed post-installation script returned error exit
 status 3
Errors were encountered while processing:
 pdns-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

The culprit lies in pdns-server.postinst line 20:

PDNSDIR=`cat $PDNSCONF | grep include | awk -F '=' '{print $2}'`

I think an easy, but effective fix could be as simple as:

PDNSDIR=`cat $PDNSCONF | grep '^include' | awk -F '=' '{print $2}'`

Regards,

-- Leon.


pgphl_s9CP3bz.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: pdns
Source-Version: 3.4.6-3

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

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated pdns 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: Sun, 25 Oct 2015 15:22:57 +
Source: pdns
Binary: pdns-server pdns-server-dbg pdns-tools pdns-backend-pipe 
pdns-backend-ldap pdns-backend-geoip pdns-backend-mysql pdns-backend-pgsql 
pdns-backend-sqlite3 pdns-backend-lua pdns-backend-lmdb pdns-backend-remote 
pdns-backend-mydns pdns-backend-tinydns
Architecture: source
Version: 3.4.6-3
Distribution: unstable
Urgency: medium
Maintainer: Debian PowerDNS Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 pdns-backend-geoip - geoip backend for PowerDNS
 pdns-backend-ldap - LDAP backend for PowerDNS
 pdns-backend-lmdb - lmdb backend for PowerDNS
 pdns-backend-lua - Lua backend for PowerDNS
 pdns-backend-mydns - MyDNS compatibility backend for PowerDNS
 pdns-backend-mysql - generic MySQL backend for PowerDNS
 pdns-backend-pgsql - generic PostgreSQL backend for PowerDNS
 pdns-backend-pipe - pipe/coprocess backend for PowerDNS
 pdns-backend-remote - remote backend for PowerDNS
 pdns-backend-sqlite3 - sqlite 3 backend for PowerDNS
 pdns-backend-tinydns - tinydns compatibility backend for PowerDNS
 pdns-server - extremely powerful and versatile nameserver
 pdns-server-dbg - debugging symbols for PowerDNS
 pdns-tools - Tools for DNS debugging by PowerDNS
Closes: 798773 802737
Changes:
 pdns (3.4.6-3) unstable; urgency=medium
 .
   * Remove unused Build-Dependencies
   * pdns-tools: Correctly Break/Replace pdns-server << 3.4.6-2.
 As some pdns-tools files were previously shipped in pdns-server.
 Thanks to Andreas Beckmann  (Closes: #802737)
   * Fix upgrades with default configuration.
 The postinst script used to do a "grep include" on pdns.conf, which
 in older versions would work (mostly), because the default config
 only had a single "include=" entry. Now this is no longer true,
 so remove that. Also, changing the include directory would have
 never worked. (Closes: #798773)
 Thanks to Stephen Frost .
Checksums-Sha1:
 17e0427b7d39d93f460171dbeb1f036d410af4eb 3209 pdns_3.4.6-3.dsc
 996d78dbcab0f456911594d198fea0913e98ca0f 

Bug#802737: marked as done (pdns-tools: fails to upgrade from 'testing' - trying to overwrite /usr/share/man/man8/dnsscope.8.gz)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 16:22:27 +
with message-id 
and subject line Bug#802737: fixed in pdns 3.4.6-3
has caused the Debian Bug report #802737,
regarding pdns-tools: fails to upgrade from 'testing' - trying to overwrite 
/usr/share/man/man8/dnsscope.8.gz
to be marked as done.

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

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


-- 
802737: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802737
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: pdns-tools
Version: 3.4.6-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

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

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

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

  Selecting previously unselected package pdns-tools.
  Preparing to unpack .../pdns-tools_3.4.6-2_amd64.deb ...
  Unpacking pdns-tools (3.4.6-2) ...
  dpkg: error processing archive 
/var/cache/apt/archives/pdns-tools_3.4.6-2_amd64.deb (--unpack):
   trying to overwrite '/usr/share/man/man8/dnsscope.8.gz', which is also in 
package pdns-server 3.4.6-1
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/pdns-tools_3.4.6-2_amd64.deb


cheers,

Andreas


pdns-server=3.4.6-1_pdns-tools=3.4.6-2.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: pdns
Source-Version: 3.4.6-3

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

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated pdns 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: Sun, 25 Oct 2015 15:22:57 +
Source: pdns
Binary: pdns-server pdns-server-dbg pdns-tools pdns-backend-pipe 
pdns-backend-ldap pdns-backend-geoip pdns-backend-mysql pdns-backend-pgsql 
pdns-backend-sqlite3 pdns-backend-lua pdns-backend-lmdb pdns-backend-remote 
pdns-backend-mydns pdns-backend-tinydns
Architecture: source
Version: 3.4.6-3
Distribution: unstable
Urgency: medium
Maintainer: Debian PowerDNS Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 pdns-backend-geoip - geoip backend for PowerDNS
 pdns-backend-ldap - LDAP backend for PowerDNS
 pdns-backend-lmdb - lmdb backend for PowerDNS
 pdns-backend-lua - Lua backend for PowerDNS
 pdns-backend-mydns - MyDNS compatibility backend for PowerDNS
 pdns-backend-mysql - generic MySQL backend for PowerDNS
 pdns-backend-pgsql - generic PostgreSQL backend for PowerDNS
 pdns-backend-pipe - pipe/coprocess backend for PowerDNS
 pdns-backend-remote - remote backend for PowerDNS
 pdns-backend-sqlite3 - sqlite 3 backend for PowerDNS
 pdns-backend-tinydns - tinydns compatibility backend for PowerDNS
 pdns-server - extremely powerful and versatile nameserver
 pdns-server-dbg - debugging symbols for PowerDNS
 pdns-tools - Tools for DNS debugging by PowerDNS
Closes: 798773 802737
Changes:
 pdns (3.4.6-3) unstable; urgency=medium
 .
   * Remove unused Build-Dependencies
   * pdns-tools: Correctly Break/Replace pdns-server << 3.4.6-2.
 As some pdns-tools files were previously shipped in pdns-server.
 Thanks to Andreas Beckmann  (Closes: #802737)
   * Fix upgrades with default configuration.
 The postinst script used to do a "grep include" on pdns.conf, which
 in older versions would work (mostly), because the default config
 only had a single "include=" entry. Now this is no longer true,
 so remove that. Also, changing the include directory would have
 never worked. (Closes: #798773)
 Thanks to Stephen Frost .
Checksums-Sha1:
 17e0427b7d39d93f460171dbeb1f036d410af4eb 3209 

Bug#787371: wpa: CVE-2015-4143 CVE-2015-4144 CVE-2015-4145 CVE-2015-4146: EAP-pwd missing payload length validation

2015-10-25 Thread Salvatore Bonaccorso
Hi Julian,

On Sat, Oct 24, 2015 at 05:04:56PM +0200, Julian Wollrath wrote:
> +wpa (2.3-1+deb8u2) jessie-security; urgency=high
> +
> +  * Add fixes for http://w1.fi/security/2015-5/
> +  * Add fixes for CVE-2015-4141, CVE-2015-4142, CVE-2015-4143, CVE-2015-4144,
> +CVE-2015-4145, CVE-2015-4146 (Closes: #787371).

Only looked from a changelog point of view: Please close as well the
other releated bugs in the changelog entries:

fixes for http://w1.fi/security/2015-5/ -> #795740
CVE-2015-4141 -> #787372
CVE-2015-4142 -> #787373
CVE-2015-4143 -> #787371
CVE-2015-4144 -> #787371
CVE-2015-4145 -> #787371
CVE-2015-4146 -> #787371

(you can find the information via the security-tracker, i.e.
https://security-tracker.debian.org/wpa)

The reason i filled different bug reports is that different version
ranges are affected, so that we have proper version tracking as well
for the BTS.

Thanks for having worked on that update and attached your patchset.
Hav you worked as well on wheezy?

Regards,
Salvatore



Processed: merge

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 794711 795825
Bug #794711 [libpjproject-dev] libpjproject-dev: missing dependencies
Bug #795825 [libpjproject-dev] asterisk: FTBFS on amd64 arm64 ppc64el: 
/usr/bin/ld: cannot find -lSDL2 (and others)
Added indication that 795825 affects asterisk
Merged 794711 795825
> --
Stopping processing here.

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



Bug#802737: pdns-tools: fails to upgrade from 'testing' - trying to overwrite /usr/share/man/man8/dnsscope.8.gz

2015-10-25 Thread Christian Hofstaedtler
Control: tags -1 + confirmed

* Andreas Beckmann  [151023 03:03]:
> >From the attached log (scroll to the bottom...):
> 
>   Selecting previously unselected package pdns-tools.
>   Preparing to unpack .../pdns-tools_3.4.6-2_amd64.deb ...
>   Unpacking pdns-tools (3.4.6-2) ...
>   dpkg: error processing archive 
> /var/cache/apt/archives/pdns-tools_3.4.6-2_amd64.deb (--unpack):
>trying to overwrite '/usr/share/man/man8/dnsscope.8.gz', which is also in 
> package pdns-server 3.4.6-1
>   dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
>   Errors were encountered while processing:
>/var/cache/apt/archives/pdns-tools_3.4.6-2_amd64.deb

Thanks for catching this!

I'll upload a fixed version soon.

Best,
-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  `-



signature.asc
Description: PGP signature


Bug#802958: aptitude: artificial report to prevent migrating the package to testing

2015-10-25 Thread Manuel A. Fernandez Montecelo
Package: aptitude
Version: 0.7.4-1
Severity: serious

0.7.4 will migrate to testing soon, so this is a way to hold the migration.  It
is not very elegant and it would be nice to have another way to achieve this
other than with changes in BTS, but I don't think that there are any.

The reason for holding the migration is because I think that 0.7.2 currently in
testing is more "stable" than the new ones, and it's better to give more time of
exposure in unstable to the changes in .3 and .4, some of which have profound
implications, and the fixes or new features are nice to have but not urgent.

--
Manuel



Bug#802102: marked as done (mps-youtube: FTBFS: ImportError: No module named 'pafy')

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 15:54:24 +
with message-id 
and subject line Bug#802102: fixed in mps-youtube 0.2.5-4
has caused the Debian Bug report #802102,
regarding mps-youtube: FTBFS: ImportError: No module named 'pafy'
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.)


-- 
802102: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802102
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mps-youtube
Version: 0.2.5-3
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

I: pybuild base:170: cd /mps-youtube-0.2.5/.pybuild/pythonX.Y_3.5/build; 
python3.5 -m unittest discover -v 
mps_youtube (unittest.loader._FailedTest) ... ERROR

==
ERROR: mps_youtube (unittest.loader._FailedTest)
--
ImportError: Failed to import test module: mps_youtube
Traceback (most recent call last):
  File "/usr/lib/python3.5/unittest/loader.py", line 462, in _find_test_path
package = self._get_module_from_name(name)
  File "/usr/lib/python3.5/unittest/loader.py", line 369, in 
_get_module_from_name
__import__(name)
  File 
"/mps-youtube-0.2.5/.pybuild/pythonX.Y_3.5/build/mps_youtube/__init__.py", line 
1, in 
from .main import init
  File "/mps-youtube-0.2.5/.pybuild/pythonX.Y_3.5/build/mps_youtube/main.py", 
line 58, in 
import pafy
ImportError: No module named 'pafy'


--
Ran 1 test in 0.000s

FAILED (errors=1)
E: pybuild pybuild:262: test: plugin distutils failed with: exit code=1: cd 
/mps-youtube-0.2.5/.pybuild/pythonX.Y_3.5/build; python3.5 -m unittest discover 
-v 

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/mps-youtube.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: mps-youtube
Source-Version: 0.2.5-4

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

Debian distribution maintenance software
pp.
Zlatan Todoric  (supplier of updated mps-youtube 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: Sun, 25 Oct 2015 14:14:17 +0100
Source: mps-youtube
Binary: mps-youtube
Architecture: source all
Version: 0.2.5-4
Distribution: unstable
Urgency: medium
Maintainer: Zlatan Todoric 
Changed-By: Zlatan Todoric 
Description:
 mps-youtube - Terminal based YouTube jukebox with playlist management
Closes: 802102
Changes:
 mps-youtube (0.2.5-4) unstable; urgency=medium
 .
   * Fixing FTBFS be adding pafy to Build-Depends (Closes:#802102)
Checksums-Sha1:
 8838d80602d2249a4576926f0dd54e2c8106f5b3 1785 mps-youtube_0.2.5-4.dsc
 92938603c372473ceb46671232d6bacf0dd07b4c 4964 mps-youtube_0.2.5-4.debian.tar.xz
 b0306238634866a6fd460ed8950e709e8181e94d 55028 mps-youtube_0.2.5-4_all.deb
Checksums-Sha256:
 4f1cd24c9053d4fc796293e67b5dc14179b052d4669f6f85a78a7c5078eb7c25 1785 
mps-youtube_0.2.5-4.dsc
 eb809001674111a72a0efe24703fe00ca9f56b1c387524d8a7af0a03ec49aa22 4964 
mps-youtube_0.2.5-4.debian.tar.xz
 d4a984b5cf51591f00ce5a17075f7eee8477c168703fb017d5a73fc4c24c2645 55028 
mps-youtube_0.2.5-4_all.deb
Files:
 caba4ac3775011784614821d2c1a3306 1785 utils extra mps-youtube_0.2.5-4.dsc
 fd30d3780fcdf3c4353b77ab143c8194 4964 utils extra 
mps-youtube_0.2.5-4.debian.tar.xz
 49425b655bd50c7db138302810376c24 55028 utils extra mps-youtube_0.2.5-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWLNzqAAoJEHLTQsHpUUMGNEEP/RC6Y3Hye9eZ+1jXzmyFBHVX
Anf0iOqiB/gZpllyObEOiXE8+z707MNBfFVPJg9dDQ9SIm+8bijfm23Z7wFPLcUL

Bug#802810: marked as done (ncurses: FTBFS on powerpc: /usr/bin/ld:resulting.map:814: syntax error in VERSION script)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 15:54:41 +
with message-id 
and subject line Bug#802810: fixed in ncurses 6.0+20151024-1
has caused the Debian Bug report #802810,
regarding ncurses: FTBFS on powerpc: /usr/bin/ld:resulting.map:814: syntax 
error in VERSION script
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.)


-- 
802810: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802810
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ncurses
Version: 6.0+20151017-1
Severity: serious
X-Debbugs-CC: debian-powe...@lists.debian.org
Tags: help

On the powerpc buildd, building the 64-bit libtinfo failed:

,
| gcc -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security  
--param max-inline-insns-single=1200 -shared -Wl,--version-script,resulting.map 
-Wl,-soname,`basename ../lib/libtinfo.so.5.9 .5.9`.5,-stats,-lc -o 
../lib/libtinfo.so.5.9 ../obj_s/access.o ../obj_s/add_tries.o 
../obj_s/alloc_ttype.o ../obj_s/codes.o ../obj_s/comp_captab.o 
../obj_s/comp_error.o ../obj_s/comp_hash.o ../obj_s/db_iterator.o 
../obj_s/doalloc.o ../obj_s/entries.o ../obj_s/fallback.o ../obj_s/free_ttype.o 
../obj_s/getenv_num.o ../obj_s/home_terminfo.o ../obj_s/init_keytry.o 
../obj_s/lib_acs.o ../obj_s/lib_baudrate.o ../obj_s/lib_cur_term.o 
../obj_s/lib_data.o ../obj_s/lib_has_cap.o ../obj_s/lib_kernel.o 
../obj_s/lib_keyname.o ../obj_s/lib_longname.o ../obj_s/lib_napms.o 
../obj_s/lib_options.o ../obj_s/lib_raw.o ../obj_s/lib_setup.o 
../obj_s/lib_termcap.o ../obj_s/lib_termname.o ../obj_s/lib_tgoto.o 
../obj_s/lib_ti.o ../obj_s/lib_tparm.o ../obj_s/lib_tputs.o 
../obj_s/lib_trace.o ../obj_s/lib_ttyflags.o ../obj_s/lib_twait.o 
../obj_s/name_match.o ../obj_s/names.o ../obj_s/obsolete.o 
../obj_s/read_entry.o ../obj_s/read_termcap.o ../obj_s/strings.o 
../obj_s/tries.o ../obj_s/trim_sgr0.o ../obj_s/unctrl.o ../obj_s/visbuf.o 
../obj_s/define_key.o ../obj_s/hashed_db.o ../obj_s/key_defined.o 
../obj_s/keybound.o ../obj_s/keyok.o ../obj_s/version.o -L../lib  -Wl,-z,relro  
| /usr/bin/ld:resulting.map:814: syntax error in VERSION script
| collect2: error: ld returned 1 exit status
| Makefile:978: recipe for target '../lib/libtinfo.so.5.9' failed
| make[2]: *** [../lib/libtinfo.so.5.9] Error 1
| make[2]: Leaving directory '/«BUILDDIR»/ncurses-6.0+20151017/obj-64/ncurses'
| Makefile:113: recipe for target 'all' failed
| make[1]: *** [all] Error 2
| make[1]: Leaving directory '/«BUILDDIR»/ncurses-6.0+20151017/obj-64'
| debian/rules:309: recipe for target 'build-64' failed
| make: *** [build-64] Error 2
`

Help from the powerpc porters would be appreciated.  To investigate the
issue, run "debian/rules build-64".
--- End Message ---
--- Begin Message ---
Source: ncurses
Source-Version: 6.0+20151024-1

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

Debian distribution maintenance software
pp.
Sven Joachim  (supplier of updated ncurses 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, 25 Oct 2015 15:25:20 +0100
Source: ncurses
Binary: libtinfo5 libncurses5 libtinfo-dev libtinfo5-dbg libncurses5-dev 
libncurses5-dbg libncursesw5 libncursesw5-dev libncursesw5-dbg lib64ncurses5 
lib64ncurses5-dev lib32ncurses5 lib32ncurses5-dev lib32ncursesw5 
lib32ncursesw5-dev lib64tinfo5 lib32tinfo5 lib32tinfo-dev ncurses-bin 
ncurses-base ncurses-term ncurses-examples ncurses-doc
Architecture: source
Version: 6.0+20151024-1
Distribution: unstable
Urgency: low
Maintainer: Craig Small 
Changed-By: Sven Joachim 
Description:
 lib32ncurses5 - shared libraries for terminal handling (32-bit)
 lib32ncurses5-dev - developer's libraries for ncurses (32-bit)
 lib32ncursesw5 - shared libraries for terminal handling (wide character 
support) (
 lib32ncursesw5-dev - developer's libraries for ncursesw (32-bit)
 lib32tinfo-dev - developer's library for the low-level terminfo library 
(32-bit)
 lib32tinfo5 - shared low-level terminfo library for terminal 

Bug#801302: pytest-localserver: FTBFS due to problems with Python 3.5

2015-10-25 Thread Daniel Stender
Control: tags -1 + pending

http://anonscm.debian.org/cgit/python-modules/packages/pytest-localserver.git/commit/?id=5c77d9754d690e2e699a89410f3404851e28cd67

-- 
4096R/DF5182C8
46CB 1CA8 9EA3 B743 7676 1DB9 15E0 9AF4 DF51 82C8
LPI certified Linux admin (LPI000329859 64mz6f7kt4)
http://www.danielstender.com/blog/



Processed: pytest-localserver: FTBFS due to problems with Python 3.5

2015-10-25 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + pending
Bug #801302 [src:pytest-localserver] pytest-localserver: FTBFS due to problems 
with Python 3.5
Added tag(s) pending.

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



Bug#802618: Bug #802618

2015-10-25 Thread Julien Cristau
On Sun, Oct 25, 2015 at 18:31:41 +0100, mario_lu...@tiscali.it wrote:

>  Hello Andreas.
> I have done:
> # sudo aptitude download libpam-systemd
> # sudo dpkg -i --force-all-libpam systemd_227-2_amd64.deb

Why would you do something silly like that?  Just install the package
properly.

Cheers,
Julien


signature.asc
Description: PGP signature


Bug#802976: Should this package be removed?

2015-10-25 Thread Moritz Muehlenhoff
Package: bluemindo
Severity: serious

- Dead upstream (the current 0.3 release is from 2009)
- Relies on gstreamer 0.10 which is scheduled for removal
- Unmaintained (last maintainer upload in 2010)
- Low popcon and plenty of alternatives

Cheers,
Moritz



Bug#778123: marked as done (slepc: ftbfs with GCC-5)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 19:25:30 +
with message-id 
and subject line Bug#778123: fixed in slepc 3.6.1.dfsg1-2
has caused the Debian Bug report #778123,
regarding slepc: ftbfs with GCC-5
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.)


-- 
778123: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778123
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:slepc
Version: 3.4.2.dfsg-2
Severity: normal
Tags: sid stretch
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-5

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

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

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc5-20150205/slepc_3.4.2.dfsg-2_unstable_gcc5.log
The last lines of the build log are at the end of this report.

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

  apt-get -t experimental install g++ 

Common build failures are C11 as the default C mode, new warnings
resulting in build failures with -Werror turned on, or new/dropped
symbols in Debian symbols files.  For other C/C++ related build failures
see the porting guide at http://gcc.gnu.org/gcc-5/porting_to.html

[...]
libfast in: /«PKGBUILDDIR»/src/ds/impls/ghep
libfast in: /«PKGBUILDDIR»/src/ds/impls/ghiep
libfast in: /«PKGBUILDDIR»/src/ds/impls/gnhep
libfast in: /«PKGBUILDDIR»/src/ds/impls/svd
libfast in: /«PKGBUILDDIR»/src/ds/impls/nep
libfast in: /«PKGBUILDDIR»/src/ds/examples
libfast in: /«PKGBUILDDIR»/src/ds/examples/tests
libfast in: /«PKGBUILDDIR»/src/fn
libfast in: /«PKGBUILDDIR»/src/fn/ftn-auto
libfast in: /«PKGBUILDDIR»/src/sys
libfast in: /«PKGBUILDDIR»/src/sys/f90-mod
slepcmod.F:26:11:

 use petscksp
   1
Fatal Error: Cannot read module file 'petscksp.mod' opened at (1), because it 
was created by a different version of GNU Fortran
compilation terminated.
/usr/bin/ar: slepcmod.o: No such file or directory
/bin/cp: cannot stat '*.mod': No such file or directory
makefile:50: recipe for target 'modcopy_slepc' failed
make[8]: *** [modcopy_slepc] Error 1
makefile:45: recipe for target 'buildmod_slepc' failed
make[7]: *** [buildmod_slepc] Error 2
/usr/lib/petsc/conf/rules:130: recipe for target 'libfast' failed
make[6]: [libfast] Error 2 (ignored)
libfast in: /«PKGBUILDDIR»/src/sys/ftn-auto
libfast in: /«PKGBUILDDIR»/src/sys/ftn-custom
libfast in: /«PKGBUILDDIR»/src/vec
libfast in: /«PKGBUILDDIR»/src/vec/ftn-auto
libfast in: /«PKGBUILDDIR»/include
libfast in: /«PKGBUILDDIR»/include/finclude
libfast in: /«PKGBUILDDIR»/include/finclude/ftn-auto
libfast in: /«PKGBUILDDIR»/include/finclude/ftn-custom
libfast in: /«PKGBUILDDIR»/include/slepc-private
libfast in: /«PKGBUILDDIR»/docs
Completed building libraries
=
making shared libraries in /«PKGBUILDDIR»/linux-gnu-c-debug/lib
building libslepc.so
=
***ERROR
  Error during compile, check linux-gnu-c-debug/conf/make.log   
  Send all contents of linux-gnu-c-debug/conf to slepc-ma...@grycap.upv.es  

make[1]: *** [all] Error 1
makefile:35: recipe for target 'all' failed
make[1]: Leaving directory '/«PKGBUILDDIR»'
make: *** [build-arch] Error 2
debian/rules:72: recipe for target 'build-arch' failed
dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2
--- End Message ---
--- Begin Message ---
Source: slepc
Source-Version: 3.6.1.dfsg1-2

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

Debian distribution maintenance software
pp.
Drew 

Bug#802706: marked as done (slepc: FTBFS: Unable to link with PETSc)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 19:25:30 +
with message-id 
and subject line Bug#802706: fixed in slepc 3.6.1.dfsg1-2
has caused the Debian Bug report #802706,
regarding slepc: FTBFS: Unable to link with PETSc
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.)


-- 
802706: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802706
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: slepc
Version: 3.6.1.dfsg1-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Builds of slepc in minimal environments (such as on the autobuilders)
have been failing with errors of the form

  Checking environment... done
  Checking PETSc installation... 
  ERROR: Unable to link with PETSc
  ERROR: See "installed-i386-linux-gnu-real/lib/slepc/conf/configure.log" file 
for details
  debian/rules:149: recipe for target 'override_dh_auto_install' failed
  make[1]: *** [override_dh_auto_install] Error 1
  make[1]: Leaving directory '/«PKGBUILDDIR»'
  debian/rules:101: recipe for target 'binary-arch' failed
  make: *** [binary-arch] Error 2
  dpkg-buildpackage: error: fakeroot debian/rules binary-arch gave error exit 
status 2

I was able to reproduce the problem on a porterbox (amd64, as it
happens), and found the issue to be that it was explicitly linking
against libraries that were neither direct nor indirect build
dependencies:

  mpicxx -Wl,-z,relro -Wl,--no-as-needed -g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security  -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -o checklink checklink.o  
-L/usr/lib/petscdir/3.6.2/x86_64-linux-gnu-real/lib 
-L/usr/lib/petscdir/3.6.2/x86_64-linux-gnu-real/lib  -lpetsc_real -ldmumps 
-lzmumps -lsmumps -lcmumps -lmumps_common -lpord -lumfpack -lamd -lcholmod 
-lklu -L/usr/lib -lHYPRE_utilities -lHYPRE_struct_mv -lHYPRE_struct_ls 
-lHYPRE_sstruct_mv -lHYPRE_sstruct_ls -lHYPRE_IJ_mv -lHYPRE_parcsr_ls -lsuperlu 
-lscalapack-openmpi -llapack -lblas -lssl -lcrypto -lptesmumps -lptscotch 
-lptscotcherr -lfftw3 -lfftw3_mpi -lm -L/usr/lib/openmpi/lib 
-L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/x86_64-linux-gnu 
-L/lib/x86_64-linux-gnu -lmpi_f90 -lmpi_f77 -lgfortran -lm -lgfortran -lm 
-lquadmath -lm -lmpi_cxx -lstdc++ -L/usr/lib/openmpi/lib 
-L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/x86_64-linux-gnu 
-L/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -ldl 
 -lmpi -lhwloc -lgcc_s -lpthread -ldl 
  /usr/bin/ld: cannot find -lssl
  /usr/bin/ld: cannot find -lcrypto
  /usr/bin/ld: cannot find -lgfortran

Could you please take a look?  Given that Debian builds PETSc as a
shared library, it shouldn't be necessary to list any other libraries
on the command line.  However, if the build system makes that hard to
avoid, please compensate by listing libgfortran-5-dev and libssl-dev
in Build-Depends.  (It's unfortunate that there's no generic
libgfortran-dev, though I suppose you could list gfortran.)

Either way, please confirm with pbuilder or the like that there aren't
any further errors in minimal environments.

Thanks!
--- End Message ---
--- Begin Message ---
Source: slepc
Source-Version: 3.6.1.dfsg1-2

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

Debian distribution maintenance software
pp.
Drew Parsons  (supplier of updated slepc 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, 25 Oct 2015 12:04:35 +0800
Source: slepc
Binary: slepc-dev libslepc3.6.1-dev libslepc3.6 libslepc3.6.1-dbg 
slepc3.6.1-doc libslepc-complex-3.6.1-dev libslepc-complex-3.6 
libslepc-complex-3.6.1-dbg
Architecture: source amd64 all
Version: 3.6.1.dfsg1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Drew Parsons 
Description:
 libslepc-complex-3.6 - Scalable Library for Eigenvalue Problem Computations
 libslepc-complex-3.6.1-dbg - Scalable Library for Eigenvalue 

Bug#802988: File conflict with golang-go 2:1.5.1-1 (/usr/lib/go/pkg/tool/linux_amd64/cover)

2015-10-25 Thread Russ Allbery
Package: golang-golang-x-tools
Version: 1:0.0~git20150716.0.87156cb+dfsg1-4
Severity: serious

Unpacking golang-golang-x-tools (1:0.0~git20150716.0.87156cb+dfsg1-4) ...
dpkg: error processing archive 
/var/cache/apt/archives/golang-golang-x-tools_1%3a0.0~git20150716.0.87156cb+dfsg1-4_amd64.deb
 (--unpack):
 trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/cover', which is also in 
package golang-go 2:1.5.1-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)

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

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



Processed: Re: Should longomatch be removed?

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 801072 ftp.debian.org
Bug #801072 [longomatch] Should longomatch be removed?
Bug reassigned from package 'longomatch' to 'ftp.debian.org'.
Ignoring request to alter found versions of bug #801072 to the same values 
previously set
Ignoring request to alter fixed versions of bug #801072 to the same values 
previously set
> retitle 801072 RM: longomatch - outdated, unmaintained, unused, depends on 
> legacy libs
Bug #801072 [ftp.debian.org] Should longomatch be removed?
Changed Bug title to 'RM: longomatch - outdated, unmaintained, unused, depends 
on legacy libs' from 'Should longomatch be removed?'
> thanks
Stopping processing here.

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



Bug#801072: Should longomatch be removed?

2015-10-25 Thread Moritz Mühlenhoff
reassign 801072 ftp.debian.org
retitle 801072 RM: longomatch - outdated, unmaintained, unused, depends on 
legacy libs
thanks

On Mon, Oct 05, 2015 at 11:13:06PM +0200, Moritz Muehlenhoff wrote:
> Package: longomatch
> Severity: serious
> 
> The version is in the archive is totally oudated compared to
> upstream and depends on gstreamer 0.10 legacy libs. popcon
> usage is virtually non-existant.
> 
> Please update the package or reassign this bug to
> ftp.debian.org for removal.

No objections in three weeks, reassigning to ftp.debian.org

Cheers,
 Moritz



Bug#802061: marked as done (bookkeeper: FTBFS: Missing: org.jboss.netty:netty:jar:debian)

2015-10-25 Thread Debian Bug Tracking System
Your message dated Sun, 25 Oct 2015 18:48:54 +
with message-id 
and subject line Bug#802061: fixed in bookkeeper 4.2.4-3
has caused the Debian Bug report #802061,
regarding bookkeeper: FTBFS: Missing: org.jboss.netty:netty:jar:debian
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.)


-- 
802061: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802061
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: bookkeeper
Version: 4.2.4-2
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

[INFO] Building bookkeeper-server
[INFO]task-segment: [package]
[INFO] 
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.jboss.netty:netty:jar:debian

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.jboss.netty -DartifactId=netty 
-Dversion=debian -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
  mvn deploy:deploy-file -DgroupId=org.jboss.netty -DartifactId=netty 
-Dversion=debian -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] 
-DrepositoryId=[id]

  Path to dependency: 
1) org.apache.bookkeeper:bookkeeper-server:jar:4.2.4
2) org.jboss.netty:netty:jar:debian

--
1 required artifact is missing.

for artifact: 
  org.apache.bookkeeper:bookkeeper-server:jar:4.2.4

from the specified remote repositories:
  central (https://repo1.maven.org/maven2)



NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.



Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/bookkeeper.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: bookkeeper
Source-Version: 4.2.4-3

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

Debian distribution maintenance software
pp.
tony mancill  (supplier of updated bookkeeper 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, 25 Oct 2015 10:57:24 -0700
Source: bookkeeper
Binary: libbookkeeper-java
Architecture: source all
Version: 4.2.4-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: tony mancill 
Description:
 libbookkeeper-java - Replicated log service
Closes: 802061
Changes:
 bookkeeper (4.2.4-3) unstable; urgency=medium
 .
   * Team upload.
   * Revert libnetty-3.9-java build-dep to libnetty-java.
 Tweak debian/maven.rules for netty 4.x. (Closes: #802061)
Checksums-Sha1:
 85b3cd307a83aaa432d384a57d7da7410e12b0b2 2342 bookkeeper_4.2.4-3.dsc
 b485fe1842edbae12f393d27fd19031a3de3e6ea 3452 bookkeeper_4.2.4-3.debian.tar.xz
 078c3e58727c4cb69ecb5edc35bdcd22b2277e1a 697700 
libbookkeeper-java_4.2.4-3_all.deb
Checksums-Sha256:
 d988d908fb11fab9d629027649f86d5c525e1a44c42ac5dddc51f461196502bc 2342 
bookkeeper_4.2.4-3.dsc
 1548d3c75e197654d7ce962b2f0208dbb5f4cb059b57955de5f0dcaf01985a6c 3452 
bookkeeper_4.2.4-3.debian.tar.xz
 c7fca902e6aeb84ada24597f4587ea37c0f71d955b442c4030d5d06bf4d3e28b 697700 
libbookkeeper-java_4.2.4-3_all.deb
Files:
 f7244d655a2e1929dc0e5522dc984992 2342 java optional bookkeeper_4.2.4-3.dsc
 79e407a357445360b5ef279e34c3dff3 3452 java optional 
bookkeeper_4.2.4-3.debian.tar.xz
 4552d86065b9648cab6f170c1492a195 697700 java optional 

Bug#802976: Should this package be removed?

2015-10-25 Thread Thibaut Girka
On Sun, Oct 25, 2015 at 07:41:29PM +0100, Moritz Muehlenhoff wrote:
> Package: bluemindo
> Severity: serious
> 
> - Dead upstream (the current 0.3 release is from 2009)

A new major version is on the way and should be released soon.

> - Relies on gstreamer 0.10 which is scheduled for removal

This won't be the case anymore with the new release.

> - Unmaintained (last maintainer upload in 2010)

Indeed. I'm planning to package the upcoming version, though.

> - Low popcon and plenty of alternatives

True…

Regards,
Thibaut Girka.


signature.asc
Description: PGP signature


Bug#801833: desmume: Desmume crashes when starting

2015-10-25 Thread Evgeni Golov
Hi,

On Wed, Oct 14, 2015 at 10:26:07PM -0300, Alejandro Carrazzoni wrote:

> When I run desmume, it crashes right after starting, with the following error:
> 
> (desmume:6776): Gdk-CRITICAL **: IA__gdk_cairo_create: assertion
> 'GDK_IS_DRAWABLE (drawable)' failed
> Violación de segmento

Thanks for reporting this bug!
I can reproduce it on my machine and am happy to tell you that it is 
fixed in the next upstream release I will be uploading shortly.

Thanks again
Evgeni

-- 
Bruce Schneier can read and understand Perl programs.



Bug#793855: DoS, Shibboleth SP software crashes on well-formed but invalid XML (CVE-2015-0851)

2015-10-25 Thread Salvatore Bonaccorso
Hi,

On Thu, Sep 24, 2015 at 08:54:08AM +0200, Ferenc Wagner wrote:
> Salvatore Bonaccorso  writes:
> 
> > Any news for the fix to unstable for CVE-2015-0851?
> 
> Sorry, I got bogged down in another department.  It isn't forgotten,
> though, I expect to tend to it in a couple of days.

*ping*? ;-)

Regards,
Salvatore



Processed: unarchiving 792857

2015-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> unarchive 792857
Bug #792857 {Done: Emmanuel Bourg } [src:activemq] 
CVE-2014-3576
Unarchived Bug 792857
> thanks
Stopping processing here.

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