Your message dated Sun, 13 Jan 2019 20:59:24 +0000
with message-id <e1gimqq-000cuk...@fasolo.debian.org>
and subject line Bug#911948: fixed in pion 5.0.7+dfsg-5
has caused the Debian Bug report #911948,
regarding [src:pion] 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 ow...@bugs.debian.org
immediately.)


-- 
911948: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911948
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:pion
Version: 5.0.7+dfsg-4
Severity: wishlist
Tags: patch
User: team+bo...@tracker.debian.org
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 there were some
slight API changes in boost::asio and boost::unit_test. 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 <g.mascell...@gmail.com>
Postdoc researcher - Université Libre de Bruxelles
From: Giovanni Mascellani <g...@debian.org>
Date: Tue, 23 Oct 2018 08:44:14 +0200
Subject: Fix build with Boost 1.67.

ssl::context constructor does not accept anymore the io_service&
argument and boost::unit_test::unit_test_log_formatter added
log_level arguments to a couple of callbacks.
---
 include/pion/tcp/connection.hpp | 6 +++---
 include/pion/test/unit_test.hpp | 4 ++--
 src/tcp_server.cpp              | 8 ++++----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/include/pion/tcp/connection.hpp b/include/pion/tcp/connection.hpp
index ac2593e..ec56fef 100644
--- a/include/pion/tcp/connection.hpp
+++ b/include/pion/tcp/connection.hpp
@@ -109,7 +109,7 @@ public:
     explicit connection(boost::asio::io_service& io_service, const bool ssl_flag = false)
         :
 #ifdef PION_HAVE_SSL
-        m_ssl_context(io_service, boost::asio::ssl::context::sslv23),
+        m_ssl_context(boost::asio::ssl::context::sslv23),
         m_ssl_socket(io_service, m_ssl_context),
         m_ssl_flag(ssl_flag),
 #else
@@ -131,7 +131,7 @@ public:
     connection(boost::asio::io_service& io_service, ssl_context_type& ssl_context)
         :
 #ifdef PION_HAVE_SSL
-        m_ssl_context(io_service, boost::asio::ssl::context::sslv23),
+        m_ssl_context(boost::asio::ssl::context::sslv23),
         m_ssl_socket(io_service, ssl_context), m_ssl_flag(true),
 #else
         m_ssl_context(0),
@@ -692,7 +692,7 @@ protected:
                   connection_handler finished_handler)
         :
 #ifdef PION_HAVE_SSL
-        m_ssl_context(io_service, boost::asio::ssl::context::sslv23),
+        m_ssl_context(boost::asio::ssl::context::sslv23),
         m_ssl_socket(io_service, ssl_context), m_ssl_flag(ssl_flag),
 #else
         m_ssl_context(0),
diff --git a/include/pion/test/unit_test.hpp b/include/pion/test/unit_test.hpp
index 8ff196a..97e5d50 100644
--- a/include/pion/test/unit_test.hpp
+++ b/include/pion/test/unit_test.hpp
@@ -193,12 +193,12 @@ namespace test {    // begin namespace test
             os << "<EntryContext>" << std::endl;
         }
 
-        virtual void entry_context_finish( std::ostream& os )
+        virtual void entry_context_finish( std::ostream& os, boost::unit_test::log_level )
         {
             os << "</EntryContext>" << std::endl;
         }
 
-        virtual void log_entry_context( std::ostream& os, boost::unit_test::const_string value )
+        virtual void log_entry_context( std::ostream& os, boost::unit_test::log_level, boost::unit_test::const_string value )
         {
             log_entry_value(os, value);
         }
diff --git a/src/tcp_server.cpp b/src/tcp_server.cpp
index a3e2965..5750ae6 100644
--- a/src/tcp_server.cpp
+++ b/src/tcp_server.cpp
@@ -25,7 +25,7 @@ server::server(scheduler& sched, const unsigned int tcp_port)
     m_active_scheduler(sched),
     m_tcp_acceptor(m_active_scheduler.get_io_service()),
 #ifdef PION_HAVE_SSL
-    m_ssl_context(m_active_scheduler.get_io_service(), boost::asio::ssl::context::sslv23),
+    m_ssl_context(boost::asio::ssl::context::sslv23),
 #else
     m_ssl_context(0),
 #endif
@@ -37,7 +37,7 @@ server::server(scheduler& sched, const boost::asio::ip::tcp::endpoint& endpoint)
     m_active_scheduler(sched),
     m_tcp_acceptor(m_active_scheduler.get_io_service()),
 #ifdef PION_HAVE_SSL
-    m_ssl_context(m_active_scheduler.get_io_service(), boost::asio::ssl::context::sslv23),
+    m_ssl_context(boost::asio::ssl::context::sslv23),
 #else
     m_ssl_context(0),
 #endif
@@ -49,7 +49,7 @@ server::server(const unsigned int tcp_port)
     m_default_scheduler(), m_active_scheduler(m_default_scheduler),
     m_tcp_acceptor(m_active_scheduler.get_io_service()),
 #ifdef PION_HAVE_SSL
-    m_ssl_context(m_active_scheduler.get_io_service(), boost::asio::ssl::context::sslv23),
+    m_ssl_context(boost::asio::ssl::context::sslv23),
 #else
     m_ssl_context(0),
 #endif
@@ -61,7 +61,7 @@ server::server(const boost::asio::ip::tcp::endpoint& endpoint)
     m_default_scheduler(), m_active_scheduler(m_default_scheduler),
     m_tcp_acceptor(m_active_scheduler.get_io_service()),
 #ifdef PION_HAVE_SSL
-    m_ssl_context(m_active_scheduler.get_io_service(), boost::asio::ssl::context::sslv23),
+    m_ssl_context(boost::asio::ssl::context::sslv23),
 #else
     m_ssl_context(0),
 #endif
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:14 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0210.07.pdiff [27.8 kB]
Get:12 http://deb.debian.org/debian unstable/main Sources 2018-09-26-1409.08.pdiff [14.0 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 (612 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 chrpath cmake
  cmake-data debhelper dh-autoreconf dh-strip-nondeterminism doxygen dwz file
  gettext gettext-base gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 groff-base
  icu-devtools intltool-debian libarchive-zip-perl libarchive13
  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-iostreams-dev libboost-iostreams1.67-dev
  libboost-iostreams1.67.0 libboost-regex1.67-dev libboost-regex1.67.0
  libboost-serialization1.67-dev libboost-serialization1.67.0
  libboost-signals-dev libboost-signals1.67-dev libboost-signals1.67.0
  libboost-system-dev libboost-system1.67-dev libboost-system1.67.0
  libboost-test-dev libboost-test1.67-dev libboost-test1.67.0
  libboost-thread-dev libboost-thread1.67-dev libboost-thread1.67.0
  libboost-timer1.67.0 libboost1.67-dev libbsd0 libbz2-dev libclang1-6.0
  libcroco3 libcurl4 libedit2 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 libgssapi-krb5-2 libharfbuzz-dev libharfbuzz-gobject0
  libharfbuzz-icu0 libharfbuzz0b libicu-dev libicu-le-hb-dev libicu-le-hb0
  libicu60 libjsoncpp1 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
  libllvm6.0 liblog4cpp5-dev liblog4cpp5v5 liblzo2-2 libmagic-mgc libmagic1
  libmpdec2 libncurses6 libnghttp2-14 libpcap-dev libpcap0.8 libpcap0.8-dev
  libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpipeline1 libpng16-16
  libprocps7 libpsl5 libpython3-stdlib libpython3.6-minimal
  libpython3.6-stdlib librhash0 librtmp1 libruby2.5 libsigsegv2 libssh2-1
  libssl-dev libtimedate-perl libtool libuv1 libxapian30 libxml2 libxml2-dev
  libyaml-0-2 m4 man-db mime-support pkg-config po-debconf procps python3
  python3-distutils python3-lib2to3 python3-minimal python3.6
  python3.6-minimal rake ruby ruby-did-you-mean ruby-minitest ruby-net-telnet
  ruby-power-assert ruby-test-unit ruby-xmlrpc ruby2.5 rubygems-integration
  zlib1g-dev
0 upgraded, 144 newly installed, 0 to remove and 2 not upgraded.
Need to get 98.6 MB of archives.
After this operation, 528 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-iostreams-dev amd64 1.67.0.1 [3524 B]
Get:7 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-signals-dev amd64 1.67.0.1 [3604 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-test-dev amd64 1.67.0.1 [3576 B]
Get:10 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-thread-dev amd64 1.67.0.1 [3564 B]
Get:11 http://deb.debian.org/debian unstable/main amd64 libpipeline1 amd64 1.5.0-1 [29.0 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 man-db amd64 2.8.4-2 [1194 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 libpython3.6-minimal amd64 3.6.6-4 [572 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 libexpat1 amd64 2.2.6-1 [105 kB]
Get:15 http://deb.debian.org/debian unstable/main amd64 python3.6-minimal amd64 3.6.6-4 [1650 kB]
Get:16 http://deb.debian.org/debian unstable/main amd64 python3-minimal amd64 3.6.6-1 [36.4 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 mime-support all 3.61 [37.1 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 libmpdec2 amd64 2.4.2-2 [87.2 kB]
Get:19 http://deb.debian.org/debian unstable/main amd64 libpython3.6-stdlib amd64 3.6.6-4 [1706 kB]
Get:20 http://deb.debian.org/debian unstable/main amd64 python3.6 amd64 3.6.6-4 [234 kB]
Get:21 http://deb.debian.org/debian unstable/main amd64 libpython3-stdlib amd64 3.6.6-1 [19.8 kB]
Get:22 http://deb.debian.org/debian unstable/main amd64 python3 amd64 3.6.6-1 [47.5 kB]
Get:23 http://deb.debian.org/debian unstable/main amd64 libncurses6 amd64 6.1+20180714-1 [102 kB]
Get:24 http://deb.debian.org/debian unstable/main amd64 libprocps7 amd64 2:3.3.15-2 [61.7 kB]
Get:25 http://deb.debian.org/debian unstable/main amd64 procps amd64 2:3.3.15-2 [259 kB]
Get:26 http://deb.debian.org/debian unstable/main amd64 libmagic-mgc amd64 1:5.34-2 [239 kB]
Get:27 http://deb.debian.org/debian unstable/main amd64 libmagic1 amd64 1:5.34-2 [116 kB]
Get:28 http://deb.debian.org/debian unstable/main amd64 file amd64 1:5.34-2 [65.8 kB]
Get:29 http://deb.debian.org/debian unstable/main amd64 gettext-base amd64 0.19.8.1-7 [122 kB]
Get:30 http://deb.debian.org/debian unstable/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB]
Get:31 http://deb.debian.org/debian unstable/main amd64 m4 amd64 1.4.18-1 [202 kB]
Get:32 http://deb.debian.org/debian unstable/main amd64 autoconf all 2.69-11 [341 kB]
Get:33 http://deb.debian.org/debian unstable/main amd64 autotools-dev all 20180224.1 [77.0 kB]
Get:34 http://deb.debian.org/debian unstable/main amd64 automake all 1:1.16.1-1.1 [771 kB]
Get:35 http://deb.debian.org/debian unstable/main amd64 autopoint all 0.19.8.1-7 [434 kB]
Get:36 http://deb.debian.org/debian unstable/main amd64 chrpath amd64 0.16-2+b1 [17.1 kB]
Get:37 http://deb.debian.org/debian unstable/main amd64 cmake-data all 3.12.1-1 [1436 kB]
Get:38 http://deb.debian.org/debian unstable/main amd64 liblzo2-2 amd64 2.10-0.1 [56.1 kB]
Get:39 http://deb.debian.org/debian unstable/main amd64 libpng16-16 amd64 1.6.34-2 [288 kB]
Get:40 http://deb.debian.org/debian unstable/main amd64 libfreetype6 amd64 2.8.1-2 [461 kB]
Get:41 http://deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.58.1-2 [1223 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 libarchive13 amd64 3.2.2-5 [307 kB]
Get:48 http://deb.debian.org/debian unstable/main amd64 libkeyutils1 amd64 1.5.9-9.3 [13.0 kB]
Get:49 http://deb.debian.org/debian unstable/main amd64 libkrb5support0 amd64 1.16-2 [62.8 kB]
Get:50 http://deb.debian.org/debian unstable/main amd64 libk5crypto3 amd64 1.16-2 [121 kB]
Get:51 http://deb.debian.org/debian unstable/main amd64 libkrb5-3 amd64 1.16-2 [316 kB]
Get:52 http://deb.debian.org/debian unstable/main amd64 libgssapi-krb5-2 amd64 1.16-2 [158 kB]
Get:53 http://deb.debian.org/debian unstable/main amd64 libnghttp2-14 amd64 1.33.0-1 [84.9 kB]
Get:54 http://deb.debian.org/debian unstable/main amd64 libpsl5 amd64 0.20.2-1 [53.7 kB]
Get:55 http://deb.debian.org/debian unstable/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2 [60.5 kB]
Get:56 http://deb.debian.org/debian unstable/main amd64 libssh2-1 amd64 1.8.0-2 [138 kB]
Get:57 http://deb.debian.org/debian unstable/main amd64 libcurl4 amd64 7.61.0-1 [318 kB]
Get:58 http://deb.debian.org/debian unstable/main amd64 libjsoncpp1 amd64 1.7.4-3 [75.6 kB]
Get:59 http://deb.debian.org/debian unstable/main amd64 librhash0 amd64 1.3.6-2 [87.1 kB]
Get:60 http://deb.debian.org/debian unstable/main amd64 libuv1 amd64 1.23.0-2 [106 kB]
Get:61 http://deb.debian.org/debian unstable/main amd64 cmake amd64 3.12.1-1 [3431 kB]
Get:62 http://deb.debian.org/debian unstable/main amd64 libtool all 2.4.6-4 [547 kB]
Get:63 http://deb.debian.org/debian unstable/main amd64 dh-autoreconf all 19 [16.9 kB]
Get:64 http://deb.debian.org/debian unstable/main amd64 libarchive-zip-perl all 1.64-1 [96.8 kB]
Get:65 http://deb.debian.org/debian unstable/main amd64 libfile-stripnondeterminism-perl all 0.042-1 [20.1 kB]
Get:66 http://deb.debian.org/debian unstable/main amd64 libtimedate-perl all 2.3000-2 [42.2 kB]
Get:67 http://deb.debian.org/debian unstable/main amd64 dh-strip-nondeterminism all 0.042-1 [12.1 kB]
Get:68 http://deb.debian.org/debian unstable/main amd64 dwz amd64 0.12-2 [77.5 kB]
Get:69 http://deb.debian.org/debian unstable/main amd64 libcroco3 amd64 0.6.12-2 [144 kB]
Get:70 http://deb.debian.org/debian unstable/main amd64 gettext amd64 0.19.8.1-7 [1304 kB]
Get:71 http://deb.debian.org/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.4 [26.3 kB]
Get:72 http://deb.debian.org/debian unstable/main amd64 po-debconf all 1.0.20 [247 kB]
Get:73 http://deb.debian.org/debian unstable/main amd64 debhelper all 11.4 [985 kB]
Get:74 http://deb.debian.org/debian unstable/main amd64 libedit2 amd64 3.1-20180525-1 [86.8 kB]
Get:75 http://deb.debian.org/debian unstable/main amd64 libllvm6.0 amd64 1:6.0.1-9 [14.7 MB]
Get:76 http://deb.debian.org/debian unstable/main amd64 libclang1-6.0 amd64 1:6.0.1-9 [6956 kB]
Get:77 http://deb.debian.org/debian unstable/main amd64 libxapian30 amd64 1.4.7-2 [1094 kB]
Get:78 http://deb.debian.org/debian unstable/main amd64 doxygen amd64 1.8.13-10 [3985 kB]
Get:79 http://deb.debian.org/debian unstable/main amd64 libgirepository-1.0-1 amd64 1.58.0-1 [92.5 kB]
Get:80 http://deb.debian.org/debian unstable/main amd64 gir1.2-glib-2.0 amd64 1.58.0-1 [143 kB]
Get:81 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-gobject0 amd64 1.9.0-1 [659 kB]
Get:82 http://deb.debian.org/debian unstable/main amd64 gir1.2-harfbuzz-0.0 amd64 1.9.0-1 [664 kB]
Get:83 http://deb.debian.org/debian unstable/main amd64 icu-devtools amd64 60.2-6 [190 kB]
Get:84 http://deb.debian.org/debian unstable/main amd64 libboost1.67-dev amd64 1.67.0-7 [8388 kB]
Get:85 http://deb.debian.org/debian unstable/main amd64 libboost-atomic1.67.0 amd64 1.67.0-7 [225 kB]
Get:86 http://deb.debian.org/debian unstable/main amd64 libboost-atomic1.67-dev amd64 1.67.0-7 [224 kB]
Get:87 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67.0 amd64 1.67.0-7 [228 kB]
Get:88 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.67.0 amd64 1.67.0-7 [233 kB]
Get:89 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.67-dev amd64 1.67.0-7 [235 kB]
Get:90 http://deb.debian.org/debian unstable/main amd64 libboost-date-time1.67.0 amd64 1.67.0-7 [238 kB]
Get:91 http://deb.debian.org/debian unstable/main amd64 libboost-serialization1.67.0 amd64 1.67.0-7 [319 kB]
Get:92 http://deb.debian.org/debian unstable/main amd64 libboost-serialization1.67-dev amd64 1.67.0-7 [358 kB]
Get:93 http://deb.debian.org/debian unstable/main amd64 libboost-date-time1.67-dev amd64 1.67.0-7 [246 kB]
Get:94 http://deb.debian.org/debian unstable/main amd64 libboost-filesystem1.67.0 amd64 1.67.0-7 [260 kB]
Get:95 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67-dev amd64 1.67.0-7 [231 kB]
Get:96 http://deb.debian.org/debian unstable/main amd64 libboost-filesystem1.67-dev amd64 1.67.0-7 [267 kB]
Get:97 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67.0 amd64 1.67.0-7 [484 kB]
Get:98 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-icu0 amd64 1.9.0-1 [651 kB]
Get:99 http://deb.debian.org/debian unstable/main amd64 libglib2.0-data all 2.58.1-2 [1105 kB]
Get:100 http://deb.debian.org/debian unstable/main amd64 libglib2.0-bin amd64 2.58.1-2 [121 kB]
Get:101 http://deb.debian.org/debian unstable/main amd64 python3-lib2to3 all 3.6.6-1 [79.1 kB]
Get:102 http://deb.debian.org/debian unstable/main amd64 python3-distutils all 3.6.6-1 [144 kB]
Get:103 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev-bin amd64 2.58.1-2 [154 kB]
Get:104 http://deb.debian.org/debian unstable/main amd64 libpcre16-3 amd64 2:8.39-11 [258 kB]
Get:105 http://deb.debian.org/debian unstable/main amd64 libpcre32-3 amd64 2:8.39-11 [250 kB]
Get:106 http://deb.debian.org/debian unstable/main amd64 libpcrecpp0v5 amd64 2:8.39-11 [152 kB]
Get:107 http://deb.debian.org/debian unstable/main amd64 libpcre3-dev amd64 2:8.39-11 [651 kB]
Get:108 http://deb.debian.org/debian unstable/main amd64 pkg-config amd64 0.29-4+b1 [63.3 kB]
Get:109 http://deb.debian.org/debian unstable/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-1 [214 kB]
Get:110 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev amd64 2.58.1-2 [1445 kB]
Get:111 http://deb.debian.org/debian unstable/main amd64 libgraphite2-dev amd64 1.3.12-1 [22.6 kB]
Get:112 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-dev amd64 1.9.0-1 [1001 kB]
Get:113 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-5 [30.0 kB]
Get:114 http://deb.debian.org/debian unstable/main amd64 libicu-dev amd64 60.2-6 [8900 kB]
Get:115 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67-dev amd64 1.67.0-7 [536 kB]
Get:116 http://deb.debian.org/debian unstable/main amd64 libboost-iostreams1.67.0 amd64 1.67.0-7 [248 kB]
Get:117 http://deb.debian.org/debian unstable/main amd64 libboost-iostreams1.67-dev amd64 1.67.0-7 [254 kB]
Get:118 http://deb.debian.org/debian unstable/main amd64 libboost-signals1.67.0 amd64 1.67.0-7 [249 kB]
Get:119 http://deb.debian.org/debian unstable/main amd64 libboost-signals1.67-dev amd64 1.67.0-7 [256 kB]
Get:120 http://deb.debian.org/debian unstable/main amd64 libboost-timer1.67.0 amd64 1.67.0-7 [230 kB]
Get:121 http://deb.debian.org/debian unstable/main amd64 libboost-test1.67.0 amd64 1.67.0-7 [456 kB]
Get:122 http://deb.debian.org/debian unstable/main amd64 libboost-test1.67-dev amd64 1.67.0-7 [511 kB]
Get:123 http://deb.debian.org/debian unstable/main amd64 libboost-thread1.67.0 amd64 1.67.0-7 [266 kB]
Get:124 http://deb.debian.org/debian unstable/main amd64 libboost-thread1.67-dev amd64 1.67.0-7 [268 kB]
Get:125 http://deb.debian.org/debian unstable/main amd64 libbz2-dev amd64 1.0.6-9 [30.2 kB]
Get:126 http://deb.debian.org/debian unstable/main amd64 liblog4cpp5v5 amd64 1.1.3-1 [106 kB]
Get:127 http://deb.debian.org/debian unstable/main amd64 liblog4cpp5-dev amd64 1.1.3-1 [151 kB]
Get:128 http://deb.debian.org/debian unstable/main amd64 libpcap0.8 amd64 1.8.1-6 [139 kB]
Get:129 http://deb.debian.org/debian unstable/main amd64 libpcap0.8-dev amd64 1.8.1-6 [240 kB]
Get:130 http://deb.debian.org/debian unstable/main amd64 libpcap-dev amd64 1.8.1-6 [25.9 kB]
Get:131 http://deb.debian.org/debian unstable/main amd64 rubygems-integration all 1.11 [4994 B]
Get:132 http://deb.debian.org/debian unstable/main amd64 ruby2.5 amd64 2.5.1-5 [385 kB]
Get:133 http://deb.debian.org/debian unstable/main amd64 ruby amd64 1:2.5.1 [11.3 kB]
Get:134 http://deb.debian.org/debian unstable/main amd64 rake all 12.3.1-3 [66.9 kB]
Get:135 http://deb.debian.org/debian unstable/main amd64 ruby-did-you-mean all 1.2.1-1 [14.4 kB]
Get:136 http://deb.debian.org/debian unstable/main amd64 ruby-minitest all 5.11.3-1 [54.8 kB]
Get:137 http://deb.debian.org/debian unstable/main amd64 ruby-net-telnet all 0.1.1-2 [12.5 kB]
Get:138 http://deb.debian.org/debian unstable/main amd64 ruby-power-assert all 1.1.1-1 [10.9 kB]
Get:139 http://deb.debian.org/debian unstable/main amd64 ruby-test-unit all 3.2.8-1 [72.4 kB]
Get:140 http://deb.debian.org/debian unstable/main amd64 ruby-xmlrpc all 0.3.0-2 [23.7 kB]
Get:141 http://deb.debian.org/debian unstable/main amd64 libyaml-0-2 amd64 0.2.1-1 [47.2 kB]
Get:142 http://deb.debian.org/debian unstable/main amd64 libruby2.5 amd64 2.5.1-5 [3419 kB]
Get:143 http://deb.debian.org/debian unstable/main amd64 libssl-dev amd64 1.1.1-1 [1787 kB]
Get:144 http://deb.debian.org/debian unstable/main amd64 libxml2-dev amd64 2.9.4+dfsg1-7+b1 [821 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 98.6 MB in 2s (44.2 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 .../000-python3_3.6.6-1_amd64.deb ...
Unpacking python3 (3.6.6-1) ...
Selecting previously unselected package libncurses6:amd64.
Preparing to unpack .../001-libncurses6_6.1+20180714-1_amd64.deb ...
Unpacking libncurses6:amd64 (6.1+20180714-1) ...
Selecting previously unselected package libprocps7:amd64.
Preparing to unpack .../002-libprocps7_2%3a3.3.15-2_amd64.deb ...
Unpacking libprocps7:amd64 (2:3.3.15-2) ...
Selecting previously unselected package procps.
Preparing to unpack .../003-procps_2%3a3.3.15-2_amd64.deb ...
Unpacking procps (2:3.3.15-2) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../004-libmagic-mgc_1%3a5.34-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.34-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../005-libmagic1_1%3a5.34-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.34-2) ...
Selecting previously unselected package file.
Preparing to unpack .../006-file_1%3a5.34-2_amd64.deb ...
Unpacking file (1:5.34-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../007-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 .../008-libsigsegv2_2.12-2_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.12-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../009-m4_1.4.18-1_amd64.deb ...
Unpacking m4 (1.4.18-1) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../010-autoconf_2.69-11_all.deb ...
Unpacking autoconf (2.69-11) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../011-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../012-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 .../013-autopoint_0.19.8.1-7_all.deb ...
Unpacking autopoint (0.19.8.1-7) ...
Selecting previously unselected package chrpath.
Preparing to unpack .../014-chrpath_0.16-2+b1_amd64.deb ...
Unpacking chrpath (0.16-2+b1) ...
Selecting previously unselected package cmake-data.
Preparing to unpack .../015-cmake-data_3.12.1-1_all.deb ...
Unpacking cmake-data (3.12.1-1) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../016-liblzo2-2_2.10-0.1_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.10-0.1) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../017-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 .../018-libfreetype6_2.8.1-2_amd64.deb ...
Unpacking libfreetype6:amd64 (2.8.1-2) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../019-libglib2.0-0_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.58.1-2) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../020-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 .../021-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 .../022-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 .../023-libicu60_60.2-6_amd64.deb ...
Unpacking libicu60:amd64 (60.2-6) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../024-libxml2_2.9.4+dfsg1-7+b1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Selecting previously unselected package libarchive13:amd64.
Preparing to unpack .../025-libarchive13_3.2.2-5_amd64.deb ...
Unpacking libarchive13:amd64 (3.2.2-5) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../026-libkeyutils1_1.5.9-9.3_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.5.9-9.3) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../027-libkrb5support0_1.16-2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.16-2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../028-libk5crypto3_1.16-2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.16-2) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../029-libkrb5-3_1.16-2_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.16-2) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../030-libgssapi-krb5-2_1.16-2_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.16-2) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../031-libnghttp2-14_1.33.0-1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.33.0-1) ...
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../032-libpsl5_0.20.2-1_amd64.deb ...
Unpacking libpsl5:amd64 (0.20.2-1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../033-librtmp1_2.4+20151223.gitfa8646d.1-2_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../034-libssh2-1_1.8.0-2_amd64.deb ...
Unpacking libssh2-1:amd64 (1.8.0-2) ...
Selecting previously unselected package libcurl4:amd64.
Preparing to unpack .../035-libcurl4_7.61.0-1_amd64.deb ...
Unpacking libcurl4:amd64 (7.61.0-1) ...
Selecting previously unselected package libjsoncpp1:amd64.
Preparing to unpack .../036-libjsoncpp1_1.7.4-3_amd64.deb ...
Unpacking libjsoncpp1:amd64 (1.7.4-3) ...
Selecting previously unselected package librhash0:amd64.
Preparing to unpack .../037-librhash0_1.3.6-2_amd64.deb ...
Unpacking librhash0:amd64 (1.3.6-2) ...
Selecting previously unselected package libuv1:amd64.
Preparing to unpack .../038-libuv1_1.23.0-2_amd64.deb ...
Unpacking libuv1:amd64 (1.23.0-2) ...
Selecting previously unselected package cmake.
Preparing to unpack .../039-cmake_3.12.1-1_amd64.deb ...
Unpacking cmake (3.12.1-1) ...
Selecting previously unselected package libtool.
Preparing to unpack .../040-libtool_2.4.6-4_all.deb ...
Unpacking libtool (2.4.6-4) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../041-dh-autoreconf_19_all.deb ...
Unpacking dh-autoreconf (19) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../042-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 .../043-libfile-stripnondeterminism-perl_0.042-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.042-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../044-libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../045-dh-strip-nondeterminism_0.042-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.042-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../046-dwz_0.12-2_amd64.deb ...
Unpacking dwz (0.12-2) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../047-libcroco3_0.6.12-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.12-2) ...
Selecting previously unselected package gettext.
Preparing to unpack .../048-gettext_0.19.8.1-7_amd64.deb ...
Unpacking gettext (0.19.8.1-7) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../049-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 .../050-po-debconf_1.0.20_all.deb ...
Unpacking po-debconf (1.0.20) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../051-debhelper_11.4_all.deb ...
Unpacking debhelper (11.4) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../052-libedit2_3.1-20180525-1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20180525-1) ...
Selecting previously unselected package libllvm6.0:amd64.
Preparing to unpack .../053-libllvm6.0_1%3a6.0.1-9_amd64.deb ...
Unpacking libllvm6.0:amd64 (1:6.0.1-9) ...
Selecting previously unselected package libclang1-6.0:amd64.
Preparing to unpack .../054-libclang1-6.0_1%3a6.0.1-9_amd64.deb ...
Unpacking libclang1-6.0:amd64 (1:6.0.1-9) ...
Selecting previously unselected package libxapian30:amd64.
Preparing to unpack .../055-libxapian30_1.4.7-2_amd64.deb ...
Unpacking libxapian30:amd64 (1.4.7-2) ...
Selecting previously unselected package doxygen.
Preparing to unpack .../056-doxygen_1.8.13-10_amd64.deb ...
Unpacking doxygen (1.8.13-10) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../057-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 .../058-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 .../059-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 .../060-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 .../061-icu-devtools_60.2-6_amd64.deb ...
Unpacking icu-devtools (60.2-6) ...
Selecting previously unselected package libboost1.67-dev:amd64.
Preparing to unpack .../062-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 .../063-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 .../064-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 .../065-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 .../066-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 .../067-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 .../068-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 .../069-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 .../070-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 .../071-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 .../072-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 .../073-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 .../074-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 .../075-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 .../076-libboost-filesystem-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-filesystem-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-regex1.67.0:amd64.
Preparing to unpack .../077-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 .../078-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 .../079-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 .../080-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 .../081-python3-lib2to3_3.6.6-1_all.deb ...
Unpacking python3-lib2to3 (3.6.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../082-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 .../083-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 .../084-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 .../085-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 .../086-libpcrecpp0v5_2%3a8.39-11_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../087-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 .../088-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 .../089-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 .../090-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 .../091-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 .../092-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 .../093-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 .../094-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 .../095-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-iostreams1.67.0:amd64.
Preparing to unpack .../096-libboost-iostreams1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-iostreams1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-iostreams1.67-dev:amd64.
Preparing to unpack .../097-libboost-iostreams1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-iostreams1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-iostreams-dev:amd64.
Preparing to unpack .../098-libboost-iostreams-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-iostreams-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-signals1.67.0:amd64.
Preparing to unpack .../099-libboost-signals1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-signals1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-signals1.67-dev:amd64.
Preparing to unpack .../100-libboost-signals1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-signals1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-signals-dev:amd64.
Preparing to unpack .../101-libboost-signals-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-signals-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-system-dev:amd64.
Preparing to unpack .../102-libboost-system-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-system-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-timer1.67.0:amd64.
Preparing to unpack .../103-libboost-timer1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-timer1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-test1.67.0:amd64.
Preparing to unpack .../104-libboost-test1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-test1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-test1.67-dev:amd64.
Preparing to unpack .../105-libboost-test1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-test1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-test-dev:amd64.
Preparing to unpack .../106-libboost-test-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-test-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-thread1.67.0:amd64.
Preparing to unpack .../107-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 .../108-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 .../109-libboost-thread-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-thread-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libbz2-dev:amd64.
Preparing to unpack .../110-libbz2-dev_1.0.6-9_amd64.deb ...
Unpacking libbz2-dev:amd64 (1.0.6-9) ...
Selecting previously unselected package liblog4cpp5v5:amd64.
Preparing to unpack .../111-liblog4cpp5v5_1.1.3-1_amd64.deb ...
Unpacking liblog4cpp5v5:amd64 (1.1.3-1) ...
Selecting previously unselected package liblog4cpp5-dev.
Preparing to unpack .../112-liblog4cpp5-dev_1.1.3-1_amd64.deb ...
Unpacking liblog4cpp5-dev (1.1.3-1) ...
Selecting previously unselected package libpcap0.8:amd64.
Preparing to unpack .../113-libpcap0.8_1.8.1-6_amd64.deb ...
Unpacking libpcap0.8:amd64 (1.8.1-6) ...
Selecting previously unselected package libpcap0.8-dev:amd64.
Preparing to unpack .../114-libpcap0.8-dev_1.8.1-6_amd64.deb ...
Unpacking libpcap0.8-dev:amd64 (1.8.1-6) ...
Selecting previously unselected package libpcap-dev:amd64.
Preparing to unpack .../115-libpcap-dev_1.8.1-6_amd64.deb ...
Unpacking libpcap-dev:amd64 (1.8.1-6) ...
Selecting previously unselected package rubygems-integration.
Preparing to unpack .../116-rubygems-integration_1.11_all.deb ...
Unpacking rubygems-integration (1.11) ...
Selecting previously unselected package ruby2.5.
Preparing to unpack .../117-ruby2.5_2.5.1-5_amd64.deb ...
Unpacking ruby2.5 (2.5.1-5) ...
Selecting previously unselected package ruby.
Preparing to unpack .../118-ruby_1%3a2.5.1_amd64.deb ...
Unpacking ruby (1:2.5.1) ...
Selecting previously unselected package rake.
Preparing to unpack .../119-rake_12.3.1-3_all.deb ...
Unpacking rake (12.3.1-3) ...
Selecting previously unselected package ruby-did-you-mean.
Preparing to unpack .../120-ruby-did-you-mean_1.2.1-1_all.deb ...
Unpacking ruby-did-you-mean (1.2.1-1) ...
Selecting previously unselected package ruby-minitest.
Preparing to unpack .../121-ruby-minitest_5.11.3-1_all.deb ...
Unpacking ruby-minitest (5.11.3-1) ...
Selecting previously unselected package ruby-net-telnet.
Preparing to unpack .../122-ruby-net-telnet_0.1.1-2_all.deb ...
Unpacking ruby-net-telnet (0.1.1-2) ...
Selecting previously unselected package ruby-power-assert.
Preparing to unpack .../123-ruby-power-assert_1.1.1-1_all.deb ...
Unpacking ruby-power-assert (1.1.1-1) ...
Selecting previously unselected package ruby-test-unit.
Preparing to unpack .../124-ruby-test-unit_3.2.8-1_all.deb ...
Unpacking ruby-test-unit (3.2.8-1) ...
Selecting previously unselected package ruby-xmlrpc.
Preparing to unpack .../125-ruby-xmlrpc_0.3.0-2_all.deb ...
Unpacking ruby-xmlrpc (0.3.0-2) ...
Selecting previously unselected package libyaml-0-2:amd64.
Preparing to unpack .../126-libyaml-0-2_0.2.1-1_amd64.deb ...
Unpacking libyaml-0-2:amd64 (0.2.1-1) ...
Selecting previously unselected package libruby2.5:amd64.
Preparing to unpack .../127-libruby2.5_2.5.1-5_amd64.deb ...
Unpacking libruby2.5:amd64 (2.5.1-5) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../128-libssl-dev_1.1.1-1_amd64.deb ...
Unpacking libssl-dev:amd64 (1.1.1-1) ...
Selecting previously unselected package libxml2-dev:amd64.
Preparing to unpack .../129-libxml2-dev_2.9.4+dfsg1-7+b1_amd64.deb ...
Unpacking libxml2-dev:amd64 (2.9.4+dfsg1-7+b1) ...
Setting up chrpath (0.16-2+b1) ...
Setting up libxapian30:amd64 (1.4.7-2) ...
Setting up libbz2-dev:amd64 (1.0.6-9) ...
Setting up libboost-iostreams1.67.0:amd64 (1.67.0-7) ...
Setting up ruby-xmlrpc (0.3.0-2) ...
Setting up libarchive-zip-perl (1.64-1) ...
Setting up libnghttp2-14:amd64 (1.33.0-1) ...
Setting up libprocps7:amd64 (2:3.3.15-2) ...
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 libuv1:amd64 (1.23.0-2) ...
Setting up libpsl5:amd64 (0.20.2-1) ...
Setting up libboost-atomic1.67.0:amd64 (1.67.0-7) ...
Setting up libssl-dev:amd64 (1.1.1-1) ...
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 gettext-base (0.19.8.1-7) ...
Setting up cmake-data (3.12.1-1) ...
Setting up libpipeline1:amd64 (1.5.0-1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2) ...
Setting up m4 (1.4.18-1) ...
Setting up liblog4cpp5v5:amd64 (1.1.3-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 librhash0:amd64 (1.3.6-2) ...
Setting up pkg-config (0.29-4+b1) ...
Setting up ruby-did-you-mean (1.2.1-1) ...
Setting up libyaml-0-2:amd64 (0.2.1-1) ...
Setting up liblog4cpp5-dev (1.1.3-1) ...
Setting up gir1.2-glib-2.0:amd64 (1.58.0-1) ...
Setting up libssh2-1:amd64 (1.8.0-2) ...
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 ruby-net-telnet (0.1.1-2) ...
Setting up rubygems-integration (1.11) ...
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 libboost-signals1.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 libkeyutils1:amd64 (1.5.9-9.3) ...
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 ruby-minitest (5.11.3-1) ...
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 liblzo2-2:amd64 (2.10-0.1) ...
Setting up ruby-power-assert (1.1.1-1) ...
Setting up libpcap0.8:amd64 (1.8.1-6) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Setting up libfile-stripnondeterminism-perl (0.042-1) ...
Setting up libjsoncpp1:amd64 (1.7.4-3) ...
Setting up libedit2:amd64 (3.1-20180525-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 libllvm6.0:amd64 (1:6.0.1-9) ...
Setting up ruby-test-unit (3.2.8-1) ...
Setting up libboost-serialization1.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 libclang1-6.0:amd64 (1:6.0.1-9) ...
Setting up libboost-signals1.67-dev:amd64 (1.67.0-7) ...
Setting up libpcap0.8-dev:amd64 (1.8.1-6) ...
Setting up libharfbuzz0b:amd64 (1.9.0-1) ...
Setting up autoconf (2.69-11) ...
Setting up file (1:5.34-2) ...
Setting up libkrb5support0:amd64 (1.16-2) ...
Setting up procps (2:3.3.15-2) ...
update-alternatives: using /usr/bin/w.procps to provide /usr/bin/w (w) in auto mode
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 libpcap-dev:amd64 (1.8.1-6) ...
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 libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Setting up libboost-signals-dev:amd64 (1.67.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 libk5crypto3:amd64 (1.16-2) ...
Setting up libboost-timer1.67.0: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 doxygen (1.8.13-10) ...
Setting up libboost-filesystem-dev:amd64 (1.67.0.1) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Setting up libkrb5-3:amd64 (1.16-2) ...
Setting up python3-lib2to3 (3.6.6-1) ...
Setting up libboost-test1.67.0:amd64 (1.67.0-7) ...
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 libboost-test1.67-dev:amd64 (1.67.0-7) ...
Setting up libglib2.0-dev:amd64 (2.58.1-2) ...
Setting up libgssapi-krb5-2:amd64 (1.16-2) ...
Setting up libboost-test-dev:amd64 (1.67.0.1) ...
Setting up libcurl4:amd64 (7.61.0-1) ...
Setting up dh-autoreconf (19) ...
Setting up rake (12.3.1-3) ...
Setting up libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Setting up dh-strip-nondeterminism (0.042-1) ...
Setting up libruby2.5:amd64 (2.5.1-5) ...
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 ruby2.5 (2.5.1-5) ...
Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Setting up gettext (0.19.8.1-7) ...
Setting up libarchive13:amd64 (3.2.2-5) ...
Setting up libicu-dev (60.2-6) ...
Setting up libxml2-dev:amd64 (2.9.4+dfsg1-7+b1) ...
Setting up intltool-debian (0.35.0+20060710.4) ...
Setting up cmake (3.12.1-1) ...
Setting up ruby (1:2.5.1) ...
Setting up po-debconf (1.0.20) ...
Setting up libboost-regex1.67-dev:amd64 (1.67.0-7) ...
Setting up debhelper (11.4) ...
Setting up libboost-iostreams1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-iostreams-dev:amd64 (1.67.0.1) ...
Processing triggers for libc-bin (2.27-6) ...
Reading package lists...
NOTICE: 'pion' packaging is maintained in the 'Git' version control system at:
https://github.com/splunk/pion.git
Please use:
git clone https://github.com/splunk/pion.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 398 kB of source archives.
Get:1 http://deb.debian.org/debian unstable/main pion 5.0.7+dfsg-4 (dsc) [2455 B]
Get:2 http://deb.debian.org/debian unstable/main pion 5.0.7+dfsg-4 (tar) [381 kB]
Get:3 http://deb.debian.org/debian unstable/main pion 5.0.7+dfsg-4 (diff) [14.3 kB]
dpkg-source: info: extracting pion in pion-5.0.7+dfsg
dpkg-source: info: unpacking pion_5.0.7+dfsg.orig.tar.gz
dpkg-source: info: unpacking pion_5.0.7+dfsg-4.debian.tar.xz
dpkg-source: info: applying 01_fix_test_suite_for_big_endian_architectures.patch
dpkg-source: info: applying 02_gcc6.patch
dpkg-source: info: applying 03_boost_unit_test.patch
dpkg-source: info: applying 04_pkgconfig_remove_private_flags.patch
dpkg-source: info: applying 05_gcc6_narrowing_conversion.patch
Fetched 398 kB in 0s (0 B/s)
dpkg-buildpackage: info: source package pion
dpkg-buildpackage: info: source version 5.0.7+dfsg-4
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Roberto C. Sanchez <robe...@connexer.com>
 dpkg-source --before-build pion-5.0.7+dfsg
dpkg-buildpackage: info: host architecture amd64
dpkg-source: info: using options from pion-5.0.7+dfsg/debian/source/options: --diff-ignore --tar-ignore
 fakeroot debian/rules clean
dh clean --with autoreconf
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/home/builder/pion-5.0.7+dfsg'
dh_auto_clean
rm -rf doc/html doc/pion-net.tag
make[1]: Leaving directory '/home/builder/pion-5.0.7+dfsg'
   dh_clean
 dpkg-source -b pion-5.0.7+dfsg
dpkg-source: info: using options from pion-5.0.7+dfsg/debian/source/options: --diff-ignore --tar-ignore
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building pion using existing ./pion_5.0.7+dfsg.orig.tar.gz
dpkg-source: info: building pion in pion_5.0.7+dfsg-4.debian.tar.xz
dpkg-source: info: building pion in pion_5.0.7+dfsg-4.dsc
 debian/rules build
make: 'build' is up to date.
 fakeroot debian/rules binary
dh binary --with autoreconf
   dh_update_autotools_config
   dh_autoreconf
aclocal: warning: couldn't open directory 'm4': No such file or directory
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'm4'.
libtoolize: copying file 'm4/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
configure.ac:21: installing 'm4/compile'
configure.ac:24: installing 'm4/config.guess'
configure.ac:24: installing 'm4/config.sub'
configure.ac:15: installing 'm4/install-sh'
configure.ac:15: installing 'm4/missing'
services/Makefile.am: installing 'm4/depcomp'
parallel-tests: installing 'm4/test-driver'
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/home/builder/pion-5.0.7+dfsg'
dh_auto_configure -- \
--prefix=/usr --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --enable-shared --disable-static --with-gnu-ld --with-pic --with-openssl --with-zlib --with-bzlib --with-log4cpp
	./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --prefix=/usr --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --enable-shared --disable-static --with-gnu-ld --with-pic --with-openssl --with-zlib --with-bzlib --with-log4cpp
configure: WARNING: unrecognized options: --disable-maintainer-mode
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for doxygen... /usr/bin/doxygen
checking for perl... /usr/bin/perl
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for C++ compiler vendor... gnu
checking for specific CPU architecture... no
checking for debugging... no
checking for plug-ins directory... /usr/share/pion/plugins
checking for boostlib >= 1.35... yes
checking boost library extension... "(none)"
checking for boost::date_time library... ok
checking for boost::system library... ok
checking for boost::thread library... ok
checking for boost::filesystem library... ok
checking for boost::regex library... ok
checking for boost::test library... ok
checking for cygwin directory... no
checking for malloc_trim() support... yes
checking unordered_map usability... yes
checking unordered_map presence... yes
checking for unordered_map... yes
checking for gzip compression support (zlib)... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking linking with zlib... ok
checking for bzip2 compression support (bzlib)... yes
checking bzlib.h usability... yes
checking bzlib.h presence... yes
checking for bzlib.h... yes
checking linking with bzlib... ok
checking for SSL support (openssl)... yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
checking linking with openssl... ok
configure: Building Pion with support for SSL (using OpenSSL)
checking log4cpp library... ok
configure: Using log4cpp for logging
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating pion.pc
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/pion/Makefile
config.status: creating include/pion/tcp/Makefile
config.status: creating include/pion/http/Makefile
config.status: creating include/pion/test/Makefile
config.status: creating include/pion/spdy/Makefile
config.status: creating src/Makefile
config.status: creating services/Makefile
config.status: creating utils/Makefile
config.status: creating tests/Makefile
config.status: creating tests/plugins/Makefile
config.status: creating include/pion/config.hpp
config.status: executing depfiles commands
config.status: executing libtool commands
configure: WARNING: unrecognized options: --disable-maintainer-mode
make[1]: Leaving directory '/home/builder/pion-5.0.7+dfsg'
   debian/rules override_dh_auto_build
make[1]: Entering directory '/home/builder/pion-5.0.7+dfsg'
dh_auto_build
	make -j1
make[2]: Entering directory '/home/builder/pion-5.0.7+dfsg'
Making all in include
make[3]: Entering directory '/home/builder/pion-5.0.7+dfsg/include'
Making all in pion
make[4]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion'
(CDPATH="${ZSH_VERSION+.}:" && cd ../.. && echo autoheader ignored)
autoheader ignored
rm -f stamp-h1
touch config.hpp.in
cd ../.. && /bin/bash ./config.status include/pion/config.hpp
config.status: creating include/pion/config.hpp
config.status: include/pion/config.hpp is unchanged
make  all-recursive
make[5]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion'
Making all in http
make[6]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion/http'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion/http'
Making all in spdy
make[6]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion/spdy'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion/spdy'
Making all in test
make[6]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion/test'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion/test'
Making all in tcp
make[6]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion/tcp'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion/tcp'
make[6]: Entering directory '/home/builder/pion-5.0.7+dfsg/include/pion'
make[6]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion'
make[5]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion'
make[4]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include/pion'
make[4]: Entering directory '/home/builder/pion-5.0.7+dfsg/include'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include'
make[3]: Leaving directory '/home/builder/pion-5.0.7+dfsg/include'
Making all in src
make[3]: Entering directory '/home/builder/pion-5.0.7+dfsg/src'
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o admin_rights.lo admin_rights.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c admin_rights.cpp  -fPIC -DPIC -o .libs/admin_rights.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o algorithm.lo algorithm.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c algorithm.cpp  -fPIC -DPIC -o .libs/algorithm.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o logger.lo logger.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c logger.cpp  -fPIC -DPIC -o .libs/logger.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o plugin.lo plugin.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c plugin.cpp  -fPIC -DPIC -o .libs/plugin.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o process.lo process.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c process.cpp  -fPIC -DPIC -o .libs/process.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o scheduler.lo scheduler.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c scheduler.cpp  -fPIC -DPIC -o .libs/scheduler.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o spdy_decompressor.lo spdy_decompressor.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c spdy_decompressor.cpp  -fPIC -DPIC -o .libs/spdy_decompressor.o
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o spdy_parser.lo spdy_parser.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c spdy_parser.cpp  -fPIC -DPIC -o .libs/spdy_parser.o
spdy_parser.cpp: In member function 'void pion::spdy::parser::parse_header_payload(boost::system::error_code&, const decompressor_ptr&, const spdy_control_frame_info&, pion::spdy::http_protocol_info&, uint32_t)':
spdy_parser.cpp:355:21: warning: variable 'associated_stream_id' set but not used [-Wunused-but-set-variable]
     boost::uint32_t associated_stream_id;
                     ^~~~~~~~~~~~~~~~~~~~
spdy_parser.cpp: In member function 'void pion::spdy::parser::parse_spdy_rst_stream(boost::system::error_code&, const spdy_control_frame_info&)':
spdy_parser.cpp:480:21: warning: variable 'stream_id' set but not used [-Wunused-but-set-variable]
     boost::uint32_t stream_id = 0;
                     ^~~~~~~~~
spdy_parser.cpp: In member function 'void pion::spdy::parser::parse_spdy_goaway_frame(boost::system::error_code&, const spdy_control_frame_info&)':
spdy_parser.cpp:543:21: warning: variable 'last_good_stream_id' set but not used [-Wunused-but-set-variable]
     boost::uint32_t last_good_stream_id = 0;
                     ^~~~~~~~~~~~~~~~~~~
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../include/pion  -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include  -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c -o tcp_server.lo tcp_server.cpp
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../include/pion -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -D_REENTRANT -I/usr/include -g -O2 -fdebug-prefix-map=/home/builder/pion-5.0.7+dfsg=. -fstack-protector-strong -Wformat -Werror=format-security -DPION -O2 -ggdb -Wall -Wno-strict-aliasing -DNDEBUG -c tcp_server.cpp  -fPIC -DPIC -o .libs/tcp_server.o
In file included from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
../include/pion/tcp/connection.hpp: In constructor 'pion::tcp::connection::connection(boost::asio::io_service&, bool)':
../include/pion/tcp/connection.hpp:120:36: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
         m_lifecycle(LIFECYCLE_CLOSE)
                                    ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
In file included from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
../include/pion/tcp/connection.hpp: In constructor 'pion::tcp::connection::connection(boost::asio::io_service&, pion::tcp::connection::ssl_context_type&)':
../include/pion/tcp/connection.hpp:140:36: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
         m_lifecycle(LIFECYCLE_CLOSE)
                                    ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
In file included from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
../include/pion/tcp/connection.hpp: In constructor 'pion::tcp::connection::connection(boost::asio::io_service&, pion::tcp::connection::ssl_context_type&, bool, pion::tcp::connection::connection_handler)':
../include/pion/tcp/connection.hpp:702:44: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
         m_finished_handler(finished_handler)
                                            ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
tcp_server.cpp: In constructor 'pion::tcp::server::server(pion::scheduler&, unsigned int)':
tcp_server.cpp:32:94: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
     m_endpoint(boost::asio::ip::tcp::v4(), tcp_port), m_ssl_flag(false), m_is_listening(false)
                                                                                              ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
tcp_server.cpp: In constructor 'pion::tcp::server::server(pion::scheduler&, const endpoint&)':
tcp_server.cpp:44:66: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
     m_endpoint(endpoint), m_ssl_flag(false), m_is_listening(false)
                                                                  ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
tcp_server.cpp: In constructor 'pion::tcp::server::server(unsigned int)':
tcp_server.cpp:56:94: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
     m_endpoint(boost::asio::ip::tcp::v4(), tcp_port), m_ssl_flag(false), m_is_listening(false)
                                                                                              ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
tcp_server.cpp: In constructor 'pion::tcp::server::server(const endpoint&)':
tcp_server.cpp:68:66: error: no matching function for call to 'boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)'
     m_endpoint(endpoint), m_ssl_flag(false), m_is_listening(false)
                                                                  ^
In file included from /usr/include/boost/asio/ssl/context.hpp:757,
                 from /usr/include/boost/asio/ssl.hpp:18,
                 from ../include/pion/tcp/connection.hpp:18,
                 from ../include/pion/tcp/server.hpp:22,
                 from tcp_server.cpp:14:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context&&)'
 context::context(context&& other)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note:   candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: 'boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)'
 context::context(context::method m)
 ^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note:   candidate expects 1 argument, 2 provided
make[3]: *** [Makefile:534: tcp_server.lo] Error 1
make[3]: Leaving directory '/home/builder/pion-5.0.7+dfsg/src'
make[2]: Leaving directory '/home/builder/pion-5.0.7+dfsg'
make[2]: *** [Makefile:525: all-recursive] Error 1
dh_auto_build: make -j1 returned exit code 2
make[1]: *** [debian/rules:43: override_dh_auto_build] Error 2
make[1]: Leaving directory '/home/builder/pion-5.0.7+dfsg'
make: *** [debian/rules:32: binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit status 2

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: pion
Source-Version: 5.0.7+dfsg-5

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

Debian distribution maintenance software
pp.
Roberto C. Sanchez <robe...@connexer.com> (supplier of updated pion package)

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


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 13 Jan 2019 14:19:59 -0500
Source: pion
Binary: libpion-dev libpion-plugins libpion-5.0 libpion-doc
Architecture: source
Version: 5.0.7+dfsg-5
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packa...@qa.debian.org>
Changed-By: Roberto C. Sanchez <robe...@connexer.com>
Description:
 libpion-5.0 - lightweight HTTP interface library - runtime files
 libpion-dev - lightweight HTTP interface library - development files
 libpion-doc - lightweight HTTP interface library - documentation
 libpion-plugins - lightweight HTTP interface library - plugins
Closes: 911948
Changes:
 pion (5.0.7+dfsg-5) unstable; urgency=medium
 .
   * Orphan the package, set maintainer to Debian QA Group
   * Fix FTBFS, build with Boost 1.67, thanks to Giovanni Mascellani for the
     patch (Closes: #911948)
   * Fix FTBFS, update Build-Depends to libssl1.0-dev
Checksums-Sha1:
 00dc2d0e5350da55e38ebd81ebaf854a92dcdf20 2410 pion_5.0.7+dfsg-5.dsc
 f03262c48ca0e023ec9d335cf2826d42325b76f9 15004 pion_5.0.7+dfsg-5.debian.tar.xz
 51d6cf5846f19a846de55965a05f4e1f3d9df1d7 10290 
pion_5.0.7+dfsg-5_amd64.buildinfo
Checksums-Sha256:
 23fcb774a8f2ed1bce136bc13f3d5ed3599e3c26f5a85be3ad22c80a8aa169de 2410 
pion_5.0.7+dfsg-5.dsc
 a93fac218dca4132041bebabe0118f61dd7209c4153200245bf5f570829e5394 15004 
pion_5.0.7+dfsg-5.debian.tar.xz
 d355e39d777650289a8353842c0f3fddd62138da015881fb52295611c44f9c96 10290 
pion_5.0.7+dfsg-5_amd64.buildinfo
Files:
 352cc29c1ed10720f79e4799ab46b1f3 2410 libs extra pion_5.0.7+dfsg-5.dsc
 89eb290030bc8b7431e85bba8ede5318 15004 libs extra 
pion_5.0.7+dfsg-5.debian.tar.xz
 666ed125627dabd8c15eba1cd42dfc88 10290 libs extra 
pion_5.0.7+dfsg-5_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEErGRxrVHZ9FJQQT8Iqn2S9DeBP34FAlw7nmcACgkQqn2S9DeB
P35xVw//U3PfBWUdh7K8V0r7T4Vqig2zI/Po2FTHNFf7sj6x0Sh2sFcRyWv0xptA
sf2daxivZqALL/mxnmpKYdGoJRFl3hcJoRMu6EJM7pdDuGGDeA+O5dLcoH31zBAN
u7Thmc6NqnEIqTpmqW1lXu09aeJP80v3gDQQXn+hF5Z4Gt/DdZwRxIPveYSbU2Ma
wWZ6UF/o29fCD62IZOLAIZIwQgJx2rnkhZ8iybvJ7trlfv0wwFBm6AV5WnPj083p
Nqll44eVPtx7WioGzlpaWe1jyCZ12MKEgpQQuEOY5dJOyNgO5w5bxkxQGS5Wkl/E
SmLfMT5yurBi+C82JgM9PK0xi3O5cXhT7LFShigMbR/yLkEjmwl2vdue+fDTR4mW
hxnCXEsoMA6kMXtMrcOTNK6OV86TOCXxFHtkTsBBcggDluvPTZuEJH66RG6y5/eL
p3+jKD2l4L+C5iZZqrJK+UOhN68b5LsPoyiDnbTCpmVs81RKW/rAR3BoO+d7VCeZ
lRS0QU20unJdBp1OVZQGXwh6xVfx+BZZnUPl1tHuiRk8z2F6JqSUCCw4UQ9RqTWC
Z1ryIbmntOCpBANXdavoICocXqyGs+sd0xoefszzlDXWUMMq9bTFBUlT+d+KoZWC
ahz4PlJFw/mRe6fc8/yJ091ji2mT7RZrrjr46nnD89BTxV5DKmg=
=5J9F
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to