Your message dated Fri, 30 Nov 2018 12:54:53 +0200
with message-id <20181130105453.GE9009@localhost>
and subject line Fixed in 0.4.6-1
has caused the Debian Bug report #911957,
regarding [src:rquantlib] 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.)


-- 
911957: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911957
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:rquantlib
Version: 0.4.5-1
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
boost::posix_time::minutes and similar calls now require an integral
argument. 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: Wed, 24 Oct 2018 12:02:42 +0200
Subject: Fix build with Boost 1.67.

boost::posix_time::minutes now requires an integral argument. This
should not change the previous behavior, because an implicit
conversion to an integral type was done anyway.
---
 src/asian.cpp          |  4 ++--
 src/barrier_binary.cpp |  6 +++---
 src/implieds.cpp       |  4 ++--
 src/vanilla.cpp        | 10 +++++-----
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/asian.cpp b/src/asian.cpp
index 9b18a13..2f4c0ac 100644
--- a/src/asian.cpp
+++ b/src/asian.cpp
@@ -69,7 +69,7 @@ Rcpp::List asianOptionEngine(std::string averageType,
             
 #ifdef QL_HIGH_RESOLUTION_DATE    
         // in minutes
-        QuantLib::Date exDate(today.dateTime() + boost::posix_time::minutes(maturity * 360 * 24 * 60));
+        QuantLib::Date exDate(today.dateTime() + boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)));
 #else
         QuantLib::Date exDate = today + int(maturity * 360 + 0.5);
 #endif                              
@@ -112,7 +112,7 @@ Rcpp::List asianOptionEngine(std::string averageType,
         for (QuantLib::Size i=1; i<fixings; i++) {
             timeIncrements[i] = i*dt + first;
 #ifdef QL_HIGH_RESOLUTION_DATE
-            fixingDates[i]= QuantLib::Date(today.dateTime() + boost::posix_time::minutes(timeIncrements[i] * 360 * 24 * 60));
+            fixingDates[i]= QuantLib::Date(today.dateTime() + boost::posix_time::minutes(boost::uint64_t(timeIncrements[i] * 360 * 24 * 60)));
 #else            
             fixingDates[i] = today + QuantLib::Integer(timeIncrements[i]*360+0.5);
 #endif           
diff --git a/src/barrier_binary.cpp b/src/barrier_binary.cpp
index 17b7366..7392754 100644
--- a/src/barrier_binary.cpp
+++ b/src/barrier_binary.cpp
@@ -35,7 +35,7 @@ Rcpp::List binaryOptionEngine(std::string binType,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity*360 + 0.5); // FIXME: this could be better, but same rounding in QL
 #endif
@@ -131,7 +131,7 @@ double binaryOptionImpliedVolatilityEngine(std::string type,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity*360 + 0.5); // FIXME: this could be better
 #endif
@@ -190,7 +190,7 @@ Rcpp::List barrierOptionEngine(std::string barrType,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity*360 + 0.5); // FIXME: this could be better
 #endif
diff --git a/src/implieds.cpp b/src/implieds.cpp
index c1b8f36..72658ec 100644
--- a/src/implieds.cpp
+++ b/src/implieds.cpp
@@ -38,7 +38,7 @@ double europeanOptionImpliedVolatilityEngine(std::string type,
   
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity*360 + 0.5); // FIXME: this could be better
 #endif
@@ -98,7 +98,7 @@ double americanOptionImpliedVolatilityEngine(std::string type,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity*360 + 0.5); // FIXME: this could be better
 #endif
diff --git a/src/vanilla.cpp b/src/vanilla.cpp
index c44783b..cd974bb 100644
--- a/src/vanilla.cpp
+++ b/src/vanilla.cpp
@@ -36,7 +36,7 @@ Rcpp::List europeanOptionEngine(std::string type,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length           = int(maturity*360 + 0.5); // FIXME: this could be better
 #endif
@@ -73,7 +73,7 @@ Rcpp::List europeanOptionEngine(std::string type,
         std::vector<double> discDividends(n);
         for (int i = 0; i < n; i++) {
 #ifdef QL_HIGH_RESOLUTION_DATE
-            boost::posix_time::time_duration discreteDividendLength = boost::posix_time::minutes(divtimes[i] * 360 * 24 * 60);
+            boost::posix_time::time_duration discreteDividendLength = boost::posix_time::minutes(boost::uint64_t(divtimes[i] * 360 * 24 * 60));
             discDivDates[i] = QuantLib::Date(today.dateTime() + discreteDividendLength);
 #else
             discDivDates[i] = today + int(divtimes[i] * 360 + 0.5); 
@@ -131,7 +131,7 @@ Rcpp::List americanOptionEngine(std::string type,
 
 #ifdef QL_HIGH_RESOLUTION_DATE    
     // in minutes
-    boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+    boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
     int length = int(maturity * 360 + 0.5); // FIXME: this could be better
     
@@ -175,7 +175,7 @@ Rcpp::List americanOptionEngine(std::string type,
         std::vector<double> discDividends(n);
         for (int i = 0; i < n; i++) {
 #ifdef QL_HIGH_RESOLUTION_DATE
-            boost::posix_time::time_duration discreteDividendLength = boost::posix_time::minutes(divtimes[i] * 360 * 24 * 60);
+            boost::posix_time::time_duration discreteDividendLength = boost::posix_time::minutes(boost::uint64_t(divtimes[i] * 360 * 24 * 60));
             discDivDates[i] = QuantLib::Date(today.dateTime() + discreteDividendLength);
 #else
             discDivDates[i] = today + int(divtimes[i] * 360 + 0.5); 
@@ -261,7 +261,7 @@ Rcpp::List europeanOptionArraysEngine(std::string type, Rcpp::NumericMatrix par)
         QuantLib::Time maturity        = par(i, 4);    // fifth column
 #ifdef QL_HIGH_RESOLUTION_DATE    
         // in minutes
-        boost::posix_time::time_duration length = boost::posix_time::minutes(maturity * 360 * 24 * 60); 
+        boost::posix_time::time_duration length = boost::posix_time::minutes(boost::uint64_t(maturity * 360 * 24 * 60)); 
 #else
         int length           = int(maturity*360 + 0.5); // FIXME: this could be better
 #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 https://people.debian.org/~gio/reprepro unstable/main amd64 Packages [12.2 kB]
Get:10 http://deb.debian.org/debian unstable/main Sources 2018-09-25-2009.34.pdiff [8543 B]
Get:11 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0208.49.pdiff [4854 B]
Get:12 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0807.29.pdiff [4104 B]
Get:13 http://deb.debian.org/debian unstable/main Sources 2018-09-26-1409.08.pdiff [14.0 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-24-2016.03.pdiff [25.0 kB]
Get:13 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-0210.07.pdiff [27.8 kB]
Get:16 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0818.18.pdiff [6665 B]
Get:17 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-1414.06.pdiff [12.7 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-2009.34.pdiff [12.5 kB]
Get:19 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0208.49.pdiff [7336 B]
Get:20 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0807.29.pdiff [2664 B]
Get:21 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-1409.08.pdiff [17.7 kB]
Get:21 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-1409.08.pdiff [17.7 kB]
Fetched 499 kB in 2s (293 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 dctrl-tools debhelper
  dh-autoreconf dh-r dh-strip-nondeterminism dwz file fontconfig
  fontconfig-config fonts-dejavu-core gettext gettext-base gfortran gfortran-8
  gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 groff-base icu-devtools intltool-debian
  libarchive-zip-perl libblas-dev libblas3 libboost-chrono1.62.0
  libboost-chrono1.67.0 libboost-dev libboost-system1.62.0
  libboost-system1.67.0 libboost-test-dev libboost-test1.62.0
  libboost-test1.67-dev libboost-test1.67.0 libboost-timer1.62.0
  libboost-timer1.67.0 libboost1.67-dev libbsd0 libbz2-dev libcairo2 libcroco3
  libcurl4 libdatrie1 libexpat1 libfile-stripnondeterminism-perl
  libfile-which-perl libfontconfig1 libfreetype6 libfribidi0 libgfortran-8-dev
  libgfortran5 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 libice6 libicu-dev libicu-le-hb-dev
  libicu-le-hb0 libicu60 libjbig0 libjpeg-dev libjpeg62-turbo
  libjpeg62-turbo-dev libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
  liblapack-dev liblapack3 liblzma-dev libmagic-mgc libmagic1 libmpdec2
  libncurses-dev libncurses5-dev libncurses6 libnghttp2-14 libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libpcre16-3
  libpcre3-dev libpcre32-3 libpcrecpp0v5 libpipeline1 libpixman-1-0 libpng-dev
  libpng16-16 libpsl5 libpython3-stdlib libpython3.6-minimal
  libpython3.6-stdlib libquantlib0-dev libquantlib0v5 libreadline-dev librtmp1
  libsigsegv2 libsm6 libssh2-1 libswitch-perl libtcl8.6 libthai-data libthai0
  libtiff5 libtimedate-perl libtk8.6 libtool libx11-6 libx11-data libxau6
  libxcb-render0 libxcb-shm0 libxcb1 libxdmcp6 libxext6 libxft2 libxml2
  libxmuu1 libxrender1 libxss1 libxt6 littler m4 man-db mime-support
  pkg-config po-debconf python3 python3-distutils python3-lib2to3
  python3-minimal python3.6 python3.6-minimal r-base-core r-base-dev
  r-cran-lattice r-cran-littler r-cran-pkgkitten r-cran-rcpp r-cran-zoo
  sensible-utils ucf unzip x11-common xauth xdg-utils zip zlib1g-dev
0 upgraded, 162 newly installed, 0 to remove and 2 not upgraded.
Need to get 134 MB of archives.
After this operation, 661 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-test-dev amd64 1.67.0.1 [3576 B]
Get:6 http://deb.debian.org/debian unstable/main amd64 libpipeline1 amd64 1.5.0-1 [29.0 kB]
Get:7 http://deb.debian.org/debian unstable/main amd64 man-db amd64 2.8.4-2 [1194 kB]
Get:8 http://deb.debian.org/debian unstable/main amd64 libpython3.6-minimal amd64 3.6.6-4 [572 kB]
Get:9 http://deb.debian.org/debian unstable/main amd64 libexpat1 amd64 2.2.6-1 [105 kB]
Get:10 http://deb.debian.org/debian unstable/main amd64 python3.6-minimal amd64 3.6.6-4 [1650 kB]
Get:11 http://deb.debian.org/debian unstable/main amd64 python3-minimal amd64 3.6.6-1 [36.4 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 mime-support all 3.61 [37.1 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 libmpdec2 amd64 2.4.2-2 [87.2 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 libpython3.6-stdlib amd64 3.6.6-4 [1706 kB]
Get:15 http://deb.debian.org/debian unstable/main amd64 python3.6 amd64 3.6.6-4 [234 kB]
Get:16 http://deb.debian.org/debian unstable/main amd64 libpython3-stdlib amd64 3.6.6-1 [19.8 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 python3 amd64 3.6.6-1 [47.5 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 sensible-utils all 0.0.12 [15.8 kB]
Get:19 http://deb.debian.org/debian unstable/main amd64 libmagic-mgc amd64 1:5.34-2 [239 kB]
Get:20 http://deb.debian.org/debian unstable/main amd64 libmagic1 amd64 1:5.34-2 [116 kB]
Get:21 http://deb.debian.org/debian unstable/main amd64 file amd64 1:5.34-2 [65.8 kB]
Get:22 http://deb.debian.org/debian unstable/main amd64 gettext-base amd64 0.19.8.1-7 [122 kB]
Get:23 http://deb.debian.org/debian unstable/main amd64 ucf all 3.0038 [67.8 kB]
Get:24 http://deb.debian.org/debian unstable/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB]
Get:25 http://deb.debian.org/debian unstable/main amd64 m4 amd64 1.4.18-1 [202 kB]
Get:26 http://deb.debian.org/debian unstable/main amd64 autoconf all 2.69-11 [341 kB]
Get:27 http://deb.debian.org/debian unstable/main amd64 autotools-dev all 20180224.1 [77.0 kB]
Get:28 http://deb.debian.org/debian unstable/main amd64 automake all 1:1.16.1-1.1 [771 kB]
Get:29 http://deb.debian.org/debian unstable/main amd64 autopoint all 0.19.8.1-7 [434 kB]
Get:30 http://deb.debian.org/debian unstable/main amd64 dctrl-tools amd64 2.24-2+b1 [104 kB]
Get:31 http://deb.debian.org/debian unstable/main amd64 libtool all 2.4.6-4 [547 kB]
Get:32 http://deb.debian.org/debian unstable/main amd64 dh-autoreconf all 19 [16.9 kB]
Get:33 http://deb.debian.org/debian unstable/main amd64 libarchive-zip-perl all 1.64-1 [96.8 kB]
Get:34 http://deb.debian.org/debian unstable/main amd64 libfile-stripnondeterminism-perl all 0.042-1 [20.1 kB]
Get:35 http://deb.debian.org/debian unstable/main amd64 libtimedate-perl all 2.3000-2 [42.2 kB]
Get:36 http://deb.debian.org/debian unstable/main amd64 dh-strip-nondeterminism all 0.042-1 [12.1 kB]
Get:37 http://deb.debian.org/debian unstable/main amd64 dwz amd64 0.12-2 [77.5 kB]
Get:38 http://deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.58.1-2 [1223 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 libgraphite2-3 amd64 1.3.12-1 [80.2 kB]
Get:42 http://deb.debian.org/debian unstable/main amd64 libharfbuzz0b amd64 1.9.0-1 [923 kB]
Get:43 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-5 [14.6 kB]
Get:44 http://deb.debian.org/debian unstable/main amd64 libicu60 amd64 60.2-6 [8073 kB]
Get:45 http://deb.debian.org/debian unstable/main amd64 libxml2 amd64 2.9.4+dfsg1-7+b1 [725 kB]
Get:46 http://deb.debian.org/debian unstable/main amd64 libcroco3 amd64 0.6.12-2 [144 kB]
Get:47 http://deb.debian.org/debian unstable/main amd64 libncurses6 amd64 6.1+20180714-1 [102 kB]
Get:48 http://deb.debian.org/debian unstable/main amd64 gettext amd64 0.19.8.1-7 [1304 kB]
Get:49 http://deb.debian.org/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.4 [26.3 kB]
Get:50 http://deb.debian.org/debian unstable/main amd64 po-debconf all 1.0.20 [247 kB]
Get:51 http://deb.debian.org/debian unstable/main amd64 debhelper all 11.4 [985 kB]
Get:52 http://deb.debian.org/debian unstable/main amd64 zip amd64 3.0-11+b1 [234 kB]
Get:53 http://deb.debian.org/debian unstable/main amd64 unzip amd64 6.0-21 [170 kB]
Get:54 http://deb.debian.org/debian unstable/main amd64 libpaper1 amd64 1.1.24+nmu5 [21.6 kB]
Get:55 http://deb.debian.org/debian unstable/main amd64 libpaper-utils amd64 1.1.24+nmu5 [17.6 kB]
Get:56 http://deb.debian.org/debian unstable/main amd64 xdg-utils all 1.1.3-1 [73.3 kB]
Get:57 http://deb.debian.org/debian unstable/main amd64 libgfortran5 amd64 8.2.0-7 [581 kB]
Get:58 http://deb.debian.org/debian unstable/main amd64 libblas3 amd64 3.8.0-1+b1 [148 kB]
Get:59 http://deb.debian.org/debian unstable/main amd64 fonts-dejavu-core all 2.37-1 [1068 kB]
Get:60 http://deb.debian.org/debian unstable/main amd64 fontconfig-config all 2.13.1-1 [280 kB]
Get:61 http://deb.debian.org/debian unstable/main amd64 libfontconfig1 amd64 2.13.1-1 [346 kB]
Get:62 http://deb.debian.org/debian unstable/main amd64 libpixman-1-0 amd64 0.34.0-2 [529 kB]
Get:63 http://deb.debian.org/debian unstable/main amd64 libxau6 amd64 1:1.0.8-1+b2 [19.9 kB]
Get:64 http://deb.debian.org/debian unstable/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
Get:65 http://deb.debian.org/debian unstable/main amd64 libxcb1 amd64 1.13-3 [136 kB]
Get:66 http://deb.debian.org/debian unstable/main amd64 libx11-data all 2:1.6.6-1 [298 kB]
Get:67 http://deb.debian.org/debian unstable/main amd64 libx11-6 amd64 2:1.6.6-1 [758 kB]
Get:68 http://deb.debian.org/debian unstable/main amd64 libxcb-render0 amd64 1.13-3 [108 kB]
Get:69 http://deb.debian.org/debian unstable/main amd64 libxcb-shm0 amd64 1.13-3 [98.4 kB]
Get:70 http://deb.debian.org/debian unstable/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB]
Get:71 http://deb.debian.org/debian unstable/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB]
Get:72 http://deb.debian.org/debian unstable/main amd64 libcairo2 amd64 1.15.12-1 [677 kB]
Get:73 http://deb.debian.org/debian unstable/main amd64 libkeyutils1 amd64 1.5.9-9.3 [13.0 kB]
Get:74 http://deb.debian.org/debian unstable/main amd64 libkrb5support0 amd64 1.16-2 [62.8 kB]
Get:75 http://deb.debian.org/debian unstable/main amd64 libk5crypto3 amd64 1.16-2 [121 kB]
Get:76 http://deb.debian.org/debian unstable/main amd64 libkrb5-3 amd64 1.16-2 [316 kB]
Get:77 http://deb.debian.org/debian unstable/main amd64 libgssapi-krb5-2 amd64 1.16-2 [158 kB]
Get:78 http://deb.debian.org/debian unstable/main amd64 libnghttp2-14 amd64 1.33.0-1 [84.9 kB]
Get:79 http://deb.debian.org/debian unstable/main amd64 libpsl5 amd64 0.20.2-1 [53.7 kB]
Get:80 http://deb.debian.org/debian unstable/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2 [60.5 kB]
Get:81 http://deb.debian.org/debian unstable/main amd64 libssh2-1 amd64 1.8.0-2 [138 kB]
Get:82 http://deb.debian.org/debian unstable/main amd64 libcurl4 amd64 7.61.0-1 [318 kB]
Get:83 http://deb.debian.org/debian unstable/main amd64 x11-common all 1:7.7+19 [251 kB]
Get:84 http://deb.debian.org/debian unstable/main amd64 libice6 amd64 2:1.0.9-2 [58.7 kB]
Get:85 http://deb.debian.org/debian unstable/main amd64 libjpeg62-turbo amd64 1:1.5.2-2+b1 [134 kB]
Get:86 http://deb.debian.org/debian unstable/main amd64 liblapack3 amd64 3.8.0-1+b1 [2112 kB]
Get:87 http://deb.debian.org/debian unstable/main amd64 fontconfig amd64 2.13.1-1 [405 kB]
Get:88 http://deb.debian.org/debian unstable/main amd64 libfribidi0 amd64 1.0.5-3 [63.3 kB]
Get:89 http://deb.debian.org/debian unstable/main amd64 libthai-data all 0.1.28-1 [170 kB]
Get:90 http://deb.debian.org/debian unstable/main amd64 libdatrie1 amd64 0.2.12-1 [39.1 kB]
Get:91 http://deb.debian.org/debian unstable/main amd64 libthai0 amd64 0.1.28-1 [53.9 kB]
Get:92 http://deb.debian.org/debian unstable/main amd64 libpango-1.0-0 amd64 1.42.4-3 [184 kB]
Get:93 http://deb.debian.org/debian unstable/main amd64 libpangoft2-1.0-0 amd64 1.42.4-3 [67.5 kB]
Get:94 http://deb.debian.org/debian unstable/main amd64 libpangocairo-1.0-0 amd64 1.42.4-3 [55.4 kB]
Get:95 http://deb.debian.org/debian unstable/main amd64 libsm6 amd64 2:1.2.2-1+b3 [33.3 kB]
Get:96 http://deb.debian.org/debian unstable/main amd64 libtcl8.6 amd64 8.6.8+dfsg-4 [988 kB]
Get:97 http://deb.debian.org/debian unstable/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB]
Get:98 http://deb.debian.org/debian unstable/main amd64 libtiff5 amd64 4.0.9-6 [246 kB]
Get:99 http://deb.debian.org/debian unstable/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB]
Get:100 http://deb.debian.org/debian unstable/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]
Get:101 http://deb.debian.org/debian unstable/main amd64 libtk8.6 amd64 8.6.8-4 [752 kB]
Get:102 http://deb.debian.org/debian unstable/main amd64 libxt6 amd64 1:1.1.5-1 [188 kB]
Get:103 http://deb.debian.org/debian unstable/main amd64 r-base-core amd64 3.5.1-1+b1 [23.9 MB]
Get:104 http://deb.debian.org/debian unstable/main amd64 libgfortran-8-dev amd64 8.2.0-7 [615 kB]
Get:105 http://deb.debian.org/debian unstable/main amd64 gfortran-8 amd64 8.2.0-7 [7603 kB]
Get:106 http://deb.debian.org/debian unstable/main amd64 gfortran amd64 4:8.2.0-1 [1436 B]
Get:107 http://deb.debian.org/debian unstable/main amd64 libblas-dev amd64 3.8.0-1+b1 [154 kB]
Get:108 http://deb.debian.org/debian unstable/main amd64 liblapack-dev amd64 3.8.0-1+b1 [2141 kB]
Get:109 http://deb.debian.org/debian unstable/main amd64 libncurses-dev amd64 6.1+20180714-1 [334 kB]
Get:110 http://deb.debian.org/debian unstable/main amd64 libncurses5-dev amd64 6.1+20180714-1 [944 B]
Get:111 http://deb.debian.org/debian unstable/main amd64 libreadline-dev amd64 7.0-5 [133 kB]
Get:112 http://deb.debian.org/debian unstable/main amd64 libjpeg62-turbo-dev amd64 1:1.5.2-2+b1 [208 kB]
Get:113 http://deb.debian.org/debian unstable/main amd64 libjpeg-dev all 1:1.5.2-2 [57.5 kB]
Get:114 http://deb.debian.org/debian unstable/main amd64 libpcre16-3 amd64 2:8.39-11 [258 kB]
Get:115 http://deb.debian.org/debian unstable/main amd64 libpcre32-3 amd64 2:8.39-11 [250 kB]
Get:116 http://deb.debian.org/debian unstable/main amd64 libpcrecpp0v5 amd64 2:8.39-11 [152 kB]
Get:117 http://deb.debian.org/debian unstable/main amd64 libpcre3-dev amd64 2:8.39-11 [651 kB]
Get:118 http://deb.debian.org/debian unstable/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-1 [214 kB]
Get:119 http://deb.debian.org/debian unstable/main amd64 libpng-dev amd64 1.6.34-2 [294 kB]
Get:120 http://deb.debian.org/debian unstable/main amd64 libbz2-dev amd64 1.0.6-9 [30.2 kB]
Get:121 http://deb.debian.org/debian unstable/main amd64 liblzma-dev amd64 5.2.2-1.3 [292 kB]
Get:122 http://deb.debian.org/debian unstable/main amd64 icu-devtools amd64 60.2-6 [190 kB]
Get:123 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-icu0 amd64 1.9.0-1 [651 kB]
Get:124 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-gobject0 amd64 1.9.0-1 [659 kB]
Get:125 http://deb.debian.org/debian unstable/main amd64 libgirepository-1.0-1 amd64 1.58.0-1 [92.5 kB]
Get:126 http://deb.debian.org/debian unstable/main amd64 gir1.2-glib-2.0 amd64 1.58.0-1 [143 kB]
Get:127 http://deb.debian.org/debian unstable/main amd64 gir1.2-harfbuzz-0.0 amd64 1.9.0-1 [664 kB]
Get:128 http://deb.debian.org/debian unstable/main amd64 libglib2.0-data all 2.58.1-2 [1105 kB]
Get:129 http://deb.debian.org/debian unstable/main amd64 libglib2.0-bin amd64 2.58.1-2 [121 kB]
Get:130 http://deb.debian.org/debian unstable/main amd64 python3-lib2to3 all 3.6.6-1 [79.1 kB]
Get:131 http://deb.debian.org/debian unstable/main amd64 python3-distutils all 3.6.6-1 [144 kB]
Get:132 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev-bin amd64 2.58.1-2 [154 kB]
Get:133 http://deb.debian.org/debian unstable/main amd64 pkg-config amd64 0.29-4+b1 [63.3 kB]
Get:134 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev amd64 2.58.1-2 [1445 kB]
Get:135 http://deb.debian.org/debian unstable/main amd64 libgraphite2-dev amd64 1.3.12-1 [22.6 kB]
Get:136 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-dev amd64 1.9.0-1 [1001 kB]
Get:137 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-5 [30.0 kB]
Get:138 http://deb.debian.org/debian unstable/main amd64 libicu-dev amd64 60.2-6 [8900 kB]
Get:139 http://deb.debian.org/debian unstable/main amd64 libxmuu1 amd64 2:1.1.2-2 [23.5 kB]
Get:140 http://deb.debian.org/debian unstable/main amd64 xauth amd64 1:1.0.10-1 [40.3 kB]
Get:141 http://deb.debian.org/debian unstable/main amd64 r-base-dev all 3.5.1-1 [4476 B]
Get:142 http://deb.debian.org/debian unstable/main amd64 libfile-which-perl all 1.22-1 [14.6 kB]
Get:143 http://deb.debian.org/debian unstable/main amd64 libswitch-perl all 2.17-2 [20.5 kB]
Get:144 http://deb.debian.org/debian unstable/main amd64 dh-r all 20180917 [33.4 kB]
Get:145 http://deb.debian.org/debian unstable/main amd64 libboost-system1.62.0 amd64 1.62.0+dfsg-10 [33.2 kB]
Get:146 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.62.0 amd64 1.62.0+dfsg-10 [34.2 kB]
Get:147 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67.0 amd64 1.67.0-7 [228 kB]
Get:148 http://deb.debian.org/debian unstable/main amd64 libboost-chrono1.67.0 amd64 1.67.0-7 [233 kB]
Get:149 http://deb.debian.org/debian unstable/main amd64 libboost1.67-dev amd64 1.67.0-7 [8388 kB]
Get:150 http://deb.debian.org/debian unstable/main amd64 libboost-timer1.67.0 amd64 1.67.0-7 [230 kB]
Get:151 http://deb.debian.org/debian unstable/main amd64 libboost-test1.67.0 amd64 1.67.0-7 [456 kB]
Get:152 http://deb.debian.org/debian unstable/main amd64 libboost-test1.67-dev amd64 1.67.0-7 [511 kB]
Get:153 http://deb.debian.org/debian unstable/main amd64 libboost-timer1.62.0 amd64 1.62.0+dfsg-10 [35.0 kB]
Get:154 http://deb.debian.org/debian unstable/main amd64 libboost-test1.62.0 amd64 1.62.0+dfsg-10 [253 kB]
Get:155 http://deb.debian.org/debian unstable/main amd64 libquantlib0v5 amd64 1.13-1 [7919 kB]
Get:156 http://deb.debian.org/debian unstable/main amd64 libquantlib0-dev amd64 1.13-1 [18.4 MB]
Get:157 http://deb.debian.org/debian unstable/main amd64 r-cran-littler amd64 0.3.4-1 [342 kB]
Get:158 http://deb.debian.org/debian unstable/main amd64 littler all 0.3.4-1 [13.2 kB]
Get:159 http://deb.debian.org/debian unstable/main amd64 r-cran-lattice amd64 0.20-35-1+b2 [1137 kB]
Get:160 http://deb.debian.org/debian unstable/main amd64 r-cran-pkgkitten all 0.1.4-2 [22.4 kB]
Get:161 http://deb.debian.org/debian unstable/main amd64 r-cran-rcpp amd64 0.12.18-1 [3459 kB]
Get:162 http://deb.debian.org/debian unstable/main amd64 r-cran-zoo amd64 1.8-4-1 [1055 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 134 MB in 3s (53.0 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 sensible-utils.
Preparing to unpack .../001-sensible-utils_0.0.12_all.deb ...
Unpacking sensible-utils (0.0.12) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../002-libmagic-mgc_1%3a5.34-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.34-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../003-libmagic1_1%3a5.34-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.34-2) ...
Selecting previously unselected package file.
Preparing to unpack .../004-file_1%3a5.34-2_amd64.deb ...
Unpacking file (1:5.34-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../005-gettext-base_0.19.8.1-7_amd64.deb ...
Unpacking gettext-base (0.19.8.1-7) ...
Selecting previously unselected package ucf.
Preparing to unpack .../006-ucf_3.0038_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0038) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../007-libsigsegv2_2.12-2_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.12-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../008-m4_1.4.18-1_amd64.deb ...
Unpacking m4 (1.4.18-1) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../009-autoconf_2.69-11_all.deb ...
Unpacking autoconf (2.69-11) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../010-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../011-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 .../012-autopoint_0.19.8.1-7_all.deb ...
Unpacking autopoint (0.19.8.1-7) ...
Selecting previously unselected package dctrl-tools.
Preparing to unpack .../013-dctrl-tools_2.24-2+b1_amd64.deb ...
Unpacking dctrl-tools (2.24-2+b1) ...
Selecting previously unselected package libtool.
Preparing to unpack .../014-libtool_2.4.6-4_all.deb ...
Unpacking libtool (2.4.6-4) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../015-dh-autoreconf_19_all.deb ...
Unpacking dh-autoreconf (19) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../016-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 .../017-libfile-stripnondeterminism-perl_0.042-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.042-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../018-libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../019-dh-strip-nondeterminism_0.042-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.042-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../020-dwz_0.12-2_amd64.deb ...
Unpacking dwz (0.12-2) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../021-libglib2.0-0_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.58.1-2) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../022-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 .../023-libfreetype6_2.8.1-2_amd64.deb ...
Unpacking libfreetype6:amd64 (2.8.1-2) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../024-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 .../025-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 .../026-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 .../027-libicu60_60.2-6_amd64.deb ...
Unpacking libicu60:amd64 (60.2-6) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../028-libxml2_2.9.4+dfsg1-7+b1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../029-libcroco3_0.6.12-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.12-2) ...
Selecting previously unselected package libncurses6:amd64.
Preparing to unpack .../030-libncurses6_6.1+20180714-1_amd64.deb ...
Unpacking libncurses6:amd64 (6.1+20180714-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../031-gettext_0.19.8.1-7_amd64.deb ...
Unpacking gettext (0.19.8.1-7) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../032-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 .../033-po-debconf_1.0.20_all.deb ...
Unpacking po-debconf (1.0.20) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../034-debhelper_11.4_all.deb ...
Unpacking debhelper (11.4) ...
Selecting previously unselected package zip.
Preparing to unpack .../035-zip_3.0-11+b1_amd64.deb ...
Unpacking zip (3.0-11+b1) ...
Selecting previously unselected package unzip.
Preparing to unpack .../036-unzip_6.0-21_amd64.deb ...
Unpacking unzip (6.0-21) ...
Selecting previously unselected package libpaper1:amd64.
Preparing to unpack .../037-libpaper1_1.1.24+nmu5_amd64.deb ...
Unpacking libpaper1:amd64 (1.1.24+nmu5) ...
Selecting previously unselected package libpaper-utils.
Preparing to unpack .../038-libpaper-utils_1.1.24+nmu5_amd64.deb ...
Unpacking libpaper-utils (1.1.24+nmu5) ...
Selecting previously unselected package xdg-utils.
Preparing to unpack .../039-xdg-utils_1.1.3-1_all.deb ...
Unpacking xdg-utils (1.1.3-1) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../040-libgfortran5_8.2.0-7_amd64.deb ...
Unpacking libgfortran5:amd64 (8.2.0-7) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../041-libblas3_3.8.0-1+b1_amd64.deb ...
Unpacking libblas3:amd64 (3.8.0-1+b1) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../042-fonts-dejavu-core_2.37-1_all.deb ...
Unpacking fonts-dejavu-core (2.37-1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../043-fontconfig-config_2.13.1-1_all.deb ...
Unpacking fontconfig-config (2.13.1-1) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../044-libfontconfig1_2.13.1-1_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-1) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../045-libpixman-1-0_0.34.0-2_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.34.0-2) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../046-libxau6_1%3a1.0.8-1+b2_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.8-1+b2) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../047-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../048-libxcb1_1.13-3_amd64.deb ...
Unpacking libxcb1:amd64 (1.13-3) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../049-libx11-data_2%3a1.6.6-1_all.deb ...
Unpacking libx11-data (2:1.6.6-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../050-libx11-6_2%3a1.6.6-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.6.6-1) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../051-libxcb-render0_1.13-3_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.13-3) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../052-libxcb-shm0_1.13-3_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.13-3) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../053-libxext6_2%3a1.3.3-1+b2_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.3-1+b2) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../054-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../055-libcairo2_1.15.12-1_amd64.deb ...
Unpacking libcairo2:amd64 (1.15.12-1) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../056-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 .../057-libkrb5support0_1.16-2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.16-2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../058-libk5crypto3_1.16-2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.16-2) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../059-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 .../060-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 .../061-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 .../062-libpsl5_0.20.2-1_amd64.deb ...
Unpacking libpsl5:amd64 (0.20.2-1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../063-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 .../064-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 .../065-libcurl4_7.61.0-1_amd64.deb ...
Unpacking libcurl4:amd64 (7.61.0-1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../066-x11-common_1%3a7.7+19_all.deb ...
Unpacking x11-common (1:7.7+19) ...
Selecting previously unselected package libice6:amd64.
Preparing to unpack .../067-libice6_2%3a1.0.9-2_amd64.deb ...
Unpacking libice6:amd64 (2:1.0.9-2) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../068-libjpeg62-turbo_1%3a1.5.2-2+b1_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:1.5.2-2+b1) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../069-liblapack3_3.8.0-1+b1_amd64.deb ...
Unpacking liblapack3:amd64 (3.8.0-1+b1) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../070-fontconfig_2.13.1-1_amd64.deb ...
Unpacking fontconfig (2.13.1-1) ...
Selecting previously unselected package libfribidi0:amd64.
Preparing to unpack .../071-libfribidi0_1.0.5-3_amd64.deb ...
Unpacking libfribidi0:amd64 (1.0.5-3) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../072-libthai-data_0.1.28-1_all.deb ...
Unpacking libthai-data (0.1.28-1) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../073-libdatrie1_0.2.12-1_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.12-1) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../074-libthai0_0.1.28-1_amd64.deb ...
Unpacking libthai0:amd64 (0.1.28-1) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../075-libpango-1.0-0_1.42.4-3_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.42.4-3) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../076-libpangoft2-1.0-0_1.42.4-3_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.42.4-3) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../077-libpangocairo-1.0-0_1.42.4-3_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.42.4-3) ...
Selecting previously unselected package libsm6:amd64.
Preparing to unpack .../078-libsm6_2%3a1.2.2-1+b3_amd64.deb ...
Unpacking libsm6:amd64 (2:1.2.2-1+b3) ...
Selecting previously unselected package libtcl8.6:amd64.
Preparing to unpack .../079-libtcl8.6_8.6.8+dfsg-4_amd64.deb ...
Unpacking libtcl8.6:amd64 (8.6.8+dfsg-4) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../080-libjbig0_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../081-libtiff5_4.0.9-6_amd64.deb ...
Unpacking libtiff5:amd64 (4.0.9-6) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../082-libxft2_2.3.2-2_amd64.deb ...
Unpacking libxft2:amd64 (2.3.2-2) ...
Selecting previously unselected package libxss1:amd64.
Preparing to unpack .../083-libxss1_1%3a1.2.3-1_amd64.deb ...
Unpacking libxss1:amd64 (1:1.2.3-1) ...
Selecting previously unselected package libtk8.6:amd64.
Preparing to unpack .../084-libtk8.6_8.6.8-4_amd64.deb ...
Unpacking libtk8.6:amd64 (8.6.8-4) ...
Selecting previously unselected package libxt6:amd64.
Preparing to unpack .../085-libxt6_1%3a1.1.5-1_amd64.deb ...
Unpacking libxt6:amd64 (1:1.1.5-1) ...
Selecting previously unselected package r-base-core.
Preparing to unpack .../086-r-base-core_3.5.1-1+b1_amd64.deb ...
Unpacking r-base-core (3.5.1-1+b1) ...
Selecting previously unselected package libgfortran-8-dev:amd64.
Preparing to unpack .../087-libgfortran-8-dev_8.2.0-7_amd64.deb ...
Unpacking libgfortran-8-dev:amd64 (8.2.0-7) ...
Selecting previously unselected package gfortran-8.
Preparing to unpack .../088-gfortran-8_8.2.0-7_amd64.deb ...
Unpacking gfortran-8 (8.2.0-7) ...
Selecting previously unselected package gfortran.
Preparing to unpack .../089-gfortran_4%3a8.2.0-1_amd64.deb ...
Unpacking gfortran (4:8.2.0-1) ...
Selecting previously unselected package libblas-dev:amd64.
Preparing to unpack .../090-libblas-dev_3.8.0-1+b1_amd64.deb ...
Unpacking libblas-dev:amd64 (3.8.0-1+b1) ...
Selecting previously unselected package liblapack-dev:amd64.
Preparing to unpack .../091-liblapack-dev_3.8.0-1+b1_amd64.deb ...
Unpacking liblapack-dev:amd64 (3.8.0-1+b1) ...
Selecting previously unselected package libncurses-dev:amd64.
Preparing to unpack .../092-libncurses-dev_6.1+20180714-1_amd64.deb ...
Unpacking libncurses-dev:amd64 (6.1+20180714-1) ...
Selecting previously unselected package libncurses5-dev:amd64.
Preparing to unpack .../093-libncurses5-dev_6.1+20180714-1_amd64.deb ...
Unpacking libncurses5-dev:amd64 (6.1+20180714-1) ...
Selecting previously unselected package libreadline-dev:amd64.
Preparing to unpack .../094-libreadline-dev_7.0-5_amd64.deb ...
Unpacking libreadline-dev:amd64 (7.0-5) ...
Selecting previously unselected package libjpeg62-turbo-dev:amd64.
Preparing to unpack .../095-libjpeg62-turbo-dev_1%3a1.5.2-2+b1_amd64.deb ...
Unpacking libjpeg62-turbo-dev:amd64 (1:1.5.2-2+b1) ...
Selecting previously unselected package libjpeg-dev.
Preparing to unpack .../096-libjpeg-dev_1%3a1.5.2-2_all.deb ...
Unpacking libjpeg-dev (1:1.5.2-2) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../097-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 .../098-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 .../099-libpcrecpp0v5_2%3a8.39-11_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../100-libpcre3-dev_2%3a8.39-11_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-11) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../101-zlib1g-dev_1%3a1.2.11.dfsg-1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../102-libpng-dev_1.6.34-2_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.34-2) ...
Selecting previously unselected package libbz2-dev:amd64.
Preparing to unpack .../103-libbz2-dev_1.0.6-9_amd64.deb ...
Unpacking libbz2-dev:amd64 (1.0.6-9) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../104-liblzma-dev_5.2.2-1.3_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.2.2-1.3) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../105-icu-devtools_60.2-6_amd64.deb ...
Unpacking icu-devtools (60.2-6) ...
Selecting previously unselected package libharfbuzz-icu0:amd64.
Preparing to unpack .../106-libharfbuzz-icu0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-icu0:amd64 (1.9.0-1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../107-libharfbuzz-gobject0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../108-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 .../109-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 gir1.2-harfbuzz-0.0:amd64.
Preparing to unpack .../110-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 libglib2.0-data.
Preparing to unpack .../111-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 .../112-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 .../113-python3-lib2to3_3.6.6-1_all.deb ...
Unpacking python3-lib2to3 (3.6.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../114-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 .../115-libglib2.0-dev-bin_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.58.1-2) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../116-pkg-config_0.29-4+b1_amd64.deb ...
Unpacking pkg-config (0.29-4+b1) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../117-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 .../118-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 .../119-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 .../120-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 .../121-libicu-dev_60.2-6_amd64.deb ...
Unpacking libicu-dev (60.2-6) ...
Selecting previously unselected package libxmuu1:amd64.
Preparing to unpack .../122-libxmuu1_2%3a1.1.2-2_amd64.deb ...
Unpacking libxmuu1:amd64 (2:1.1.2-2) ...
Selecting previously unselected package xauth.
Preparing to unpack .../123-xauth_1%3a1.0.10-1_amd64.deb ...
Unpacking xauth (1:1.0.10-1) ...
Selecting previously unselected package r-base-dev.
Preparing to unpack .../124-r-base-dev_3.5.1-1_all.deb ...
Unpacking r-base-dev (3.5.1-1) ...
Selecting previously unselected package libfile-which-perl.
Preparing to unpack .../125-libfile-which-perl_1.22-1_all.deb ...
Unpacking libfile-which-perl (1.22-1) ...
Selecting previously unselected package libswitch-perl.
Preparing to unpack .../126-libswitch-perl_2.17-2_all.deb ...
Unpacking libswitch-perl (2.17-2) ...
Selecting previously unselected package dh-r.
Preparing to unpack .../127-dh-r_20180917_all.deb ...
Unpacking dh-r (20180917) ...
Selecting previously unselected package libboost-system1.62.0:amd64.
Preparing to unpack .../128-libboost-system1.62.0_1.62.0+dfsg-10_amd64.deb ...
Unpacking libboost-system1.62.0:amd64 (1.62.0+dfsg-10) ...
Selecting previously unselected package libboost-chrono1.62.0:amd64.
Preparing to unpack .../129-libboost-chrono1.62.0_1.62.0+dfsg-10_amd64.deb ...
Unpacking libboost-chrono1.62.0:amd64 (1.62.0+dfsg-10) ...
Selecting previously unselected package libboost-system1.67.0:amd64.
Preparing to unpack .../130-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 .../131-libboost-chrono1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-chrono1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost1.67-dev:amd64.
Preparing to unpack .../132-libboost1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-dev:amd64.
Preparing to unpack .../133-libboost-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-timer1.67.0:amd64.
Preparing to unpack .../134-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 .../135-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 .../136-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 .../137-libboost-test-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-test-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-timer1.62.0:amd64.
Preparing to unpack .../138-libboost-timer1.62.0_1.62.0+dfsg-10_amd64.deb ...
Unpacking libboost-timer1.62.0:amd64 (1.62.0+dfsg-10) ...
Selecting previously unselected package libboost-test1.62.0:amd64.
Preparing to unpack .../139-libboost-test1.62.0_1.62.0+dfsg-10_amd64.deb ...
Unpacking libboost-test1.62.0:amd64 (1.62.0+dfsg-10) ...
Selecting previously unselected package libquantlib0v5.
Preparing to unpack .../140-libquantlib0v5_1.13-1_amd64.deb ...
Unpacking libquantlib0v5 (1.13-1) ...
Selecting previously unselected package libquantlib0-dev.
Preparing to unpack .../141-libquantlib0-dev_1.13-1_amd64.deb ...
Unpacking libquantlib0-dev (1.13-1) ...
Selecting previously unselected package r-cran-littler.
Preparing to unpack .../142-r-cran-littler_0.3.4-1_amd64.deb ...
Unpacking r-cran-littler (0.3.4-1) ...
Selecting previously unselected package littler.
Preparing to unpack .../143-littler_0.3.4-1_all.deb ...
Unpacking littler (0.3.4-1) ...
Selecting previously unselected package r-cran-lattice.
Preparing to unpack .../144-r-cran-lattice_0.20-35-1+b2_amd64.deb ...
Unpacking r-cran-lattice (0.20-35-1+b2) ...
Selecting previously unselected package r-cran-pkgkitten.
Preparing to unpack .../145-r-cran-pkgkitten_0.1.4-2_all.deb ...
Unpacking r-cran-pkgkitten (0.1.4-2) ...
Selecting previously unselected package r-cran-rcpp.
Preparing to unpack .../146-r-cran-rcpp_0.12.18-1_amd64.deb ...
Unpacking r-cran-rcpp (0.12.18-1) ...
Selecting previously unselected package r-cran-zoo.
Preparing to unpack .../147-r-cran-zoo_1.8-4-1_amd64.deb ...
Unpacking r-cran-zoo (1.8-4-1) ...
Setting up libbz2-dev:amd64 (1.0.6-9) ...
Setting up libjpeg62-turbo:amd64 (1:1.5.2-2+b1) ...
Setting up libarchive-zip-perl (1.64-1) ...
Setting up libnghttp2-14:amd64 (1.33.0-1) ...
Setting up mime-support (3.61) ...
Setting up libfile-which-perl (1.22-1) ...
Setting up libpng16-16:amd64 (1.6.34-2) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up libjbig0:amd64 (2.1-3.1+b2) ...
Setting up libsigsegv2:amd64 (2.12-2) ...
Setting up fonts-dejavu-core (2.37-1) ...
Setting up libpsl5:amd64 (0.20.2-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 unzip (6.0-21) ...
Setting up dctrl-tools (2.24-2+b1) ...
Setting up libdatrie1:amd64 (0.2.12-1) ...
Setting up libtiff5:amd64 (4.0.9-6) ...
Setting up gettext-base (0.19.8.1-7) ...
Setting up libpipeline1:amd64 (1.5.0-1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2) ...
Setting up libswitch-perl (2.17-2) ...
Setting up m4 (1.4.18-1) ...
Setting up libbsd0:amd64 (0.9.1-1) ...
Setting up libgirepository-1.0-1:amd64 (1.58.0-1) ...
Setting up zip (3.0-11+b1) ...
Setting up libfreetype6:amd64 (2.8.1-2) ...
Setting up libmagic-mgc (1:5.34-2) ...
Setting up libmagic1:amd64 (1:5.34-2) ...
Setting up libgraphite2-3:amd64 (1.3.12-1) ...
Setting up pkg-config (0.29-4+b1) ...
Setting up sensible-utils (0.0.12) ...
Setting up libpixman-1-0:amd64 (0.34.0-2) ...
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 libquantlib0v5 (1.13-1) ...
Setting up dwz (0.12-2) ...
Setting up autotools-dev (20180224.1) ...
Setting up libboost1.67-dev:amd64 (1.67.0-7) ...
Setting up libfribidi0:amd64 (1.0.5-3) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-11) ...
Setting up libpcre32-3:amd64 (2:8.39-11) ...
Setting up libpcre16-3:amd64 (2:8.39-11) ...
Setting up libboost-dev:amd64 (1.67.0.1) ...
Setting up libtcl8.6:amd64 (8.6.8+dfsg-4) ...
Setting up libthai-data (0.1.28-1) ...
Setting up libjpeg62-turbo-dev:amd64 (1:1.5.2-2+b1) ...
Setting up liblzma-dev:amd64 (5.2.2-1.3) ...
Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
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 x11-common (1:7.7+19) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up xdg-utils (1.1.3-1) ...
Setting up libboost-system1.67.0:amd64 (1.67.0-7) ...
Setting up libglib2.0-bin (2.58.1-2) ...
Setting up libgfortran5:amd64 (8.2.0-7) ...
Setting up libgraphite2-dev:amd64 (1.3.12-1) ...
Setting up libncurses6:amd64 (6.1+20180714-1) ...
Setting up libx11-data (2:1.6.6-1) ...
Setting up libxau6:amd64 (1:1.0.8-1+b2) ...
Setting up autopoint (0.19.8.1-7) ...
Setting up libmpdec2:amd64 (2.4.2-2) ...
Setting up libboost-system1.62.0:amd64 (1.62.0+dfsg-10) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Setting up libfile-stripnondeterminism-perl (0.042-1) ...
Setting up libpython3.6-stdlib:amd64 (3.6.6-4) ...
Setting up libpcre3-dev:amd64 (2:8.39-11) ...
Setting up python3.6 (3.6.6-4) ...
Setting up libharfbuzz0b:amd64 (1.9.0-1) ...
Setting up autoconf (2.69-11) ...
Setting up libthai0:amd64 (0.1.28-1) ...
Setting up file (1:5.34-2) ...
Setting up libkrb5support0:amd64 (1.16-2) ...
Setting up ucf (3.0038) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libblas3:amd64 (3.8.0-1+b1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up libjpeg-dev (1:1.5.2-2) ...
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 libice6:amd64 (2:1.0.9-2) ...
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 libpng-dev:amd64 (1.6.34-2) ...
Setting up libgfortran-8-dev:amd64 (8.2.0-7) ...
Setting up libncurses-dev:amd64 (6.1+20180714-1) ...
Setting up libxcb1:amd64 (1.13-3) ...
Setting up libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Setting up libboost-chrono1.62.0:amd64 (1.62.0+dfsg-10) ...
Setting up libtool (2.4.6-4) ...
Setting up libpaper1:amd64 (1.1.24+nmu5) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline

Creating config file /etc/papersize with new version
Setting up libpython3-stdlib:amd64 (3.6.6-1) ...
Setting up libsm6:amd64 (2:1.2.2-1+b3) ...
Setting up libk5crypto3:amd64 (1.16-2) ...
Setting up libboost-timer1.67.0:amd64 (1.67.0-7) ...
Setting up libpaper-utils (1.1.24+nmu5) ...
Setting up fontconfig-config (2.13.1-1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libxcb-render0:amd64 (1.13-3) ...
Setting up libboost-timer1.62.0:amd64 (1.62.0+dfsg-10) ...
Setting up python3 (3.6.6-1) ...
running python rtupdate hooks for python3.6...
running python post-rtupdate hooks for python3.6...
Setting up libblas-dev:amd64 (3.8.0-1+b1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
Setting up gfortran-8 (8.2.0-7) ...
Setting up liblapack3:amd64 (3.8.0-1+b1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up libx11-6:amd64 (2:1.6.6-1) ...
Setting up libxmuu1:amd64 (2:1.1.2-2) ...
Setting up libncurses5-dev:amd64 (6.1+20180714-1) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Setting up libboost-test1.62.0:amd64 (1.62.0+dfsg-10) ...
Setting up libreadline-dev:amd64 (7.0-5) ...
Setting up libxcb-shm0:amd64 (1.13-3) ...
Setting up libxt6:amd64 (1:1.1.5-1) ...
Setting up libxrender1:amd64 (1:0.9.10-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 liblapack-dev:amd64 (3.8.0-1+b1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
Setting up gfortran (4:8.2.0-1) ...
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
Setting up libfontconfig1:amd64 (2.13.1-1) ...
Setting up libxext6:amd64 (2:1.3.3-1+b2) ...
Setting up libglib2.0-dev-bin (2.58.1-2) ...
Setting up libxss1:amd64 (1:1.2.3-1) ...
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 xauth (1:1.0.10-1) ...
Setting up libboost-test-dev:amd64 (1.67.0.1) ...
Setting up libxft2:amd64 (2.3.2-2) ...
Setting up fontconfig (2.13.1-1) ...
Regenerating fonts cache... done.
Setting up libcairo2:amd64 (1.15.12-1) ...
Setting up libquantlib0-dev (1.13-1) ...
Setting up libtk8.6:amd64 (8.6.8-4) ...
Setting up libcurl4:amd64 (7.61.0-1) ...
Setting up libpango-1.0-0:amd64 (1.42.4-3) ...
Setting up libpangoft2-1.0-0:amd64 (1.42.4-3) ...
Setting up libpangocairo-1.0-0:amd64 (1.42.4-3) ...
Setting up dh-autoreconf (19) ...
Setting up libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Setting up dh-strip-nondeterminism (0.042-1) ...
Setting up libicu60:amd64 (60.2-6) ...
Setting up libharfbuzz-icu0:amd64 (1.9.0-1) ...
Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Setting up r-base-core (3.5.1-1+b1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline

Creating config file /etc/R/Renviron with new version
Setting up r-cran-littler (0.3.4-1) ...
Setting up littler (0.3.4-1) ...
Setting up libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Setting up libcroco3:amd64 (0.6.12-2) ...
Setting up r-cran-pkgkitten (0.1.4-2) ...
Setting up r-cran-rcpp (0.12.18-1) ...
Setting up icu-devtools (60.2-6) ...
Setting up gettext (0.19.8.1-7) ...
Setting up r-cran-lattice (0.20-35-1+b2) ...
Setting up libicu-dev (60.2-6) ...
Setting up r-base-dev (3.5.1-1) ...
Setting up intltool-debian (0.35.0+20060710.4) ...
Setting up r-cran-zoo (1.8-4-1) ...
Setting up libharfbuzz-dev:amd64 (1.9.0-1) ...
Setting up po-debconf (1.0.20) ...
Setting up debhelper (11.4) ...
Setting up dh-r (20180917) ...
Processing triggers for libc-bin (2.27-6) ...
Reading package lists...
NOTICE: 'rquantlib' packaging is maintained in the 'Git' version control system at:
https://salsa.debian.org/edd/r-cran-rquantlib.git
Please use:
git clone https://salsa.debian.org/edd/r-cran-rquantlib.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 199 kB of source archives.
Get:1 http://deb.debian.org/debian unstable/main rquantlib 0.4.5-1 (dsc) [1986 B]
Get:2 http://deb.debian.org/debian unstable/main rquantlib 0.4.5-1 (tar) [191 kB]
Get:3 http://deb.debian.org/debian unstable/main rquantlib 0.4.5-1 (diff) [6172 B]
dpkg-source: info: extracting rquantlib in rquantlib-0.4.5
dpkg-source: info: unpacking rquantlib_0.4.5.orig.tar.gz
dpkg-source: info: unpacking rquantlib_0.4.5-1.debian.tar.xz
Fetched 199 kB in 0s (0 B/s)
dpkg-buildpackage: info: source package rquantlib
dpkg-buildpackage: info: source version 0.4.5-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Dirk Eddelbuettel <e...@debian.org>
 dpkg-source --before-build rquantlib-0.4.5
dpkg-buildpackage: info: host architecture amd64
 fakeroot debian/rules clean
dh clean --buildsystem R
   dh_auto_clean -O--buildsystem=R
   dh_clean -O--buildsystem=R
 dpkg-source -b rquantlib-0.4.5
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building rquantlib using existing ./rquantlib_0.4.5.orig.tar.gz
dpkg-source: info: building rquantlib in rquantlib_0.4.5-1.debian.tar.xz
dpkg-source: info: building rquantlib in rquantlib_0.4.5-1.dsc
 debian/rules build
dh build --buildsystem R
   dh_update_autotools_config -O--buildsystem=R
   dh_auto_configure -O--buildsystem=R
   dh_auto_build -O--buildsystem=R
   dh_auto_test -O--buildsystem=R
 fakeroot debian/rules binary
dh binary --buildsystem R
   dh_testroot -O--buildsystem=R
   dh_prep -O--buildsystem=R
   dh_auto_install -O--buildsystem=R
I: R Package: RQuantLib Version: 0.4.5
I: Building using R version 3.5.1-1
I: R API version: r-api-3.5
I: Using built-time from d/changelog: Fri, 10 Aug 2018 14:02:50 -0500
	mkdir -p /home/builder/rquantlib-0.4.5/debian/r-cran-rquantlib/usr/lib/R/site-library
	R CMD INSTALL -l /home/builder/rquantlib-0.4.5/debian/r-cran-rquantlib/usr/lib/R/site-library --clean . "--built-timestamp='Fri, 10 Aug 2018 14:02:50 -0500'"
* installing *source* package 'RQuantLib' ...
** package 'RQuantLib' successfully unpacked and MD5 sums checked
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 g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for R... yes
checking for quantlib-config... yes
checking for Boost development files... yes
checking for minimal Boost version... yes
configure: creating ./config.status
config.status: creating src/Makevars
Completed configuration and ready to build.
** libs
make[1]: Entering directory '/home/builder/rquantlib-0.4.5/src'
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/usr/lib/R/site-library/Rcpp/include"   -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -I/usr/include -fopenmp -fpermissive -I../inst/include -I. -fopenmp -DRCPP_NEW_DATE_DATETIME_VECTORS -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/usr/lib/R/site-library/Rcpp/include"   -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -I/usr/include -fopenmp -fpermissive -I../inst/include -I. -fopenmp -DRCPP_NEW_DATE_DATETIME_VECTORS -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c affine.cpp -o affine.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/usr/lib/R/site-library/Rcpp/include"   -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -I/usr/include -fopenmp -fpermissive -I../inst/include -I. -fopenmp -DRCPP_NEW_DATE_DATETIME_VECTORS -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-udh3fS/r-base-3.5.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c asian.cpp -o asian.o
asian.cpp: In function 'Rcpp::List asianOptionEngine(std::__cxx11::string, std::__cxx11::string, double, double, double, double, double, double, double, double, size_t)':
asian.cpp:72:101: error: no matching function for call to 'boost::posix_time::minutes::minutes(double)'
         QuantLib::Date exDate(today.dateTime() + boost::posix_time::minutes(maturity * 360 * 24 * 60));
                                                                                                     ^
In file included from /usr/include/ql/time/date.hpp:39,
                 from /usr/include/ql/event.hpp:28,
                 from /usr/include/ql/cashflow.hpp:28,
                 from /usr/include/ql/quantlib.hpp:10,
                 from ../inst/include/rquantlib_internal.h:24,
                 from asian.cpp:23:
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: note: candidate: 'template<class T> boost::posix_time::minutes::minutes(const T&, typename boost::enable_if<boost::is_integral<T>, void>::type*)'
       explicit minutes(T const& m,
                ^~~~~~~
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: note:   template argument deduction/substitution failed:
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp: In substitution of 'template<class T> boost::posix_time::minutes::minutes(const T&, typename boost::enable_if<boost::is_integral<T>, void>::type*) [with T = double]':
asian.cpp:72:101:   required from here
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: error: no type named 'type' in 'struct boost::enable_if<boost::is_integral<double>, void>'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note: candidate: 'boost::posix_time::minutes::minutes(const boost::posix_time::minutes&)'
   class BOOST_SYMBOL_VISIBLE minutes : public time_duration
                              ^~~~~~~
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note:   no known conversion for argument 1 from 'double' to 'const boost::posix_time::minutes&'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note: candidate: 'boost::posix_time::minutes::minutes(boost::posix_time::minutes&&)'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note:   no known conversion for argument 1 from 'double' to 'boost::posix_time::minutes&&'
asian.cpp:115:123: error: no matching function for call to 'boost::posix_time::minutes::minutes(__gnu_cxx::__alloc_traits<std::allocator<double>, double>::value_type)'
             fixingDates[i]= QuantLib::Date(today.dateTime() + boost::posix_time::minutes(timeIncrements[i] * 360 * 24 * 60));
                                                                                                                           ^
In file included from /usr/include/ql/time/date.hpp:39,
                 from /usr/include/ql/event.hpp:28,
                 from /usr/include/ql/cashflow.hpp:28,
                 from /usr/include/ql/quantlib.hpp:10,
                 from ../inst/include/rquantlib_internal.h:24,
                 from asian.cpp:23:
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: note: candidate: 'template<class T> boost::posix_time::minutes::minutes(const T&, typename boost::enable_if<boost::is_integral<T>, void>::type*)'
       explicit minutes(T const& m,
                ^~~~~~~
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: note:   template argument deduction/substitution failed:
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp: In substitution of 'template<class T> boost::posix_time::minutes::minutes(const T&, typename boost::enable_if<boost::is_integral<T>, void>::type*) [with T = double]':
asian.cpp:115:123:   required from here
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:43:16: error: no type named 'type' in 'struct boost::enable_if<boost::is_integral<double>, void>'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note: candidate: 'boost::posix_time::minutes::minutes(const boost::posix_time::minutes&)'
   class BOOST_SYMBOL_VISIBLE minutes : public time_duration
                              ^~~~~~~
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note:   no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<double>, double>::value_type' {aka 'double'} to 'const boost::posix_time::minutes&'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note: candidate: 'boost::posix_time::minutes::minutes(boost::posix_time::minutes&&)'
/usr/include/boost/date_time/posix_time/posix_time_duration.hpp:39:30: note:   no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<double>, double>::value_type' {aka 'double'} to 'boost::posix_time::minutes&&'
make[1]: Leaving directory '/home/builder/rquantlib-0.4.5/src'
make[1]: *** [/usr/lib/R/etc/Makeconf:168: asian.o] Error 1
make[1]: Entering directory '/home/builder/rquantlib-0.4.5/src'
make[1]: Leaving directory '/home/builder/rquantlib-0.4.5/src'
ERROR: compilation failed for package 'RQuantLib'
* removing '/home/builder/rquantlib-0.4.5/debian/r-cran-rquantlib/usr/lib/R/site-library/RQuantLib'
dh_auto_install: R CMD INSTALL -l /home/builder/rquantlib-0.4.5/debian/r-cran-rquantlib/usr/lib/R/site-library --clean . "--built-timestamp='Fri, 10 Aug 2018 14:02:50 -0500'" returned exit code 1
make: *** [debian/rules:12: 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 ---
Version: 0.4.6-1

rquantlib (0.4.6-1) unstable; urgency=medium
...
  * Updated to be made compatible with Boost 1.67 or later

 -- Dirk Eddelbuettel <e...@debian.org>  Sun, 25 Nov 2018 10:59:10 -0600


cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed

--- End Message ---

Reply via email to