Processed: Re: Bug#777583: Incorrect debian/copyright for smartmontools

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

> retitle 777583 incorrect debian/copyright for smartmontools violates Debian 
> policy
Bug #777583 [smartmontools] debian/copyright for smartmontools is too 
restrictive
Changed Bug title to 'incorrect debian/copyright for smartmontools violates 
Debian policy' from 'debian/copyright for smartmontools is too restrictive'
> severity 777583 serious
Bug #777583 [smartmontools] incorrect debian/copyright for smartmontools 
violates Debian policy
Severity set to 'serious' from 'wishlist'
> thanks
Stopping processing here.

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


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



Processed: your mail

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

> fixed 757413 94
Bug #757413 {Done: Steve McIntyre } [partman-target] 
debian-installer: Please do not add mount point on /media/usb0 because create 
conflict with mount point create by kdm desktop session
Marked as fixed in versions partman-target/94.
> thanks
Stopping processing here.

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


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



Processed (with 1 errors): your mail

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

> reassign 757413 partman-target
Bug #757413 {Done: Steve McIntyre } [debian-installer] 
debian-installer: Please do not add mount point on /media/usb0 because create 
conflict with mount point create by kdm desktop session
Bug reassigned from package 'debian-installer' to 'partman-target'.
No longer marked as found in versions debian-installer/20140802.
No longer marked as fixed in versions partman-target/94.
> severity 757413 serious
Bug #757413 {Done: Steve McIntyre } [partman-target] 
debian-installer: Please do not add mount point on /media/usb0 because create 
conflict with mount point create by kdm desktop session
Severity set to 'serious' from 'important'
> thansk
Unknown command or malformed arguments to command.
>
End of message, stopping processing here.

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


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



Bug#773359: marked as done (package tbb_4.2~20140122-4 FTBFS on mips and mipsel)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 22:56:31 -0500
with message-id 

and subject line 
has caused the Debian Bug report #773359,
regarding package tbb_4.2~20140122-4 FTBFS on mips and mipsel
to be marked as done.

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

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


-- 
773359: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773359
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: tbb
Version: 4.2~20140122-4
Severity: serious
Tags: sid + patch
Justification: FTBFS
User: debian-m...@lists.debian.org
Usertags: mips-patch

Hello,
Package tbb_4.2~20140122-4 FTBFS on mips and mipsel.

Mips platform does not have 64-bit __sync_* operations.
To resolve this issue it is needed to use corresponding
__atomic_* from libatomic library. 

https://buildd.debian.org/status/package.php?p=tbb&suite=sid

build logs:
https://buildd.debian.org/status/fetch.php?pkg=tbb&arch=mips&ver=4.2~20140122-4&stamp=1415055684
https://buildd.debian.org/status/fetch.php?pkg=tbb&arch=mipsel&ver=4.2~20140122-4&stamp=1415054347

I have attached a patch resolving this issue.

Thank you!

Regards,
Jurica--- tbb-4.2~20140122.orig/build/linux.gcc.inc
+++ tbb-4.2~20140122/build/linux.gcc.inc
@@ -80,6 +80,14 @@ endif
 TBB_ASM.OBJ=
 MALLOC_ASM.OBJ=
 
+ifeq (mips,$(arch))
+LINK_FLAGS += -latomic
+endif
+
+ifeq (mipsel,$(arch))
+LINK_FLAGS += -latomic
+endif
+
 ifeq (ia64,$(arch))
 # Position-independent code (PIC) is a must on IA-64 architecture, even for regular (not shared) executables
 CPLUS_FLAGS += $(PIC_KEY)
--- tbb-4.2~20140122.orig/build/linux.inc
+++ tbb-4.2~20140122/build/linux.inc
@@ -76,6 +76,12 @@ ifndef arch
 ifeq ($(deb_host_arch),i386)
 export arch:=ia32
 endif
+	ifeq ($(deb_host_arch),mips)
+export arch:=mips
+endif
+ifeq ($(deb_host_arch),mipsel)
+export arch:=mipsel
+endif
 ifndef arch
 export arch:=$(uname_m)
 $(warning "Unknown arch: " $(arch))
--- tbb-4.2~20140122.orig/include/tbb/machine/gcc_generic.h
+++ tbb-4.2~20140122/include/tbb/machine/gcc_generic.h
@@ -68,14 +68,27 @@
 #define __TBB_full_memory_fence()   __sync_synchronize()
 #define __TBB_control_consistency_helper()  __sync_synchronize()
 
-#define __TBB_MACHINE_DEFINE_ATOMICS(S,T) \
-inline T __TBB_machine_cmpswp##S( volatile void *ptr, T value, T comparand ) {\
-return __sync_val_compare_and_swap(reinterpret_cast(ptr),comparand,value);  \
-} \
-  \
-inline T __TBB_machine_fetchadd##S( volatile void *ptr, T value ) {   \
-return __sync_fetch_and_add(reinterpret_cast(ptr),value);   \
-} \
+#if defined (__mips) && !defined (__mips64)
+#define __TBB_MACHINE_DEFINE_ATOMICS(S,T) \
+inline T __TBB_machine_cmpswp##S( volatile void *ptr, T value, T comparand ) {\
+__atomic_compare_exchange(reinterpret_cast(ptr),&comparand,&value,  \
+false,__ATOMIC_SEQ_CST,__ATOMIC_SEQ_CST); \
+return comparand; \
+} \
+  \
+inline T __TBB_machine_fetchadd##S( volatile void *ptr, T value ) {   \
+return __atomic_fetch_add(reinterpret_cast(ptr),value,__ATOMIC_SEQ_CST);\
+}
+#else
+	#define __TBB_MACHINE_DEFINE_ATOMICS(S,T) \
+	inline T __TBB_machine_cmpswp##S( volatile void *ptr, T value, T comparand ) {\
+	return __sync_val_compare_and_swap(reinterpret_cast(ptr),comparand,value);  \
+	} \
+	  \
+	inline T __TBB_machine_fetchadd##S( vol

Bug#775842: [moodle-packaging] Bug#775842: Bug#775842: 3 left

2015-02-13 Thread Hubert Chathi
On Fri, 13 Feb 2015 20:11:34 +0100, "Thijs Kinkhorst"  said:

> On Fri, February 13, 2015 16:10, Joost van Baal-Ilić wrote:

>>> CVE-2013-3630
>> 
>> https://tracker.moodle.org/browse/MDL-41449
>> 
>> I'll apply for a Jira account later...  :-/

You need to be a member of the security group to see the issue.

> I can read it. The issue is still unfixed and under embargo.

Michael closed the issue as "Not a bug".  It looks like the consesus was
that the issue could only be done by an administrator, and that
administrators need to be trusted.

-- 
Hubert Chathi  -- Jabber: hub...@uhoreg.ca
PGP/GnuPG key: 1024D/124B61FA http://www.uhoreg.ca/
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA


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



Processed: ovirt rc bugs patch

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

> tags 774437 + patch
Bug #774437 [ovirt-guest-agent] ovirt-guest-agent: fails in preinst due to 
hardcoded uid and gid values
Added tag(s) patch.
> tags 767028 + patch
Bug #767028 [ovirt-guest-agent] ovirt-guest-agent: doesn't work on hosts
Added tag(s) patch.
> thanks
Stopping processing here.

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


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



Bug#767028: ovirt-guest-agent: fails to install

2015-02-13 Thread Cameron Norman

Hello,

I have attached a debdiff that should fix #767028 and #774437. It does 
so by using invoke-rc.d to reload the udev rules, and checking that the 
necessary filesystems are mounted before using the trigger and settle. 
It also eliminates the hard coded uid/gid values.


Please take a look, László.

Thank you,
--
Cameron Norman
diff -Nru ovirt-guest-agent-1.0.10.2.dfsg/debian/changelog ovirt-guest-agent-1.0.10.2.dfsg/debian/changelog
--- ovirt-guest-agent-1.0.10.2.dfsg/debian/changelog	2014-10-20 12:00:09.0 -0700
+++ ovirt-guest-agent-1.0.10.2.dfsg/debian/changelog	2015-02-13 17:43:40.0 -0800
@@ -1,3 +1,11 @@
+ovirt-guest-agent (1.0.10.2.dfsg-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Do not hardcode UID/GID values (closes: #774437).
+  * Do not use udevadm in chroot (closes: #767028).
+
+ -- Cameron Norman   Fri, 13 Feb 2015 17:39:51 -0800
+
 ovirt-guest-agent (1.0.10.2.dfsg-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru ovirt-guest-agent-1.0.10.2.dfsg/debian/postinst ovirt-guest-agent-1.0.10.2.dfsg/debian/postinst
--- ovirt-guest-agent-1.0.10.2.dfsg/debian/postinst	2014-08-10 09:49:46.0 -0700
+++ ovirt-guest-agent-1.0.10.2.dfsg/debian/postinst	2015-02-13 18:44:39.0 -0800
@@ -1,8 +1,15 @@
 #!/bin/sh
 set -e
 
-udevadm control --reload-rules
-udevadm trigger --subsystem-match="virtio-ports" --attr-match="name=com.redhat.rhevm.vdsm"
-udevadm settle
+if test -x /usr/sbin/invoke-rc.d ; then
+	invoke-rc.d udev reload >/dev/null 2>&1 || true
+fi
+
+if test -d /sys/class && \
+   test -e /proc/filesystems && \
+   ! ischroot; then
+	udevadm trigger --subsystem-match="virtio-ports" --attr-match="name=com.redhat.rhevm.vdsm"
+	udevadm settle
+fi
 
 #DEBHELPER#
diff -Nru ovirt-guest-agent-1.0.10.2.dfsg/debian/preinst ovirt-guest-agent-1.0.10.2.dfsg/debian/preinst
--- ovirt-guest-agent-1.0.10.2.dfsg/debian/preinst	2014-08-10 09:50:12.0 -0700
+++ ovirt-guest-agent-1.0.10.2.dfsg/debian/preinst	2015-02-13 17:55:45.0 -0800
@@ -2,7 +2,7 @@
 set -e
 
 
-getent group ovirtagent >/dev/null || groupadd -r -g 175 ovirtagent
-getent passwd ovirtagent > /dev/null || useradd -u 175 -g 175 -o -r ovirtagent -c "oVirt Guest Agent" -d /usr/share/ovirt-guest-agent -s /sbin/nologin
+getent group ovirtagent >/dev/null || groupadd -r ovirtagent
+getent passwd ovirtagent > /dev/null || useradd -r ovirtagent -g ovirtagent -c "oVirt Guest Agent" -d /usr/share/ovirt-guest-agent -s /sbin/nologin
 
 #DEBHELPER#


Bug#775691: marked as done (matplotlib: CVE-2013-1424: printf buffer overrun)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:49:00 +
with message-id 
and subject line Bug#775691: fixed in matplotlib 1.4.2-3.1
has caused the Debian Bug report #775691,
regarding matplotlib: CVE-2013-1424: printf buffer overrun
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.)


-- 
775691: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775691
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: src:matplotlib
version: 0.99.3-1
severity: serious
tag: security, patch

Matt Giuca reported a matplotlib buffer overrun to the private
security team request tracker in 2013, which ended up falling through
the cracks at the time.  See below for the original message and a
proposed patch attached.

On Wed, Jan 23, 2013 at 11:21:14PM +, Matt Giuca via RT wrote:
> The bug is in 
> src/mplutils.cpp.
> The Printf::Printf constructor accepts an arbitrary format string and
> values, and dumps it into a 1024-byte buffer with vsprintf. This is
> obviously not safe, as the user can simply supply enough bytes to overflow
> the 1024-byte buffer.
>
> The bug can be exploited from Python code, through a number of
> Python-exposed functions that call Printf. The most obvious entry-point I
> can find is ft2font.FT2Font constructor:
>
> >>> from matplotlib import ft2font
> >>> ft2font.FT2Font('x' * 2048)
> *** glibc detected *** python: free(): invalid next size (normal):
> 0x029f1480 ***
>
> There are several other Python functions that call Printf with
> user-supplied data, but this is the cleanest one.
>
> As for what this can be used for: I'm not an expert in exploiting
> vulnerabilities, but it allows any user who can supply either Python code
> to be executed, or certain specific strings such as the name of a font, to
> write an arbitrary number of bytes to a location on the heap, and I know
> that that can potentially be used to compromise a machine.
diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py
index c7e3141..37feb20 100644
--- a/lib/matplotlib/__init__.py
+++ b/lib/matplotlib/__init__.py
@@ -1114,6 +1114,7 @@ default_test_modules = [
 'matplotlib.tests.test_lines',
 'matplotlib.tests.test_mathtext',
 'matplotlib.tests.test_mlab',
+'matplotlib.tests.test_mplutils',
 'matplotlib.tests.test_patches',
 'matplotlib.tests.test_pickle',
 'matplotlib.tests.test_rcparams',
diff --git a/lib/matplotlib/tests/test_mplutils.py b/lib/matplotlib/tests/test_mplutils.py
new file mode 100644
index 000..e37e41c
--- /dev/null
+++ b/lib/matplotlib/tests/test_mplutils.py
@@ -0,0 +1,12 @@
+from __future__ import print_function
+from nose.tools import assert_raises
+from matplotlib import ft2font
+from matplotlib.testing.decorators import knownfailureif
+import sys
+
+def test_printf_buffer():
+"""Tests Printf for buffer overrun."""
+# Use ft2font.FT2Font, which indirectly calls the Printf function in
+# mplutils.cpp.
+# Expect a RuntimeError, since the font is not found.
+assert_raises(RuntimeError, ft2font.FT2Font, 'x' * 2048)
diff --git a/src/mplutils.cpp b/src/mplutils.cpp
index febb97a..af3a2f3 100644
--- a/src/mplutils.cpp
+++ b/src/mplutils.cpp
@@ -18,7 +18,10 @@ Printf::Printf(const char *fmt, ...)
 {
 va_list ap;
 va_start(ap, fmt);
-vsprintf(buffer, fmt, ap);
+vsnprintf(buffer, 1024, fmt, ap);
+// Null-terminate the string. Non-standard C implementations (e.g.,
+// Microsoft Visual C++) do not do this automatically.
+buffer[1023] = '\0';
 va_end(ap);  // look ma - I rememberd it this time
 }
 
--- End Message ---
--- Begin Message ---
Source: matplotlib
Source-Version: 1.4.2-3.1

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

Debian distribution maintenance software
pp.
Michael Gilbert  (supplier of updated matplotlib 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, 13 Feb 2015 23:16:11 +
Source: matplotlib
Binary: python-matplotlib python

Bug#757698: marked as done ([network-manager] network-manager: Not authorized to control networking)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding [network-manager] network-manager: Not authorized to control 
networking
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: network-manager
Version: 0.9.10.0-1
Severity: normal

--- Please enter the report below this line. ---

I cannot control network-manager as a normal user anymore.
I used to be able to use the network-manager KDE tray applet: 
connect/disconnect the wired interface,
connect/disconnect the VPN interfaces.

However after a recent upgrade (systemd? libpam-systemd?) I cannot use it 
anymore.
Clicking the connect/disconnect button on wired interfaces does nothing,
and on VPN interfaces I get this error:

Aug 10 19:31:40 debian NetworkManager[2724]:  Failed to activate 'MyVPN': 
Not authorized to control networking.

I can reproduce this everytime, after a reboot too.
It is reproducible with nmcli too:
$ nmcli connection up MyVPN
Error: Connection activation failed: Not authorized to control networking.

As a workaround I can use sudo to invoke the cli, but I loose the convenience 
of the tray applet
(which is useful with WiFi, but I don't have WiFi on this box):
$ sudo nmcli connection up MyVPN

My user is member of netdev, plugdev, and I haven't changed group membership 
lately:

$ id
uid=1000(edwin) gid=1000(edwin) 
groups=1000(edwin),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),104(scanner),107(bluetooth),109(netdev),122(kvm),123(libvirt)

I am using sysvinit-core and systemd-shim, i.e. I am not using systemd-as-pid1.

systemd logs this to kmsg (I opened a separate bug about that), I don't know if 
it is related:
[   27.565727] systemd-logind[3382]: Failed to enable subscription: No such 
method 'Subscribe'
[   27.566597] systemd-logind[3382]: New seat seat0.
[   27.567357] systemd-logind[3382]: Watching system buttons on 
/dev/input/event1 (Power Button)
[   27.567475] systemd-logind[3382]: Watching system buttons on 
/dev/input/event0 (Power Button)
[   27.570542] systemd-logind[3382]: Failed to start unit user@1000.service: 
Unknown unit: user@1000.service
[   27.570555] systemd-logind[3382]: Failed to start user service: Unknown 
unit: user@1000.service
[   27.572213] systemd-logind[3382]: New session 2 of user edwin.
[   27.572249] systemd-logind[3382]: Linked /tmp/.X11-unix/X0 to 
/run/user/1000/X11-display.
[  841.498260] systemd-logind[3382]: Failed to start unit user@65534.service: 
Unknown unit: user@65534.service
[  841.498272] systemd-logind[3382]: Failed to start user service: Unknown 
unit: user@65534.service
[  841.499580] systemd-logind[3382]: New session c1 of user nobody.
[  841.517534] systemd-logind[3382]: Failed to abandon scope session-c1.scope
[  841.517542] systemd-logind[3382]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc1_2escope
[  841.524278] systemd-logind[3382]: New session c2 of user nobody.
[  841.537574] systemd-logind[3382]: Failed to abandon scope session-c2.scope
[  841.537583] systemd-logind[3382]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc2_2escope
[  841.545551] systemd-logind[3382]: New session c3 of user nobody.
[  900.432607] systemd-logind[3382]: Failed to abandon scope session-c3.scope
[  900.432618] systemd-logind[3382]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc3_2escope


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.14-2-amd64

Debian Release: jessie/sid
  500 unstableftp.ro.debian.org 
  500 testing ftp.ro.debian.org 
1 experimentalftp.ro.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-
libc6   (>= 2.17) | 
libdbus-1-3(>= 1.0.2) | 
libdbus-glib-1-2   (>= 0.102) | 
libgcrypt11(>= 1.4.5) | 
libglib2.0-0  (>= 2.37.3) | 
libgnutls-deb0-28   (>= 3.2.10-0) | 
libgudev-1.0-0   (>= 165) | 
libmm-glib0(>= 1.0.0) | 
libndp0   

Bug#775691: matplotlib: printf buffer overrun

2015-02-13 Thread Michael Gilbert
Hi,

I've uploaded an nmu fixing this issue.  Please see attached patch.

Best wishes,
Mike
diff -Nru matplotlib-1.4.2/debian/changelog matplotlib-1.4.2/debian/changelog
--- matplotlib-1.4.2/debian/changelog	2014-10-30 23:31:05.0 +
+++ matplotlib-1.4.2/debian/changelog	2015-02-14 00:52:10.0 +
@@ -1,3 +1,10 @@
+matplotlib (1.4.2-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix CVE-2013-1424: printf buffer overrun (closes: #775691).
+
+ -- Michael Gilbert   Fri, 13 Feb 2015 23:16:11 +
+
 matplotlib (1.4.2-3) unstable; urgency=medium
 
   * debian/patches/test_backend_with_timeout.patch
diff -Nru matplotlib-1.4.2/debian/patches/matplotlib-printf-buffer-overrun.patch matplotlib-1.4.2/debian/patches/matplotlib-printf-buffer-overrun.patch
--- matplotlib-1.4.2/debian/patches/matplotlib-printf-buffer-overrun.patch	1970-01-01 00:00:00.0 +
+++ matplotlib-1.4.2/debian/patches/matplotlib-printf-buffer-overrun.patch	2015-02-14 00:52:10.0 +
@@ -0,0 +1,39 @@
+--- a/lib/matplotlib/__init__.py
 b/lib/matplotlib/__init__.py
+@@ -1398,6 +1398,7 @@ default_test_modules = [
+ 'matplotlib.tests.test_lines',
+ 'matplotlib.tests.test_mathtext',
+ 'matplotlib.tests.test_mlab',
++'matplotlib.tests.test_mplutils',
+ 'matplotlib.tests.test_patches',
+ 'matplotlib.tests.test_path',
+ 'matplotlib.tests.test_patheffects',
+--- /dev/null
 b/lib/matplotlib/tests/test_mplutils.py
+@@ -0,0 +1,12 @@
++from __future__ import print_function
++from nose.tools import assert_raises
++from matplotlib import ft2font
++from matplotlib.testing.decorators import knownfailureif
++import sys
++
++def test_printf_buffer():
++"""Tests Printf for buffer overrun."""
++# Use ft2font.FT2Font, which indirectly calls the Printf function in
++# mplutils.cpp.
++# Expect a RuntimeError, since the font is not found.
++assert_raises(RuntimeError, ft2font.FT2Font, 'x' * 2048)
+--- a/src/mplutils.cpp
 b/src/mplutils.cpp
+@@ -18,7 +18,10 @@ Printf::Printf(const char *fmt, ...)
+ {
+ va_list ap;
+ va_start(ap, fmt);
+-vsprintf(buffer, fmt, ap);
++vsnprintf(buffer, 1024, fmt, ap);
++// Null-terminate the string. Non-standard C implementations (e.g.,
++// Microsoft Visual C++) do not do this automatically.
++buffer[1023] = '\0';
+ va_end(ap);  // look ma - I rememberd it this time
+ }
+ 
diff -Nru matplotlib-1.4.2/debian/patches/series matplotlib-1.4.2/debian/patches/series
--- matplotlib-1.4.2/debian/patches/series	2014-10-30 23:30:51.0 +
+++ matplotlib-1.4.2/debian/patches/series	2015-02-14 00:52:10.0 +
@@ -7,3 +7,4 @@
 gtk3agg_check_no-multiprocessing.patch
 gtk3cairo_check_no-multiprocessing.patch
 test_backend_with_timeout.patch
+matplotlib-printf-buffer-overrun.patch


Bug#758746: marked as done (kde-workspace-bin: Energy saving schemes have no effect)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding kde-workspace-bin: Energy saving schemes have no effect
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kde-workspace-bin
Version: 4:4.11.11-1
Severity: normal

Dear Maintainer,

After recent upgrade I cannot keep laptop on while lid is closed. It goes in 
sleep mode regardless of energy saving settings.
I use 'Lock screen' but now whenever I close the lid, system goes to sleep mode.
Confirmed on two running laptops.


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

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

Versions of packages kde-workspace-bin depends on:
ii  iso-codes 3.55-1
ii  kde-runtime   4:4.13.3-1
ii  kde-style-oxygen  4:4.11.11-1
ii  kde-workspace-data4:4.11.11-1
ii  kde-workspace-kgreet-plugins  4:4.11.11-1
ii  kscreen   1.0.2.1-1
ii  libc6 2.19-9
ii  libcln6   1.3.3-1
ii  libdbusmenu-qt2   0.9.2-1
ii  libfontconfig12.11.0-6
ii  libfreetype6  2.5.2-1.1
ii  libgcc1   1:4.9.1-7
ii  libgl1-mesa-glx [libgl1]  10.2.5-1
ii  libice6   2:1.0.9-1
ii  libjpeg8  8d1-1
ii  libkactivities6   4:4.13.3-1
ii  libkcmutils4  4:4.14.0-1
ii  libkdeclarative5  4:4.14.0-1
ii  libkdecore5   4:4.14.0-1
ii  libkdesu5 4:4.14.0-1
ii  libkdeui5 4:4.14.0-1
ii  libkfile4 4:4.14.0-1
ii  libkidletime4 4:4.14.0-1
ii  libkio5   4:4.14.0-1
ii  libknewstuff3-4   4:4.14.0-1
ii  libknotifyconfig4 4:4.14.0-1
ii  libkparts44:4.14.0-1
ii  libkpty4  4:4.14.0-1
ii  libkscreensaver5  4:4.11.11-1
ii  libkworkspace4abi24:4.11.11-1
ii  libnepomukcore4   4:4.13.3-1
ii  libpam0g  1.1.8-3
ii  libphonon44:4.7.2-1
ii  libplasma34:4.14.0-1
ii  libplasmagenericshell44:4.11.11-1
ii  libpng12-01.2.50-2
ii  libprocesscore4abi1   4:4.11.11-1
ii  libprocessui4a4:4.11.11-1
ii  libqalculate5 0.9.7-9
ii  libqimageblitz4   1:0.0.6-4
ii  libqjson0 0.8.1-3
ii  libqt4-dbus   4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-declarative4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-sql4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-xml4:4.8.6+git49-gbc62005+dfsg-1
ii  libqtcore44:4.8.6+git49-gbc62005+dfsg-1
ii  libqtgui4 4:4.8.6+git49-gbc62005+dfsg-1
ii  libsm62:1.2.2-1
ii  libsolid4 4:4.14.0-1
ii  libsoprano4   2.9.4+dfsg-1.1
ii  libstdc++64.9.1-7
ii  libstreamanalyzer00.7.8-1.2
ii  libudev1  208-7
ii  libusb-0.1-4  2:0.1.12-24
ii  libx11-6  2:1.6.2-3
ii  libxcursor1   1:1.1.14-1
ii  libxext6  2:1.3.2-1
ii  libxfixes31:5.0.1-2
ii  libxft2   2.3.2-1
ii  libxi62:1.7.4-1
ii  libxinerama1  2:1.1.3-1
ii  libxkbfile1   1:1.0.8-1
ii  libxrandr22:1.4.2-1
ii  libxrender1   1:0.9.8-1
ii  libxtst6  2:1.2.2-1
ii  phonon4:4.7.2-1
ii  plasma-desktop4:4.11.11-1
ii  qdbus 4:4.8.6+git49-gbc62005+dfsg-1
ii  x11-utils 7.7+2
ii  x11-xserver-utils 7.7+3

Versions of packages kde-workspace-bin recommends:
pn  plasma-scriptengines  
ii  polkit-kde-1  0.99.1-1
ii  upower0.99.0-3

Versions of packages kde-workspace-bin suggests:
ii  x11-xkb

Bug#760281: marked as done (xfce4: cannot mount usb drive: "Not authorized to perform operation")

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding xfce4: cannot mount usb drive: "Not authorized to perform operation"
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xfce4
Version: 4.10.1
Severity: important

Having recently updated testing, I discover that I can no longer mount
a USB drive by double-clicking on it in the panel.  (If this should be
reassigned to xfce4-panel or elsewhere, please do so!)  I am running
with a SysV init system, not systemd, so I wonder whether this bug is
similar to that described in
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758557

The error message which pops up says "Failed to mount "drive name" -
Not authorized to perform operation".

   Julian

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

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

Versions of packages xfce4 depends on:
ii  gtk2-engines-xfce  3.0.1-2
ii  libxfce4ui-utils   4.10.0-5
ii  orage  4.10.0-1+b1
ii  thunar 1.6.3-1
ii  xfce4-appfinder4.10.1-1
ii  xfce4-mixer4.10.0-3
ii  xfce4-panel4.10.1-1
ii  xfce4-session  4.10.1-8
ii  xfce4-settings 4.10.1-2
ii  xfconf 4.10.0-2
ii  xfdesktop4 4.10.2-3
ii  xfwm4  4.10.1-2

Versions of packages xfce4 recommends:
ii  desktop-base  7.0.3
ii  tango-icon-theme  0.8.90-5
ii  thunar-volman 0.8.0-4
ii  xfce4-notifyd 0.2.4-3
ii  xorg  1:7.7+7

Versions of packages xfce4 suggests:
pn  gtk3-engines-xfce
ii  xfce4-goodies4.10
ii  xfce4-power-manager  1.2.0-5.1

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: cgmanager
Source-Version: 0.36-2

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

Debian distribution maintenance software
pp.
Serge Hallyn  (supplier of updated cgmanager 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, 13 Feb 2015 13:48:40 -0600
Source: cgmanager
Binary: cgmanager cgmanager-tests libcgmanager0 libcgmanager-dev
Architecture: source amd64 all
Version: 0.36-2
Distribution: unstable
Urgency: medium
Maintainer: Serge Hallyn 
Changed-By: Serge Hallyn 
Description:
 cgmanager  - Central cgroup manager daemon
 cgmanager-tests - Central cgroup manager daemon (tests)
 libcgmanager-dev - Central cgroup manager daemon (dev)
 libcgmanager0 - Central cgroup manager daemon (client library)
Closes: 757348
Changes:
 cgmanager (0.36-2) unstable; urgency=medium
 .
   * import upstream patch to bind-mount / into new root.  (Closes: #757348)
   * import upstream patch to bind-mount /run into new root so that on
 sysvinit the /run/cgmanager.pid file shows up on the host.
Checksums-Sha1:
 021014afcd0350b6684078cd3f4ab961fe140dd8 2052 cgmanager_0.36-2.dsc
 ae11f2590b18ab62d181b0cbc62b093cfed891be 11628 cgmanager_0.36-2.debian.tar.xz
 66a84db1f626a3c09b7f539171fcf360e68ca36f 79426 cgmanager_0.36-2_amd64.deb
 5d61f0af922aa310d272949c68f780ce2ba64d18 13926 cgmanager-tests_0.36-2_all.deb
 602098852e3dd75a082c59e044a0081bdb858c18 40956 libcgmanager0_0.36-2_amd64.deb
 4a7c7cc85adf5a7527a1522b80be9af044d4d9e0 10994 
libcgmanager-dev_0.36-2_amd64.deb
Checksums-Sha256:
 9e350ad67bd46d3f2a9feb882a94d61db64ef8c5df053308728d4dae938b013f 2052 
cgmanager_0.36-2.dsc
 1ef15d2a3b55f3969518fa579eb0b175c5e59b2ff25fd8621ef6abf1ab06c0a3 11628 
cgmanager_0.36-2.debian.tar.xz
 92f40f69a2fe744572cc211902ff57f19c0da5f3c64708ac93e13fef6a141bce 79426 
cgmanager_0.36-2_amd64.deb
 b292b39d8471e2f503d9143623316fbd40f9825f10f08369eb780b294c49e77d 13

Bug#754850: marked as done (regression: no suspend/hibernate on non-systemd systems)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding regression: no suspend/hibernate on non-systemd systems
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: upower
Version: 0.99.0-3
Severity: important

The newest update of upower (0.99.0-3) doesn't appear to be functional
anymore.  As I'm on a desktop, this means suspend and hibernate (obviously,
there's no battery I could test).  These functions don't even show up in
XFCE's logout menu.  On the other hand, pm-utils (pm-suspend from the
command line) are fully functional.

Unlike #718493 which is caused by interactions with logind, my system is
free of any systemd components, so this is an unrelated regression.

upower 0.9.23-2+b2 worked fine.


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

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

Versions of packages upower depends on:
ii  dbus   1.8.6-1
ii  libc6  2.19-5
ii  libdbus-1-31.8.6-1
ii  libdbus-glib-1-2   0.102-1
ii  libglib2.0-0   2.40.0-3
ii  libgudev-1.0-0 204-14
ii  libimobiledevice4  1.1.6+dfsg-2
ii  libplist2  1.11-3
pn  libpolkit-gobject-1-0  
ii  libupower-glib10.9.23-2+b2
ii  libusb-1.0-0   2:1.0.19-1
ii  pm-utils   1.4.1-15
ii  udev   204-14

Versions of packages upower recommends:
ii  policykit-1  0.105-4

upower suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: cgmanager
Source-Version: 0.36-2

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

Debian distribution maintenance software
pp.
Serge Hallyn  (supplier of updated cgmanager 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, 13 Feb 2015 13:48:40 -0600
Source: cgmanager
Binary: cgmanager cgmanager-tests libcgmanager0 libcgmanager-dev
Architecture: source amd64 all
Version: 0.36-2
Distribution: unstable
Urgency: medium
Maintainer: Serge Hallyn 
Changed-By: Serge Hallyn 
Description:
 cgmanager  - Central cgroup manager daemon
 cgmanager-tests - Central cgroup manager daemon (tests)
 libcgmanager-dev - Central cgroup manager daemon (dev)
 libcgmanager0 - Central cgroup manager daemon (client library)
Closes: 757348
Changes:
 cgmanager (0.36-2) unstable; urgency=medium
 .
   * import upstream patch to bind-mount / into new root.  (Closes: #757348)
   * import upstream patch to bind-mount /run into new root so that on
 sysvinit the /run/cgmanager.pid file shows up on the host.
Checksums-Sha1:
 021014afcd0350b6684078cd3f4ab961fe140dd8 2052 cgmanager_0.36-2.dsc
 ae11f2590b18ab62d181b0cbc62b093cfed891be 11628 cgmanager_0.36-2.debian.tar.xz
 66a84db1f626a3c09b7f539171fcf360e68ca36f 79426 cgmanager_0.36-2_amd64.deb
 5d61f0af922aa310d272949c68f780ce2ba64d18 13926 cgmanager-tests_0.36-2_all.deb
 602098852e3dd75a082c59e044a0081bdb858c18 40956 libcgmanager0_0.36-2_amd64.deb
 4a7c7cc85adf5a7527a1522b80be9af044d4d9e0 10994 
libcgmanager-dev_0.36-2_amd64.deb
Checksums-Sha256:
 9e350ad67bd46d3f2a9feb882a94d61db64ef8c5df053308728d4dae938b013f 2052 
cgmanager_0.36-2.dsc
 1ef15d2a3b55f3969518fa579eb0b175c5e59b2ff25fd8621ef6abf1ab06c0a3 11628 
cgmanager_0.36-2.debian.tar.xz
 92f40f69a2fe744572cc211902ff57f19c0da5f3c64708ac93e13fef6a141bce 79426 
cgmanager_0.36-2_amd64.deb
 b292b39d8471e2f503d9143623316fbd40f9825f10f08369eb780b294c49e77d 13926 
cgmanager-tests_0.36-2_all.deb
 cd7cb9b2bb72f699f7e5f09d7916b39372ff9f79996b2d68ea5b719b11af27c5 40956 
libcgmanager0_0.36-2_amd64.deb
 db075d70a658bee17971914ecc7977f

Bug#760366: marked as done (gdm3: Stopped showing any users, no way to log in)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding gdm3: Stopped showing any users, no way to log in
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gdm3
Version: 3.12.2-2.1
Severity: important

Since I upgraded my system today, gdm3 does not show any users for selection
and no input fields asking for user names or passwords. So log-in to anyone is
not possible. I needed to switch to another terminal and install kdm. I'm
hoping for a quick fix so I can switch back to gdm3.



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

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

Versions of packages gdm3 depends on:
ii  accountsservice0.6.37-3
ii  adduser3.113+nmu3
ii  dconf-cli  0.20.0-2
ii  dconf-gsettings-backend0.20.0-2
ii  debconf [debconf-2.0]  1.5.53
ii  gir1.2-gdm33.12.2-2.1
ii  gnome-session-bin  3.12.1-3
ii  gnome-settings-daemon  3.12.2-1+b1
ii  gnome-shell3.12.2-3
ii  gsettings-desktop-schemas  3.12.2-1
ii  guake [x-terminal-emulator]0.4.4-1
ii  libaccountsservice00.6.37-3
ii  libatk1.0-02.12.0-1
ii  libaudit1  1:2.3.7-1
ii  libc6  2.19-10
ii  libcairo-gobject2  1.12.16-3
ii  libcairo2  1.12.16-3
ii  libcanberra-gtk3-0 0.30-2
ii  libcanberra0   0.30-2
ii  libgdk-pixbuf2.0-0 2.30.7-1
ii  libgdm13.12.2-2.1
ii  libglib2.0-0   2.40.0-5
ii  libglib2.0-bin 2.40.0-5
ii  libgtk-3-0 3.12.2-3+b1
ii  libpam-modules 1.1.8-3.1
ii  libpam-runtime 1.1.8-3.1
ii  libpam-systemd 208-8
ii  libpam0g   1.1.8-3.1
ii  libpango-1.0-0 1.36.6-1
ii  libpangocairo-1.0-01.36.6-1
ii  librsvg2-common2.40.3-1
ii  libselinux12.3-1
ii  libsystemd-daemon0 208-8
ii  libsystemd-id128-0 208-8
ii  libsystemd-journal0208-8
ii  libsystemd-login0  208-8
ii  libwrap0   7.6.q-25
ii  libx11-6   2:1.6.2-3
ii  libxau61:1.0.8-1
ii  libxdmcp6  1:1.1.1-1
ii  libxrandr2 2:1.4.2-1
ii  lsb-base   4.1+Debian13
ii  metacity [x-window-manager]1:3.12.0-2
ii  policykit-10.105-6.1
ii  ucf3.0030
ii  x11-common 1:7.7+7
ii  x11-xserver-utils  7.7+3
ii  xfce4-session [x-session-manager]  4.10.1-8
ii  xfwm4 [x-window-manager]   4.10.1-2
ii  xterm [x-terminal-emulator]308-1

Versions of packages gdm3 recommends:
ii  at-spi2-core   2.12.0-2
ii  desktop-base   7.0.3
ii  gnome-icon-theme   3.12.0-1
ii  gnome-icon-theme-symbolic  3.12.0-1
ii  x11-xkb-utils  7.7+1
ii  xserver-xephyr 2:1.16.0-1
ii  xserver-xorg   1:7.7+7
ii  zenity 3.12.1-1.1

Versions of packages gdm3 suggests:
pn  gnome-orca
ii  libpam-gnome-keyring  3.12.2-1

-- debconf information excluded
--- End Message ---
--- Begin Message ---
Source: cgmanager
Source-Version: 0.36-2

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

Debian distribution maintenance software
pp.
Serge Hallyn  (supplier of updated cgmanager package)

(This message 

Bug#759745: marked as done (gdm3: Unable to login post-upgrade without systemd-sysv installed)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding gdm3: Unable to login post-upgrade without systemd-sysv installed
to be marked as done.

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

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


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

Performed routine aptitude upgrade and had new version of gdm installed.
Shutdown laptop and upon restart was no longer presented with the login
greeter. Gnome environment would work by getting to shell and running
startx but was presented with a systemd-login error on the console shell
when logging in. Installed systemd-sysv which purged sysinit-core, rebooted
and the system was once again usable.

Suggest that there is a dependency not properly resolving in there to
ensure that systemd is running as PID 1.


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

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

Versions of packages gdm3 depends on:
ii  accountsservice  0.6.37-3
ii  adduser  3.113+nmu3
ii  dconf-cli0.20.0-2
ii  dconf-gsettings-backend  0.20.0-2
ii  debconf [debconf-2.0]1.5.53
ii  gir1.2-gdm3  3.12.2-2.1
ii  gnome-session [x-session-manager]3.12.1-3
ii  gnome-session-bin3.12.1-3
ii  gnome-session-flashback [x-session-manager]  3.8.1-1
ii  gnome-settings-daemon3.12.2-1
ii  gnome-shell  3.12.2-3
ii  gnome-terminal [x-terminal-emulator] 3.12.3-2
ii  gsettings-desktop-schemas3.12.2-1
ii  libaccountsservice0  0.6.37-3
ii  libatk1.0-0  2.12.0-1
ii  libaudit11:2.3.7-1
ii  libc62.19-9
ii  libcairo-gobject21.12.16-2
ii  libcairo21.12.16-2
ii  libcanberra-gtk3-0   0.30-2
ii  libcanberra0 0.30-2
ii  libgdk-pixbuf2.0-0   2.30.7-1
ii  libgdm1  3.12.2-2.1
ii  libglib2.0-0 2.40.0-4
ii  libglib2.0-bin   2.40.0-4
ii  libgtk-3-0   3.12.2-3
ii  libpam-modules   1.1.8-3.1
ii  libpam-runtime   1.1.8-3.1
ii  libpam-systemd   208-8
ii  libpam0g 1.1.8-3.1
ii  libpango-1.0-0   1.36.6-1
ii  libpangocairo-1.0-0  1.36.6-1
ii  librsvg2-common  2.40.3-1
ii  libselinux1  2.3-1
ii  libsystemd-daemon0   208-8
ii  libsystemd-id128-0   208-8
ii  libsystemd-journal0  208-8
ii  libsystemd-login0208-8
ii  libwrap0 7.6.q-25
ii  libx11-6 2:1.6.2-3
ii  libxau6  1:1.0.8-1
ii  libxdmcp61:1.1.1-1
ii  libxrandr2   2:1.4.2-1
ii  lsb-base 4.1+Debian13
ii  metacity [x-window-manager]  1:3.12.0-2
ii  policykit-1  0.105-6.1
ii  ucf  3.0030
ii  x11-common   1:7.7+7
ii  x11-xserver-utils7.7+3
ii  xterm [x-terminal-emulator]  308-1

Versions of packages gdm3 recommends:
ii  at-spi2-core   2.12.0-2
ii  desktop-base   7.0.3
ii  gnome-icon-theme   3.12.0-1
ii  gnome-icon-theme-symbolic  3.12.0-1
ii  x11-xkb-utils  7.7+1
ii  xserver-xephyr 2:1.16.0-1
ii  xserver-xorg 

Bug#757348: marked as done (systemd: with SysV init, can no longer suspend and shutdown from lightdm)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:30 +
with message-id 
and subject line Bug#757348: fixed in cgmanager 0.36-2
has caused the Debian Bug report #757348,
regarding systemd: with SysV init, can no longer suspend and shutdown from 
lightdm
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.)


-- 
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: systemd
Version: 208-7
Severity: important

The systemd upgrade from 204-14 to 208-7 introduced a regression in
lightdm: the "Suspend", "Hibernate", "Restart" and "Shut Down" menu
items of lightdm are now greyed out (even before the first login).

Note: I'm using SysV init.

-- Package-specific info:

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

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

Versions of packages systemd depends on:
ii  acl  2.2.52-1
ii  adduser  3.113+nmu3
ii  initscripts  2.88dsf-53.3
ii  libacl1  2.2.52-1
ii  libaudit11:2.3.7-1
ii  libblkid12.20.1-5.8
ii  libc62.19-7
ii  libcap2  1:2.24-4
ii  libcap2-bin  1:2.24-4
ii  libcryptsetup4   2:1.6.4-4
ii  libdbus-1-3  1.8.6-1
ii  libgcrypt11  1.5.3-5
ii  libkmod2 18-1
ii  liblzma5 5.1.1alpha+20120614-2
ii  libpam0g 1.1.8-3
ii  libselinux1  2.3-1
ii  libsystemd-daemon0   208-7
ii  libsystemd-journal0  208-7
ii  libsystemd-login0208-7
ii  libudev1 208-7
ii  libwrap0 7.6.q-25
ii  sysv-rc  2.88dsf-53.3
ii  udev 208-7
ii  util-linux   2.20.1-5.8

Versions of packages systemd recommends:
ii  libpam-systemd  208-7

Versions of packages systemd suggests:
pn  systemd-ui  

-- Configuration Files:
/etc/systemd/logind.conf changed:
[Login]
HandlePowerKey=ignore


-- debconf-show failed
--- End Message ---
--- Begin Message ---
Source: cgmanager
Source-Version: 0.36-2

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

Debian distribution maintenance software
pp.
Serge Hallyn  (supplier of updated cgmanager 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, 13 Feb 2015 13:48:40 -0600
Source: cgmanager
Binary: cgmanager cgmanager-tests libcgmanager0 libcgmanager-dev
Architecture: source amd64 all
Version: 0.36-2
Distribution: unstable
Urgency: medium
Maintainer: Serge Hallyn 
Changed-By: Serge Hallyn 
Description:
 cgmanager  - Central cgroup manager daemon
 cgmanager-tests - Central cgroup manager daemon (tests)
 libcgmanager-dev - Central cgroup manager daemon (dev)
 libcgmanager0 - Central cgroup manager daemon (client library)
Closes: 757348
Changes:
 cgmanager (0.36-2) unstable; urgency=medium
 .
   * import upstream patch to bind-mount / into new root.  (Closes: #757348)
   * import upstream patch to bind-mount /run into new root so that on
 sysvinit the /run/cgmanager.pid file shows up on the host.
Checksums-Sha1:
 021014afcd0350b6684078cd3f4ab961fe140dd8 2052 cgmanager_0.36-2.dsc
 ae11f2590b18ab62d181b0cbc62b093cfed891be 11628 cgmanager_0.36-2.debian.tar.xz
 66a84db1f626a3c09b7f539171fcf360e68ca36f 79426 cgmanager_0.36-2_amd64.deb
 5d61f0af922aa310d272949c68f780ce2ba64d18 13926 cgmanager-tests_0.36-2_all.deb
 602098852e3dd75a082c59e044a0081bdb858c18 40956 libcgmanager0_0.36-2_amd64.deb
 4a7c7cc85adf5a7527a1522b80be9af044d4d9e0 10994 
libcgmanager-dev_0.36-2_amd64.deb
Checksums-Sha256:
 9e350ad67bd46d3f2a9feb882a94d61db64ef8c5df053308728d4dae938b013f 2052 
cgmanager_0.36-2.dsc
 1ef15d2a3b55f3969518fa579eb0b175c5e59b2ff25fd8621ef6abf1ab06c0a3 11628 
cgmanager_0.36-2.debian.tar.xz
 92f40f69a2fe744572cc211902ff57f19c0da5f3c64708ac93e13fef6a14

Bug#740998: marked as done (NetworkManager and rdnssd do not play well together)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:33:37 +
with message-id 
and subject line Bug#740998: fixed in ndisc6 1.0.1-2
has caused the Debian Bug report #740998,
regarding NetworkManager and rdnssd do not play well together
to be marked as done.

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

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


-- 
740998: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740998
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rdnssd
Version: 1.0.1-1+b1
Severity: normal
Tags: patch ipv6

The merge-hook script overwrites /etc/resolv.conf when
/sbin/resolvconf is not installed, thereby erasing additional
entries in this file such as "name" etc.

The following patch makes it preserve this information.

I don't know if this problem also occurs (or how to fix it) when
/sbin/resolvconf is installed since I don't use it.

--- /etc/rdnssd/merge-hook
+++ /etc/rdnssd/merge-hook
@@ -23,6 +23,7 @@
 if [ -x /sbin/resolvconf ]; then
/sbin/resolvconf -a 000.rdnssd < "$INPUT"
 else
-   cat -- "$INPUT" > "/etc/resolv.conf"
+   orig=`grep -v ^nameserver "/etc/resolv.conf"`
+   { echo "$orig"; cat -- "$INPUT"; } > "/etc/resolv.conf"
 fi
 

-- System Information:
Debian Release: 7.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i686)
--- End Message ---
--- Begin Message ---
Source: ndisc6
Source-Version: 1.0.1-2

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

Debian distribution maintenance software
pp.
Michael Gilbert  (supplier of updated ndisc6 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: Sat, 14 Feb 2015 01:16:37 +
Source: ndisc6
Binary: ndisc6 ndisc6-udeb rdnssd rdnssd-udeb
Architecture: source
Version: 1.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Michael Gilbert 
Description:
 ndisc6 - IPv6 diagnostic tools
 ndisc6-udeb - IPv6 diagnostic tools (udeb)
 rdnssd - IPv6 recursive DNS server discovery daemon
 rdnssd-udeb - IPv6 recursive DNS server discovery daemon (udeb)
Closes: 740998
Changes:
 ndisc6 (1.0.1-2) unstable; urgency=medium
 .
   * QA upload.
   * Set maintainer to the Debian QA Group (see #713004).
   * Add conflicts between rdnssd and network-manager (closes: #740998).
Checksums-Sha1:
 27d1c2a77830e5af3c1adc276374cd947a56c6e0 2604 ndisc6_1.0.1-2.dsc
 5327abbb0baf1a0374fad80c08e7ce2337c5fb15 5830 ndisc6_1.0.1-2.diff.gz
Checksums-Sha256:
 3b3ac5d1ed520609a9b981ef1084dc1f55f2edb60649af536ca01ceb6b895bad 2604 
ndisc6_1.0.1-2.dsc
 79265918cf42e44361771ea2dc25f3f1c86908ab34442c596b47cf8180d7dc22 5830 
ndisc6_1.0.1-2.diff.gz
Files:
 74ae7124200114cd05cba33c619f4fa4 2604 net optional ndisc6_1.0.1-2.dsc
 7afe41e952bd54ccca9cbc8209f0c3ea 5830 net optional ndisc6_1.0.1-2.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQQcBAEBCgAGBQJU3qQwAAoJELjWss0C1vRzMUMf/iC5ZljqjHn/QSMU+88yJjqd
kedP8aeG4elBcjT1LqGC0a9XuzmC55Zyp4D3r2/z15k3LUj5F2M91ginJdUf5Sbh
Sn8Ul4TBkSA6JPfJ8Q3Gv6zSSLlX29Nl4leHwc984YAwYU2KUTAK9/fb+pqMlGxL
t1NW8VVw9MIqt90aG3fswogGZzVwNE7+J3k4M45CdaoauEM3E769QUIAGI6nl4Ry
fkNUJjbZDAtIv5Qf9l+GTPEBaYJEL1VG8xrnG+QaQxotBHtqt3s+Z10fHQR80z4B
4wKbiI6MmMejJa0j/COyH68BYgdwWBP6OYUZ/lvxe/JJxvt2OxVlXRhd1wqHwF/Z
/QN5ki+sLc/8Sv8/prXbt7La559ae3R9lJm1TqzAvkGBA2ybymL5R0p3N3rOqe8Q
GvKvwzGxhHfcjoRc1spAl6qZb3yP8EGonxeJfPv/3cvdOhioavvq5jOrk5hkt7Gc
r9N9cIE2mMEc0F6RiYpvrcnVi/QaqMXtXtCG8ewlHf9Smu+HWhigYpsL8wIV8YGK
59ITaSraQ0QVAQ0fkvMeaEt2vA2E8yjPbuuoFFvEpfmU6i4b2ytSZkOj8uSWl6r5
VQjHAJW3DbDjxH0oMnn4NSw3a6QlIk5+O3UlfPZTwCI1BN9nKWSxpGPkyCLxy5U+
YLFwB1xYfuy19LdXTHlZFOcJVEVqnRZXqBun/8zLvVuuSu1rvm1YG7vDFiNM0i7w
Y0lzfYAjsLN7W3O9FL2QTnn7P8sq21m1cApsCD9KU5I+DJIMoCNerr7ZZlD7yJLP
l+LXEZtlVEkGShpisLqFLM188oUzsprOZTBPq2IDPOiqgza2SvBw2bvDLL4VZc/y
qdYn4jE6WGzqgaJ3U7MGKihOYxyBfPY/ysCJl5MoYXiuPFCPr2vLpgqQx8QLw+N+
JnMBs4I4HVWTyy2oBdYZOO6ZWY95AZQbOuVU6MV2FRFZ9kcjXScpocQ4ZORQHnzJ
xX9XEcS+9RbrJO9EGlvnciSJwlReAS35lMt3iEPku8qTc1tFOIXUuoz0Ce0vsewn
hreL17ceQd2Qr8Iy+u/HWvsPfE6sCA3+cnAiujVUmfy7g3jx8RAnguhQBlrgy9Sh
Bi9E4MyUqM2lzOknG6

Bug#776039: marked as done (grep: CVE-2015-1345: heap buffer overrun)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Feb 2015 01:18:33 +
with message-id 
and subject line Bug#776039: fixed in grep 2.20-4.1
has caused the Debian Bug report #776039,
regarding grep: CVE-2015-1345: heap buffer overrun
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.)


-- 
776039: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776039
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: grep
Version: 2.20-4
Severity: important
Tags: security, upstream, fixed-upstream

Bug report: http://bugs.gnu.org/19563
Upstream fix: 
http://git.sv.gnu.org/cgit/grep.git/commit/?id=83a95bd8c8561875b948cadd417c653dbe7ef2e2

-- 
Henri Salo
--- End Message ---
--- Begin Message ---
Source: grep
Source-Version: 2.20-4.1

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

Debian distribution maintenance software
pp.
Michael Gilbert  (supplier of updated grep 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, 26 Jan 2015 02:56:14 +
Source: grep
Binary: grep
Architecture: source
Version: 2.20-4.1
Distribution: unstable
Urgency: high
Maintainer: Anibal Monsalve Salazar 
Changed-By: Michael Gilbert 
Description:
 grep   - GNU grep, egrep and fgrep
Closes: 776039
Changes:
 grep (2.20-4.1) unstable; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Fix CVE-2015-1345: buffer overrun in src/kwset.c (closes: #776039).
Checksums-Sha1:
 976b69f56790b65908cec90e6d02a6152043804a 2627 grep_2.20-4.1.dsc
 ed6292de2cf5a1531754b151cbc1aca326c29ff9 113054 grep_2.20-4.1.debian.tar.bz2
Checksums-Sha256:
 62ae6c19839e940462d27b2a234e925210cdb9209e2a4080b695fcec439c1d04 2627 
grep_2.20-4.1.dsc
 4aa8c4487d05dc82498668deeb485a9d4891a74df29466adf74e2faf738d2917 113054 
grep_2.20-4.1.debian.tar.bz2
Files:
 63da5d007d92fa17f8c862a6ece1667b 2627 utils required grep_2.20-4.1.dsc
 17c35fb855ea56d3d79a922193f3a22b 113054 utils required 
grep_2.20-4.1.debian.tar.bz2

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQQcBAEBCgAGBQJU3p9nAAoJELjWss0C1vRzjYAf/RIvc2LLk+ZKj6BGP10quMpf
eKlSjBP9NhGA4+jWSw9RwUbKS7dyUETz4z1YePPk8tH2vCps1C/Aiyk8XZeXBb/j
d5+XbLS0/ESSC35yGN7aV92RUPaZoy34z3ZLYlO9GduWkdn4XeYqkj3Ag2odg2ft
30eyzzseUvdRtEVPXVL7H3W2sapEpuX5THuYD2qCiMOvBShWWwcfi1weBNxHje+3
0vsOUlDs46QbYgp7J68HJGkOUIYFKlsZL4G0XUYdp5RebGxFr9sZs2PMA4KwubqS
fozLdxpI+R84jWt+gzz/8KE85BBKI5asSGqsbwBeXJuP4IRL6+AHx/HHuQDX4j2t
kfPsDuEmm5K5nk3Jd7ontwUq/UDA4quiscvlQb+TvjYpFmeBhSTNXbPDN7Vfx5Az
A/V8tblWBKgqdHbvUUanQaIMt26pEpW0brSYGit3Bo5q8I3lsBFfC6S8Fq+Hhc1u
ZoeBtqn2PzIery5i6aj5IkUMDUY00lRzyEUtAfD5yzAnWHemc0F2wNEvONYSMPKK
koE7ytmU8C9wCqp3xTL+7lmIu1Siltroy1HEXI3oVING8qTq31924PpQebOnCzUL
vLX0LXyArpsASPUTaSBtgu2fqouK9ehZINOj7rg3kW3/K8lkS26acEKKiXjs9SMN
WzTeggLnuCAVRxhuthH/sZ/9Bw1v98zh0AvldLT6SvpW6UdesNdOeuvwQEbqdoCz
9jXEzOOHi0T7xEgmzUJX3cdFX8BGDx1mQdgU36EsYJ6gsxeiMkHfgtyUvJEqIL1O
hLFVUWXCZNWIQ0Iw1EsgIhuAsIGqUW/NvpH4+dgnFUJgADbiGcy4WdDMPYgfTz86
MNA48hOj3XEBK65R95pb/LoMgHV/uOTSS5IOasqEVvKdV0QCLmyrHTuM/TVSIMKr
N3aM6IUImYxb40MGnEVA4o4M+7o/FrptGxJ7R8Kzm5oEMrVTgat/QuZ9i75glzPE
sBXam3DarODf4Rqfv8NomB8/rgM2TfKlsPahqZH8r+HTMigk6LC1oDbD8xeBaUWZ
D9OJQR9PUfH7AiP/gYzsPPbwcYsNj95yzD7Q/pX/HHKF7KITp4GUj1QqVHVaaylO
q5AZMtpfY98+UZFAZk4dkuGv98inprx8bmna+pNsCB3+n/7qSarDWpdiASs6CqOB
4sj9nnrkreYSFthf2chIYuPr+2BbRUP82OBq103wa+ifA93M87zZZMMdTAAUqXY3
fzpPSHKjE0hotynz6BKAKXqb04SEnaieyUPCLAPOvkXB/GU/5CSMS6tmF3SKQY8e
72T6YenkcP/YiAPoH44wF46m7sc+sTO5gnPoT9U0aLv1qQwrYxPWj7pF7OU08uE=
=AMHX
-END PGP SIGNATURE End Message ---


Processed: Re: bitcoin 0.9.4 uoloaded

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

> reassign 776518 bitcoin
Bug #776518 [bitcoin-qt] bitcoin-qt: Syncronization stuck at 322082 (No block 
source available)
Bug reassigned from package 'bitcoin-qt' to 'bitcoin'.
No longer marked as found in versions bitcoin/0.9.3-1.
Ignoring request to alter fixed versions of bug #776518 to the same values 
previously set
> forcemerge 775102 776518
Bug #775102 {Done: Scott Howard } [bitcoin] bitcoin: 
OpenSSL 1.0.1k incompatibility with Bitcoin Core
Bug #775102 {Done: Scott Howard } [bitcoin] bitcoin: 
OpenSSL 1.0.1k incompatibility with Bitcoin Core
Added tag(s) patch.
Bug #776518 [bitcoin] bitcoin-qt: Syncronization stuck at 322082 (No block 
source available)
Severity set to 'grave' from 'normal'
Marked Bug as done
Marked as fixed in versions bitcoin/0.9.4-1.
There is no source info for the package 'bitcoin' at version '0.9.3-1' with 
architecture ''
Unable to make a source version for version '0.9.3-1'
Marked as found in versions 0.9.3-1.
Added tag(s) upstream and fixed-upstream.
Merged 775102 776518
>
End of message, stopping processing here.

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


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



Processed (with 1 errors): bitcoin 0.9.4 uoloaded

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

> forcemerge 775102 776518
Bug #775102 {Done: Scott Howard } [bitcoin] bitcoin: 
OpenSSL 1.0.1k incompatibility with Bitcoin Core
Unable to merge bugs because:
package of #776518 is 'bitcoin-qt' not 'bitcoin'
Failed to forcibly merge 775102: Did not alter merged bugs

> thanks
Stopping processing here.

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


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



Bug#776523: marked as done (elfutils: fails to build with newer glibc)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 23:03:44 +
with message-id 
and subject line Bug#776523: fixed in elfutils 0.159-4.2
has caused the Debian Bug report #776523,
regarding elfutils: fails to build with newer glibc
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.)


-- 
776523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776523
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: src:elfutils
version: 0.159-4
severity: serious
tags: patch, fixed-upstream

elfutils fails to build on arm64.  This is fixed in upstream commit c1e0fcb9311.

Best wishes,
Mike
--- End Message ---
--- Begin Message ---
Source: elfutils
Source-Version: 0.159-4.2

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

Debian distribution maintenance software
pp.
Michael Gilbert  (supplier of updated elfutils 
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, 13 Feb 2015 22:30:44 +
Source: elfutils
Binary: elfutils libelf1 libelf-dev libdw-dev libdw1 libasm1 libasm-dev
Architecture: source
Version: 0.159-4.2
Distribution: unstable
Urgency: medium
Maintainer: Kurt Roeckx 
Changed-By: Michael Gilbert 
Description:
 elfutils   - collection of utilities to handle ELF objects
 libasm-dev - libasm development libraries and header files
 libasm1- library with a programmable assembler interface
 libdw-dev  - libdw1 development libraries and header files
 libdw1 - library that provides access to the DWARF debug information
 libelf-dev - libelf1 development libraries and header files
 libelf1- library to read and write ELF files
Closes: 776523
Changes:
 elfutils (0.159-4.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Apply an upstream patch to fix the build failure on arm64 (closes: 
#776523).
Checksums-Sha1:
 54c0577d1e125737fe1608933e0354d371ec3181 2953 elfutils_0.159-4.2.dsc
 561503bdc91926fcdeb18a2632dca0783cdb61ad 49840 elfutils_0.159-4.2.debian.tar.xz
Checksums-Sha256:
 bf6a89d4d4bb0b5ccc1651706aafce317fd225781318ee6eadcbba93f4aaad4b 2953 
elfutils_0.159-4.2.dsc
 8c737eb508e3f04fb3e52f96a647ebe3106edc4f699893800c284cd140b79eae 49840 
elfutils_0.159-4.2.debian.tar.xz
Files:
 7208fe0ce6a59ced110db9000874315f 2953 libs optional elfutils_0.159-4.2.dsc
 924791ac13d407fe2e00c50f21c67ab3 49840 libs optional 
elfutils_0.159-4.2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQQcBAEBCgAGBQJU3oE7AAoJELjWss0C1vRz/Dwf/iCnOPzaMbGT+ZVTyY/eO79w
jGLyHhVReII/puPQcPFUHJqj+unrEd90PoIfZm55ndCxvX0WKSL4cTJ4unHNZHA5
KQNUjYU5dLwx/YNcHtlqFOes61HqA0ZVjGZ9UKLrnlmgL3P819NIjE+ICAhpxlWV
D3qaqN96fK1jR0tzc7zMC8p314JompfQiDe4Ty6HEtHWx/CUCqCzlxvE7W1AsNMH
5DkKXfx079K4OjYZgajW32S5+/4fEWnxbISMGDiVsmSxDUIWZMxH9KwWgsUiNAns
qSWCzxOjBq3XR2V/b3IrUSTDge3QQbjIBacBPQGGIhXbDo4s4XaAV2XZXxPu815N
MgoPv+VOPUynVQoWS50kRU252EDI4YSfWCHFTiMZLURoLkg42xI4/rTB5reUQa03
g3/Rmi09C/AvBZmKgtqDcp+p7OsjtL62v//SppLCfuVq36wCQNJU4RMxT1lHnlkN
3Lkyj1v7qvmMOvjeVhcOOmOfV84W3ubUW5sg3HRulpXnA2reaNJ5gBN2X/l7mAW2
iFhuS9b0Jiwpv1BUltkoFdEARtMR0DK92Fb0ZeTTXXZmdP7yN8JkDD/mdtWpLwcS
/EEe4dVCp2FG2Fp6JmIoujosuVjYNKzboOpv8bivr3eWD8+BKrQvlGG6Xil/BRWP
lJUcvJ8EtQbwO/k7r2HysrG92q54ERLBqlPZFWmn1yTDlMrcOwSMnXitf0KHnbMb
yZ+mZjy2OBbcsYXoOru5BvYqSjqIdlXPfdtsks3dIqCnM+KqfZ+EGhkeTOsw6bUZ
vZtM9AWnfKlxOlb9FviePdvtaKJfXk5VRdGaNiuaBnTASRfUuG6+3nEPi/5Koc/2
PShGi4S6gpd3QnExtAx/GnkPhlw+oZvgxHHPMjkWaj95ruB+7UyOsPtOVOFhjpVY
PfYCFhf7tw5l4voUhP6En3f4Kv3gsrdGL+Q80e0fjrGRwCbZmx7JbnofSkcJ3nnH
8AZzRHyzA0G8zO+DFWWZX423SPshyt/cHpMo6AykY+fxvTewopo8n1MYHaSf/rEp
DU/tnWlHgdjtS4rV9BY1JQlSM75MJBqxySacjawgLfYehWHZrHbQ1WYYFwQl+g9Z
AMqDcQWI7dwZb4Uv0wy1rSUfAmg9xl3ax1dKE93NLn6WnUJVzOPLXzON8YB3yaGi
nLD8GVPG7kDnDBumsw8g6YLLeKA2qmuq8Dyn1Ij8gzMa0uCkoKhycMEOyHmMz3Un
CozVuORiYeCodQ/MvYL1VwG7SmELlCDQNPnbNGR5ODw9c/RFADWrdPMBcKmEJiAG
sfN2w2AaJh2Z9BkRUBUD1AXmqVf+bLn14GHvVb1FGVLKauQBkE1pYJmeqt5vVDw=
=6TNg
-END PGP SIGNATURE End Message ---


Bug#776523: elfutils: fails to build with newer glibc

2015-02-13 Thread Michael Gilbert
On Wed, Jan 28, 2015 at 6:52 PM, Michael Gilbert wrote:
> elfutils fails to build on arm64.  This is fixed in upstream commit 
> c1e0fcb9311.

Hi,

I uploaded an nmu fixing this.  Please see attached.

Best wishes,
Mike
diff -Nru elfutils-0.159/debian/changelog elfutils-0.159/debian/changelog
--- elfutils-0.159/debian/changelog	2015-01-26 01:51:07.0 +
+++ elfutils-0.159/debian/changelog	2015-02-13 22:55:11.0 +
@@ -1,3 +1,10 @@
+elfutils (0.159-4.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Apply an upstream patch to fix the build failure on arm64 (closes: #776523).
+
+ -- Michael Gilbert   Fri, 13 Feb 2015 22:30:44 +
+
 elfutils (0.159-4.1) unstable; urgency=high
 
   * Non-maintainer upload by the Security Team.
diff -Nru elfutils-0.159/debian/patches/arm64.patch elfutils-0.159/debian/patches/arm64.patch
--- elfutils-0.159/debian/patches/arm64.patch	1970-01-01 00:00:00.0 +
+++ elfutils-0.159/debian/patches/arm64.patch	2015-02-13 22:52:38.0 +
@@ -0,0 +1,91 @@
+commit c1e0fcb9311c1d136e20e658449367ad8b7f487d
+Author: Kyle McMartin 
+Date:   Mon Jun 9 21:06:26 2014 +0200
+
+aarch64: use  defined register structures
+
+glibc now supplies these (compatible) structs instead of including the
+kernel's  header, so let's use them. Annoyingly this will
+cause new elfutils to FTBFS on old glibc, and vice versa. So include a
+new configure check for the new struct names and use the old ones if
+they are not avilable.
+
+Signed-off-by: Kyle McMartin 
+Signed-off-by: Mark Wielaard 
+
+--- a/backends/aarch64_initreg.c
 b/backends/aarch64_initreg.c
+@@ -36,6 +36,11 @@
+ # include 
+ # include 
+ # include 
++/* Deal with old glibc defining user_pt_regs instead of user_regs_struct.  */
++# ifndef HAVE_SYS_USER_REGS
++#  define user_regs_struct user_pt_regs
++#  define user_fpsimd_struct user_fpsimd_state
++# endif
+ #endif
+ 
+ #define BACKEND aarch64_
+@@ -51,7 +56,7 @@ aarch64_set_initial_registers_tid (pid_t
+ #else /* __aarch64__ */
+ 
+   /* General registers.  */
+-  struct user_pt_regs gregs;
++  struct user_regs_struct gregs;
+   struct iovec iovec;
+   iovec.iov_base = &gregs;
+   iovec.iov_len = sizeof (gregs);
+@@ -69,7 +74,7 @@ aarch64_set_initial_registers_tid (pid_t
+   /* ELR cannot be found.  */
+ 
+   /* FP registers (only 64bits are used).  */
+-  struct user_fpsimd_state fregs;
++  struct user_fpsimd_struct fregs;
+   iovec.iov_base = &fregs;
+   iovec.iov_len = sizeof (fregs);
+   if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, &iovec) != 0)
+--- a/backends/arm_initreg.c
 b/backends/arm_initreg.c
+@@ -40,6 +40,10 @@
+ # include 
+ # include 
+ # include 
++/* Deal with old glibc defining user_pt_regs instead of user_regs_struct.  */
++# ifndef HAVE_SYS_USER_REGS
++#  define user_regs_struct user_pt_regs
++# endif
+ #endif
+ 
+ #define BACKEND arm_
+@@ -67,7 +71,7 @@ arm_set_initial_registers_tid (pid_t tid
+ #elif defined __aarch64__
+   /* Compat mode: arm compatible code running on aarch64 */
+   int i;
+-  struct user_pt_regs gregs;
++  struct user_regs_struct gregs;
+   struct iovec iovec;
+   iovec.iov_base = &gregs;
+   iovec.iov_len = sizeof (gregs);
+--- a/configure.ac
 b/configure.ac
+@@ -357,6 +357,19 @@ eu_version=`expr \( $eu_version + 999 \)
+ 
+ AC_CHECK_SIZEOF(long)
+ 
++# On aarch64 before glibc 2.20 we would get the kernel user_pt_regs instead
++# of the user_regs_struct from sys/user.h. They are structurally the same
++# but we get either one or the other.
++AC_CHECK_TYPE([struct user_regs_struct],
++  [sys_user_has_user_regs=yes], [sys_user_has_user_regs=no],
++  [[#include ]
++   [#include ]
++   [#include ]])
++if test "$sys_user_has_user_regs" = "yes"; then
++  AC_DEFINE(HAVE_SYS_USER_REGS, 1,
++[Define to 1 if  defines struct user_regs_struct])
++fi
++
+ # On a 64-bit host where can can use $CC -m32, we'll run two sets of tests.
+ # Likewise in a 32-bit build on a host where $CC -m64 works.
+ utrace_BIARCH
diff -Nru elfutils-0.159/debian/patches/series elfutils-0.159/debian/patches/series
--- elfutils-0.159/debian/patches/series	2015-01-26 01:54:23.0 +
+++ elfutils-0.159/debian/patches/series	2015-02-13 22:52:29.0 +
@@ -14,3 +14,4 @@
 unaligned.patch
 aarch64-run-native-test-fix.patch
 CVE-2014-9447.patch
+arm64.patch


Processed: tagging 778344

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

> tags 778344 + pending
Bug #778344 [python3-softlayer] python3-softlayer: Uneeded version mismatch 
between requires and archive keeps SL from working
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Processed: reducing severity of unsupported libv8 security issues

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

> severity 760385 normal
Bug #760385 [libv8-3.14] nodejs: CVE-2014-5256
Severity set to 'normal' from 'grave'
> severity 773623 normal
Bug #773623 [libv8-3.14] nodejs: CVE-2014-7192
Severity set to 'normal' from 'grave'
> severity 773671 normal
Bug #773671 [src:libv8-3.14] libv8-3.14: multiple security issues
Severity set to 'normal' from 'grave'
> thanks
Stopping processing here.

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


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



Processed: The libhtp SONAME mismatch *is* a policy violation.

2015-02-13 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 grave
Bug #777540 [libhtp1] libhtp1: possible library policy violation
Severity set to 'grave' from 'normal'
> block 772551 by -1
Bug #772551 [suricata] Suricata: missing library libhtp-0.5.12.so.1
772551 was blocked by: 777042
772551 was not blocking any bugs.
Added blocking bug(s) of 772551: 777540
> tag -1 patch
Bug #777540 [libhtp1] libhtp1: possible library policy violation
Added tag(s) patch.

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


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



Processed: bug 778346 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=89140

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

> forwarded 778346 https://bugs.freedesktop.org/show_bug.cgi?id=89140
Bug #778346 [src:libqmi] FTBFS: test suite failures on big-endian systems
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=89140'.
> thanks
Stopping processing here.

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


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



Bug#755834: marked as done (Fails to install if interface list is empty)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 15:32:49 -0500
with message-id 

and subject line 
has caused the Debian Bug report #755834,
regarding Fails to install if interface list is empty
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.)


-- 
755834: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=755834
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: isc-dhcp-server
Version: 4.3.0+dfsg-1
Severity: serious

Hi,

with systemd installed, isc-dhcp-server fails to install because starting the
daemon fails. This must have worked (in the sense that the postinst script 
succeeded) with sysvinit as I have the same (non-)setup of isc-dhcp-server
since ages. It's only installed because it is a dependency of fai-quickstart.
So the bug might need to be reassigned to systemd.


Setting up isc-dhcp-server (4.3.0+dfsg-1) ...
Job for isc-dhcp-server.service failed. See 'systemctl status 
isc-dhcp-server.service' and 'journalctl -xn' for details.
invoke-rc.d: initscript isc-dhcp-server, action "start" failed.
dpkg: error processing package isc-dhcp-server (--configure):


# cat /etc/default/isc-dhcp-server
# Defaults for dhcp initscript
# sourced by /etc/init.d/dhcp
# installed at /etc/default/isc-dhcp-server by the maintainer scripts

#
# This is a POSIX shell fragment
#

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
#   Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES=""
---snip---


The config file /etc/dhcpd/dhcpd.conf is identical to what's shipped in the
package (apart from commented lines)


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

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

Versions of packages isc-dhcp-server depends on:
ii  debconf [debconf-2.0]  1.5.53
ii  debianutils4.4
ii  isc-dhcp-common4.3.0+dfsg-1
ii  libc6  2.19-7
ii  lsb-base   4.1+Debian13

isc-dhcp-server recommends no packages.

Versions of packages isc-dhcp-server suggests:
pn  isc-dhcp-server-ldap  

-- Configuration Files:
/etc/dhcp/dhcpd.conf changed:
ddns-update-style none;
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;


-- debconf information:
  isc-dhcp-server/interfaces:
  isc-dhcp-server/config_warn:
--- End Message ---
--- Begin Message ---
version: 4.3.1-6--- End Message ---


Bug#760170: marked as done (isc-dhcp-server: Installation fails)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 15:32:49 -0500
with message-id 

and subject line 
has caused the Debian Bug report #755834,
regarding isc-dhcp-server: Installation fails
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.)


-- 
755834: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=755834
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: isc-dhcp-server
Version: 4.3.1-1
Severity: important

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?

# apt-get install isc-dhcp-server 

...
Generating /etc/default/isc-dhcp-server...
Job for isc-dhcp-server.service failed. See 'systemctl status 
isc-dhcp-server.service' and 'journalctl -xn' for details.
invoke-rc.d: initscript isc-dhcp-server, action "start" failed.  
dpkg: errore nell'elaborare il pacchetto isc-dhcp-server (--configure):
il sottoprocesso installato script di post-installation ha restituito lo 
stato di errore 1
Si sono verificati degli errori nell'elaborazione:
isc-dhcp-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

  
   * What exactly did you do (or not do) that was effective (or
 ineffective)?

apt-get -f install

   * What was the outcome of this action?

Configurazione di isc-dhcp-server (4.3.1-1)...
Job for isc-dhcp-server.service failed. See 'systemctl status 
isc-dhcp-server.service' and 'journalctl -xn' for details.
invoke-rc.d: initscript isc-dhcp-server, action "start" failed.
dpkg: errore nell'elaborare il pacchetto isc-dhcp-server (--configure):
il sottoprocesso installato script di post-installation ha restituito lo 
stato di errore 1
Si sono verificati degli errori nell'elaborazione:
isc-dhcp-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
   
* What outcome did you expect instead?

Fix of the misconfiguration/installation

*** End of the template - remove these template lines ***


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

Kernel: Linux 3.14-2-amd64 (SMP w/1 CPU core)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
version: 4.3.1-6--- End Message ---


Bug#778346: FTBFS: test suite failures on big-endian systems

2015-02-13 Thread Michael Biebl
Source: libqmi
Version: 1.12.4-1
Severity: serious

Since v1.12, the package FTBFS on various architectures, as can be seen
at [1]. It's a test-suite failure which seems to be big-endian related.


[1] https://buildd.debian.org/status/package.php?p=libqmi&suite=experimental


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

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


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



Bug#755834:

2015-02-13 Thread Michael Gilbert
version: 4.3.1-6


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



Bug#775715: [Pkg-javascript-devel] Bug#775715: libv8-3.14: limiting security support

2015-02-13 Thread Michael Gilbert
On Mon, Jan 26, 2015 at 7:58 AM, Bálint Réczey wrote:
> I have added the changes in git [1] and I plan uploading the fix this week.
> I will check the outstanding security issues for easily fixable ones
> and include the fixes in the same upload.

I went ahead with an nmu since it's been a few weeks without an upload.

Best wishes,
Mike
diff -Nru libv8-3.14-3.14.5.8/debian/changelog libv8-3.14-3.14.5.8/debian/changelog
--- libv8-3.14-3.14.5.8/debian/changelog	2014-05-06 19:35:22.0 +
+++ libv8-3.14-3.14.5.8/debian/changelog	2015-02-13 06:02:28.0 +
@@ -1,3 +1,11 @@
+libv8-3.14 (3.14.5.8-8.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add README.Debian.security documenting the lack of security support for
+this package for jessie (closes: #775715).
+
+ -- Michael Gilbert   Fri, 13 Feb 2015 05:59:08 +
+
 libv8-3.14 (3.14.5.8-8) unstable; urgency=medium
 
   * Add 0004_hurd.patch, add Architecture: hurd-i386.
diff -Nru libv8-3.14-3.14.5.8/debian/libv8-3.14.5.docs libv8-3.14-3.14.5.8/debian/libv8-3.14.5.docs
--- libv8-3.14-3.14.5.8/debian/libv8-3.14.5.docs	1970-01-01 00:00:00.0 +
+++ libv8-3.14-3.14.5.8/debian/libv8-3.14.5.docs	2015-02-13 05:58:55.0 +
@@ -0,0 +1 @@
+debian/README.Debian.security
diff -Nru libv8-3.14-3.14.5.8/debian/README.Debian.security libv8-3.14-3.14.5.8/debian/README.Debian.security
--- libv8-3.14-3.14.5.8/debian/README.Debian.security	1970-01-01 00:00:00.0 +
+++ libv8-3.14-3.14.5.8/debian/README.Debian.security	2015-02-13 05:58:55.0 +
@@ -0,0 +1,17 @@
+The security team has decided that this package will not receive
+security support for Jessie which makes the package suitable only
+for trusted content. 
+
+The decision has been made due to the amount of already outstanding
+known vulnerabilities [1] and the maintainer team's forecasted lack of
+manpower to deal with new and existing security problems.
+
+Providing security support for the package is not impossible but
+requires people who can back-port and review security related fixes
+from upstream's source code repository. If you would like to see full
+security support for libv8 [2] in Jessie+1, please consider joining the
+maintainer team or help them in other ways.
+
+
+[1] https://security-tracker.debian.org/tracker/source-package/libv8
+[2] https://packages.qa.debian.org/libv/libv8-3.14.html
\ No newline at end of file


Bug#777024: gst segfault

2015-02-13 Thread Michael Gilbert
control: tag -1 pending

Hi,

I've uploaded an nmu fixing this issue to delayed/2.  Please let me
know if I should delay longer.

Best wishes,
Mike
diff -Nru gst-plugins-bad1.0-1.4.4/debian/changelog gst-plugins-bad1.0-1.4.4/debian/changelog
--- gst-plugins-bad1.0-1.4.4/debian/changelog	2014-11-11 12:40:17.0 +
+++ gst-plugins-bad1.0-1.4.4/debian/changelog	2015-02-13 19:58:19.0 +
@@ -1,3 +1,10 @@
+gst-plugins-bad1.0 (1.4.4-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix an incorrect function call on 32-bit architectures (closes: #777024).
+
+ -- Michael Gilbert   Fri, 13 Feb 2015 19:45:44 +
+
 gst-plugins-bad1.0 (1.4.4-2) unstable; urgency=medium
 
   * Upload to unstable.
diff -Nru gst-plugins-bad1.0-1.4.4/debian/patches/03_64bit-cast.patch gst-plugins-bad1.0-1.4.4/debian/patches/03_64bit-cast.patch
--- gst-plugins-bad1.0-1.4.4/debian/patches/03_64bit-cast.patch	1970-01-01 00:00:00.0 +
+++ gst-plugins-bad1.0-1.4.4/debian/patches/03_64bit-cast.patch	2015-02-13 19:58:19.0 +
@@ -0,0 +1,19 @@
+From 3e1d7630187dd96b137553aec2c6edb60c213682
+From: Tim Philipp 
+Date: Sat, 15 Nov 2014 21:59:48 +
+Subject: dvbbasebin: fix possible crash by passing 64 bits for 64-bit queue
+ property
+
+https://bugzilla.gnome.org/show_bug.cgi?id=740191
+
+--- a/sys/dvb/dvbbasebin.c
 b/sys/dvb/dvbbasebin.c
+@@ -417,7 +417,7 @@ dvb_base_bin_init (DvbBaseBin * dvbbaseb
+   dvbbasebin->tsparse = gst_element_factory_make ("tsparse", NULL);
+ 
+   g_object_set (dvbbasebin->buffer_queue, "max-size-buffers", 0,
+-  "max-size-bytes", 0, "max-size-time", 0, NULL);
++  "max-size-bytes", 0, "max-size-time", (guint64) 0, NULL);
+ 
+   gst_bin_add_many (GST_BIN (dvbbasebin), dvbbasebin->dvbsrc,
+   dvbbasebin->buffer_queue, dvbbasebin->tsparse, NULL);
diff -Nru gst-plugins-bad1.0-1.4.4/debian/patches/series gst-plugins-bad1.0-1.4.4/debian/patches/series
--- gst-plugins-bad1.0-1.4.4/debian/patches/series	2014-11-06 11:48:06.0 +
+++ gst-plugins-bad1.0-1.4.4/debian/patches/series	2015-02-13 19:58:19.0 +
@@ -1,2 +1,3 @@
 01_fix-modplug-linking.patch
 02_opencv-linking.patch
+03_64bit-cast.patch


Processed: gst segfault

2015-02-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #777024 [gstreamer1.0-plugins-bad] gmediarender segfaults on startup on 
armel, raspbian and possiblly other architectures if gstreamer1.0-plugins-bad 
is installed.
Added tag(s) pending.

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


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



Bug#778344: python3-softlayer: Uneeded version mismatch between requires and archive keeps SL from working

2015-02-13 Thread Scott Kitterman
Package: python3-softlayer
Version: 3.2.0-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

   * What led up to the situation?

I ran the SL command.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
$ SL

   * What was the outcome of this action?

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 449, in 
_build_master
ws.require(__requires__)
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 745, in require
needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 644, in resolve
raise VersionConflict(dist, req)
pkg_resources.VersionConflict: (docopt 0.6.2 (/usr/lib/python3/dist-packages), 
Requirement.parse('docopt==0.6.1'))

   * What outcome did you expect instead?

I checked and there aren't any incompatible changes in docopt 0.6.2, so the ==
constraint should be changed to >= so the package will work.


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



Bug#757348: systemd: with SysV init, can no longer suspend and shutdown from lightdm

2015-02-13 Thread Serge Hallyn
Thanks for the report, Vincent.  I see the cause of the bug.  The fix is
now upstream, and I'll get it into sid asap.


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



Processed: your mail

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

> found 760733 3.0.5.RELEASE-2
Bug #760733 [src:libspring-java] CVE-2014-3578: directory traversal
Marked as found in versions libspring-java/3.0.5.RELEASE-2.
> fixed 760733 3.2.12-1
Bug #760733 [src:libspring-java] CVE-2014-3578: directory traversal
Marked as fixed in versions libspring-java/3.2.12-1.
> fixed 769698 3.2.12-1
Bug #769698 [src:libspring-java] libspring-java: CVE-2014-3625 Directory 
Traversal in Spring Framework
Marked as fixed in versions libspring-java/3.2.12-1.
> fixed 762690 4.2.1-1
Bug #762690 [libhibernate-validator-java] libhibernate-validator-java: affected 
by CVE-2014-3558
Marked as fixed in versions libhibernate-validator-java/4.2.1-1.
> thanks
Stopping processing here.

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


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



Bug#778343: xymon: Severe memory leaks in xymond

2015-02-13 Thread Axel Beckert
Package: xymon
Version: 4.3.17-5
Severity: serious
Tags: patch pending fixed-upstream

Before christmas, I've setup a new Jessie installation with Xymon. Since
two or three weeks ago that installation is fed with all the monitoring
data our current and Wheezy based production monitoring server gets.
After approximately one week without restart, the xymond process on the
Jessie installation grew to 15 GB of memory usage.

Valgrind showed chunks of ca. 9 MB and 3.5 MB getting lost. Xymons
typical activity interval is 5 minutes. (The 9 MB sound realistic:
Summing up 9 MB every 5 minutes for a week would get 17.7 GB.)

How quick the memory usage grows seems to depend on the installation
and/or usage, too. I also have a 4.3.17-2 backport running on Wheezy for
many months, and we only had a single case where it ran long enough (3
months without restart) so that the memory usage grew in areas where we
noticed something. But that installation has way fewer hosts to monitor
and hence fewer messages to handle (2 vs 28 incoming messages per
second), so the memory leak didn't become that obvious as it is now.

And the memory leak has been fixed upstream with their recent 4.3.18
release (03-Feb-2015). The 4.3.18 upstream changelog contains the
following changelog entry:

  - xymond: Fix memory leak

With cherry-picking the following two patches from upstream's 4.3.18
branch in SVN, the memory usage of the same installation stayed around
256 MB of RAM usage (fluctuating between 247 MB and 263 MB) after three
hours despite it grew to over 300 MB after less than 30 minutes before.

And Valgrind seems happy since then, too.

Description:Fix memory leak in acknowledge handling.
 Cherry-picked from the 4.3.18 upstream release.
Origin: http://sourceforge.net/p/xymon/code/7488/
Applied-Upstream: http://sourceforge.net/p/xymon/code/7488/
Reviewed-by: Axel Beckert 

Index: xymon/xymond/xymond.c
===
--- xymon.orig/xymond/xymond.c  2015-02-13 15:38:17.0 +0100
+++ xymon/xymond/xymond.c   2015-02-13 15:40:05.0 +0100
@@ -2365,6 +2365,8 @@
if (zombie->dismsg) xfree(zombie->dismsg);
if (zombie->ackmsg) xfree(zombie->ackmsg);
if (zombie->grouplist) xfree(zombie->grouplist);
+   if (zombie->lastchange) xfree(zombie->lastchange);
+   if (zombie->testflags) xfree(zombie->testflags);
flush_acklist(zombie, 1);
xfree(zombie);
dbgprintf("<- free_log_t\n");

Description: Set an initial size for the xymondlog output
 Cherry-picked from the 4.3.18 upstream release.
 .
 Original commit message: "xymond: Set an initial size for the
 xymondlog output, to avoid realloc'ing the buffer too much. Fix a
 valgrind complaint. JC Cleaver"
 .
 Despite the harmless sounding commit message, this seems to fix a
 severe memory leak. Without this patch, valgrind reported the loss of
 about 12 MB every five minutes on a bigger installation.
Origin: http://sourceforge.net/p/xymon/code/7489/
Applied-Upstream: http://sourceforge.net/p/xymon/code/7489/

Index: xymon/xymond/xymond.c
===
--- xymon.orig/xymond/xymond.c  2015-02-13 16:50:42.0 +0100
+++ xymon/xymond/xymond.c   2015-02-13 17:21:42.0 +0100
@@ -3679,12 +3679,13 @@
}
 
xfree(msg->buf);
-   logdata = generate_outbuf(NULL, logfields, h, log, 
acklevel);
+   logdata = newstrbuffer(20480);
+   logdata = generate_outbuf(&logdata, logfields, h, log, 
acklevel);
addtobuffer(logdata, msg_data(log->message, 0));
 
msg->doingwhat = RESPONDING;
msg->buflen = STRBUFLEN(logdata);
-   msg->bufp = grabstrbuffer(logdata);
+   msg->bufp = msg->buf = grabstrbuffer(logdata);
}
 
clear_filter(logfilter);

I intend to upload 4.3.17-6 with these two patches, the added CVE-ID for
the previous upload and one translation update. I will initially upload
it to the DELAYED queue and will then request a freeze exception for
Jessie.

All of that is already checked in into the "jessie" branch at
https://anonscm.debian.org/cgit/collab-maint/xymon.git/log/?h=jessie

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (500, 'buildd-unstable'), 
(400, 'stable'), (110, 'experimental'), (1, 'buildd-experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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


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



Processed: still need to be fixed in unstable

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

> found 769698 3.0.5.RELEASE-2
Bug #769698 {Done: Emmanuel Bourg } [src:libspring-java] 
libspring-java: CVE-2014-3625 Directory Traversal in Spring Framework
Marked as found in versions libspring-java/3.0.5.RELEASE-2.
> notfound 769698 3.0.0
Bug #769698 {Done: Emmanuel Bourg } [src:libspring-java] 
libspring-java: CVE-2014-3625 Directory Traversal in Spring Framework
The source 'libspring-java' and version '3.0.0' do not appear to match any 
binary packages
No longer marked as found in versions libspring-java/3.0.0.
> reopen 769698
Bug #769698 {Done: Emmanuel Bourg } [src:libspring-java] 
libspring-java: CVE-2014-3625 Directory Traversal in Spring Framework
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions libspring-java/3.2.12-1.
> reopen 760733
Bug #760733 {Done: Emmanuel Bourg } [src:libspring-java] 
CVE-2014-3578: directory traversal
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions libspring-java/3.2.12-1.
> reopen 762690
Bug #762690 {Done: Emmanuel Bourg } 
[libhibernate-validator-java] libhibernate-validator-java: affected by 
CVE-2014-3558
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions libhibernate-validator-java/4.2.1-1.
> thanks
Stopping processing here.

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


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



Processed: your mail

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

> unarchive 769698
Bug #769698 {Done: Emmanuel Bourg } [src:libspring-java] 
libspring-java: CVE-2014-3625 Directory Traversal in Spring Framework
Unarchived Bug 769698
> thanks
Stopping processing here.

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


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



Bug#775842: [moodle-packaging] Bug#775842: 3 left (was: Re: Bug#775842: Bug#775842: moodle: Multiple security issues)

2015-02-13 Thread Thijs Kinkhorst
On Fri, February 13, 2015 16:10, Joost van Baal-Ilić wrote:
>>  CVE-2014-4172
>
> php-cas problem, fixed in Debian's php-cas 1.3.3-1 and 1.3.1-4+deb7u1.
> Moodle ships with unchanged phpCAS 1.3.3, see
> moodle-2.7.5+dfsg/auth/cas/CAS/moodle_readme.txt Moodle can likely use the
> Debian-maintained php-cas package.  I'll try & test that.

Probably, yes. It wasn't possible earlier because the versions were
different, that has now been solved.

>>  CVE-2013-3630
>
> https://tracker.moodle.org/browse/MDL-41449
>
> I'll apply for a Jira account later...  :-/

I can read it. The issue is still unfixed and under embargo.


Cheers,
Thijs


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



Processed: retitle 778261 to byzanz: Buffer overflow in GIF encoder, retitle 778265 to facter: CVE-2015-1426 ...

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

> retitle 778261 byzanz: Buffer overflow in GIF encoder
Bug #778261 [byzanz] Buffer overflow in GIF encoder
Changed Bug title to 'byzanz: Buffer overflow in GIF encoder' from 'Buffer 
overflow in GIF encoder'
> retitle 778265 facter: CVE-2015-1426
Bug #778265 [facter] CVE-2015-1426
Changed Bug title to 'facter: CVE-2015-1426' from 'CVE-2015-1426'
> tags 778265 + upstream fixed-upstream
Bug #778265 [facter] facter: CVE-2015-1426
Added tag(s) upstream and fixed-upstream.
> retitle 778266 libarchive: Directory traversal
Bug #778266 [src:libarchive] Directory traversal
Changed Bug title to 'libarchive: Directory traversal' from 'Directory 
traversal'
> retitle 778333 rsync: CVE-2014-9512
Bug #778333 [rsync] CVE-2014-9512
Changed Bug title to 'rsync: CVE-2014-9512' from 'CVE-2014-9512'
> tags 778333 + upstream patch
Bug #778333 [rsync] rsync: CVE-2014-9512
Added tag(s) upstream and patch.
> thanks
Stopping processing here.

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


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



Processed: bug 777706 is forwarded to https://github.com/networkupstools/nut/issues/185

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

> forwarded 06 https://github.com/networkupstools/nut/issues/185
Bug #06 [nut-monitor] nut-monitor: insecure storage of password
Set Bug forwarded-to-address to 
'https://github.com/networkupstools/nut/issues/185'.
> thanks
Stopping processing here.

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


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



Bug#777611: marked as done (tanglet: FTBFS - qmake: could not find a Qt installation of '')

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 17:48:42 +
with message-id 
and subject line Bug#777611: fixed in tanglet 1.3.1-2
has caused the Debian Bug report #777611,
regarding tanglet: FTBFS - qmake: could not find a Qt installation of ''
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.)


-- 
777611: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777611
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: tanglet
Version: 1.3.1-1
Severity: serious

Hi,

tanglet failed to build everywhere with the error:

> make[1]: Entering directory '/«PKGBUILDDIR»'
> dh_auto_configure -- PREFIX=/usr BINDIR=games
> qmake: could not find a Qt installation of ''
> dh_auto_configure: qmake -makefile -nocache QMAKE_CFLAGS_RELEASE=-g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 
> QMAKE_CFLAGS_DEBUG=-g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -D_FORTIFY_SOURCE=2 QMAKE_CXXFLAGS_RELEASE=-g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 
> QMAKE_CXXFLAGS_DEBUG=-g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -D_FORTIFY_SOURCE=2 QMAKE_LFLAGS_RELEASE=-Wl,-z,relro 
> QMAKE_LFLAGS_DEBUG=-Wl,-z,relro QMAKE_STRIP=: PREFIX=/usr PREFIX=/usr 
> BINDIR=games returned exit code 1
> make[1]: *** [override_dh_auto_configure] Error 2
> debian/rules:7: recipe for target 'override_dh_auto_configure' failed
> make[1]: Leaving directory '/«PKGBUILDDIR»'
> make: *** [build-arch] Error 2

Full build logs:
https://buildd.debian.org/status/package.php?p=tanglet

Thanks,
James
--- End Message ---
--- Begin Message ---
Source: tanglet
Source-Version: 1.3.1-2

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

Debian distribution maintenance software
pp.
Dariusz Dwornikowski  (supplier of 
updated tanglet 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, 13 Feb 2015 18:07:32 +0100
Source: tanglet
Binary: tanglet tanglet-data
Architecture: source amd64 all
Version: 1.3.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team 
Changed-By: Dariusz Dwornikowski 
Description:
 tanglet- single player word finding game based on Boggle
 tanglet-data - single player word finding game based on Boggle - data files
Closes: 777611
Changes:
 tanglet (1.3.1-2) unstable; urgency=medium
 .
   * QT_SELECT in d/rules added (Closes: #777611)
Checksums-Sha1:
 92bf0dcd3715e80ef25d92e3e977dff6be65 2003 tanglet_1.3.1-2.dsc
 aed0863b4c3d9a64286acaa74a4f953ed02c8ee6 3132 tanglet_1.3.1-2.debian.tar.xz
 f80efaee2f4d3caa3a1e22f274ae16638abd7396 591932 tanglet_1.3.1-2_amd64.deb
 74afa19bb835132361c17a5e423e152483b54868 7296596 tanglet-data_1.3.1-2_all.deb
Checksums-Sha256:
 9e141d88e75fcb7fe7f6fe7f473f7fd13c67f22da32c622a37a3b01c224d49e4 2003 
tanglet_1.3.1-2.dsc
 30a42cc669dda3e28d5ffa3c63a5741023aa8c1bd7008010fb7a37c9057425f4 3132 
tanglet_1.3.1-2.debian.tar.xz
 09af4150f3281068f28543b0f0ab1e047f2ddc6549548fcfaf6d25f3dbe4b6ab 591932 
tanglet_1.3.1-2_amd64.deb
 cbd1d8f70ff809727ac017e382ae0b4a13fe8ab722d799ea5d3d0dcb11774a11 7296596 
tanglet-data_1.3.1-2_all.deb
Files:
 8e78dec178785fce0969b2f656f8a59d 2003 games optional tanglet_1.3.1-2.dsc
 542ef4e4ed2cb3a4268bc3067ad071fe 3132 games optional 
tanglet_1.3.1-2.debian.tar.xz
 0fe8e0b77bc2b060be1698afcba44061 591932 games optional 
tanglet_1.3.1-2_amd64.deb
 8cc7a50275617f569dc98f02f76bcc8a 7296596 games optional 
tanglet-data_1.3.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJU3jdHAAoJECEac8aaew/H6WwQAMFqOVtTawRbYqpjIdO25m4D
AHQe6s9FTa1yEfAGz5NI75BfbASNO+093/RJKA3vzsCxJrjjERiaTOy2/r7kjLHi
7tqik9TO3jdKFQWgbIxKfgPGWPrpwDtjcFieAlB0QB7f57oNk//uTpdD8/3yx6oh
zGzDFUOF1aBpimhT84JzpjBNBim8L++K33ufa5EKjwqkoIBiruE2Gpn17BtS3Ps4
2gAIE3AoeKAMb6EAdNMvB8tjr45UjmLRxEQr7MmY3zQQDIqiGVdhbx8XVfIubrsX
BdAKf6oyj6XzM/vEzww2blRJ62j0+Arak6QanOKxCUpoHT71WZBGFeDL+W+c3OA6
g8KU6AuhP73A7Czlw7q/QstMVWO3lmk+5eIiCVDBjDNJxVJBH9Czipu8/0p60Sv1
ki6lopZZ5Y85ok/JLa0oSR1TXJjwiDq6jZz9+8piGbPhd57/US06/NzW

Processed: Re: Bumping severity

2015-02-13 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 grave
Bug #778336 [pastebinit] pastebinit: fails in the default configuration
Severity set to 'grave' from 'important'

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


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



Bug#777610: marked as done (connectagram: FTBFS - qmake: could not find a Qt installation of '')

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 17:48:26 +
with message-id 
and subject line Bug#777610: fixed in connectagram 1.2.1-2
has caused the Debian Bug report #777610,
regarding connectagram: FTBFS - qmake: could not find a Qt installation of ''
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.)


-- 
777610: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777610
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: connectagram
Version: 1.2.1-1
Severity: serious

Hi,

connectagram 1.2.1 failed to build everywhere with the error:

> make[1]: Entering directory '/«PKGBUILDDIR»'
> dh_auto_configure -- PREFIX=/usr BINDIR=games
> qmake: could not find a Qt installation of ''
> dh_auto_configure: qmake -makefile -nocache QMAKE_CFLAGS_RELEASE=-g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 
> QMAKE_CFLAGS_DEBUG=-g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -D_FORTIFY_SOURCE=2 QMAKE_CXXFLAGS_RELEASE=-g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 
> QMAKE_CXXFLAGS_DEBUG=-g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -D_FORTIFY_SOURCE=2 QMAKE_LFLAGS_RELEASE=-Wl,-z,relro 
> QMAKE_LFLAGS_DEBUG=-Wl,-z,relro QMAKE_STRIP=: PREFIX=/usr PREFIX=/usr 
> BINDIR=games returned exit code 1
> debian/rules:7: recipe for target 'override_dh_auto_configure' failed
> make[1]: *** [override_dh_auto_configure] Error 2
> make[1]: Leaving directory '/«PKGBUILDDIR»'
> make: *** [build-arch] Error 2

Full build logs:
https://buildd.debian.org/status/package.php?p=connectagram

Thanks,
James
--- End Message ---
--- Begin Message ---
Source: connectagram
Source-Version: 1.2.1-2

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

Debian distribution maintenance software
pp.
Dariusz Dwornikowski  (supplier of 
updated connectagram 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, 13 Feb 2015 18:26:33 +0100
Source: connectagram
Binary: connectagram connectagram-data
Architecture: source amd64 all
Version: 1.2.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team 
Changed-By: Dariusz Dwornikowski 
Description:
 connectagram - word unscrambling game
 connectagram-data - word unscrambling game - data files
Closes: 777610
Changes:
 connectagram (1.2.1-2) unstable; urgency=medium
 .
   * export QT_SELECT=5 in d/rules added (Closes: #777610)
Checksums-Sha1:
 6b88b770ecc232a9ed21b805e5451f63d9061ec3 2055 connectagram_1.2.1-2.dsc
 28a23e7e146c0d601e0c87aa8a196dfda2e0a95d 3461 
connectagram_1.2.1-2.debian.tar.bz2
 dcfb6e076a53db92d0bcd3f9104d3f4a87801f04 234988 connectagram_1.2.1-2_amd64.deb
 6ae038d3c0e48d63ef44839d0576c9afbf9da5b4 935406 
connectagram-data_1.2.1-2_all.deb
Checksums-Sha256:
 d7f088a55995065b2fb99fff12e0d7a11ed5c72748118947bd71003ef2699ab1 2055 
connectagram_1.2.1-2.dsc
 b9c8b57e8735a69b599368bbcffbe20b313bcb83f0ef707a92ab9a02f8f771f9 3461 
connectagram_1.2.1-2.debian.tar.bz2
 87739eeae1f49a6c8ee5adb83b32a4b31508093979e7fc222ef6b845712dc7bb 234988 
connectagram_1.2.1-2_amd64.deb
 e9ce042fb7736e307062082830ee4c4a5c9e7facf6d6771fd578e9c9d68786f6 935406 
connectagram-data_1.2.1-2_all.deb
Files:
 8993d8da3151cb0cca1496b332919d33 2055 games optional connectagram_1.2.1-2.dsc
 f40f12a5d008a715168c796fc6684760 3461 games optional 
connectagram_1.2.1-2.debian.tar.bz2
 039c982f1c9a2df3829676238a1a33c2 234988 games optional 
connectagram_1.2.1-2_amd64.deb
 44b01868fc618f9bca3c004083361a2b 935406 games optional 
connectagram-data_1.2.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJU3jTjAAoJECEac8aaew/HG7oP/3bgTVa9w/ufWXQQ1SrC0iEr
L12bn0fDe/IjPQd6Jlv4KqE3w0siLPIIBgDztjIe2QlVVr4b5LuExOVKtdt11iWL
DF4EUN1cEE5A3fs/qv8eZT3s+WbM37dxD7GctpAlHCqGBw4CrAWUenIGNkwwZTgB
deU2dXjkMyNyWsWXj1v6kuzSurTRqqiZGg0F5GaLi9BqP2HDByHAF2cT/j9J3y7p
xYY6p9e12vAmzEsZroTlvWuVjWOy9c/3seT+QrZiaAbssfHCkiQKMZL+F8leVh3d
lyXYwrDdJATtYgDLsEmC3qNIeEPaz0HaIKCKRgbE0i4kuJyV4/RcnDkPefdFo7Jh
Jerz/e3E0U6BiJ8JXGXLvBjCZES

Bug#757348: [cgmanager] RE: systemd: with SysV init, can no longer suspend and shutdown from lightdm

2015-02-13 Thread OmegaPhil
Package: cgmanager
Version: 0.36-1

Have confirmed this works in my VM, so it isn't affecting me this time
(not yet needed to restart this main machine).


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.16.0-4-amd64

Debian Release: 8.0
  990 testing 10.1.0.3
  500 unstable10.1.0.3
  500 quodlibet-unstable 10.1.0.3
1 experimental10.1.0.3

--- Package information. ---
Depends   (Version) | Installed
===-+-
libc6 (>= 2.15) |
libcgmanager0 (>= 0.28) |
libdbus-1-3 (>= 1.2.16) |
libnih-dbus1 (>= 1.0.0) |
libnih1  (>= 1.0.0) |
init-system-helpers  (>= 1.18~) |


Package's Recommends field is empty.

Package's Suggests field is empty.



signature.asc
Description: OpenPGP digital signature


Processed: systemd: with SysV init, can no longer suspend and shutdown from lightdm

2015-02-13 Thread Debian Bug Tracking System
Processing control commands:

> reopen -1
Bug #757348 {Done: Serge Hallyn } [cgmanager] systemd: 
with SysV init, can no longer suspend and shutdown from lightdm
Bug #754850 {Done: Serge Hallyn } [cgmanager] 
regression: no suspend/hibernate on non-systemd systems
Bug #757698 {Done: Serge Hallyn } [cgmanager] 
[network-manager] network-manager: Not authorized to control networking
Bug #758746 {Done: Serge Hallyn } [cgmanager] 
kde-workspace-bin: Energy saving schemes have no effect
Bug #759745 {Done: Serge Hallyn } [cgmanager] gdm3: 
Unable to login post-upgrade without systemd-sysv installed
Bug #760281 {Done: Serge Hallyn } [cgmanager] xfce4: 
cannot mount usb drive: "Not authorized to perform operation"
Bug #760366 {Done: Serge Hallyn } [cgmanager] gdm3: 
Stopped showing any users, no way to log in
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
No longer marked as fixed in versions cgmanager/0.36-1.
> found -1 0.36-1
Bug #757348 [cgmanager] systemd: with SysV init, can no longer suspend and 
shutdown from lightdm
Bug #754850 [cgmanager] regression: no suspend/hibernate on non-systemd systems
Bug #757698 [cgmanager] [network-manager] network-manager: Not authorized to 
control networking
Bug #758746 [cgmanager] kde-workspace-bin: Energy saving schemes have no effect
Bug #759745 [cgmanager] gdm3: Unable to login post-upgrade without systemd-sysv 
installed
Bug #760281 [cgmanager] xfce4: cannot mount usb drive: "Not authorized to 
perform operation"
Bug #760366 [cgmanager] gdm3: Stopped showing any users, no way to log in
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.
Marked as found in versions cgmanager/0.36-1.

-- 
754850: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754850
757348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757348
757698: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757698
758746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758746
759745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759745
760281: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760281
760366: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760366
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#757348: systemd: with SysV init, can no longer suspend and shutdown from lightdm

2015-02-13 Thread Vincent Lefevre
Control: reopen -1
Control: found -1 0.36-1

The problem was fixed some time ago, but reappeared. With lightdm,
the 4 operations are greyed out.

Note: I rebooted after the upgrade.

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

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

Versions of packages cgmanager depends on:
ii  init-system-helpers  1.22
ii  libc62.19-15
ii  libcgmanager00.36-1
ii  libdbus-1-3  1.8.16-1
ii  libnih-dbus1 1.0.3-4.3
ii  libnih1  1.0.3-4.3

cgmanager recommends no packages.

cgmanager suggests no packages.

-- no debconf information


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



Bug#775842: 3 left (was: Re: [moodle-packaging] Bug#775842: Bug#775842: moodle: Multiple security issues)

2015-02-13 Thread Joost van Baal-Ilić
Hi,

Op Fri, Feb 13, 2015 at 03:21:49PM +0100 schreef Joost van Baal-Ilić:
> Op Tue, Jan 20, 2015 at 05:15:13PM +0100 schreef Moritz Muehlenhoff:
> > Package: moodle
> > Severity: grave
> > Tags: security
> > Justification: user security hole
> > 
> > The current Moodle package in the archive is affected by multiple security 
> > issues:
> > 
> > Cheers,
> > Moritz
> > 
> > https://security-tracker.debian.org/tracker/CVE-2015-0218

> > https://security-tracker.debian.org/tracker/CVE-2014-2054
> > https://security-tracker.debian.org/tracker/CVE-2013-3630
> 
> These issues indeed are not listed to be fixed in moodle_2.7.5+dfsg-2 which is
> currently in unstable.  I'll upload a new version which explicitly lists the
> CVE's fixed in upstream 2.7.5.
> 
> For the record, on
> https://security-tracker.debian.org/tracker/source-package/moodle, as of 
> today,
> still listed as unfixed in 2.7.5+dfsg-2 are :

>  CVE-2014-4172

php-cas problem, fixed in Debian's php-cas 1.3.3-1 and 1.3.1-4+deb7u1.  Moodle
ships with unchanged phpCAS 1.3.3, see
moodle-2.7.5+dfsg/auth/cas/CAS/moodle_readme.txt Moodle can likely use the
Debian-maintained php-cas package.  I'll try & test that.

>  CVE-2014-2054

Security problem in old version of php-excel, which is shipped with moodle.

https://bugs.debian.org/718585 "RFP: php-excel -- Read, Write and Create Excel
documents in PHP"

Status: hard license problems, will probably never get packaged for Debian.
Popular workaround (as implemented by victims ownCloud and dolibarr): remove
PHPExcel code & functionality from package.  I'll try & test that.

>  CVE-2013-3630

https://tracker.moodle.org/browse/MDL-41449

I'll apply for a Jira account later...  :-/

Bye,

Joost

-- 
Ho Mitakuye Oyasin ※ joostvb@{牛在田里,ad1810}.com ※ http://mdcc.cx/


signature.asc
Description: Digital signature


Bug#778316: nagios-plugins-openstack: package is outdated

2015-02-13 Thread Julien Cristau
Package: nagios-plugins-openstack
Version: 1.20120627-2
Severity: serious
Tags: jessie sid

nagios-plugins-openstack hasn't been updated in almost 3 years, and is
probably not very useful with current-day openstack.  The url in the
package's Homepage field is also MIA.

Cheers,
Julien
-- 
Julien Cristau  
Logilab http://www.logilab.fr/
Informatique scientifique & gestion de connaissances


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



Bug#775842: [moodle-packaging] Bug#775842: moodle: Multiple security issues

2015-02-13 Thread Joost van Baal-Ilić
Hi,

Op Tue, Jan 20, 2015 at 05:15:13PM +0100 schreef Moritz Muehlenhoff:
> Package: moodle
> Severity: grave
> Tags: security
> Justification: user security hole
> 
> The current Moodle package in the archive is affected by multiple security 
> issues:
> 
> Cheers,
> Moritz
> 
> https://security-tracker.debian.org/tracker/CVE-2015-0218
> https://security-tracker.debian.org/tracker/CVE-2015-0217
> https://security-tracker.debian.org/tracker/CVE-2015-0216
> https://security-tracker.debian.org/tracker/CVE-2015-0215
> https://security-tracker.debian.org/tracker/CVE-2015-0214
> https://security-tracker.debian.org/tracker/CVE-2015-0213
> https://security-tracker.debian.org/tracker/CVE-2015-0212
> https://security-tracker.debian.org/tracker/CVE-2015-0211
> https://security-tracker.debian.org/tracker/CVE-2014-9059
> https://security-tracker.debian.org/tracker/CVE-2014-7848
> https://security-tracker.debian.org/tracker/CVE-2014-7847
> https://security-tracker.debian.org/tracker/CVE-2014-7846
> https://security-tracker.debian.org/tracker/CVE-2014-7845
> https://security-tracker.debian.org/tracker/CVE-2014-7838
> https://security-tracker.debian.org/tracker/CVE-2014-7837
> https://security-tracker.debian.org/tracker/CVE-2014-7836
> https://security-tracker.debian.org/tracker/CVE-2014-7835
> https://security-tracker.debian.org/tracker/CVE-2014-7834
> https://security-tracker.debian.org/tracker/CVE-2014-7833
> https://security-tracker.debian.org/tracker/CVE-2014-7832
> https://security-tracker.debian.org/tracker/CVE-2014-7831
> https://security-tracker.debian.org/tracker/CVE-2014-7830
> https://security-tracker.debian.org/tracker/CVE-2014-4172
> https://security-tracker.debian.org/tracker/CVE-2014-3617
> https://security-tracker.debian.org/tracker/CVE-2014-3553
> https://security-tracker.debian.org/tracker/CVE-2014-3551
> https://security-tracker.debian.org/tracker/CVE-2014-3548
> https://security-tracker.debian.org/tracker/CVE-2014-3547
> https://security-tracker.debian.org/tracker/CVE-2014-3546
> https://security-tracker.debian.org/tracker/CVE-2014-3545
> https://security-tracker.debian.org/tracker/CVE-2014-3544
> https://security-tracker.debian.org/tracker/CVE-2014-3543
> https://security-tracker.debian.org/tracker/CVE-2014-3542
> https://security-tracker.debian.org/tracker/CVE-2014-3541
> https://security-tracker.debian.org/tracker/CVE-2014-2054
> https://security-tracker.debian.org/tracker/CVE-2013-3630

These issues indeed are not listed to be fixed in moodle_2.7.5+dfsg-2 which is
currently in unstable.  I'll upload a new version which explicitly lists the
CVE's fixed in upstream 2.7.5.

For the record, on
https://security-tracker.debian.org/tracker/source-package/moodle, as of today,
only

 CVE-2014-4172
 CVE-2014-2054
 CVE-2013-3630

are still listed as unfixed in 2.7.5+dfsg-2.

Thanks for your time.

Bye,

Joost



signature.asc
Description: Digital signature


Bug#735199: marked as done (python-django-lint: Does not work with pylint >= 1.0.0)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 13:26:46 +
with message-id 
and subject line Bug#778241: Removed package(s) from unstable
has caused the Debian Bug report #735199,
regarding python-django-lint: Does not work with pylint >= 1.0.0
to be marked as done.

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

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


-- 
735199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-django-lint
Version: 0.13-2
Severity: grave
Tags: upstream
Justification: renders package unusable

Hi Chris,

seems django-lint is not compatible with the new pylint >= 1.0.0, now in sid:

---
Traceback (most recent call last):
  File "/usr/bin/django-lint", line 9, in 
load_entry_point('django-lint==0.0.0', 'console_scripts', 'django-lint')()
  File "/usr/lib/pymodules/python2.7/DjangoLint/script.py", line 119, in main
AstCheckers.register(linter)
  File "/usr/lib/pymodules/python2.7/DjangoLint/AstCheckers/__init__.py", line 
22, in register
from size import SizeChecker
  File "/usr/lib/pymodules/python2.7/DjangoLint/AstCheckers/size.py", line 19, 
in 
from pylint.interfaces import IASTNGChecker
ImportError: cannot import name IASTNGChecker
---

Hth,

Stephan

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

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

Versions of packages python-django-lint depends on:
ii  pylint0.25.1-1
ii  python2.7.5-5
ii  python-pkg-resources  2.0.2-1
ii  python-support1.0.15

Versions of packages python-django-lint recommends:
ii  python-django  1.6.1-1

python-django-lint suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 0.13-2+rm

Dear submitter,

as the package python-django-lint has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/778241

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#778302: MATE: Default file browser for "Places" submenu indeterministically set to applications that are not "Caja"

2015-02-13 Thread Philipp Pilhofer
Am 13.02.2015 um 12:48 schrieb Mike Gabriel:
> 
> Happy about opinions and feedback. Thanks!
> 

I experienced this problem in wheezy several times, I thought it might have to 
do with installing
from backports, that's why I didn't report it.

It definitely would be good to have it fixed in jessie.


Thank you for your hard work,
Philipp


PS If there's an option to have it fixed for jessie, I'd really like to see 
#776698 fixed there, too.


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



Bug#778302: MATE: Default file browser for "Places" submenu indeterministically set to applications that are not "Caja"

2015-02-13 Thread Mike Gabriel
Package: mate-desktop-environment-core
Version: 1.8.0+9
Severity: grave

Dear all,

I just discovered a (as I find) grave issue in the default session
profile setup of the MATE desktop environment.

Reproduce:

  o install applications providing a MIME type for inode/directory, e.g.
  + nautilus
  + pcmanfm
  + audacious (WTF???)
  + ... (maybe others) ...

  o install the package "mate-desktop-environment" o create a new user
account o login under MATE desktop session with this fresh user account

What you will see is:

  o Go to "Places -> Home Folder"
  o Click

  o It is very likely that not MATE's file browser "Caja" will open now,
but nautilus or pcmanfm

Then try:

  o apt-get remove nautilus
  o create a new account
  o log into MATE desktop session with this new account

  o It is very likely that not MATE's file browser "Caja" will open now,
but pcmanfm (or even audacious).


The first-picked handler for inode/directory MIME type will get stored
for a new MATE user. It has to be changed manually via the "Preferred
Applications" MATE control panel applet. People have to actively decide
if they want to use Caja with MATE. This cannot be.

The issue can be worked-around by placing this file:

"""
[Default Applications]
inode/directory=caja-folder-handler.desktop
"""

into ~/.local/share/applications/mimeapps.list (or into the corresponding
folder in /etc/skel) (as suggested by Martin Wimpress from Ubuntu MATE).

It is and should be legitimate that several desktop shells are installed
on the same system and that the user can choose, but those desktop shells
should not interfere with each other. And where they do (by design), I
think we should intervene for default session setup procedure.

I consider this indeterministic behaviour a release critical issue for
Debian jessie.

I have contacted upstream and Ubuntu MATE team to discuss a solution for
this, but it still needs feedback from some of the upstream devs. I
understand that some people love to combine different apps from different
desktop projects, but for those who want to use MATE with non-Caja
applications (as default), I recommend using the above mentioned
mimeapps.list hack.

Happy about opinions and feedback. Thanks!

Greets,
Mike


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

Kernel: Linux 3.16.0-4-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: sysvinit (via /sbin/init)

Versions of packages mate-desktop-environment-core depends on:
ii  caja1.8.2-2
ii  dconf-gsettings-backend [gsettings-backend] 0.22.0-1
ii  gvfs-bin1.22.2-1
ii  marco   1.8.2+dfsg1-4
ii  mate-backgrounds1.8.0-2
ii  mate-control-center 1.8.3+dfsg1-1
ii  mate-desktop1.8.1+dfsg1-2
ii  mate-icon-theme 1.8.0-1
ii  mate-menus  1.8.0-5
ii  mate-notification-daemon [notification-daemon]  1.8.1-2
ii  mate-panel  1.8.1+dfsg1-3
ii  mate-polkit 1.8.0+dfsg1-4
ii  mate-session-manager1.8.1-7
ii  mate-settings-daemon1.8.2-2
ii  mate-terminal   1.8.1+dfsg1-4

mate-desktop-environment-core recommends no packages.

mate-desktop-environment-core suggests no packages.

-- no debconf information


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



Bug#775971: marked as done (systemd-logind is installed on minimal install, but dbus which is required is not.)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 11:34:11 +
with message-id 
and subject line Bug#772700: fixed in systemd 215-12
has caused the Debian Bug report #772700,
regarding systemd-logind is installed on minimal install, but dbus which is 
required is not.
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.)


-- 
772700: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772700
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: systemd
Version: 215-8


First time reporting a bug to a core package, so I hope I've got everything
write.
When performing a new installation of Jessie using the current installer,
but without selecting anything on the tasksel screen (not even basic system
libraries), systemd-logind will error and fail to start on boot. This is a
result of dbus having only a priority of recommends. Given how central dbus
is to functionality of systemd, I think a prudent option would be to make
it a depend.

Thanks
--- End Message ---
--- Begin Message ---
Source: systemd
Source-Version: 215-12

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

Debian distribution maintenance software
pp.
Martin Pitt  (supplier of updated systemd 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, 13 Feb 2015 12:08:31 +0100
Source: systemd
Binary: systemd systemd-sysv libpam-systemd libsystemd0 libsystemd-dev 
libsystemd-login0 libsystemd-login-dev libsystemd-daemon0 libsystemd-daemon-dev 
libsystemd-journal0 libsystemd-journal-dev libsystemd-id128-0 
libsystemd-id128-dev udev libudev1 libudev-dev udev-udeb libudev1-udeb 
libgudev-1.0-0 gir1.2-gudev-1.0 libgudev-1.0-dev python3-systemd systemd-dbg
Architecture: source amd64
Version: 215-12
Distribution: unstable
Urgency: medium
Maintainer: Debian systemd Maintainers 

Changed-By: Martin Pitt 
Description:
 gir1.2-gudev-1.0 - libgudev-1.0 introspection data
 libgudev-1.0-0 - GObject-based wrapper library for libudev
 libgudev-1.0-dev - libgudev-1.0 development files
 libpam-systemd - system and service manager - PAM module
 libsystemd-daemon-dev - systemd utility library (transitional package)
 libsystemd-daemon0 - systemd utility library (deprecated)
 libsystemd-dev - systemd utility library - development files
 libsystemd-id128-0 - systemd 128 bit ID utility library (deprecated)
 libsystemd-id128-dev - systemd 128 bit ID utility library (transitional 
package)
 libsystemd-journal-dev - systemd journal utility library (transitional package)
 libsystemd-journal0 - systemd journal utility library (deprecated)
 libsystemd-login-dev - systemd login utility library (transitional package)
 libsystemd-login0 - systemd login utility library (deprecated)
 libsystemd0 - systemd utility library
 libudev-dev - libudev development files
 libudev1   - libudev shared library
 libudev1-udeb - libudev shared library (udeb)
 python3-systemd - Python 3 bindings for systemd
 systemd- system and service manager
 systemd-dbg - system and service manager (debug symbols)
 systemd-sysv - system and service manager - SysV links
 udev   - /dev/ and hotplug management daemon
 udev-udeb  - /dev/ and hotplug management daemon (udeb)
Closes: 759320 767267 772700 776546 777601
Changes:
 systemd (215-12) unstable; urgency=medium
 .
   [ Martin Pitt ]
   * debian/udev.README.Debian: Trim the parts which are obsolete, wrong, or
 described in manpages. Only keep the Debian specific bits.
 (Part of #776546)
   * Actually install udev's README.Debian when building for Debian.
 (Closes: #776546)
   * Only start logind if dbus is installed. This fixes the noisy startup
 failure in environments without dbus such as LXC containers or servers.
 (part of #772700)
   * Add getty-static.service unit which starts getty@.service on tty 2 to 6 if
 dbus is not installed, and hence logind cannot auto-start them on demand.
 (Closes: #772700)
   * Add unit-config autopkgtest to check systemd unit/sysv init enabling and
 disabling via systemctl. This avoids bugs like #777613 (did not 

Bug#769728: marked as done (Logind does not start properly on freshly installed minimal systems)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 11:34:11 +
with message-id 
and subject line Bug#772700: fixed in systemd 215-12
has caused the Debian Bug report #772700,
regarding Logind does not start properly on freshly installed minimal systems
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.)


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

Boot method: netboot
Image version: http://d-i.debian.org/daily-images/armhf/daily/netboot/
   dated 15-Nov-2014 05:25
Date: 2014-11-15

Machine: Cubietech Cubietruck
Processor: Allwinner A20 (2x Cortex A7)
Memory: 2GB

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[E]

Comments/Problems:
The installation itself works flawlessly, but when installing a
minimal system by deselecting "standard system utilities" in
tasksel, on booting the installed system the systemd error
message "[FAILED] Failed to start Login Service" gets shown
several times.

"systemctl status -l systemd-logind.service" results in:
-8<--8<--8<--8<--8<--8<-
 systemd-logind.service - Login Service
   Loaded: loaded (/lib/systemd/system/systemd-logind.service; static)
   Active: failed (Result: start-limit) since Sat 2014-11-15 22:21:56 CET; 1min 
13s ago
 Docs: man:systemd-logind.service(8)
   man:logind.conf(5)
   http://www.freedesktop.org/wiki/Software/systemd/logind
   http://www.freedesktop.org/wiki/Software/systemd/multiseat
  Process: 273 ExecStart=/lib/systemd/systemd-logind (code=exited, 
status=1/FAILURE)
 Main PID: 273 (code=exited, status=1/FAILURE)
   Status: "Shutting down..."

Nov 15 22:21:56 debian systemd[1]: Failed to start Login Service.
Nov 15 22:21:56 debian systemd[1]: Unit systemd-logind.service entered failed 
state.
Nov 15 22:21:56 debian systemd[1]: systemd-logind.service has no holdoff time, 
scheduling restart.
Nov 15 22:21:56 debian systemd[1]: Stopping Login Service...
Nov 15 22:21:56 debian systemd[1]: Starting Login Service...
Nov 15 22:21:56 debian systemd[1]: systemd-logind.service start request 
repeated too quickly, refusing to start.
Nov 15 22:21:56 debian systemd[1]: Failed to start Login Service.
Nov 15 22:21:56 debian systemd[1]: Unit systemd-logind.service entered failed 
state.
-8<--8<--8<--8<--8<--8<-

When "standard system utilities" is selected in tasksel, the
problem does not occur.  Deselecting "standard system utilities"
did not have any negatve effect on the boot process when d-i
still installed SysV-init as the default init system, so this is
a regression.

Following is a full boot log of an installation with "standard
system utilities" deselected in tasksel:

-8<--8<--8<--8<--8<--8<-

Starting kernel ...

[0.00] Booting Linux on physical CPU 0x0
[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Initializing cgroup subsys cpuacct
[0.00] Linux version 3.16.0-4-armmp-lpae 
(debian-ker...@lists.debian.org) (gcc version 4.8.3 (Debian 4.8.3-13) ) #1 SMP 
Debian 3.16.7-2 (2014-11-06)
[0.00] CPU: ARMv7 Processor [410fc074] revision 4 (ARMv7), cr=30c5387d
[0.00] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing 
instruction cache
[0.00] Machine model: Cubietech Cubietruck
[0.00] Forcing write-allocate cache policy for SMP
[0.00] Memory policy: Data cache writealloc
[0.00] psci: probing for conduit method from DT.
[0.00] psci: Using PSCI v0.1 Function IDs from DT
[0.00] PERCPU: Embedded 9 pages/cpu @ee7cc000 s13248 r8192 d15424 u36864
[0.00] Built 1 zonelists in Zone order, mobility grouping on.  Total 
pages: 522768
[0.00] Kernel command line: console=ttyS0,115200 console=ttyS0,115200
[0.00] PID hash table entries: 4096 (order: 2, 16384 bytes)
[0.00] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[0.00] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)

Bug#772700: marked as done (systemd-logind.service fails to start if dbus is missing)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 11:34:11 +
with message-id 
and subject line Bug#772700: fixed in systemd 215-12
has caused the Debian Bug report #772700,
regarding systemd-logind.service fails to start if dbus is missing
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.)


-- 
772700: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772700
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: systemd
Version: 215-8
Severity: important
Tags: patch

If the dbus package is not installed, systemd-logind.service will fail
to start. dbus is currently only a recommends and priority standard, so
it's not installed by a minimal base installation.
The end result is, that such base installation will start in degraded
mode.
Another side-effect of systemd-logind failing to start is, that the
getty autostart for vt2-6 is not working [1].

The failing systemd-logind.service in absence of dbus can be solved with
a Condition, like in the attached patch.
We would still need an answer/patch for [1] though. One proposal is, to
provide an alternative getty target, which pulls in all six gettys.

The alternative would be, to make dbus a hard requirement, so it's
always installed. Simon McVittie voiced concerns though in making dbus
mandatory.


Comments welcome.


[1] 
http://lists.alioth.debian.org/pipermail/pkg-systemd-maintainers/2014-November/004428.html
-- Package-specific info:

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
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-58
ii  libacl1 2.2.52-2
ii  libaudit1   1:2.4-1+b1
ii  libblkid1   2.25.2-3
ii  libc6   2.19-13
ii  libcap2 1:2.24-6
ii  libcap2-bin 1:2.24-6
ii  libcryptsetup4  2:1.6.6-3
ii  libgcrypt20 1.6.2-4+b1
ii  libkmod218-3
ii  liblzma55.1.1alpha+20120614-2+b3
ii  libpam0g1.1.8-3.1
ii  libselinux1 2.3-2
ii  libsystemd0 215-8
ii  mount   2.25.2-3
ii  sysv-rc 2.88dsf-58
ii  udev215-8
ii  util-linux  2.25.2-3

Versions of packages systemd recommends:
ii  dbus1.8.12-1
ii  libpam-systemd  215-8

Versions of packages systemd suggests:
ii  systemd-ui  3-2

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

-- no debconf information
diff --git a/units/systemd-logind.service.in b/units/systemd-logind.service.in
index c6cbd1c..ef68aa0 100644
--- a/units/systemd-logind.service.in
+++ b/units/systemd-logind.service.in
@@ -12,6 +12,7 @@ Documentation=http://www.freedesktop.org/wiki/Software/systemd/logind
 Documentation=http://www.freedesktop.org/wiki/Software/systemd/multiseat
 Wants=user.slice
 After=nss-user-lookup.target user.slice
+ConditionFileIsExecutable=/usr/bin/dbus-daemon
 
 # Ask for the dbus socket. If running over kdbus, the socket will
 # not be actually used.
--- End Message ---
--- Begin Message ---
Source: systemd
Source-Version: 215-12

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

Debian distribution maintenance software
pp.
Martin Pitt  (supplier of updated systemd 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, 13 Feb 2015 12:08:31 +0100
Source: systemd
Binary: systemd systemd-sysv libpam-systemd libsystemd0 libsystemd-dev 
libsystemd-login0 libsystemd-login-dev libsystemd-daemon0 libsystemd-daemon-dev 
libsystemd-journal0 libsystemd-journal-dev libsystemd-id128-0 
libsystemd-id128-dev udev libudev1 libudev-dev udev-udeb libudev1-udeb 
libgudev-1.0-0 gir1.2-gudev-1.0 libgudev-1.0-dev python3-systemd systemd-dbg
Architecture: source amd64
Version: 215-12
Distribution: unstable
Urgency: medium
Maintainer: Debian sy

Bug#764298: marked as done ("Failed to start Login Service." after upgrade to 215-5+b1)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 11:34:11 +
with message-id 
and subject line Bug#772700: fixed in systemd 215-12
has caused the Debian Bug report #772700,
regarding "Failed to start Login Service." after upgrade to 215-5+b1
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.)


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

Package: systemd
Version: 215-5+b1

Greetings,

see below, errors after the latest apt-get (dist-)upgrade on a
minimal install Jessie VM which was running fine before.

Before the upgrade, I had the impression that the system wasn't
using logind at all. At least a search in my remote syslog db
doesn't find anything with the string 'logind' in it, up to the point
when I restarted the VM after the upgrade.


Maybe related:
after the upgrade, it suggested to autoremove

libdbus-1-3  1.8.6-2
libgcrypt11  1.5.4-3
libsystemd-daemon0   208-8
libsystemd-journal0  208-8
libsystemd-login0208-8

so I did.


I see in b.d.o that the "exit status 32" is being worked on - not sure
if that's related? The mounts look okay to me, after bootup,
nothing seems missing or read only.


Please tell me if you need more info, and what you need.
If it helps, I could do a rollback and redo the upgrade.


Regards
Ingmar


---snip journalctl---

Oct 06 23:13:53 bpo-jessie-s systemd[1]: Cannot add dependency job for 
unit dbus.socket, ignoring: Unit dbus.socket failed to load: No such 
file or directory.
Oct 06 23:13:53 bpo-jessie-s systemd-logind[433]: Failed to connect to 
system bus: No such file or directory
Oct 06 23:13:53 bpo-jessie-s systemd-logind[433]: Failed to fully start 
up daemon: No such file or directory
Oct 06 23:13:53 bpo-jessie-s systemd[1]: systemd-logind.service: main 
process exited, code=exited, status=1/FAILURE

Oct 06 23:13:53 bpo-jessie-s systemd[1]: Failed to start Login Service.
-- Subject: Unit systemd-logind.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit systemd-logind.service has failed.
--
-- The result is failed.
Oct 06 23:13:53 bpo-jessie-s systemd[1]: Unit systemd-logind.service 
entered failed state.



---snip syslog---

Oct  6 23:13:53 jessie-test kernel: alg: No test for crc32 (crc32-pclmul)
Oct  6 23:13:53 jessie-test kernel: EXT4-fs (vda3): re-mounted. Opts: 
errors=remount-ro
Oct  6 23:13:53 jessie-test kernel: EXT4-fs (vda6): mounted filesystem 
with ordered data mode. Opts: (null)
Oct  6 23:13:53 jessie-test kernel: EXT4-fs (vda5): mounted filesystem 
with ordered data mode. Opts: (null)
Oct  6 23:13:53 jessie-test kernel: EXT4-fs (vda1): mounted filesystem 
with ordered data mode. Opts: (null)
Oct  6 23:13:53 jessie-test kernel: EXT4-fs (vda4): mounted filesystem 
with ordered data mode. Opts: (null)
Oct  6 23:13:53 jessie-test systemd-fsck[108]: /dev/vda3: clean, 
2773/117856 files, 119073/471040 blocks
Oct  6 23:13:53 jessie-test systemd-udevd[132]: Network interface 
NamePolicy= disabled on kernel commandline, ignoring.
Oct  6 23:13:53 jessie-test systemd-fsck[161]: /dev/vda1: clean, 
297/12288 files, 34551/49152 blocks
Oct  6 23:13:53 jessie-test systemd-fsck[174]: /dev/vda5: clean, 
3857/65536 files, 24471/261888 blocks
Oct  6 23:13:53 jessie-test systemd-fsck[187]: /dev/vda6: clean, 
29/98304 files, 22686/393216 blocks
Oct  6 23:13:53 jessie-test keyboard-setup[135]: Setting preliminary 
keymap...done.
Oct  6 23:13:53 jessie-test systemd-remount-fs[229]: mount: /usr not 
mounted or bad option
Oct  6 23:13:53 jessie-test systemd-remount-fs[229]: /bin/mount for /usr 
exited with exit status 32.
Oct  6 23:13:53 jessie-test systemd[1]: systemd-remount-fs.service: main 
process exited, code=exited, status=1/FAILURE
Oct  6 23:13:53 jessie-test systemd[1]: Failed to start Remount Root and 
Kernel File Systems.
Oct  6 23:13:53 jessie-test systemd[1]: Unit systemd-remount-fs.service 
entered failed state.
Oct  6 23:13:53 jessie-test systemd[1]: systemd-logind.service: main 
process exited, code=exited, status=1/FAILURE

Oct  6 23:13:53 jessie-test systemd[1]: Failed to start Login Service.
Oct  6 23:13:53 jessie-test systemd[1]: Unit systemd-logind.service 
entered failed state.
Oct  6 23:13:53 jessie-test systemd[1]: Cannot add dependency job for 
unit dbus.socket, ignoring: Unit dbus.socket failed to load: No such 
file or directory.
Oct  6 23:13:53 jessie-test systemd[1]: systemd-logind.service: main 
process ex

Bug#778293: marked as done (open-vm-tools: vmhgfs module fails to compile with kernel 3.16.7-ckt4-3)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 11:04:00 +
with message-id 
and subject line Bug#778293: fixed in open-vm-tools 2:9.4.6-1770165-8
has caused the Debian Bug report #778293,
regarding open-vm-tools: vmhgfs module fails to compile with kernel 
3.16.7-ckt4-3
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.)


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

Dear Maintainer,

vmhgfs module fails to build with the latest kernel (Linux debian-jessie-amd64 
3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt4-3 (2015-02-03) x86_64 GNU/Linux)

in make.out:

In file included from 
/usr/src/linux-headers-3.16.0-4-common/include/linux/compiler-gcc.h:106:0,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/linux/compiler.h:54,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/uapi/linux/stddef.h:1,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/linux/stddef.h:4,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/uapi/linux/posix_types.h:4,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/uapi/linux/types.h:13,
 from 
/usr/src/linux-headers-3.16.0-4-common/include/linux/types.h:5,
 from 
/var/lib/dkms/open-vm-tools/9.4.6/build/vmhgfs/./shared/driver-config.h:71,
 from /var/lib/dkms/open-vm-tools/9.4.6/build/vmhgfs/inode.c:26:
/usr/src/linux-headers-3.16.0-4-common/include/linux/compiler-gcc4.h:14:34: 
error: 'struct dentry' has no member named 'd_alias'


-- System Information:
Debian Release: 8.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages open-vm-tools depends on:
ii  init-system-helpers  1.22
ii  libc62.19-13
ii  libdumbnet1  1.12-6
ii  libfuse2 2.9.3-15+b1
ii  libgcc1  1:4.9.1-19
ii  libglib2.0-0 2.42.1-1
ii  libicu52 52.1-7
ii  libprocps3   2:3.3.9-8
ii  libstdc++6   4.9.1-19

Versions of packages open-vm-tools recommends:
pn  ethtool   
pn  zerofree  

Versions of packages open-vm-tools suggests:
pn  open-vm-tools-desktop  

-- Configuration Files:
/etc/vmware-tools/tools.conf changed:


-- no debconf information
--- End Message ---
--- Begin Message ---
Source: open-vm-tools
Source-Version: 2:9.4.6-1770165-8

We believe that the bug you reported is fixed in the latest version of
open-vm-tools, 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.
Bernd Zeimetz  (supplier of updated open-vm-tools 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, 13 Feb 2015 11:26:59 +0100
Source: open-vm-tools
Binary: open-vm-tools open-vm-tools-desktop open-vm-tools-dev open-vm-tools-dbg 
open-vm-tools-dkms
Architecture: source amd64 all
Version: 2:9.4.6-1770165-8
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Description:
 open-vm-tools - Open VMware Tools for virtual machines hosted on VMware (CLI)
 open-vm-tools-dbg - Open VMware Tools for virtual machines hosted on VMware 
(debug)
 open-vm-tools-desktop - Open VMware Tools for virtual machines hosted on 
VMware (GUI)
 open-vm-tools-dev - Open VMware Tools for virtual machines hosted on VMware 
(developm
 open-vm-tools-dkms - Open VMware Tools for virtual machines hosted on VMware 
(DKMS)
Closes: 778293
Changes:
 open-vm-tools (2:9.4.6-1770165-8) unstable; urgency=medium
 .
   * [406817b6] Add patch to move from d_alias to d_u.d_alias.
 Make open-vm-tools build with the recent jessie kernel again.
 Thanks to Timo Metsala (Closes: #778293)
Checksums-Sha1:
 79fdb18e2df76d4e25c88237d933cec7f5a5f312 2449 open

Processed: jessie

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

> tags 777556 + sid jessie
Bug #777556 [perl] perl: regexp performance regression since 5.18
Added tag(s) sid and jessie.
> tags 777595 + wheezy-ignore
Bug #777595 [src:update-notifier] update-notifier: Wrong license in 
debian/copyright (compared to COPYING)
Added tag(s) wheezy-ignore.
> # debian/copyright is wrong, but everything is distributable
> thanks
Stopping processing here.

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


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



Processed: reassign 778293 to open-vm-tools-dkms

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

> reassign 778293 open-vm-tools-dkms
Bug #778293 [open-vm-tools] open-vm-tools: vmhgfs module fails to compile with 
kernel 3.16.7-ckt4-3
Bug reassigned from package 'open-vm-tools' to 'open-vm-tools-dkms'.
No longer marked as found in versions open-vm-tools/2:9.4.6-1770165-7.
Ignoring request to alter fixed versions of bug #778293 to the same values 
previously set
> thanks
Stopping processing here.

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


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



Processed: severity of 778293 is serious

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

> severity 778293 serious
Bug #778293 [open-vm-tools] open-vm-tools: vmhgfs module fails to compile with 
kernel 3.16.7-ckt4-3
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

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


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



Bug#774393: marked as done (fssync: possible data corruption on destination side)

2015-02-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Feb 2015 09:19:40 +
with message-id 
and subject line Bug#774393: fixed in fssync 1.5-1
has caused the Debian Bug report #774393,
regarding fssync: possible data corruption on destination side
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.)


-- 
774393: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774393
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fssync
Severity: grave
Tags: fixed-upstream
Justification: causes non-serious data loss

I fixed 2 serious bugs upstream. In some cases, the DB was wrongly updated,
which would later cause useless resync or corruption.

See 
http://jmuchemb.eu/fssync.git/commit/45a3425f48a42d415887333f67cb317b01df24da?js=1
and 
http://jmuchemb.eu/fssync.git/commit/5f98a3720f39d75d993051be80d928aedbeb305e?js=1
for more information.

I also fixed another (non-RC) bug which required a small change in the protocol:
  
http://jmuchemb.eu/fssync.git/commit/2e05ddbb78ba5f9a4d272a1fa5a2f05a3312c01e?js=1
If an upload is done only with the first 2 patches, the stable version would
immediately get non-interoperable with the testing/sid when Jessie is released.

I'd like to tag the current master branch as 1.5 and that this new version
is part of Jessie. Otherwise, I prefer not to waste time and that fssync gets
removed from testing.
--- End Message ---
--- Begin Message ---
Source: fssync
Source-Version: 1.5-1

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

Debian distribution maintenance software
pp.
Julien Muchembled  (supplier of updated fssync 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, 09 Feb 2015 20:20:22 +0100
Source: fssync
Binary: fssync
Architecture: source all
Version: 1.5-1
Distribution: unstable
Urgency: medium
Maintainer: Julien Muchembled 
Changed-By: Julien Muchembled 
Description:
 fssync - File system synchronization tool (1-way, over SSH)
Closes: 774393
Changes:
 fssync (1.5-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #774393).
   * Update Standards-Version to 3.9.6 (no change needed).
   * Update debian/NEWS to recommend again to upgrade fssync on both sides and
 to check data.
Checksums-Sha1:
 21dfbe478d8ab82dc91594c3ad892942a2e41b4a 1710 fssync_1.5-1.dsc
 a3ccd745a652a7ac5bde462709624164fe3c373c 30792 fssync_1.5.orig.tar.xz
 941bc0144313073d2c3b346f9ca51b35093bfd1d 2664 fssync_1.5-1.debian.tar.xz
 48e32ce548366538f8b97e6c5bede6d10fd17f1f 22340 fssync_1.5-1_all.deb
Checksums-Sha256:
 fe854f3f3a2ff06f336eb3b03d160b01a5e735817dcfe2b96590391a21a97452 1710 
fssync_1.5-1.dsc
 33a66c2eaea8256ad04068166faf3d7ac90d09630f7601f0f20aa62f0818f19b 30792 
fssync_1.5.orig.tar.xz
 6e8f3c3b42cfa8c1979e1e634dde7e953a5a0a23175f86e882714e2d7ee6c785 2664 
fssync_1.5-1.debian.tar.xz
 5b9903ad1a01ad447f989c4d47236dd33bc29127c66591bbf9597852690d8759 22340 
fssync_1.5-1_all.deb
Files:
 c7535a9433c0adc5f957f9b74644b413 1710 utils extra fssync_1.5-1.dsc
 ddb3652e7a171aafad914dda6fd64b01 30792 utils extra fssync_1.5.orig.tar.xz
 bad82f48a1937843196b3de0494f859c 2664 utils extra fssync_1.5-1.debian.tar.xz
 c4301a7d3f4be366b38ba80e38be39d2 22340 utils extra fssync_1.5-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJU3a8rAAoJEDZ6q2L9ANPZi6IP/j/r2hOg4EsrovSWvzCLIk9t
tVMqEHjsKGWSSM/JZfBLHUDISgKLR5wlnbf9UrcDmlKm6omH23H/PfQWEJckfLqj
iCTjA5UvErSnZBAeH/+jDk/uSVwhOROZpRneBFPnOn1vUI7wqXFW8QPV651SrDps
r/T+XHcZF3Aw2k9ivkaJUi2nmHiihDMfSGWUbr6y8qGwX1WeKW1F88Lfsh6sHliL
bOzCuVcNlVrpldFV0fy64HZH2RX3fDQ7H17Hhg4qlw2mc7qrMW+G97UFWIMAE1EP
h2CNIP/n4i6aBvAITFZcDlIG1a6bkc5CO3QYhiBV3jr5Yno0YD6H7Wa6YfdTBvxk
x+mh+u26wxCwiXd4LmDFLs2n9F7R6tKKOO1O+PbBnJDb4YyZhq2tWjp0kNFOFHyt
h1uTougIJJd9RkJFaK03VYbbogfj1Q/ZMRKozoLxGNmSbLVTrARSBLMwYzCmUPEz
WBouwM4bfxEEGgiE92HlB9FD2xAFmLSe7iKczgYhWHET6dj8vST5GA2FSORmy4X0
0dfmH5FEK6OLhCcCf/s2vuxBXjGPAwJGPBHCBAGAOK3Rtz9kdmxSvvjbzhs4TDk6
kGik4ZsT2nmmkq3ot6upl8xLXLtqRuKfiROxiAtDq7q5Da5f2xdV4qkT6GnKsSBL
bA36Cf33o3gWHtN3asom
=rGxY
-END PGP SIGNATURE End Message ---