Your message dated Fri, 26 Oct 2018 07:51:05 +0000
with message-id <[email protected]>
and subject line Bug#911886: fixed in libzeep 3.0.2-7
has caused the Debian Bug report #911886,
regarding [libzeep] FTBFS with boost1.67
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 [email protected]
immediately.)
--
911886: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911886
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libzeep
Version: 3.0.2-6
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: boost1.67
Dear Maintainer,
your package fails to build with boost1.67. You can find a build log
attached. If you want to attempt the build yourself, an updated version
of boost-defaults which brings in boost1.67 dependencies can be found
adding this line to your sources.list file:
deb https://people.debian.org/~gio/reprepro unstable main
This bug has severity whishlist for the moment, but it will raised to RC
as soon as version 1.67 of Boost is promoted to default.
More specifically, your package fails building because of some little
API changes in boost::asio. The attached patch should fix this issue.
Please consider applying the attached patch as soon as boost1.67 is made
default in order to avoid FTBFS.
Thanks and all the best, Giovanni.
--
Giovanni Mascellani <[email protected]>
Postdoc researcher - Université Libre de Bruxelles
From: Giovanni Mascellani <[email protected]>
Date: Fri, 12 Oct 2018 17:26:23 +0200
Subject: Fix for Boost version 1.67.
In basic_socket, native_type and native were deprecated and removed
in favor of native_handle_type and native_handle.
---
src/preforked-http-server.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/preforked-http-server.cpp b/src/preforked-http-server.cpp
index a80a65b..89fc89d 100644
--- a/src/preforked-http-server.cpp
+++ b/src/preforked-http-server.cpp
@@ -181,7 +181,7 @@ void preforked_server_base::start()
bool preforked_server_base::read_socket_from_parent(int fd_socket, boost::asio::ip::tcp::socket& socket)
{
- typedef boost::asio::ip::tcp::socket::native_type native_type;
+ typedef boost::asio::ip::tcp::socket::native_handle_type native_type;
#if __APPLE__
// macos is special...
@@ -245,7 +245,7 @@ bool preforked_server_base::read_socket_from_parent(int fd_socket, boost::asio::
void preforked_server_base::write_socket_to_worker(int fd_socket, boost::asio::ip::tcp::socket& socket)
{
- typedef boost::asio::ip::tcp::socket::native_type native_type;
+ typedef boost::asio::ip::tcp::socket::native_handle_type native_type;
struct msghdr msg;
union {
@@ -268,7 +268,7 @@ void preforked_server_base::write_socket_to_worker(int fd_socket, boost::asio::i
*(reinterpret_cast<native_type*>(CMSG_DATA(cmptr))) = socket.native();
*/
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
- *fdptr = socket.native();
+ *fdptr = socket.native_handle();
msg.msg_name = nullptr;
msg.msg_namelen = 0;
Get:1 http://deb.debian.org/debian unstable InRelease [233 kB]
Get:2 https://people.debian.org/~gio/reprepro unstable InRelease [6844 B]
Get:3 http://deb.debian.org/debian unstable/main Sources.diff/Index [27.9 kB]
Get:4 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [27.9 kB]
Get:5 http://deb.debian.org/debian unstable/main Sources 2018-09-24-2016.03.pdiff [18.9 kB]
Get:6 http://deb.debian.org/debian unstable/main Sources 2018-09-25-0210.07.pdiff [5710 B]
Get:7 http://deb.debian.org/debian unstable/main Sources 2018-09-25-0818.18.pdiff [8180 B]
Get:8 http://deb.debian.org/debian unstable/main Sources 2018-09-25-1414.06.pdiff [15.2 kB]
Get:9 http://deb.debian.org/debian unstable/main Sources 2018-09-25-2009.34.pdiff [8543 B]
Get:10 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0208.49.pdiff [4854 B]
Get:11 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0807.29.pdiff [4104 B]
Get:12 http://deb.debian.org/debian unstable/main Sources 2018-09-26-1409.08.pdiff [14.0 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-24-2016.03.pdiff [25.0 kB]
Get:12 http://deb.debian.org/debian unstable/main Sources 2018-09-26-1409.08.pdiff [14.0 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0210.07.pdiff [27.8 kB]
Get:15 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0818.18.pdiff [6665 B]
Get:16 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-1414.06.pdiff [12.7 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-2009.34.pdiff [12.5 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0208.49.pdiff [7336 B]
Get:19 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0807.29.pdiff [2664 B]
Get:20 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-1409.08.pdiff [17.7 kB]
Get:20 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-1409.08.pdiff [17.7 kB]
Get:21 https://people.debian.org/~gio/reprepro unstable/main amd64 Packages [12.2 kB]
Fetched 499 kB in 1s (517 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
autoconf automake autopoint autotools-dev bsdmainutils debhelper
dh-autoreconf dh-strip-nondeterminism dwz file gettext gettext-base
gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 groff-base icu-devtools intltool-debian
libarchive-zip-perl libboost-atomic1.67-dev libboost-atomic1.67.0
libboost-chrono1.67-dev libboost-chrono1.67.0 libboost-date-time1.67-dev
libboost-date-time1.67.0 libboost-dev libboost-filesystem-dev
libboost-filesystem1.67-dev libboost-filesystem1.67.0 libboost-math-dev
libboost-math1.67-dev libboost-math1.67.0 libboost-regex-dev
libboost-regex1.67-dev libboost-regex1.67.0 libboost-serialization1.67-dev
libboost-serialization1.67.0 libboost-system-dev libboost-system1.67-dev
libboost-system1.67.0 libboost-thread-dev libboost-thread1.67-dev
libboost-thread1.67.0 libboost1.67-dev libbsd0 libcroco3 libexpat1
libfile-stripnondeterminism-perl libfreetype6 libgirepository-1.0-1
libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev
libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev libharfbuzz-dev
libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libicu-dev
libicu-le-hb-dev libicu-le-hb0 libicu60 libmagic-mgc libmagic1 libmpdec2
libncurses6 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpipeline1
libpng16-16 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib
libsigsegv2 libtimedate-perl libtool libxml2 m4 man-db mime-support
pkg-config po-debconf python3 python3-distutils python3-lib2to3
python3-minimal python3.6 python3.6-minimal zlib1g-dev
0 upgraded, 93 newly installed, 0 to remove and 2 not upgraded.
Need to get 56.2 MB of archives.
After this operation, 353 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian unstable/main amd64 libbsd0 amd64 0.9.1-1 [99.3 kB]
Get:2 http://deb.debian.org/debian unstable/main amd64 bsdmainutils amd64 11.1.2+b1 [191 kB]
Get:3 http://deb.debian.org/debian unstable/main amd64 groff-base amd64 1.22.3-10 [1176 kB]
Get:4 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-dev amd64 1.67.0.1 [3756 B]
Get:5 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-filesystem-dev amd64 1.67.0.1 [3572 B]
Get:6 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-math-dev amd64 1.67.0.1 [3744 B]
Get:7 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-regex-dev amd64 1.67.0.1 [3804 B]
Get:8 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-system-dev amd64 1.67.0.1 [3676 B]
Get:9 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-thread-dev amd64 1.67.0.1 [3564 B]
Get:10 http://deb.debian.org/debian unstable/main amd64 libpipeline1 amd64 1.5.0-1 [29.0 kB]
Get:11 http://deb.debian.org/debian unstable/main amd64 man-db amd64 2.8.4-2 [1194 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 libpython3.6-minimal amd64 3.6.6-4 [572 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 libexpat1 amd64 2.2.6-1 [105 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 python3.6-minimal amd64 3.6.6-4 [1650 kB]
Get:15 http://deb.debian.org/debian unstable/main amd64 python3-minimal amd64 3.6.6-1 [36.4 kB]
Get:16 http://deb.debian.org/debian unstable/main amd64 mime-support all 3.61 [37.1 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 libmpdec2 amd64 2.4.2-2 [87.2 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 libpython3.6-stdlib amd64 3.6.6-4 [1706 kB]
Get:19 http://deb.debian.org/debian unstable/main amd64 python3.6 amd64 3.6.6-4 [234 kB]
Get:20 http://deb.debian.org/debian unstable/main amd64 libpython3-stdlib amd64 3.6.6-1 [19.8 kB]
Get:21 http://deb.debian.org/debian unstable/main amd64 python3 amd64 3.6.6-1 [47.5 kB]
Get:22 http://deb.debian.org/debian unstable/main amd64 libmagic-mgc amd64 1:5.34-2 [239 kB]
Get:23 http://deb.debian.org/debian unstable/main amd64 libmagic1 amd64 1:5.34-2 [116 kB]
Get:24 http://deb.debian.org/debian unstable/main amd64 file amd64 1:5.34-2 [65.8 kB]
Get:25 http://deb.debian.org/debian unstable/main amd64 gettext-base amd64 0.19.8.1-7 [122 kB]
Get:26 http://deb.debian.org/debian unstable/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB]
Get:27 http://deb.debian.org/debian unstable/main amd64 m4 amd64 1.4.18-1 [202 kB]
Get:28 http://deb.debian.org/debian unstable/main amd64 autoconf all 2.69-11 [341 kB]
Get:29 http://deb.debian.org/debian unstable/main amd64 autotools-dev all 20180224.1 [77.0 kB]
Get:30 http://deb.debian.org/debian unstable/main amd64 automake all 1:1.16.1-1.1 [771 kB]
Get:31 http://deb.debian.org/debian unstable/main amd64 autopoint all 0.19.8.1-7 [434 kB]
Get:32 http://deb.debian.org/debian unstable/main amd64 libtool all 2.4.6-4 [547 kB]
Get:33 http://deb.debian.org/debian unstable/main amd64 dh-autoreconf all 19 [16.9 kB]
Get:34 http://deb.debian.org/debian unstable/main amd64 libarchive-zip-perl all 1.64-1 [96.8 kB]
Get:35 http://deb.debian.org/debian unstable/main amd64 libfile-stripnondeterminism-perl all 0.042-1 [20.1 kB]
Get:36 http://deb.debian.org/debian unstable/main amd64 libtimedate-perl all 2.3000-2 [42.2 kB]
Get:37 http://deb.debian.org/debian unstable/main amd64 dh-strip-nondeterminism all 0.042-1 [12.1 kB]
Get:38 http://deb.debian.org/debian unstable/main amd64 dwz amd64 0.12-2 [77.5 kB]
Get:39 http://deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.58.1-2 [1223 kB]
Get:40 http://deb.debian.org/debian unstable/main amd64 libpng16-16 amd64 1.6.34-2 [288 kB]
Get:41 http://deb.debian.org/debian unstable/main amd64 libfreetype6 amd64 2.8.1-2 [461 kB]
Get:42 http://deb.debian.org/debian unstable/main amd64 libgraphite2-3 amd64 1.3.12-1 [80.2 kB]
Get:43 http://deb.debian.org/debian unstable/main amd64 libharfbuzz0b amd64 1.9.0-1 [923 kB]
Get:44 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-5 [14.6 kB]
Get:45 http://deb.debian.org/debian unstable/main amd64 libicu60 amd64 60.2-6 [8073 kB]
Get:46 http://deb.debian.org/debian unstable/main amd64 libxml2 amd64 2.9.4+dfsg1-7+b1 [725 kB]
Get:47 http://deb.debian.org/debian unstable/main amd64 libcroco3 amd64 0.6.12-2 [144 kB]
Get:48 http://deb.debian.org/debian unstable/main amd64 libncurses6 amd64 6.1+20180714-1 [102 kB]
Get:49 http://deb.debian.org/debian unstable/main amd64 gettext amd64 0.19.8.1-7 [1304 kB]
Get:50 http://deb.debian.org/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.4 [26.3 kB]
Get:51 http://deb.debian.org/debian unstable/main amd64 po-debconf all 1.0.20 [247 kB]
Get:52 http://deb.debian.org/debian unstable/main amd64 debhelper all 11.4 [985 kB]
Get:53 http://deb.debian.org/debian unstable/main amd64 libgirepository-1.0-1 amd64 1.58.0-1 [92.5 kB]
Get:54 http://deb.debian.org/debian unstable/main amd64 gir1.2-glib-2.0 amd64 1.58.0-1 [143 kB]
Get:55 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-gobject0 amd64 1.9.0-1 [659 kB]
Get:56 http://deb.debian.org/debian unstable/main amd64 gir1.2-harfbuzz-0.0 amd64 1.9.0-1 [664 kB]
Get:57 http://deb.debian.org/debian unstable/main amd64 icu-devtools amd64 60.2-6 [190 kB]
Get:58 http://deb.debian.org/debian unstable/main amd64 libboost1.67-dev amd64 1.67.0-7 [8388 kB]
Get:59 http://deb.debian.org/debian unstable/main amd64 libboost-atomic1.67.0 amd64 1.67.0-7 [225 kB]
Get:60 http://deb.debian.org/debian unstable/main amd64 libboost-atomic1.67-dev amd64 1.67.0-7 [224 kB]
Get:61 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67.0 amd64 1.67.0-7 [228 kB]
Get:62 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.67.0 amd64 1.67.0-7 [233 kB]
Get:63 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.67-dev amd64 1.67.0-7 [235 kB]
Get:64 http://deb.debian.org/debian unstable/main amd64 libboost-date-time1.67.0 amd64 1.67.0-7 [238 kB]
Get:65 http://deb.debian.org/debian unstable/main amd64 libboost-serialization1.67.0 amd64 1.67.0-7 [319 kB]
Get:66 http://deb.debian.org/debian unstable/main amd64 libboost-serialization1.67-dev amd64 1.67.0-7 [358 kB]
Get:67 http://deb.debian.org/debian unstable/main amd64 libboost-date-time1.67-dev amd64 1.67.0-7 [246 kB]
Get:68 http://deb.debian.org/debian unstable/main amd64 libboost-filesystem1.67.0 amd64 1.67.0-7 [260 kB]
Get:69 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67-dev amd64 1.67.0-7 [231 kB]
Get:70 http://deb.debian.org/debian unstable/main amd64 libboost-filesystem1.67-dev amd64 1.67.0-7 [267 kB]
Get:71 http://deb.debian.org/debian unstable/main amd64 libboost-math1.67.0 amd64 1.67.0-7 [459 kB]
Get:72 http://deb.debian.org/debian unstable/main amd64 libboost-math1.67-dev amd64 1.67.0-7 [737 kB]
Get:73 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67.0 amd64 1.67.0-7 [484 kB]
Get:74 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-icu0 amd64 1.9.0-1 [651 kB]
Get:75 http://deb.debian.org/debian unstable/main amd64 libglib2.0-data all 2.58.1-2 [1105 kB]
Get:76 http://deb.debian.org/debian unstable/main amd64 libglib2.0-bin amd64 2.58.1-2 [121 kB]
Get:77 http://deb.debian.org/debian unstable/main amd64 python3-lib2to3 all 3.6.6-1 [79.1 kB]
Get:78 http://deb.debian.org/debian unstable/main amd64 python3-distutils all 3.6.6-1 [144 kB]
Get:79 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev-bin amd64 2.58.1-2 [154 kB]
Get:80 http://deb.debian.org/debian unstable/main amd64 libpcre16-3 amd64 2:8.39-11 [258 kB]
Get:81 http://deb.debian.org/debian unstable/main amd64 libpcre32-3 amd64 2:8.39-11 [250 kB]
Get:82 http://deb.debian.org/debian unstable/main amd64 libpcrecpp0v5 amd64 2:8.39-11 [152 kB]
Get:83 http://deb.debian.org/debian unstable/main amd64 libpcre3-dev amd64 2:8.39-11 [651 kB]
Get:84 http://deb.debian.org/debian unstable/main amd64 pkg-config amd64 0.29-4+b1 [63.3 kB]
Get:85 http://deb.debian.org/debian unstable/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-1 [214 kB]
Get:86 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev amd64 2.58.1-2 [1445 kB]
Get:87 http://deb.debian.org/debian unstable/main amd64 libgraphite2-dev amd64 1.3.12-1 [22.6 kB]
Get:88 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-dev amd64 1.9.0-1 [1001 kB]
Get:89 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-5 [30.0 kB]
Get:90 http://deb.debian.org/debian unstable/main amd64 libicu-dev amd64 60.2-6 [8900 kB]
Get:91 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67-dev amd64 1.67.0-7 [536 kB]
Get:92 http://deb.debian.org/debian unstable/main amd64 libboost-thread1.67.0 amd64 1.67.0-7 [266 kB]
Get:93 http://deb.debian.org/debian unstable/main amd64 libboost-thread1.67-dev amd64 1.67.0-7 [268 kB]
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
Fetched 56.2 MB in 2s (33.5 MB/s)
Selecting previously unselected package libbsd0:amd64.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15374 files and directories currently installed.)
Preparing to unpack .../0-libbsd0_0.9.1-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.9.1-1) ...
Selecting previously unselected package bsdmainutils.
Preparing to unpack .../1-bsdmainutils_11.1.2+b1_amd64.deb ...
Unpacking bsdmainutils (11.1.2+b1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../2-groff-base_1.22.3-10_amd64.deb ...
Unpacking groff-base (1.22.3-10) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../3-libpipeline1_1.5.0-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.0-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../4-man-db_2.8.4-2_amd64.deb ...
Unpacking man-db (2.8.4-2) ...
Selecting previously unselected package libpython3.6-minimal:amd64.
Preparing to unpack .../5-libpython3.6-minimal_3.6.6-4_amd64.deb ...
Unpacking libpython3.6-minimal:amd64 (3.6.6-4) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../6-libexpat1_2.2.6-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.6-1) ...
Selecting previously unselected package python3.6-minimal.
Preparing to unpack .../7-python3.6-minimal_3.6.6-4_amd64.deb ...
Unpacking python3.6-minimal (3.6.6-4) ...
Setting up libpython3.6-minimal:amd64 (3.6.6-4) ...
Setting up libexpat1:amd64 (2.2.6-1) ...
Setting up python3.6-minimal (3.6.6-4) ...
Selecting previously unselected package python3-minimal.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16236 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.6.6-1_amd64.deb ...
Unpacking python3-minimal (3.6.6-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../1-mime-support_3.61_all.deb ...
Unpacking mime-support (3.61) ...
Selecting previously unselected package libmpdec2:amd64.
Preparing to unpack .../2-libmpdec2_2.4.2-2_amd64.deb ...
Unpacking libmpdec2:amd64 (2.4.2-2) ...
Selecting previously unselected package libpython3.6-stdlib:amd64.
Preparing to unpack .../3-libpython3.6-stdlib_3.6.6-4_amd64.deb ...
Unpacking libpython3.6-stdlib:amd64 (3.6.6-4) ...
Selecting previously unselected package python3.6.
Preparing to unpack .../4-python3.6_3.6.6-4_amd64.deb ...
Unpacking python3.6 (3.6.6-4) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../5-libpython3-stdlib_3.6.6-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.6.6-1) ...
Setting up python3-minimal (3.6.6-1) ...
Selecting previously unselected package python3.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16665 files and directories currently installed.)
Preparing to unpack .../00-python3_3.6.6-1_amd64.deb ...
Unpacking python3 (3.6.6-1) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../01-libmagic-mgc_1%3a5.34-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.34-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../02-libmagic1_1%3a5.34-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.34-2) ...
Selecting previously unselected package file.
Preparing to unpack .../03-file_1%3a5.34-2_amd64.deb ...
Unpacking file (1:5.34-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../04-gettext-base_0.19.8.1-7_amd64.deb ...
Unpacking gettext-base (0.19.8.1-7) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../05-libsigsegv2_2.12-2_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.12-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../06-m4_1.4.18-1_amd64.deb ...
Unpacking m4 (1.4.18-1) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../07-autoconf_2.69-11_all.deb ...
Unpacking autoconf (2.69-11) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../08-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../09-automake_1%3a1.16.1-1.1_all.deb ...
Unpacking automake (1:1.16.1-1.1) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../10-autopoint_0.19.8.1-7_all.deb ...
Unpacking autopoint (0.19.8.1-7) ...
Selecting previously unselected package libtool.
Preparing to unpack .../11-libtool_2.4.6-4_all.deb ...
Unpacking libtool (2.4.6-4) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../12-dh-autoreconf_19_all.deb ...
Unpacking dh-autoreconf (19) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../13-libarchive-zip-perl_1.64-1_all.deb ...
Unpacking libarchive-zip-perl (1.64-1) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../14-libfile-stripnondeterminism-perl_0.042-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.042-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../15-libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../16-dh-strip-nondeterminism_0.042-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.042-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../17-dwz_0.12-2_amd64.deb ...
Unpacking dwz (0.12-2) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../18-libglib2.0-0_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.58.1-2) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../19-libpng16-16_1.6.34-2_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.34-2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../20-libfreetype6_2.8.1-2_amd64.deb ...
Unpacking libfreetype6:amd64 (2.8.1-2) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../21-libgraphite2-3_1.3.12-1_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.12-1) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../22-libharfbuzz0b_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (1.9.0-1) ...
Selecting previously unselected package libicu-le-hb0:amd64.
Preparing to unpack .../23-libicu-le-hb0_1.0.3+git161113-5_amd64.deb ...
Unpacking libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Selecting previously unselected package libicu60:amd64.
Preparing to unpack .../24-libicu60_60.2-6_amd64.deb ...
Unpacking libicu60:amd64 (60.2-6) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../25-libxml2_2.9.4+dfsg1-7+b1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../26-libcroco3_0.6.12-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.12-2) ...
Selecting previously unselected package libncurses6:amd64.
Preparing to unpack .../27-libncurses6_6.1+20180714-1_amd64.deb ...
Unpacking libncurses6:amd64 (6.1+20180714-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../28-gettext_0.19.8.1-7_amd64.deb ...
Unpacking gettext (0.19.8.1-7) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../29-intltool-debian_0.35.0+20060710.4_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.4) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../30-po-debconf_1.0.20_all.deb ...
Unpacking po-debconf (1.0.20) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../31-debhelper_11.4_all.deb ...
Unpacking debhelper (11.4) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../32-libgirepository-1.0-1_1.58.0-1_amd64.deb ...
Unpacking libgirepository-1.0-1:amd64 (1.58.0-1) ...
Selecting previously unselected package gir1.2-glib-2.0:amd64.
Preparing to unpack .../33-gir1.2-glib-2.0_1.58.0-1_amd64.deb ...
Unpacking gir1.2-glib-2.0:amd64 (1.58.0-1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../34-libharfbuzz-gobject0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
Preparing to unpack .../35-gir1.2-harfbuzz-0.0_1.9.0-1_amd64.deb ...
Unpacking gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../36-icu-devtools_60.2-6_amd64.deb ...
Unpacking icu-devtools (60.2-6) ...
Selecting previously unselected package libboost1.67-dev:amd64.
Preparing to unpack .../37-libboost1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-atomic1.67.0:amd64.
Preparing to unpack .../38-libboost-atomic1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-atomic1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-atomic1.67-dev:amd64.
Preparing to unpack .../39-libboost-atomic1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-atomic1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-system1.67.0:amd64.
Preparing to unpack .../40-libboost-system1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-system1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-chrono1.67.0:amd64.
Preparing to unpack .../41-libboost-chrono1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-chrono1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-chrono1.67-dev:amd64.
Preparing to unpack .../42-libboost-chrono1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-chrono1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-date-time1.67.0:amd64.
Preparing to unpack .../43-libboost-date-time1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-date-time1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-serialization1.67.0:amd64.
Preparing to unpack .../44-libboost-serialization1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-serialization1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-serialization1.67-dev:amd64.
Preparing to unpack .../45-libboost-serialization1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-serialization1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-date-time1.67-dev:amd64.
Preparing to unpack .../46-libboost-date-time1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-date-time1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-dev:amd64.
Preparing to unpack .../47-libboost-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-filesystem1.67.0:amd64.
Preparing to unpack .../48-libboost-filesystem1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-filesystem1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-system1.67-dev:amd64.
Preparing to unpack .../49-libboost-system1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-system1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-filesystem1.67-dev:amd64.
Preparing to unpack .../50-libboost-filesystem1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-filesystem1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-filesystem-dev:amd64.
Preparing to unpack .../51-libboost-filesystem-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-filesystem-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-math1.67.0:amd64.
Preparing to unpack .../52-libboost-math1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-math1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-math1.67-dev:amd64.
Preparing to unpack .../53-libboost-math1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-math1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-math-dev:amd64.
Preparing to unpack .../54-libboost-math-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-math-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-regex1.67.0:amd64.
Preparing to unpack .../55-libboost-regex1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-regex1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libharfbuzz-icu0:amd64.
Preparing to unpack .../56-libharfbuzz-icu0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-icu0:amd64 (1.9.0-1) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../57-libglib2.0-data_2.58.1-2_all.deb ...
Unpacking libglib2.0-data (2.58.1-2) ...
Selecting previously unselected package libglib2.0-bin.
Preparing to unpack .../58-libglib2.0-bin_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-bin (2.58.1-2) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../59-python3-lib2to3_3.6.6-1_all.deb ...
Unpacking python3-lib2to3 (3.6.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../60-python3-distutils_3.6.6-1_all.deb ...
Unpacking python3-distutils (3.6.6-1) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../61-libglib2.0-dev-bin_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.58.1-2) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../62-libpcre16-3_2%3a8.39-11_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../63-libpcre32-3_2%3a8.39-11_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../64-libpcrecpp0v5_2%3a8.39-11_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../65-libpcre3-dev_2%3a8.39-11_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-11) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../66-pkg-config_0.29-4+b1_amd64.deb ...
Unpacking pkg-config (0.29-4+b1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../67-zlib1g-dev_1%3a1.2.11.dfsg-1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../68-libglib2.0-dev_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.58.1-2) ...
Selecting previously unselected package libgraphite2-dev:amd64.
Preparing to unpack .../69-libgraphite2-dev_1.3.12-1_amd64.deb ...
Unpacking libgraphite2-dev:amd64 (1.3.12-1) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../70-libharfbuzz-dev_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (1.9.0-1) ...
Selecting previously unselected package libicu-le-hb-dev:amd64.
Preparing to unpack .../71-libicu-le-hb-dev_1.0.3+git161113-5_amd64.deb ...
Unpacking libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Selecting previously unselected package libicu-dev.
Preparing to unpack .../72-libicu-dev_60.2-6_amd64.deb ...
Unpacking libicu-dev (60.2-6) ...
Selecting previously unselected package libboost-regex1.67-dev:amd64.
Preparing to unpack .../73-libboost-regex1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-regex1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-regex-dev:amd64.
Preparing to unpack .../74-libboost-regex-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-regex-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-system-dev:amd64.
Preparing to unpack .../75-libboost-system-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-system-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-thread1.67.0:amd64.
Preparing to unpack .../76-libboost-thread1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-thread1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-thread1.67-dev:amd64.
Preparing to unpack .../77-libboost-thread1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-thread1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-thread-dev:amd64.
Preparing to unpack .../78-libboost-thread-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-thread-dev:amd64 (1.67.0.1) ...
Setting up libarchive-zip-perl (1.64-1) ...
Setting up mime-support (3.61) ...
Setting up libpng16-16:amd64 (1.6.34-2) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up libsigsegv2:amd64 (2.12-2) ...
Setting up libboost-atomic1.67.0:amd64 (1.67.0-7) ...
Setting up groff-base (1.22.3-10) ...
Setting up libglib2.0-0:amd64 (2.58.1-2) ...
No schema files found: doing nothing.
Setting up libboost-math1.67.0:amd64 (1.67.0-7) ...
Setting up gettext-base (0.19.8.1-7) ...
Setting up libpipeline1:amd64 (1.5.0-1) ...
Setting up m4 (1.4.18-1) ...
Setting up libbsd0:amd64 (0.9.1-1) ...
Setting up libboost-date-time1.67.0:amd64 (1.67.0-7) ...
Setting up libgirepository-1.0-1:amd64 (1.58.0-1) ...
Setting up libfreetype6:amd64 (2.8.1-2) ...
Setting up libmagic-mgc (1:5.34-2) ...
Setting up libmagic1:amd64 (1:5.34-2) ...
Setting up libgraphite2-3:amd64 (1.3.12-1) ...
Setting up pkg-config (0.29-4+b1) ...
Setting up gir1.2-glib-2.0:amd64 (1.58.0-1) ...
Setting up libglib2.0-data (2.58.1-2) ...
Processing triggers for libc-bin (2.27-6) ...
Setting up dwz (0.12-2) ...
Setting up autotools-dev (20180224.1) ...
Setting up libboost1.67-dev:amd64 (1.67.0-7) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-11) ...
Setting up libpcre32-3:amd64 (2:8.39-11) ...
Setting up libboost-serialization1.67.0:amd64 (1.67.0-7) ...
Setting up libpcre16-3:amd64 (2:8.39-11) ...
Setting up libboost-dev:amd64 (1.67.0.1) ...
Setting up bsdmainutils (11.1.2+b1) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up libboost-system1.67.0:amd64 (1.67.0-7) ...
Setting up libglib2.0-bin (2.58.1-2) ...
Setting up libgraphite2-dev:amd64 (1.3.12-1) ...
Setting up libncurses6:amd64 (6.1+20180714-1) ...
Setting up autopoint (0.19.8.1-7) ...
Setting up libmpdec2:amd64 (2.4.2-2) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Setting up libfile-stripnondeterminism-perl (0.042-1) ...
Setting up libpython3.6-stdlib:amd64 (3.6.6-4) ...
Setting up libpcre3-dev:amd64 (2:8.39-11) ...
Setting up python3.6 (3.6.6-4) ...
Setting up libboost-serialization1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-math1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-filesystem1.67.0:amd64 (1.67.0-7) ...
Setting up libboost-thread1.67.0:amd64 (1.67.0-7) ...
Setting up libharfbuzz0b:amd64 (1.9.0-1) ...
Setting up autoconf (2.69-11) ...
Setting up file (1:5.34-2) ...
Setting up libboost-atomic1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-chrono1.67.0:amd64 (1.67.0-7) ...
Setting up automake (1:1.16.1-1.1) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libboost-system1.67-dev:amd64 (1.67.0-7) ...
Setting up man-db (2.8.4-2) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Building database of manual pages ...
Setting up libboost-chrono1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-date-time1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-math-dev:amd64 (1.67.0.1) ...
Setting up libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Setting up libtool (2.4.6-4) ...
Setting up libpython3-stdlib:amd64 (3.6.6-1) ...
Setting up libboost-filesystem1.67-dev:amd64 (1.67.0-7) ...
Setting up python3 (3.6.6-1) ...
running python rtupdate hooks for python3.6...
running python post-rtupdate hooks for python3.6...
Setting up libboost-thread1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-system-dev:amd64 (1.67.0.1) ...
Setting up libboost-filesystem-dev:amd64 (1.67.0.1) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Setting up python3-lib2to3 (3.6.6-1) ...
Setting up python3-distutils (3.6.6-1) ...
Setting up libboost-thread-dev:amd64 (1.67.0.1) ...
Setting up libglib2.0-dev-bin (2.58.1-2) ...
Setting up libglib2.0-dev:amd64 (2.58.1-2) ...
Setting up dh-autoreconf (19) ...
Setting up libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Setting up dh-strip-nondeterminism (0.042-1) ...
Setting up libicu60:amd64 (60.2-6) ...
Setting up libharfbuzz-icu0:amd64 (1.9.0-1) ...
Setting up libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Setting up libcroco3:amd64 (0.6.12-2) ...
Setting up icu-devtools (60.2-6) ...
Setting up libharfbuzz-dev:amd64 (1.9.0-1) ...
Setting up libboost-regex1.67.0:amd64 (1.67.0-7) ...
Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Setting up gettext (0.19.8.1-7) ...
Setting up libicu-dev (60.2-6) ...
Setting up intltool-debian (0.35.0+20060710.4) ...
Setting up po-debconf (1.0.20) ...
Setting up libboost-regex1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-regex-dev:amd64 (1.67.0.1) ...
Setting up debhelper (11.4) ...
Processing triggers for libc-bin (2.27-6) ...
Reading package lists...
NOTICE: 'libzeep' packaging is maintained in the 'Git' version control system at:
https://anonscm.debian.org/git/debian-med/libzeep.git
Please use:
git clone https://anonscm.debian.org/git/debian-med/libzeep.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 252 kB of source archives.
Get:1 http://deb.debian.org/debian unstable/main libzeep 3.0.2-6 (dsc) [2174 B]
Get:2 http://deb.debian.org/debian unstable/main libzeep 3.0.2-6 (tar) [243 kB]
Get:3 http://deb.debian.org/debian unstable/main libzeep 3.0.2-6 (diff) [6496 B]
dpkg-source: info: extracting libzeep in libzeep-3.0.2
dpkg-source: info: unpacking libzeep_3.0.2.orig.tar.gz
dpkg-source: info: unpacking libzeep_3.0.2-6.debian.tar.xz
dpkg-source: info: applying hurd-patch
dpkg-source: info: applying makefile.diff
dpkg-source: info: applying linking-order.diff
dpkg-source: info: applying libzeep-3.0-g++6-boost1.60.patch
dpkg-source: info: applying spelling.patch
dpkg-source: info: applying boost-1.65-compat.patch
Fetched 252 kB in 0s (1442 kB/s)
dpkg-buildpackage: info: source package libzeep
dpkg-buildpackage: info: source version 3.0.2-6
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Andreas Tille <[email protected]>
dpkg-buildpackage: info: host architecture amd64
dpkg-source --before-build libzeep-3.0.2
fakeroot debian/rules clean
dh clean
dh_auto_clean
make -j8 clean
make[1]: Entering directory '/home/builder/libzeep-3.0.2'
rm -rf obj/* libzeep.a libzeep.so* zeep-test libzeep-3.0.2 libzeep-3.0.2.tgz
make[1]: Leaving directory '/home/builder/libzeep-3.0.2'
dh_clean
dpkg-source -b libzeep-3.0.2
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building libzeep using existing ./libzeep_3.0.2.orig.tar.gz
dpkg-source: info: building libzeep in libzeep_3.0.2-6.debian.tar.xz
dpkg-source: info: building libzeep in libzeep_3.0.2-6.dsc
debian/rules build
dh build
dh_update_autotools_config
dh_autoreconf
dh_auto_configure
debian/rules override_dh_auto_build
make[1]: Entering directory '/home/builder/libzeep-3.0.2'
/usr/bin/make lib
make[2]: Entering directory '/home/builder/libzeep-3.0.2'
g++ -MD -c -o obj/doctype.o src/doctype.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/document.o src/document.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/exception.o src/exception.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/node.o src/node.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/soap-envelope.o src/soap-envelope.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/parser.o src/parser.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/request.o src/request.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/request_parser.o src/request_parser.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/reply.o src/reply.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/connection.o src/connection.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/http-server.o src/http-server.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
g++ -MD -c -o obj/preforked-http-server.o src/preforked-http-server.cpp -g -O2 -fdebug-prefix-map=/home/builder/libzeep-3.0.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -I. -fPIC -pthread -shared -std=c++0x -Wall
src/preforked-http-server.cpp: In static member function 'static bool zeep::http::preforked_server_base::read_socket_from_parent(int, boost::asio::ip::tcp::socket&)':
src/preforked-http-server.cpp:184:40: error: 'native_type' in 'boost::asio::ip::tcp::socket' {aka 'class boost::asio::basic_stream_socket<boost::asio::ip::tcp>'} does not name a type
typedef boost::asio::ip::tcp::socket::native_type native_type;
^~~~~~~~~~~
src/preforked-http-server.cpp:232:5: error: 'native_type' was not declared in this scope
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~~~~~~~
src/preforked-http-server.cpp:232:5: note: suggested alternative:
In file included from /usr/include/boost/thread/cv_status.hpp:12,
from /usr/include/boost/thread/pthread/condition_variable_fwd.hpp:12,
from /usr/include/boost/thread/pthread/thread_data.hpp:14,
from /usr/include/boost/thread/thread_only.hpp:17,
from /usr/include/boost/thread/thread.hpp:12,
from ./zeep/http/server.hpp:10,
from ./zeep/http/preforked-server.hpp:9,
from src/preforked-http-server.cpp:15:
/usr/include/boost/core/scoped_enum.hpp:73:10: note: 'boost::native_type'
struct native_type
^~~~~~~~~~~
src/preforked-http-server.cpp:232:18: error: 'fdptr' was not declared in this scope
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~
src/preforked-http-server.cpp:232:18: note: suggested alternative: 'cmptr'
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~
cmptr
src/preforked-http-server.cpp:232:43: error: 'native_type' does not name a type; did you mean 'status_type'?
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~~~~~~~
status_type
src/preforked-http-server.cpp:232:54: error: expected '>' before '*' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
src/preforked-http-server.cpp:232:54: error: expected '(' before '*' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
(
src/preforked-http-server.cpp:232:55: error: expected primary-expression before '>' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
src/preforked-http-server.cpp:232:74: error: expected ')' before ';' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
)
src/preforked-http-server.cpp: In static member function 'static void zeep::http::preforked_server_base::write_socket_to_worker(int, boost::asio::ip::tcp::socket&)':
src/preforked-http-server.cpp:248:40: error: 'native_type' in 'boost::asio::ip::tcp::socket' {aka 'class boost::asio::basic_stream_socket<boost::asio::ip::tcp>'} does not name a type
typedef boost::asio::ip::tcp::socket::native_type native_type;
^~~~~~~~~~~
In file included from /usr/include/x86_64-linux-gnu/sys/socket.h:33,
from /usr/include/netinet/in.h:23,
from /usr/include/netdb.h:27,
from /usr/include/boost/asio/error.hpp:28,
from /usr/include/boost/asio/detail/impl/posix_mutex.ipp:24,
from /usr/include/boost/asio/detail/posix_mutex.hpp:73,
from /usr/include/boost/asio/detail/mutex.hpp:25,
from /usr/include/boost/asio/detail/service_registry.hpp:20,
from /usr/include/boost/asio/impl/execution_context.hpp:20,
from /usr/include/boost/asio/execution_context.hpp:408,
from /usr/include/boost/asio/detail/scheduler.hpp:21,
from /usr/include/boost/asio/system_context.hpp:19,
from /usr/include/boost/asio/impl/system_executor.hpp:22,
from /usr/include/boost/asio/system_executor.hpp:129,
from /usr/include/boost/asio/associated_executor.hpp:21,
from /usr/include/boost/asio.hpp:21,
from ./zeep/http/server.hpp:9,
from ./zeep/http/preforked-server.hpp:9,
from src/preforked-http-server.cpp:15:
src/preforked-http-server.cpp:256:38: error: 'native_type' was not declared in this scope
char control[CMSG_SPACE(sizeof(native_type))];
^~~~~~~~~~~
src/preforked-http-server.cpp:256:38: note: suggested alternative:
In file included from /usr/include/boost/thread/cv_status.hpp:12,
from /usr/include/boost/thread/pthread/condition_variable_fwd.hpp:12,
from /usr/include/boost/thread/pthread/thread_data.hpp:14,
from /usr/include/boost/thread/thread_only.hpp:17,
from /usr/include/boost/thread/thread.hpp:12,
from ./zeep/http/server.hpp:10,
from ./zeep/http/preforked-server.hpp:9,
from src/preforked-http-server.cpp:15:
/usr/include/boost/core/scoped_enum.hpp:73:10: note: 'boost::native_type'
struct native_type
^~~~~~~~~~~
src/preforked-http-server.cpp:260:31: error: 'union zeep::http::preforked_server_base::write_socket_to_worker(int, boost::asio::ip::tcp::socket&)::<unnamed>' has no member named 'control'
msg.msg_control = control_un.control;
^~~~~~~
src/preforked-http-server.cpp:261:41: error: 'union zeep::http::preforked_server_base::write_socket_to_worker(int, boost::asio::ip::tcp::socket&)::<unnamed>' has no member named 'control'
msg.msg_controllen = sizeof(control_un.control);
^~~~~~~
src/preforked-http-server.cpp:270:15: error: 'fdptr' was not declared in this scope
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~
src/preforked-http-server.cpp:270:15: note: suggested alternative: 'cmptr'
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~
cmptr
src/preforked-http-server.cpp:270:40: error: 'native_type' does not name a type; did you mean 'status_type'?
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^~~~~~~~~~~
status_type
src/preforked-http-server.cpp:270:51: error: expected '>' before '*' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
src/preforked-http-server.cpp:270:51: error: expected '(' before '*' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
(
src/preforked-http-server.cpp:270:52: error: expected primary-expression before '>' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
src/preforked-http-server.cpp:270:71: error: expected ')' before ';' token
native_type *fdptr = reinterpret_cast<native_type*>(CMSG_DATA(cmptr));
^
)
src/preforked-http-server.cpp:271:18: error: 'boost::asio::ip::tcp::socket' {aka 'class boost::asio::basic_stream_socket<boost::asio::ip::tcp>'} has no member named 'native'
*fdptr = socket.native();
^~~~~~
make[2]: Leaving directory '/home/builder/libzeep-3.0.2'
make[2]: *** [makefile:126: obj/preforked-http-server.o] Error 1
make[1]: *** [debian/rules:11: override_dh_auto_build] Error 2
make[1]: Leaving directory '/home/builder/libzeep-3.0.2'
make: *** [debian/rules:8: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: libzeep
Source-Version: 3.0.2-7
We believe that the bug you reported is fixed in the latest version of
libzeep, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andreas Tille <[email protected]> (supplier of updated libzeep 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Fri, 26 Oct 2018 08:07:31 +0200
Source: libzeep
Binary: libzeep-dev libzeep3.0v5
Architecture: source
Version: 3.0.2-7
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team
<[email protected]>
Changed-By: Andreas Tille <[email protected]>
Description:
libzeep-dev - Development files for libzeep
libzeep3.0v5 - Library files for libzeep
Closes: 911886
Changes:
libzeep (3.0.2-7) unstable; urgency=medium
.
[ Andreas Tille ]
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Drop useless get-orig-source target
.
[ Giovanni Mascellani ]
* Fix for Boost version 1.67.
Closes: #911886
Checksums-Sha1:
08d6f191dfca93247bae9749be194de64e445ddd 2157 libzeep_3.0.2-7.dsc
e9e8a226f326e93226b02de03ffaae6ad3d72cbb 7056 libzeep_3.0.2-7.debian.tar.xz
Checksums-Sha256:
c343b4aee0cae4ac291dd8ed08daa9a705ef493f3f8c136cb03e194cf8529520 2157
libzeep_3.0.2-7.dsc
aba77b98b50b063ebfdf2dc354d4c7dc2bda69a3b7f59960852f7f4ce4984542 7056
libzeep_3.0.2-7.debian.tar.xz
Files:
06c249eee69e82aa0000393e7746a843 2157 libs optional libzeep_3.0.2-7.dsc
d2c4b391df8dbac75e1dfb64d306c971 7056 libs optional
libzeep_3.0.2-7.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAlvSsjkRHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtGHwRAAjeye4AXWhinuZIiVjVMtXatXq9fIM8oT
lzfF7hxiyevCE8B0/V2G2k3sONEtwHOxCm849V0Em+BxjCJNHOmCRDFAjTS/ZAUT
QZz3RA+tWAChWEG1+9OiOxcIN/+YQYf8VQh1CEKjWWEnJ2sILM/4KeL82TOJ5Vfm
+ixzxAl0Yzj5xBkmB8fwAiR7iP7dZknXuD6wbxU35LA+axdJMt4vf/++tddQY6VT
tiN3wDP3PeJfjOWlWt5SkLvy98W0iUUgU/rbSV2orHRQcNnqF0+yMWf6y1BrjHhM
bFxQpizdpOAT3z9IrMvWK+XObO7Kv5ePoU/fiH2lB9beloOnYrtscPwqLbNPaC31
/t1eHfn8U+cwXnxwWZdlZoS1xxJpCoNUfy/1vqzXj/+nwJJXPdV9itiqaq4NBRk6
ozFmva4mXnOKW9XWOvfCYoQZsaaoAr3u5dYrQ7OTD8R7PZIYaWpSQ5DL5V7J4KfT
5mdsnmXKZgk64cwgCmfVXxU5VXJG7wf/TrAghNZRUH+VERxboYxvxqJsxByca8WD
zbBHzPoZ6FLs0EM5r2yQQgah48LeeXDOvKykVtRarNR3huBP4JLkI6YCQL9qIPRc
7JhfxUWN2UOJ6w74sGYLZpV7KwPWOFsfqCCxtEm8MLkv7FWBd8hxMu5zs09MVULB
A/vFE2t1QGI=
=Kf4R
-----END PGP SIGNATURE-----
--- End Message ---