Processed: block 864404 by 878816

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

> block 864404 by 878816
Bug #864404 [lttng-modules-dkms] lttng-modules-dkms: module FTBFS in stretch 
against Linux 4.9-rt (succeeds for non-rt)
864404 was blocked by: 864463
864404 was not blocking any bugs.
Added blocking bug(s) of 864404: 878816
> quit
Stopping processing here.

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



Bug#879215: stretch-pu: package live-config/5.20170112

2017-10-20 Thread Cyril Brulebois
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

[ debian-cd/debian-live in copy. ]

Hi,

We've been having issues with KDE live images, and since this popped up
on #debian-cd again, a few days ago, I've looked into backporting a fix
from unstable to stable. The source debdiff is attached, and here's the 
changelog entry:
| live-config (5.20170112+deb9u1) stretch; urgency=medium
| 
|   [ Cyril Brulebois ]
|   * Cherry-pick the change below to improve KDE live images.
| 
|   [ Алексей Шилин ]
|   * Add components/0085-sddm to configure autologin for KDE / Plasma live
| images. Closes: #865382.
| 
|  -- Cyril Brulebois   Fri, 20 Oct 2017 16:53:40 +0200

Until this gets reviewed and ACK/NACKed by the release team, I've pushed
a stretch branch to live-config.git, except for the final “dch -r”, in
case something needs fixing before the upload.

Thanks for your attention & time.


KiBi.
diff -Nru live-config-5.20170112/components/0085-sddm 
live-config-5.20170112+deb9u1/components/0085-sddm
--- live-config-5.20170112/components/0085-sddm 1970-01-01 01:00:00.0 
+0100
+++ live-config-5.20170112+deb9u1/components/0085-sddm  2017-10-19 
13:18:15.0 +0200
@@ -0,0 +1,81 @@
+#!/bin/sh
+
+## live-config(7) - System Configuration Components
+## Copyright (C) 2006-2015 Daniel Baumann 
+##
+## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
+#set -e
+
+Cmdline ()
+{
+   # Reading kernel command line
+   for _PARAMETER in ${LIVE_CONFIG_CMDLINE}
+   do
+   case "${_PARAMETER}" in
+   live-config.noautologin|noautologin)
+   LIVE_CONFIG_NOAUTOLOGIN="true"
+   ;;
+
+   live-config.nox11autologin|nox11autologin)
+   LIVE_CONFIG_NOX11AUTOLOGIN="true"
+   ;;
+
+   live-config.username=*|username=*)
+   LIVE_USERNAME="${_PARAMETER#*username=}"
+   ;;
+   esac
+   done
+}
+
+Init ()
+{
+   # Disables both console and graphical autologin.
+   case "${LIVE_CONFIG_NOAUTOLOGIN}" in
+   true)
+   exit 0
+   ;;
+   esac
+
+   # Disables graphical autologin, no matter what mechanism
+   case "${LIVE_CONFIG_NOX11AUTOLOGIN}" in
+   true)
+   exit 0
+   ;;
+   esac
+
+   # Checking if package is installed or already configured
+   if [ ! -e /var/lib/dpkg/info/sddm.list ] || \
+  [ -e /var/lib/live/config/sddm ]
+   then
+   exit 0
+   fi
+
+   echo -n " sddm"
+}
+
+Config ()
+{
+   # autologin
+   if [ -n "${LIVE_USERNAME}" ]
+   then
+   cat > /etc/sddm.conf << EOF
+[Autologin]
+User=${LIVE_USERNAME}
+Session=plasma.desktop
+EOF
+   fi
+
+   # Avoid xinit
+   touch /var/lib/live/config/xinit
+
+   # Creating state file
+   touch /var/lib/live/config/sddm
+}
+
+Cmdline
+Init
+Config
diff -Nru live-config-5.20170112/debian/changelog 
live-config-5.20170112+deb9u1/debian/changelog
--- live-config-5.20170112/debian/changelog 2017-01-12 18:11:22.0 
+0100
+++ live-config-5.20170112+deb9u1/debian/changelog  2017-10-20 
16:53:40.0 +0200
@@ -1,3 +1,14 @@
+live-config (5.20170112+deb9u1) stretch; urgency=medium
+
+  [ Cyril Brulebois ]
+  * Cherry-pick the change below to improve KDE live images.
+
+  [ Алексей Шилин ]
+  * Add components/0085-sddm to configure autologin for KDE / Plasma live
+images. Closes: #865382.
+
+ -- Cyril Brulebois   Fri, 20 Oct 2017 16:53:40 +0200
+
 live-config (5.20170112) unstable; urgency=medium
 
   * Team upload.


Bug#879200: postmap broken by stable point release

2017-10-20 Thread Peter Palfrader
Package: postfix
Version: 3.1.6-0+deb9u1
Severity: important

Hi!

the most resent postfix update in stable broke postmap on files that are
not in the current directory:

| root@playbox01:~# postmap test/in
| postmap: fatal: open database test/in.db: No such file or directory


More detailed script:
previous version:
} root@playbox01:~# dpkg -s postfix  | grep Version
} Version: 3.1.4-7
} root@playbox01:~# mkdir test
} root@playbox01:~# echo 't...@example.com foo:' > test/in
} root@playbox01:~# postmap test/in
} root@playbox01:~# ls -l test
} total 12
} -rw-r--r-- 1 root root22 Oct 20 11:10 in
} -rw-r--r-- 1 root root 12288 Oct 20 11:10 in.db

current version:
] root@playbox01:~# rm -rf test
] root@playbox01:~# dpkg -s postfix  | grep Version
] Version: 3.1.6-0+deb9u1
] root@playbox01:~# mkdir test
] root@playbox01:~# echo 't...@example.com foo:' > test/in
] root@playbox01:~# postmap test/in
] postmap: fatal: open database test/in.db: No such file or directory
] root@playbox01:~#·
] root@playbox01:~# ls -l test
] total 4
] -rw-r--r-- 1 root root 22 Oct 20 11:11 in

Note that it still works in the current directory:
] root@playbox01:~# cd test
] root@playbox01:~/test# postmap in
] root@playbox01:~/test# ls -l
] total 12
] -rw-r--r-- 1 root root22 Oct 20 11:11 in
] -rw-r--r-- 1 root root 12288 Oct 20 11:11 in.db

Cheers,
-- 
|  .''`.   ** Debian **
  Peter Palfrader   | : :' :  The  universal
 https://www.palfrader.org/ | `. `'  Operating System
|   `-https://www.debian.org/



Bug#879176: transition: lz4

2017-10-20 Thread Mattia Rizzolo
On Fri, Oct 20, 2017 at 12:32:06PM +0900, Nobuhiro Iwamatsu wrote:
> I'd like to push lz4 1.8.0 into unstable.
> The library packge name has not changed since the previous version. However,
> some API have been removed . Therefore, lz4 1.8.0 requires transition
> processing,

Since, as the symbols diff you attached, this version removes symbols,
therefore breaking the ABI, shouldn't the SONAME be changed as well,
together with the package name (i.e. liblz4-1 → liblz4-2).

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#871469: Status of llvm-toolchain-3.8?

2017-10-20 Thread Sylvestre Ledru
Le 20/10/2017 à 10:09, Stéphane Glondu a écrit :
> Hello,
>
> At the moment, llvm-toolchain-3.8 FTBFS with "gcc-7.2: Command not
> found" and this blocks the OCaml transition.
>
> I see there are already bugs open related to gcc-7 (#871011 and
> #853523), but these do not have recent activity.
>
> I also see that this package has been requested to be removed
> (#873331), but again no recent activity on this bug.
>
> Is there any plans to fix llvm-toolchain-3.8? 

I wish we could removed it but it is far from ready (we were blocked by
the ocaml transition but I dropped the ocaml support to mitigate that)
I will try to fix that in the next few days.
Sorry about that

S



Bug#871469: Status of llvm-toolchain-3.8?

2017-10-20 Thread Stéphane Glondu

Hello,

At the moment, llvm-toolchain-3.8 FTBFS with "gcc-7.2: Command not 
found" and this blocks the OCaml transition.


I see there are already bugs open related to gcc-7 (#871011 and 
#853523), but these do not have recent activity.


I also see that this package has been requested to be removed (#873331), 
but again no recent activity on this bug.


Is there any plans to fix llvm-toolchain-3.8?


Cheers,

--
Stéphane